diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_results.orig.json b/hivemind/tavern/condenser_api_negative/get_comment_discussions_by_payout/bad_category.orig.json
similarity index 100%
rename from hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_results.orig.json
rename to hivemind/tavern/condenser_api_negative/get_comment_discussions_by_payout/bad_category.orig.json
diff --git a/hivemind/tavern/condenser_api_negative/get_comment_discussions_by_payout/bad_category.pat.json b/hivemind/tavern/condenser_api_negative/get_comment_discussions_by_payout/bad_category.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..424f4f202d0c66df9fc1c4b0cab3ac9e5ca5dcf2
--- /dev/null
+++ b/hivemind/tavern/condenser_api_negative/get_comment_discussions_by_payout/bad_category.pat.json
@@ -0,0 +1,5 @@
+{
+  "code": -32602,
+  "data": "Category non_existing_tag does not exist",
+  "message": "Invalid parameters"
+}
diff --git a/hivemind/tavern/condenser_api_negative/get_comment_discussions_by_payout/bad_category.tavern.yaml b/hivemind/tavern/condenser_api_negative/get_comment_discussions_by_payout/bad_category.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..75b9d9924d228b2cfa31ab8dcc03321a8a66f950
--- /dev/null
+++ b/hivemind/tavern/condenser_api_negative/get_comment_discussions_by_payout/bad_category.tavern.yaml
@@ -0,0 +1,30 @@
+---
+  test_name: Hivemind condenser_api.get_comment_discussions_by_payout no results test
+
+  marks:
+    - patterntest # original did not validate category (only gave empty result)
+    - negative
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_comment_discussions_by_payout no results
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_comment_discussions_by_payout"
+          params: {"tag":"non_existing_tag","limit":100}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "bad_category"
+            directory: "condenser_api_negative/get_comment_discussions_by_payout"
+            error_response: true
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_negative/get_discussions_by_promoted/nonempty_filter_tags.orig.json b/hivemind/tavern/condenser_api_negative/get_discussions_by_promoted/nonempty_filter_tags.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..8ad2a2f809e3db9a92c625b03ed300f99ea42dc8
--- /dev/null
+++ b/hivemind/tavern/condenser_api_negative/get_discussions_by_promoted/nonempty_filter_tags.orig.json
@@ -0,0 +1,5 @@
+{
+  "code": -32602,
+  "data": "filter_tags not supported",
+  "message": "Invalid parameters"
+}
diff --git a/hivemind/tavern/condenser_api_negative/get_discussions_by_promoted/nonempty_filter_tags.pat.json b/hivemind/tavern/condenser_api_negative/get_discussions_by_promoted/nonempty_filter_tags.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..8ad2a2f809e3db9a92c625b03ed300f99ea42dc8
--- /dev/null
+++ b/hivemind/tavern/condenser_api_negative/get_discussions_by_promoted/nonempty_filter_tags.pat.json
@@ -0,0 +1,5 @@
+{
+  "code": -32602,
+  "data": "filter_tags not supported",
+  "message": "Invalid parameters"
+}
diff --git a/hivemind/tavern/condenser_api_negative/get_discussions_by_promoted/nonempty_filter_tags.tavern.yaml b/hivemind/tavern/condenser_api_negative/get_discussions_by_promoted/nonempty_filter_tags.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..28cb200b2b5f17681cdcb221dd9ead56d6f11136
--- /dev/null
+++ b/hivemind/tavern/condenser_api_negative/get_discussions_by_promoted/nonempty_filter_tags.tavern.yaml
@@ -0,0 +1,30 @@
+---
+  test_name: Hivemind condenser_api.get_discussions_by_promoted
+
+  marks:
+    - patterntest
+    - negative
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_discussions_by_promoted
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_discussions_by_promoted"
+          params: {"filter_tags": ["steemit","photography"]}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "nonempty_filter_tags"
+            directory: "condenser_api_negative/get_discussions_by_promoted"
+            error_response: true
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_results.pat.json b/hivemind/tavern/condenser_api_negative/get_post_discussions_by_payout/bad_category.orig.json
similarity index 100%
rename from hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_results.pat.json
rename to hivemind/tavern/condenser_api_negative/get_post_discussions_by_payout/bad_category.orig.json
diff --git a/hivemind/tavern/condenser_api_negative/get_post_discussions_by_payout/bad_category.pat.json b/hivemind/tavern/condenser_api_negative/get_post_discussions_by_payout/bad_category.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..424f4f202d0c66df9fc1c4b0cab3ac9e5ca5dcf2
--- /dev/null
+++ b/hivemind/tavern/condenser_api_negative/get_post_discussions_by_payout/bad_category.pat.json
@@ -0,0 +1,5 @@
+{
+  "code": -32602,
+  "data": "Category non_existing_tag does not exist",
+  "message": "Invalid parameters"
+}
diff --git a/hivemind/tavern/condenser_api_negative/get_post_discussions_by_payout/bad_category.tavern.yaml b/hivemind/tavern/condenser_api_negative/get_post_discussions_by_payout/bad_category.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..f1340c832a9aab7dd997714e0266b6da9b1e97b9
--- /dev/null
+++ b/hivemind/tavern/condenser_api_negative/get_post_discussions_by_payout/bad_category.tavern.yaml
@@ -0,0 +1,30 @@
+---
+  test_name: Hivemind condenser_api.get_post_discussions_by_payout no results test
+
+  marks:
+    - patterntest # original did not validate category (only gave empty result)
+    - negative
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_post_discussions_by_payout no results
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_post_discussions_by_payout"
+          params: {"tag":"non_existing_tag","limit":20}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "bad_category"
+            directory: "condenser_api_negative/get_post_discussions_by_payout"
+            error_response: true
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_blog/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_blog/_readme.txt
index 2cc1199c2d6344fb3beff3cc976b92b5c1d4dca9..c05efb65c8471c50a3c021ae067a5c7a270d3115 100644
--- a/hivemind/tavern/condenser_api_patterns/get_blog/_readme.txt
+++ b/hivemind/tavern/condenser_api_patterns/get_blog/_readme.txt
@@ -15,7 +15,7 @@ params:
 
   "limit": {number}
 
-     optional, 1..500, default = {start_entry_id} + 1; part of paging mechanism
+     optional, 1..500 (0 functions as skipped), default = {start_entry_id} + 1; part of paging mechanism
      call selects up to limit blog posts starting at start_entry_id and going down by creation/reblog time
        ABW: as you can see it is not possible to select just the oldest post because adequate call of 0,1 produces
        newest post due to special meaning of 0 as start_entry_id (it is a bug IMHO)
diff --git a/hivemind/tavern/condenser_api_patterns/get_blog_entries/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_blog_entries/_readme.txt
index ecd6216c8a984397fbe45fedc9d3195f61d8cb6f..487889d45797b41a2b3841378c53b1f8442832e9 100644
--- a/hivemind/tavern/condenser_api_patterns/get_blog_entries/_readme.txt
+++ b/hivemind/tavern/condenser_api_patterns/get_blog_entries/_readme.txt
@@ -15,7 +15,7 @@ params:
 
   "limit": {number}
 
-     optional, 1..500, default = {start_entry_id} + 1; part of paging mechanism
+     optional, 1..500 (0 functions as skipped), default = {start_entry_id} + 1; part of paging mechanism
      call selects up to limit blog posts starting at start_entry_id and going down by creation/reblog time
        ABW: as you can see it is not possible to select just the oldest post because adequate call of 0,1 produces
        newest post due to special meaning of 0 as start_entry_id (it is a bug IMHO)
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..13867fc0676b3d4c4e6ede8585cb8636e86e1540
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/_readme.txt
@@ -0,0 +1,22 @@
+Lists not yet paid out replies ranked by pending payout, more paying first (order within the same payout is: newer first).
+Slightly different post format but otherwise gives the same posts as bridge.get_ranked_posts with payout_comment sort.
+
+method: "condenser_api.get_comment_discussion_by_payout"
+params:
+{
+  "start_author":"{author}", "start_permlink":"{permlink}"
+
+     start_author + start_permlink : optional, when given have to point to valid start post; paging mechanism (cuts out this and more paying replies)
+
+  "limit":"{limit}"
+
+     optional, 1..100, default = 20
+
+   "tag":"{tag}"
+
+     optional, actually means category, when given have to point to valid category; narrows down results to posts with given category
+
+   "truncate_body":{number}
+
+     optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_tag.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_tag.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..e29e13ab374afbd8d24700e3c487b57978be4950
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_tag.orig.json
@@ -0,0 +1,4860 @@
+[
+  {
+    "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"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29186049220380",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623996958321",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4855865727368",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154146763309",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-5787205072",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106890789634",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9733889143",
+        "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": "16011014560",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188226473",
+        "voter": "andyinspace"
+      }
+    ],
+    "author": "anyx",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "This user is a serial plagiarist who has taken to spinning articles to plagiarize, instead of providing sources and discussion.\n\n!cheetah ban",
+    "body_length": 141,
+    "cashout_time": "2016-09-15T23:59:09",
+    "category": "workout",
+    "children": 1,
+    "created": "2016-08-15T22:56:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"workout\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-15T22:56:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 35271450211375,
+    "parent_author": "dopezzz123",
+    "parent_permlink": "why-muscles-get-sore",
+    "pending_payout_value": "208.151 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225638685z",
+    "post_id": 619811,
+    "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#@anyx/re-dopezzz123-why-muscles-get-sore-20160815t225638685z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17387563883098",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "2478143633692",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17508649345673",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2472598979",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3001139259",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562419226",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42178757456",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1325381537",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170789230",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497247302",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "737445199",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230273601",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38894121671",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7143405548",
+        "voter": "goose"
+      }
+    ],
+    "author": "thylbom",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I definitely agree that the password recovery problem is a good one to work on. People who have been involved in crypto for some time are almost instinctively aware of the importance of safeguarding private keys, but \"mainstream\" adopters are accustomed to a world of hand-holding where the powers that be can bail you out if you are careless, stupid, forgetful or unlucky. If a method can be devised to facilitate recovery without sacrificing security, it can avoid problems of negative user experience that could hurt the platform's prospects for widespread adaption.",
+    "body_length": 569,
+    "cashout_time": "2016-09-20T02:41:45",
+    "category": "witness-category",
+    "children": 1,
+    "created": "2016-08-19T21:34:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"witness-category\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T21:34:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 37471570441471,
+    "parent_author": "blocktrades",
+    "parent_permlink": "blocktrades-witness-report-for-3rd-week-of-august",
+    "pending_payout_value": "204.392 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z",
+    "post_id": 675843,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "BlockTrades Witness Report for 3rd Week of August",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/witness-category/@blocktrades/blocktrades-witness-report-for-3rd-week-of-august#@thylbom/re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17735315160760",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17865766992651",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3091007147",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3751778512",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703064185",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52778799199",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1656856120",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213490026",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621592296",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "923609344",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287848982",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27692743706",
+        "voter": "r4fken"
+      }
+    ],
+    "author": "r4fken",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)",
+    "body_length": 202,
+    "cashout_time": "2016-09-20T07:22:48",
+    "category": "philosophy",
+    "children": 0,
+    "created": "2016-08-20T09:06:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"philosophy\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T09:07:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 35692802942928,
+    "parent_author": "steemed",
+    "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z",
+    "pending_payout_value": "196.246 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z",
+    "post_id": 681168,
+    "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#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "727407423660",
+        "voter": "erath"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "644958517124",
+        "voter": "smooth"
+      },
+      {
+        "percent": "49",
+        "reputation": 0,
+        "rshares": "28855608662",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "8486664643623",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6370652360778",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82613356260",
+        "voter": "friend5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6571978360124",
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2470238755",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2998129153",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "567603623",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41948298509",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1324164960",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170709221",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1813610822120",
+        "voter": "joseph"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "108871922542",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51208392605",
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "139867989371",
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2942087618871",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "728571343037",
+        "voter": "marginal"
+      },
+      {
+        "percent": "9700",
+        "reputation": 0,
+        "rshares": "937174079758",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76036949216",
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "496873319",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "725575461",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230145753",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410807696946",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9521769889",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19196002726",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47541496466",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3892379945",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129268320437",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92995154682",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213701132994",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276395602",
+        "voter": "carlgetalada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28736613783",
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5894409181",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41089533337",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8483258053",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65583674268",
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1259117194",
+        "voter": "chrisj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3704243578",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14629758637",
+        "voter": "artakan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6012406044",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17402129371",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4183080661",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35472659687",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3978086691",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22725564707",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24344116072",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6603057948",
+        "voter": "najoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12993857503",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4872113322",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2818362970",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2636752145",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3558963294",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377494461",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26914242849",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1692339912",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56779364",
+        "voter": "negoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50997147",
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50258926",
+        "voter": "doze49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61941319",
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52891748",
+        "voter": "onlyspeakslies"
+      }
+    ],
+    "author": "lukestokes",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "`dictatorship`,  `hindenburg`, `titanic` and a hitler meme are all a bit too over the top for me. I'm glad you're voicing your concerns, but a \"Dan must be stopped\" call to action against the very person who created what we are all enjoying isn't (IMO) the best approach for having a respectful dialogue about the issue. It seems many are already discussing the issue on github and voicing their disapproval there. We'll see where it goes from here, and it's definitely something to keep an eye on. For that, I thank you, but I won't give you my vote on this post because I think the tone is counter productive to a rational, open conversation about the issue. I may be wrong and maybe a more alarmist tone is called for. As with many things, we shall see over time.",
+    "body_length": 766,
+    "cashout_time": "2016-09-17T19:51:06",
+    "category": "steem",
+    "children": 38,
+    "created": "2016-08-17T04:58:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steem\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T12:34:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31034930180364,
+    "parent_author": "bacchist",
+    "parent_permlink": "dan-needs-to-be-stopped",
+    "pending_payout_value": "164.026 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-bacchist-dan-needs-to-be-stopped-20160817t045803929z",
+    "post_id": 637043,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Dan needs to be stopped",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@bacchist/dan-needs-to-be-stopped#@lukestokes/re-bacchist-dan-needs-to-be-stopped-20160817t045803929z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28300878156066",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "636585679281",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6549727125575",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099954800",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3763461212",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690406462",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54138246944",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661302953",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213684579",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251709705259",
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2511125853605",
+        "voter": "recursive"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "114398906816",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622843501",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967387415",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288174518",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71291626568",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5223833163",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4999497773",
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63437792",
+        "voter": "tommycordero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501604178",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615797359",
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381939549",
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444650943",
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807251193",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10978877529",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2610482432",
+        "voter": "robcichocki"
+      }
+    ],
+    "author": "recursive",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "> This state of being creates a paradox for those with aims to change the world. If you are at complete peace with the way things are, then what motive is there to change the world? On what basis should you choose to act? This is the very heart of economics, the study of human action. This is the root of my current internal conflict.\n\nMahayana (Great Vehicle) buddhism may have an answer to that apparent conflict you are experiencing. According to the Mahayana tradition, true enlightenment cannot be reached merely by cultivating inner peace and eliminating delusions and suffering in isolation of other people, because doing so remains a selfish endeavor that implies that one hasn't truly reached the state of selflessness that underlies enlightenment. \n\nInstead, at some point along the path to enlightenment, one realizes that one's true nature is that of being conscious: a pure form of benevolent consciousness without shape and boundaries, and that permeates all that is. At that point, one doesn't seek anymore to deliver from suffering that fictious \"ego\" entity that has long been identified as a delusion, but instead seeks to deliver all of consciousness from suffering, including all sentient beings. This intrinsic benevolence of consciousness is what we call \"compassion\", and is the central tenet of Mahayana tradition. It is both the ultimate goal and the mean to reach that goal. By cultivating compassion, one reveals his compassionate nature, and this compassion is what will eventually lead to a contradiction with the ego and materialistic delusions, and their dissolution. \n\nFrom that perspective, he who seeks enlightenment will first accept reality as it is, and reach what first feels as a form of blissful and permanent internal peace (this is typically what Hinayana / Small Vehicule buddhism think is enlightenment, and this includes some famous western self-help authors), but will soon realize that there is one type of suffering that transcends attachment and the delusion of self and that can't be addressed by meditation and spiritual practice alone but on the contrary become more and more sharp: the suffering of seeing others suffering within this reality. This is because suffering is a noble truth, a truth that can't be denied, ignored or accepted but simply acknowledged as being true. This leads to a paradox where embracing reality leads to embracing a form of suffering that can only be eliminated by altering reality which cannot be achieved if one simply embraces reality. The only solution to this apparent paradox is to realize that reality is impermanent and can be embraced while being altered. It should be accepted in the present so that one may live free from delusions and attachment, and reduce suffering to the prime denominator of the quintessential and universally experienced suffering of being alive, while being actively shaped with all one's will and energy into a future reality where other sentient beings suffer less.\n\nUnder the mahayana assumption that consciousness is intrinsically benevolent and unable not to experience compassion as it gets closer to enlightenment, acting with all one's will and energy against the corruption that permeates reality and increases suffering of other sentient beings is not only consistent, but the one and only true way to enlightenment.\n\nArguably, government is one such big chunk of pervasive corruption that has spread like weed in our consensual reality, and creates an inordinate amount of suffering. From that perspective, being anarchist isn't only a political view, it is a statement of compassion. Ask the Dalai Lama what he thinks about governments...",
+    "body_length": 3669,
+    "cashout_time": "2016-10-02T19:14:21",
+    "category": "philosophy",
+    "children": 1,
+    "created": "2016-09-01T18:48:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"philosophy\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T19:11:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 38538789887465,
+    "parent_author": "dantheman",
+    "parent_permlink": "why-do-we-fight-to-change-the-world",
+    "pending_payout_value": "160.617 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z",
+    "post_id": 826676,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Why do we fight to change the world?",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/philosophy/@dantheman/why-do-we-fight-to-change-the-world#@recursive/re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31543759293106",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22090812048",
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28897024316",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1953557909",
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1708472880",
+        "voter": "litrbooh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1188786726",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53257299",
+        "voter": "shvedas"
+      }
+    ],
+    "author": "val-a",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u044b:\n> \u0414\u043e\u0445\u043e\u0434 _\u043f\u0435\u0440\u0432\u044b\u043c_ _\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c_ \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u044b \u0432\u044b\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0437\u0430 \u0441\u0447\u0435\u0442 \u0432\u043a\u043b\u0430\u0434\u043e\u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432.\n\n\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 _\u043f\u0435\u0440\u0432\u044b\u043c_ \u0438 _\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c_ (\u043f\u043e\u0434 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 \u043f\u043e\u0434\u0440\u0430\u0437\u0443\u043c\u0435\u0432\u0430\u044e\u0442\u0441\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b), \u0430 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0421\u0442\u0438\u043c\u0430 \u0434\u043e\u0445\u043e\u0434 \u043f\u043e\u043b\u0443\u0447\u0430\u044e\u0442 \u043d\u0435 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b, \u0430 \u0430\u0432\u0442\u043e\u0440\u044b \u043e\u0442 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043d\u0438 \u043a\u043e\u043f\u0435\u0439\u043a\u0438 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0435\u0436\u0434\u0435 \u043e\u043d\u0438 \u043d\u0430\u0447\u043d\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0434\u043e\u0445\u043e\u0434. \u0418\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b \u0442\u0435\u043e\u0440\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0445\u043e\u0434, \u0435\u0441\u043b\u0438 \u0446\u0435\u043d\u0430  STEEM, SP \u0438\u043b\u0438 SD \u0432\u044b\u0440\u0430\u0441\u0442\u0435\u0442, \u043d\u043e \u044d\u0442\u043e\u0433\u043e \u0438\u043c \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043e\u0431\u0435\u0449\u0430\u0435\u0442 (\u0432 \u043e\u0442\u043b\u0438\u0447\u0438\u0438 \u043e\u0442 \u043f\u0438\u0440\u0430\u043c\u0438\u0434). \u041a \u0442\u043e\u043c\u0443 \u0436\u0435 \u0430\u0432\u0442\u043e\u0440\u0430\u043c \u0432\u044b\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0433\u043e\u043d\u043e\u0440\u0430\u0440 \u043d\u0435 \u0441 \u0434\u0435\u043d\u0435\u0433 \u043d\u043e\u0432\u044b\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432, \u0430 \u0440\u0430\u0437\u043c\u044b\u0442\u0438\u0435\u043c \u0434\u043e\u043b\u0438 \u0432\u0441\u0435\u0445 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432 \u0432 STEEM \u0438\u043b\u0438 \u0432 SP, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0438 \u0434\u043e\u043b\u0438 \u043a\u0438\u0442\u043e\u0432. \u0414\u043e\u0445\u043e\u0434 \u043a\u0438\u0442\u043e\u0432, \u0438\u043b\u0438 \u043b\u044e\u0431\u043e\u0433\u043e, \u043a\u0442\u043e \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043b \u043d\u0430 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u043c \u044d\u0442\u0430\u043f\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u043d\u043e\u0432\u044b\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u0439 \u0432 \u0442\u043e\u0439 \u0436\u0435 \u0441\u0442\u0435\u043f\u0435\u043d\u0438 \u043a\u0430\u043a \u0438 \u0432 \u043b\u044e\u0431\u043e\u0439 \u0434\u0440\u0443\u0433\u043e\u0439 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0435.\n\n\u0412\u043c\u0435\u0441\u0442\u043e \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f \u0441 \u043f\u0440\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439, \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0432\u043d\u0435\u0435 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u044c \u0441 \u043e\u0431\u044b\u043a\u043d\u043e\u0432\u0435\u043d\u043d\u044b\u043c \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c, \u0432\u043e\u0437\u044c\u043c\u0438\u0442\u0435 \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0422\u0432\u0438\u0442\u0435\u0440 - \u043f\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u043c\u0443 \u0441\u0447\u0435\u0442\u0443 \u043e\u043d\u0438, \u044f\u0432\u043b\u044f\u0441\u044c \u0443\u0431\u044b\u0442\u043e\u0447\u043d\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 (\u0434\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 10 \u043b\u0435\u0442 \u0438 \u043e\u043d\u0430 \u0434\u043e \u0441\u0438\u0445 \u043f\u043e\u0440 \u0443\u0431\u044b\u0442\u043e\u0447\u043d\u0430), \u043f\u043b\u0430\u0442\u044f\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c (\u043d\u0435 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e, \u0430 \u043a\u043e\u0441\u0432\u0435\u043d\u043d\u043e, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u043e\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432 \u0434\u0430\u0442\u0430\u0446\u0435\u043d\u0442\u0440\u0435) \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u044f \u0434\u043e\u043b\u044e/\u0430\u043a\u0446\u0438\u0438 \u0444\u0430\u0443\u043d\u0434\u0435\u0440\u043e\u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u0430\u043c. \u041f\u043e\u0447\u0435\u043c\u0443 \u0430\u043a\u0446\u0438\u0438 \u0442\u0432\u0438\u0442\u0435\u0440\u0430 \u0441\u0442\u043e\u044f\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0443\u043b\u044f? \u041f\u043e\u0447\u0435\u043c\u0443 \u0422\u0432\u0438\u0442\u0435\u0440 \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043d\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439?\n\n\u0418\u043b\u0438 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u0435 \u0441\u0442\u0438\u043c \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c - \u0441 \u0442\u0430\u043a\u0438\u043c \u0436\u0435 \u0443\u0441\u043f\u0435\u0445\u043e\u043c \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0437\u0432\u0430\u0442\u044c \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439 - \u0432\u0435\u0434\u044c \u043f\u043b\u0430\u0442\u0438\u0442 \u0436\u0435 \u043c\u0430\u0439\u043d\u0435\u0440\u0430\u043c \u0434\u0435\u043d\u044c\u0433\u0430\u043c\u0438 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432.\n\n(p.s. \u043f\u0440\u043e\u0433\u043e\u043b\u043e\u0441\u0443\u044e \u0437\u0430 \u0441\u0435\u0431\u044f, \u0447\u0442\u043e \u0431\u044b \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c SP \u0434\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u043e\u0432)",
+    "body_length": 1470,
+    "cashout_time": "2016-09-24T02:46:54",
+    "category": "ru-steemit",
+    "children": 12,
+    "created": "2016-08-24T03:37:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"ru-steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T03:37:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31599651204284,
+    "parent_author": "litrbooh",
+    "parent_permlink": "budushee-steemit-nuzhna-li-reklama-v-steemit",
+    "pending_payout_value": "149.954 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z",
+    "post_id": 726941,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "\u0411\u0443\u0434\u0443\u0449\u0435\u0435 STEEMIT. \u041d\u0443\u0436\u043d\u0430 \u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0432 STEEMIT?",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/ru-steemit/@litrbooh/budushee-steemit-nuzhna-li-reklama-v-steemit#@val-a/re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "-400",
+        "reputation": 0,
+        "rshares": "-6795625112",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164482168912",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5468384423175",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4945364226662",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4656370926104",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3100766695",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3764486632",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690539083",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7221866970964",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54261605662",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30390370257",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661700819",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213710460",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38600533043",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12269445334",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2651243328828",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1820914592",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066518981517",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9578311657",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2440314179",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1336788173111",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "749198663628",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622955105",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039484860678",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967591200",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2783598325676",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7288280988",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288213327",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "14796343926",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8972462707",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "715648773415",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "854401132096",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5470652472",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "726664133144",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16798528489",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3868778895",
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56779104986",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239176165083",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71220031567",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "608622985586",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73303668582",
+        "voter": "beerbloke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65759745683",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53884344664",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10426970985",
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2264268111917",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57529825067",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4476883095",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306456223000",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501259458185",
+        "voter": "infovore"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "26315426014",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "11630218162",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "648138422927",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69137542683",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35291674341",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360818648",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84518713331",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2936111289",
+        "voter": "psychonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318074226526",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4261065978",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140535670338",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38348578159",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "8900",
+        "reputation": 0,
+        "rshares": "116908007408",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2812431753",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13896170396",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14528410967",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2046170935",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72655151512",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96443143963",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40575184405",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1287519621",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1827599826",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21069395024",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "9300",
+        "reputation": 0,
+        "rshares": "16233014225",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1214668585",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3259008743",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38541756150",
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241033184",
+        "voter": "bobkillaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9142372606",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306656746516",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2482350068",
+        "voter": "steemgrindr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3860285221",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270410711489",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9763976269",
+        "voter": "pcste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231813853890",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9172859646",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35903507776",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "37542098641",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21424668654",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9888950976",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17018462501",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38704462901",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10716559196",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2850823006",
+        "voter": "tjpezlo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13269181041",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24054735183",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18688350126",
+        "voter": "pixielolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26483585759",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3431378627",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89283515898",
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73511111757",
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1475564323",
+        "voter": "handmade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9986529692",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4245841619",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "5600",
+        "reputation": 0,
+        "rshares": "6013694326",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "2112721437",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4344750511",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11208435898",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315529006",
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8668714921",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2402681750",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4722016641",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13978892123",
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21216135219",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360104574",
+        "voter": "herbertmueller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2790597203",
+        "voter": "lightsplasher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760244820",
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7124799262",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59327261726",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3673690786",
+        "voter": "anarchyhasnogods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1481195780",
+        "voter": "indykpol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302329407",
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122637921",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1623996599",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8237809906",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6391005392",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3425466270",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293609359",
+        "voter": "pollux.one"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1184448867",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7304947957",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11502232563",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17585035067",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28036909101",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45121178435",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249472621",
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2914432081",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3648710236",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4721456837",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146618463",
+        "voter": "jens-jung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116558699",
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54685141",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70593457",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1584386308",
+        "voter": "dirkzett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66920614",
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71584544",
+        "voter": "justusagenstum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140430106",
+        "voter": "angelius"
+      }
+    ],
+    "author": "donkeypong",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "## I strongly oppose the \"5 votes a day\" target. \n\nI thought one of the greatest changes to be implemented so far was when that target INCREASED. People have not been so stressed in the last month or two about curation rewards; they just vote for what they like and have fun. \n\nI don't think Steemit will be FUN anymore if there is an expected target of 5 votes per day. People will spend much less time on the site. They will vote for predictably popular content. And we will be right back where we were a couple of months ago. \n\nNo, it will be worse than that. Because 20 votes a day used to stress people out. 5 votes a day? NO ONE can do any real curation under that scheme.\n\nAs an individual and an established author, the 5 votes a day could be great for me. If we go back to the days when everybody upvoted the same posts, then maybe I'd get all those votes again. I could quit my job and write for Steemit full time. \n\nAnd we'd go back to the days when emerging authors and artists got far fewer votes and rewards. \n\nAs far as curation and voting bots, they are being used for very good purposes also. Rather than turning our tails and running away from them, why don't we use them for the greater good? I think the mega-whales' curation teams are doing a far better job than ever before at redistributing rewards; I make nothing from being involved in that effort, but I think it is working quite well. Give the vote sliders and the voting bots more time; Steemit's front page is finally diversifying and newer people are getting rewards like never before. \n\nOne more thing: Redistribution of Steemit's resources from big whale accounts to the masses MUST be one of our top priorities. How does this help? I understand that big whale accounts may make less on curation rewards, but I think few of them are concerned with this anymore; they're trying to channel their votes to worthy posters. They have recognized that their big stakes will be worth nothing unless we make this thing succeed.\n\nUnder this scheme, the big whales will need to sell the max on exchanges every week and other people buy their Steem for any real redistribution to occur. That will hold down the price and our competitors will zoom right by us. \n\nSteem Team, I understand you are trying to solve real problems with these tweaks. I don't normally comment on them because I feel that Steemit is good enough that there is some margin for error with these back-end decisions. But this is far, far too severe a change for the platform to absorb.\n\n## If I am wrong, then I'd love to hear that from the community, and I am open to learning from other views. Give us time for this discussion, please, before forcing through such a change. Until then, I oppose this change.",
+    "body_length": 2749,
+    "cashout_time": "2016-10-04T01:16:51",
+    "category": "steem",
+    "children": 106,
+    "created": "2016-09-02T21:16:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steem\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T21:19:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 42304792392028,
+    "parent_author": "steemitblog",
+    "parent_permlink": "announcing-steem-0-14-0-release-candidate",
+    "pending_payout_value": "141.827 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z",
+    "post_id": 838503,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Announcing Steem 0.14.0 Release Candidate",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@steemitblog/announcing-steem-0-14-0-release-candidate#@donkeypong/re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25590936673298",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4503240944593",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3093334843",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3754789393",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703475396",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53137822427",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658013141",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213534945",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621926043",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "945621921",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287928458",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52651564",
+        "voter": "meredithpetran"
+      }
+    ],
+    "author": "jhermanbeans",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Fascinating world. Can't wait to see where it goes!",
+    "body_length": 51,
+    "cashout_time": "2016-09-23T02:56:09",
+    "category": "horror",
+    "children": 0,
+    "created": "2016-08-23T01:17:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"horror\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-23T01:17:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 30158646716022,
+    "parent_author": "senderos",
+    "parent_permlink": "the-nightmare-song",
+    "pending_payout_value": "132.545 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-senderos-the-nightmare-song-20160823t011659950z",
+    "post_id": 713237,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Nightmare Song",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/horror/@senderos/the-nightmare-song#@jhermanbeans/re-senderos-the-nightmare-song-20160823t011659950z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31588356739639",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726201087",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524113216",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "820980926",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66047512415",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996555438",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256574080",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5893489774073",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750139848",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168034456",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346061156",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394226217606",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "24215364511",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2042269341790",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8944971271",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52207362",
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58804600",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14292459528",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39105503792",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120190171",
+        "voter": "emeline"
+      }
+    ],
+    "author": "luminousvisions",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "### @dantheman ... you just downvoted my comment?\n\nwhat is that all about? what's wrong with it?\n\n#### I'm just suggestion a solution and in return for offering my help ... you downvote me?!?\n\n\nlook at what I've been up to;\n[little baby dolphin](https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school)\nI'm already working on a solution!",
+    "body_length": 369,
+    "cashout_time": "2016-10-12T06:00:30",
+    "category": "steemit",
+    "children": 22,
+    "created": "2016-09-11T03:56:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@luminousvisions\\/little-baby-dolphin-goes-to-steemit-school\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T06:14:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 40084767746965,
+    "parent_author": "luminousvisions",
+    "parent_permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z",
+    "pending_payout_value": "131.347 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z",
+    "post_id": 918173,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@luminousvisions/re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "25299389880141",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6927705674664",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "992154852299",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103959302",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768577454",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683986391",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54809820514",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663237841",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213793127",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624976946",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973085978",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288350184",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347492602044",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445654522",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113354733694",
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46418159604",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4864933964",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9260376832",
+        "voter": "goose"
+      }
+    ],
+    "author": "dana-edwards",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "1 needs modification, 2 is a good idea\n----\n\nDespite some who call 2 an exit fee, I think Steem Power should stop being marketed as an **\"investment\"** to **\"investors\"**. Market it to users of the platform who want to power up their accounts but make powering up or upgrading a lot easier. Make it possible with a gift card,  fiat, a credit card, or Paypal. People should never see Bitcoin or blockchain anywhere on the Steemit official marketing.\n\nUse gamification to make people want to upgrade their Steem Power. Market Steem Dollars to crypto investors for the 10% interest.\n\nSteem Power a purchasable upgrade for accounts\n-----\n\n>reddit gold is our premium membership program. It grants you access to extra features to improve your reddit experience. It also makes you really quite dapper.\n\nAnd Alice goes to Walgreens with her Visa Card and buys the Steem Card instead of the Netflix card. It's also possible to sell a Steem Power subscription for people who want to buy a little bit at a time, remeber WoW is subscription based and. Second Life has Linden Dollars which are like our Steem Dollars and can be marketed in a similar way.\n\nDo not make the mistake of listening to crypto anarchists or crypto people when it comes to marketing. Crypto people are horrible at marketing and that includes Bitcoin. All of crypto has a bad reputaton and horrible marketing. Look at Pokemon Go or even Reddit Gold to see how to do marketing, or just hire a profesisonal in gamification and marketing guru. Do not listen to Steemit whales and don't even listen to me. Hire people who are from the gaming world, or who marketed popular social networks.\n\n**Note: notice games and social networks never use words like \"investor\" or \"speculator\",  as this would be like trying to market the social network as a gambling site which is something they all avoid.**\n\n**UPDATE: IF ANYONE CAN GET IN CONTACT WITH [Jane McGonigal](https://janemcgonigal.com/) AND HIRE HER AS A CONSULTANT IT WOULD BE GREAT FOR STEEMIT. SHE IS A THOUGHT LEADER IN \"PURPOSE DRIVEN GAMING\" AND HAVING HER ASSOCIATED WITH STEEMIT WOULD BRING MOMENTUM.**\n\nReferences\n1. https://community.secondlife.com/t5/English-Knowledge-Base/Buying-and-selling-Linden-dollars/ta-p/700107\n2. https://www.reddit.com/gold/about/\n3. https://www.quora.com/Who-are-the-best-gamification-experts\n4. https://www.linkedin.com/title/gamification-expert",
+    "body_length": 2392,
+    "cashout_time": "2016-10-09T02:14:24",
+    "category": "steem",
+    "children": 7,
+    "created": "2016-09-08T05:07:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steem\"],\"links\":[\"https:\\/\\/janemcgonigal.com\\/\",\"https:\\/\\/community.secondlife.com\\/t5\\/English-Knowledge-Base\\/Buying-and-selling-Linden-dollars\\/ta-p\\/700107\",\"https:\\/\\/www.reddit.com\\/gold\\/about\\/\",\"https:\\/\\/www.quora.com\\/Who-are-the-best-gamification-experts\",\"https:\\/\\/www.linkedin.com\\/title\\/gamification-expert\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T20:47:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 33807216655501,
+    "parent_author": "ned",
+    "parent_permlink": "increasing-curation-demand-for-steem-power-and-community-interaction",
+    "pending_payout_value": "116.932 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-ned-increasing-curation-demand-for-steem-power-and-community-interaction-20160908t050749903z",
+    "post_id": 889443,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction#@dana-edwards/re-ned-increasing-curation-demand-for-steem-power-and-community-interaction-20160908t050749903z"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_tag.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_tag.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..915ffbf2788b37efc5c0e2fd2f184fffe0f7cf4e
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_tag.pat.json
@@ -0,0 +1,4836 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "300",
+        "reputation": 32455846463901,
+        "rshares": 1294968367268,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28860902224,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14409605494831,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40261554792719,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3155750963782,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 377906636658,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1245475534803,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 2875138885044,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 992692841277,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 948645888607,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314602171157,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3094244335,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3755939559,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703615315,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 5751660885474,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1644151280793,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53261984748,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1658441464,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213555429,
+        "voter": "moon"
+      },
+      {
+        "percent": "300",
+        "reputation": 83941319998,
+        "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": 96486114508046,
+        "rshares": 54127411451,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5116325730997,
+        "rshares": 1759901644,
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 351517418935,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 282481919881,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287957469,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 25822874684,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 10283360038,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24290958657,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 7456570912,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 491733834025,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 41463145095,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 367830728600,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 45912096650,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3663597787321,
+        "rshares": 23227592357,
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8330279054423,
+        "rshares": 63707549495,
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 31690086400,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 73022585138,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 109636482823,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61288399197,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 117389810764,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 449244898326,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9131956116299,
+        "rshares": 128017998380,
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2676865682314,
+        "rshares": 36007650081,
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 32961119819,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13090894039053,
+        "rshares": 71452016003,
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5121130339,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25440234426,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 13382892819,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24939158057,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 103574158909,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 7881221000,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 112751020008,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 14190084617,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 159492592967,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33597624083,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7028930352,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17438618169,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75155947399,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3697940497,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10377897348,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 7753599028,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1388783807,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37347150,
+        "rshares": 115874018,
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 505816971,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19973803502,
+        "rshares": 124907433,
+        "voter": "biternator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725570292123,
+        "rshares": 3090635988,
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 54497070629,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1606242116192,
+        "rshares": 4745090234,
+        "voter": "bakingengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 36689125715,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1277366753949,
+        "rshares": 16359584188,
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176296837750,
+        "rshares": 10399150907,
+        "voter": "npl77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 108836213411,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11060114610,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 2050213474,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 295915630,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 38819548773,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 359477747983,
+        "rshares": 461449860,
+        "voter": "neddykelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1579699570,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 77473387847,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 61385527,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4829784286,
+        "rshares": 4190219999,
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213488752136,
+        "rshares": 125663528,
+        "voter": "nelkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 182784126217,
+        "rshares": 148930176,
+        "voter": "letsgo.asino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 14968711124,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 58226150,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 253750401751,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 191216226,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1527616438386,
+        "rshares": 13741567322,
+        "voter": "antoinev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 61289460,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 5100395909,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129741556,
+        "rshares": 54884363,
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 50351260,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 349611227,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59354601485,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 51884666,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 130434883,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7370152734,
+        "rshares": 52571606,
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 586250180,
+        "rshares": 53224648,
+        "voter": "yanikkoval"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 51136429,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": -800687411550,
+        "rshares": 50977036,
+        "voter": "tldr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99160090205,
+        "rshares": 50797377,
+        "voter": "bo-ro"
+      }
+    ],
+    "author": "smooth",
+    "author_reputation": 32455846463901,
+    "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-08-31T16:43:21",
+    "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.567 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z",
+    "post_id": 969220,
+    "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": 32455846463901,
+        "rshares": 30296554046147,
+        "voter": "smooth"
+      },
+      {
+        "percent": "97",
+        "reputation": 85602977273,
+        "rshares": 28854877817,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14368089454321,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3183112492799,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 377387227766,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 790314875205,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314383371770,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 1851434600,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2247039689,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 425455109,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 31378635899,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 992487616,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 127981753,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6510505164,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5308002434389,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 342922310367,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "9700",
+        "reputation": 82600290949846,
+        "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": 1914970430304,
+        "rshares": 410778394570,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11372617606769,
+        "rshares": 113345677592,
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5390642912,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 346429583563,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 46740932510,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18522231224,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398461524,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "9900",
+        "reputation": 48542961182602,
+        "rshares": 1421853753930,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19196715690053,
+        "rshares": 65040641602,
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 739465956,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 17651204278,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 480475374,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -23813556107,
+        "rshares": 239694404,
+        "voter": "concave"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1386708550,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47264506487,
+        "rshares": 1798938485,
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 19465926763,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 2622666444,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6373898691,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110677545707,
+        "rshares": 312475355,
+        "voter": "lioliomir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5410832727305,
+        "rshares": 33482946725,
+        "voter": "alexfortin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 196800352745,
+        "rshares": 5612628842,
+        "voter": "r33drum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24373102947,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51538128557,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 5989513477,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 72131208610,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9493199624,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 107006946999,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 12353093513,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 32088583721,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 54299398751,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 45617820200,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 211677715438,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 17146066951,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 22277193587,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27787545215,
+        "rshares": 143431864,
+        "voter": "borntowin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 609312338,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 523416152,
+        "rshares": 1125051142,
+        "voter": "bofadeez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 100022771,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 57276142,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 328256060,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191533186325,
+        "rshares": 63775214,
+        "voter": "laissezfairedr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 66697195,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 7960548410,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 539814268751,
+        "rshares": 376001676,
+        "voter": "manicmidnight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 58682093,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 58914198,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 38710389758,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 57980741,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55261899,
+        "voter": "shakimclark7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110864068340,
+        "rshares": 75377250,
+        "voter": "powercouple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 472082273,
+        "rshares": 55618704,
+        "voter": "jaypillagara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1709208580,
+        "rshares": 53912690,
+        "voter": "shax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 580482162746,
+        "rshares": 53846159,
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "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": 50326964582800,
+    "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-08-23T18:55:27",
+    "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.730 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dennygalindo-re-charlieshrem-charlie-shrem-is-now-on-steemit-20160816t185524881z",
+    "post_id": 839374,
+    "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": 14765040488827,
+        "rshares": 29186049220380,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 623996958321,
+        "voter": "justin"
+      },
+      {
+        "percent": "9900",
+        "reputation": 20297981245452,
+        "rshares": 5881098331094,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4855865727368,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "9800",
+        "reputation": 1284750610881,
+        "rshares": 2454399166148,
+        "voter": "adm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2467985030,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2995309863,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 567154894,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 41750226248,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1323006745,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170612336,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "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": 77590508815145,
+        "rshares": 130506632815,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 106890789634,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 9971301073,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 9400027589,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22504728466704,
+        "rshares": 61646469732,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 219824678620,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 685101796,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 394148198,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 32404401324,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 582451688,
+        "voter": "alorya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1059033052,
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 16011014560,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 454752565,
+        "voter": "celestial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176566848345,
+        "rshares": 188226473,
+        "voter": "andyinspace"
+      }
+    ],
+    "author": "adm",
+    "author_reputation": 1284750610881,
+    "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-08-22T22:50:42",
+    "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.865 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225039946z",
+    "post_id": 825299,
+    "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": 70486967561347,
+        "rshares": 40261554792719,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3991861275580,
+        "rshares": 48124579959,
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 282481919881,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 25822874684,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 10283360038,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24290958657,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8330279054423,
+        "rshares": 62458381858,
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 71100938161,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61288297136,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 117389810764,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5121130339,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 7881221000,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10377897348,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 49642777135,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37347150,
+        "rshares": 115874018,
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 37453482500,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 4096208838,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8375659361,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 108836213411,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 195118598,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 61289460,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 657881264,
+        "rshares": 56939384,
+        "voter": "dcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 130434883,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7370152734,
+        "rshares": 50468741,
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54957783711,
+        "rshares": 50353356,
+        "voter": "takemyfive"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 17701690051649,
+    "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-08-31T16:23:00",
+    "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_hbd": 10000,
+    "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z",
+    "post_id": 968989,
+    "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": 32455846463901,
+        "rshares": 14824916004472,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28851426273,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14660905118594,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5645842591970,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3085011784,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3744178588,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 708945412,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52221628833,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1653774577,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213265420,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "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": 376960001789,
+        "rshares": 5519141498,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 151618531853,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13114605961,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 137573239907,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 586358175,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 128697036640,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 269379546,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 13452877972,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51529058014,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1215490422294,
+        "rshares": 5729767206,
+        "voter": "inti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1757805373821,
+        "rshares": 14254612849,
+        "voter": "deanero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 1646059150,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 116253105,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61980222,
+        "voter": "breastsono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 2359201317,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824556048979,
+        "rshares": 897505702,
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 17530292877,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4300748049,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1246651487,
+        "rshares": 54634677,
+        "voter": "stephenm"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 5743108025054,
+    "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-08-23T04:52:51",
+    "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_hbd": 10000,
+    "permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z",
+    "post_id": 829289,
+    "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": 83122046,
+        "rshares": 17735818038199,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2091363547583,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 17881645967595,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2473129069,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3001847911,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562495952,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 42273561181,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1325647967,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170794809,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25065017424303,
+        "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": 67344245671,
+        "rshares": 17452286451,
+        "voter": "marklyford"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 496208892,
+        "rshares": -118201007,
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1259875358,
+        "voter": "shadowspub"
+      }
+    ],
+    "author": "michaelx",
+    "author_reputation": 9186061899783,
+    "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-08-27T21:35:15",
+    "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.510 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-stellabelle-re-steemed-re-dantheman-re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t213500128z",
+    "post_id": 911740,
+    "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": 14765040488827,
+        "rshares": 29864685009305,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86527803731,
+        "rshares": 189574335690,
+        "voter": "friend2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 639212703934,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4968734358586,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3084986672,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3744144508,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 708943618,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "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": 45329454600539,
+        "rshares": 154121482815,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 130134738142,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7603352468101,
+        "rshares": 39444938394,
+        "voter": "tiffjane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 713529357997,
+        "rshares": 851256740,
+        "voter": "cousteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 5673774261,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 33726244522,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 718346410,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4965349454737,
+        "rshares": 20128929530,
+        "voter": "rznag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 51125341014,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1954050724,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 921725518804,
+        "rshares": 2194116353,
+        "voter": "xroni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 403314436,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11861754844312,
+        "rshares": 11535444605,
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68479560828,
+        "rshares": 127023220,
+        "voter": "harrycoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34338510332,
+        "rshares": 61084860,
+        "voter": "mndstruct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 33194586794,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17071371161,
+        "rshares": 230160266,
+        "voter": "mefisto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 295472992623,
+        "rshares": 1059907708,
+        "voter": "iamrohitkgupta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 822962542150,
+        "rshares": 71181331,
+        "voter": "emilyjane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3077370360823,
+        "rshares": 133481361,
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 50281530,
+        "voter": "topslim"
+      }
+    ],
+    "author": "condra",
+    "author_reputation": 16743994030016,
+    "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-08-22T14:23:27",
+    "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_hbd": 10000,
+    "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z",
+    "post_id": 817341,
+    "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": 14765040488827,
+        "rshares": 29864685009305,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 639212703934,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4968734358586,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2467989338,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2995315607,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 567154894,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "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": 45329454600539,
+        "rshares": 147833075316,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 33749012863,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8813120108,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 177253189627,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2017416249960,
+        "rshares": 7958656381,
+        "voter": "kristylynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214076084605,
+        "rshares": 250542489,
+        "voter": "nat4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826385508354,
+        "rshares": 2869166387,
+        "voter": "dercoco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 403314436,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 33194586794,
+        "voter": "thecurator"
+      }
+    ],
+    "author": "blueorgy",
+    "author_reputation": 21815260714191,
+    "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-08-22T16:39:03",
+    "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.092 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z",
+    "post_id": 819413,
+    "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": 14765040488827,
+        "rshares": 29864685009305,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 639212703934,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4968734358586,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11700424464,
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 18794778971,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 106925555861,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79027340053,
+        "rshares": 278001908,
+        "voter": "mirrax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17506904849,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "3300",
+        "reputation": 22504728466704,
+        "rshares": 20129459504,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 714503005,
+        "rshares": 100129802,
+        "voter": "cheetah33"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 403314436,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 737268128,
+        "rshares": 100111679,
+        "voter": "cheetah34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "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": 22504728466704,
+    "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-08-22T19:46:09",
+    "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.371 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601",
+    "post_id": 822331,
+    "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": 83122046,
+        "rshares": 17387563883098,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2050320927937,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 17506821189546,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2472687085,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3001252537,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562430414,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "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": 642608867428,
+        "rshares": 5163277168,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 4146107046,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 100022771,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7788315865,
+        "rshares": 58035101,
+        "voter": "aaronjwhite"
+      }
+    ],
+    "author": "knircky",
+    "author_reputation": 3320684282022,
+    "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-08-27T03:22:36",
+    "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_hbd": 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": 900160,
+    "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"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 29186049220380,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 623996958321,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4855865727368,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 154146763309,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -2683858617900,
+        "rshares": -5787205072,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 106890789634,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 9733889143,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 9400027589,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22504728466704,
+        "rshares": 61646469732,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 219824678620,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 685101796,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 394148198,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 32404401324,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 16011014560,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176566848345,
+        "rshares": 188226473,
+        "voter": "andyinspace"
+      }
+    ],
+    "author": "anyx",
+    "author_reputation": 25849925929525,
+    "beneficiaries": [],
+    "body": "This user is a serial plagiarist who has taken to spinning articles to plagiarize, instead of providing sources and discussion.\n\n!cheetah ban",
+    "body_length": 141,
+    "cashout_time": "2016-08-22T22:56:39",
+    "category": "workout",
+    "children": 1,
+    "created": "2016-08-15T22:56:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"workout\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-15T22:56:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 35271450211375,
+    "parent_author": "dopezzz123",
+    "parent_permlink": "why-muscles-get-sore",
+    "pending_payout_value": "208.151 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dopezzz123-why-muscles-get-sore-20160815t225638685z",
+    "post_id": 825378,
+    "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#@anyx/re-dopezzz123-why-muscles-get-sore-20160815t225638685z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 83122046,
+        "rshares": 17387563883098,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "500",
+        "reputation": 70486967561347,
+        "rshares": 2478143633692,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 17508649345673,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2472598979,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3001139259,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562419226,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 42178757456,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1325381537,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170789230,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 497247302,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 737445199,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230273601,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 38894121671,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 7143405548,
+        "voter": "goose"
+      }
+    ],
+    "author": "thylbom",
+    "author_reputation": 843226172873,
+    "beneficiaries": [],
+    "body": "I definitely agree that the password recovery problem is a good one to work on. People who have been involved in crypto for some time are almost instinctively aware of the importance of safeguarding private keys, but \"mainstream\" adopters are accustomed to a world of hand-holding where the powers that be can bail you out if you are careless, stupid, forgetful or unlucky. If a method can be devised to facilitate recovery without sacrificing security, it can avoid problems of negative user experience that could hurt the platform's prospects for widespread adaption.",
+    "body_length": 569,
+    "cashout_time": "2016-08-26T21:34:42",
+    "category": "witness-category",
+    "children": 1,
+    "created": "2016-08-19T21:34:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"witness-category\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T21:34:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 37471570441471,
+    "parent_author": "blocktrades",
+    "parent_permlink": "blocktrades-witness-report-for-3rd-week-of-august",
+    "pending_payout_value": "204.392 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z",
+    "post_id": 896285,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "BlockTrades Witness Report for 3rd Week of August",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/witness-category/@blocktrades/blocktrades-witness-report-for-3rd-week-of-august#@thylbom/re-blocktrades-blocktrades-witness-report-for-3rd-week-of-august-20160819t213441316z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 83122046,
+        "rshares": 17735315160760,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 17865766992651,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3091007147,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3751778512,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703064185,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52778799199,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1656856120,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213490026,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621592296,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 923609344,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287848982,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 27692743706,
+        "voter": "r4fken"
+      }
+    ],
+    "author": "r4fken",
+    "author_reputation": -2499740471746,
+    "beneficiaries": [],
+    "body": "Do I understand correctly that you're referencing the initial \"mining\" by a select group of devs and friends, resulting in \"overwhelming control\" by means of vests now?\nOr am I just imagining things? :)",
+    "body_length": 202,
+    "cashout_time": "2016-08-27T09:06:27",
+    "category": "philosophy",
+    "children": 0,
+    "created": "2016-08-20T09:06:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"philosophy\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T09:07:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 35692802942928,
+    "parent_author": "steemed",
+    "parent_permlink": "re-dantheman-our-corrupt-sense-of-fairness-20160820t035220528z",
+    "pending_payout_value": "196.246 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z",
+    "post_id": 903103,
+    "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#@r4fken/re-steemed-re-dantheman-our-corrupt-sense-of-fairness-20160820t090630202z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1915876518994,
+        "rshares": 727407423660,
+        "voter": "erath"
+      },
+      {
+        "percent": "100",
+        "reputation": 32455846463901,
+        "rshares": 644958517124,
+        "voter": "smooth"
+      },
+      {
+        "percent": "49",
+        "reputation": 85602977273,
+        "rshares": 28855608662,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "4900",
+        "reputation": 8151223409709,
+        "rshares": 8486664643623,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 6370652360778,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 428017035820,
+        "rshares": 82613356260,
+        "voter": "friend5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9800209121307,
+        "rshares": 6571978360124,
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2470238755,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2998129153,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 567603623,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 41948298509,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1324164960,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170709221,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1813610822120,
+        "voter": "joseph"
+      },
+      {
+        "percent": "100",
+        "reputation": 83941319998,
+        "rshares": 108871922542,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158487994237,
+        "rshares": 51208392605,
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "5200",
+        "reputation": 1082239289637,
+        "rshares": 139867989371,
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23744414677575,
+        "rshares": 2942087618871,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1829863145814,
+        "rshares": 728571343037,
+        "voter": "marginal"
+      },
+      {
+        "percent": "9700",
+        "reputation": 82600290949846,
+        "rshares": 937174079758,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2369366055877,
+        "rshares": 76036949216,
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 496873319,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 725575461,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230145753,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 410807696946,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 9521769889,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19196002726,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 47541496466,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 3892379945,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 129268320437,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 92995154682,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 213701132994,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17777496768,
+        "rshares": 276395602,
+        "voter": "carlgetalada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632946346,
+        "rshares": 28736613783,
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 5894409181,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 41089533337,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8483258053,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13090894039053,
+        "rshares": 65583674268,
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9859494596,
+        "rshares": 1259117194,
+        "voter": "chrisj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 3704243578,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1403427793295,
+        "rshares": 14629758637,
+        "voter": "artakan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 6012406044,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 17402129371,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4183080661,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35472659687,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 3978086691,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 22725564707,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 24344116072,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3679188122176,
+        "rshares": 6603057948,
+        "voter": "najoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 12993857503,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4872113322,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 2818362970,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 2636752145,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 3558963294,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 377494461,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 26914242849,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 1692339912,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 797336799,
+        "rshares": 56779364,
+        "voter": "negoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97476072754,
+        "rshares": 50997147,
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6483658953,
+        "rshares": 50258926,
+        "voter": "doze49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269520578215,
+        "rshares": 61941319,
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52891748,
+        "voter": "onlyspeakslies"
+      }
+    ],
+    "author": "lukestokes",
+    "author_reputation": 36884147263377,
+    "beneficiaries": [],
+    "body": "`dictatorship`,  `hindenburg`, `titanic` and a hitler meme are all a bit too over the top for me. I'm glad you're voicing your concerns, but a \"Dan must be stopped\" call to action against the very person who created what we are all enjoying isn't (IMO) the best approach for having a respectful dialogue about the issue. It seems many are already discussing the issue on github and voicing their disapproval there. We'll see where it goes from here, and it's definitely something to keep an eye on. For that, I thank you, but I won't give you my vote on this post because I think the tone is counter productive to a rational, open conversation about the issue. I may be wrong and maybe a more alarmist tone is called for. As with many things, we shall see over time.",
+    "body_length": 766,
+    "cashout_time": "2016-08-24T04:58:03",
+    "category": "steem",
+    "children": 38,
+    "created": "2016-08-17T04:58:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steem\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T12:34:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31034930180364,
+    "parent_author": "bacchist",
+    "parent_permlink": "dan-needs-to-be-stopped",
+    "pending_payout_value": "164.026 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-bacchist-dan-needs-to-be-stopped-20160817t045803929z",
+    "post_id": 847280,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Dan needs to be stopped",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@bacchist/dan-needs-to-be-stopped#@lukestokes/re-bacchist-dan-needs-to-be-stopped-20160817t045803929z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28300878156066,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "100",
+        "reputation": 32455846463901,
+        "rshares": 636585679281,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 6549727125575,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099954800,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3763461212,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690406462,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54138246944,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661302953,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213684579,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8980249791516,
+        "rshares": 251709705259,
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2511125853605,
+        "voter": "recursive"
+      },
+      {
+        "percent": "100",
+        "reputation": 83941319998,
+        "rshares": 114398906816,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622843501,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967387415,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288174518,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 71291626568,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5223833163,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632564148,
+        "rshares": 4999497773,
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2798458785,
+        "rshares": 63437792,
+        "voter": "tommycordero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11501604178,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949895649943,
+        "rshares": 615797359,
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988835724525,
+        "rshares": 381939549,
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 353288883728,
+        "rshares": 444650943,
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 807251193,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 10978877529,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2610482432,
+        "voter": "robcichocki"
+      }
+    ],
+    "author": "recursive",
+    "author_reputation": 9028537022578,
+    "beneficiaries": [],
+    "body": "> This state of being creates a paradox for those with aims to change the world. If you are at complete peace with the way things are, then what motive is there to change the world? On what basis should you choose to act? This is the very heart of economics, the study of human action. This is the root of my current internal conflict.\n\nMahayana (Great Vehicle) buddhism may have an answer to that apparent conflict you are experiencing. According to the Mahayana tradition, true enlightenment cannot be reached merely by cultivating inner peace and eliminating delusions and suffering in isolation of other people, because doing so remains a selfish endeavor that implies that one hasn't truly reached the state of selflessness that underlies enlightenment. \n\nInstead, at some point along the path to enlightenment, one realizes that one's true nature is that of being conscious: a pure form of benevolent consciousness without shape and boundaries, and that permeates all that is. At that point, one doesn't seek anymore to deliver from suffering that fictious \"ego\" entity that has long been identified as a delusion, but instead seeks to deliver all of consciousness from suffering, including all sentient beings. This intrinsic benevolence of consciousness is what we call \"compassion\", and is the central tenet of Mahayana tradition. It is both the ultimate goal and the mean to reach that goal. By cultivating compassion, one reveals his compassionate nature, and this compassion is what will eventually lead to a contradiction with the ego and materialistic delusions, and their dissolution. \n\nFrom that perspective, he who seeks enlightenment will first accept reality as it is, and reach what first feels as a form of blissful and permanent internal peace (this is typically what Hinayana / Small Vehicule buddhism think is enlightenment, and this includes some famous western self-help authors), but will soon realize that there is one type of suffering that transcends attachment and the delusion of self and that can't be addressed by meditation and spiritual practice alone but on the contrary become more and more sharp: the suffering of seeing others suffering within this reality. This is because suffering is a noble truth, a truth that can't be denied, ignored or accepted but simply acknowledged as being true. This leads to a paradox where embracing reality leads to embracing a form of suffering that can only be eliminated by altering reality which cannot be achieved if one simply embraces reality. The only solution to this apparent paradox is to realize that reality is impermanent and can be embraced while being altered. It should be accepted in the present so that one may live free from delusions and attachment, and reduce suffering to the prime denominator of the quintessential and universally experienced suffering of being alive, while being actively shaped with all one's will and energy into a future reality where other sentient beings suffer less.\n\nUnder the mahayana assumption that consciousness is intrinsically benevolent and unable not to experience compassion as it gets closer to enlightenment, acting with all one's will and energy against the corruption that permeates reality and increases suffering of other sentient beings is not only consistent, but the one and only true way to enlightenment.\n\nArguably, government is one such big chunk of pervasive corruption that has spread like weed in our consensual reality, and creates an inordinate amount of suffering. From that perspective, being anarchist isn't only a political view, it is a statement of compassion. Ask the Dalai Lama what he thinks about governments...",
+    "body_length": 3669,
+    "cashout_time": "2016-09-08T18:48:39",
+    "category": "philosophy",
+    "children": 1,
+    "created": "2016-09-01T18:48:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"philosophy\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T19:11:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 38538789887465,
+    "parent_author": "dantheman",
+    "parent_permlink": "why-do-we-fight-to-change-the-world",
+    "pending_payout_value": "160.617 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z",
+    "post_id": 1088538,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Why do we fight to change the world?",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/philosophy/@dantheman/why-do-we-fight-to-change-the-world#@recursive/re-dantheman-why-do-we-fight-to-change-the-world-20160901t184948317z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1133069631465,
+        "rshares": 31543759293106,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502465820159,
+        "rshares": 22090812048,
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 28897024316,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19410587962,
+        "rshares": 1953557909,
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1977162029930,
+        "rshares": 1708472880,
+        "voter": "litrbooh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1188786726,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18081706207,
+        "rshares": 53257299,
+        "voter": "shvedas"
+      }
+    ],
+    "author": "val-a",
+    "author_reputation": 1133069631465,
+    "beneficiaries": [],
+    "body": "\u041f\u0440\u043e\u0447\u0438\u0442\u0430\u0439\u0442\u0435 \u0435\u0449\u0435 \u0440\u0430\u0437 \u0432\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u044b:\n> \u0414\u043e\u0445\u043e\u0434 _\u043f\u0435\u0440\u0432\u044b\u043c_ _\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c_ \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u044b \u0432\u044b\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0437\u0430 \u0441\u0447\u0435\u0442 \u0432\u043a\u043b\u0430\u0434\u043e\u0432 \u043f\u043e\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432.\n\n\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 _\u043f\u0435\u0440\u0432\u044b\u043c_ \u0438 _\u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c_ (\u043f\u043e\u0434 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438 \u043f\u043e\u0434\u0440\u0430\u0437\u0443\u043c\u0435\u0432\u0430\u044e\u0442\u0441\u044f \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b), \u0430 \u0432 \u0441\u043b\u0443\u0447\u0430\u0435 \u0421\u0442\u0438\u043c\u0430 \u0434\u043e\u0445\u043e\u0434 \u043f\u043e\u043b\u0443\u0447\u0430\u044e\u0442 \u043d\u0435 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b, \u0430 \u0430\u0432\u0442\u043e\u0440\u044b \u043e\u0442 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043d\u0438 \u043a\u043e\u043f\u0435\u0439\u043a\u0438 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0435\u0436\u0434\u0435 \u043e\u043d\u0438 \u043d\u0430\u0447\u043d\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u0434\u043e\u0445\u043e\u0434. \u0418\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u044b \u0442\u0435\u043e\u0440\u0435\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0445\u043e\u0434, \u0435\u0441\u043b\u0438 \u0446\u0435\u043d\u0430  STEEM, SP \u0438\u043b\u0438 SD \u0432\u044b\u0440\u0430\u0441\u0442\u0435\u0442, \u043d\u043e \u044d\u0442\u043e\u0433\u043e \u0438\u043c \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043e\u0431\u0435\u0449\u0430\u0435\u0442 (\u0432 \u043e\u0442\u043b\u0438\u0447\u0438\u0438 \u043e\u0442 \u043f\u0438\u0440\u0430\u043c\u0438\u0434). \u041a \u0442\u043e\u043c\u0443 \u0436\u0435 \u0430\u0432\u0442\u043e\u0440\u0430\u043c \u0432\u044b\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0433\u043e\u043d\u043e\u0440\u0430\u0440 \u043d\u0435 \u0441 \u0434\u0435\u043d\u0435\u0433 \u043d\u043e\u0432\u044b\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432, \u0430 \u0440\u0430\u0437\u043c\u044b\u0442\u0438\u0435\u043c \u0434\u043e\u043b\u0438 \u0432\u0441\u0435\u0445 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432 \u0432 STEEM \u0438\u043b\u0438 \u0432 SP, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0438 \u0434\u043e\u043b\u0438 \u043a\u0438\u0442\u043e\u0432. \u0414\u043e\u0445\u043e\u0434 \u043a\u0438\u0442\u043e\u0432, \u0438\u043b\u0438 \u043b\u044e\u0431\u043e\u0433\u043e, \u043a\u0442\u043e \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043b \u043d\u0430 \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u043c \u044d\u0442\u0430\u043f\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u043d\u043e\u0432\u044b\u0445 \u0438\u043d\u0432\u0435\u0441\u0442\u0438\u0446\u0438\u0439 \u0432 \u0442\u043e\u0439 \u0436\u0435 \u0441\u0442\u0435\u043f\u0435\u043d\u0438 \u043a\u0430\u043a \u0438 \u0432 \u043b\u044e\u0431\u043e\u0439 \u0434\u0440\u0443\u0433\u043e\u0439 \u043a\u0440\u0438\u043f\u0442\u043e\u0432\u0430\u043b\u044e\u0442\u0435.\n\n\u0412\u043c\u0435\u0441\u0442\u043e \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f \u0441 \u043f\u0440\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439, \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438\u0432\u043d\u0435\u0435 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u044c \u0441 \u043e\u0431\u044b\u043a\u043d\u043e\u0432\u0435\u043d\u043d\u044b\u043c \u0441\u0442\u0430\u0440\u0442\u0430\u043f\u043e\u043c, \u0432\u043e\u0437\u044c\u043c\u0438\u0442\u0435 \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0422\u0432\u0438\u0442\u0435\u0440 - \u043f\u043e \u0431\u043e\u043b\u044c\u0448\u043e\u043c\u0443 \u0441\u0447\u0435\u0442\u0443 \u043e\u043d\u0438, \u044f\u0432\u043b\u044f\u0441\u044c \u0443\u0431\u044b\u0442\u043e\u0447\u043d\u043e\u0439 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0435\u0439 (\u0434\u0430 \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u0438 10 \u043b\u0435\u0442 \u0438 \u043e\u043d\u0430 \u0434\u043e \u0441\u0438\u0445 \u043f\u043e\u0440 \u0443\u0431\u044b\u0442\u043e\u0447\u043d\u0430), \u043f\u043b\u0430\u0442\u044f\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c (\u043d\u0435 \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e, \u0430 \u043a\u043e\u0441\u0432\u0435\u043d\u043d\u043e, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u043e\u043f\u043b\u0430\u0447\u0438\u0432\u0430\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432 \u0434\u0430\u0442\u0430\u0446\u0435\u043d\u0442\u0440\u0435) \u043f\u0440\u043e\u0434\u0430\u0432\u0430\u044f \u0434\u043e\u043b\u044e/\u0430\u043a\u0446\u0438\u0438 \u0444\u0430\u0443\u043d\u0434\u0435\u0440\u043e\u0432 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u0430\u043c. \u041f\u043e\u0447\u0435\u043c\u0443 \u0430\u043a\u0446\u0438\u0438 \u0442\u0432\u0438\u0442\u0435\u0440\u0430 \u0441\u0442\u043e\u044f\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0443\u043b\u044f? \u041f\u043e\u0447\u0435\u043c\u0443 \u0422\u0432\u0438\u0442\u0435\u0440 \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043d\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439?\n\n\u0418\u043b\u0438 \u0441\u0440\u0430\u0432\u043d\u0438\u0442\u0435 \u0441\u0442\u0438\u043c \u0441 \u0431\u0438\u0442\u043a\u043e\u0438\u043d\u043e\u043c - \u0441 \u0442\u0430\u043a\u0438\u043c \u0436\u0435 \u0443\u0441\u043f\u0435\u0445\u043e\u043c \u0438 \u0431\u0438\u0442\u043a\u043e\u0438\u043d \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0437\u0432\u0430\u0442\u044c \u0444\u0438\u043d\u0430\u043d\u0441\u043e\u0432\u043e\u0439 \u043f\u0438\u0440\u0430\u043c\u0438\u0434\u043e\u0439 - \u0432\u0435\u0434\u044c \u043f\u043b\u0430\u0442\u0438\u0442 \u0436\u0435 \u043c\u0430\u0439\u043d\u0435\u0440\u0430\u043c \u0434\u0435\u043d\u044c\u0433\u0430\u043c\u0438 \u0438\u043d\u0432\u0435\u0441\u0442\u043e\u0440\u043e\u0432.\n\n(p.s. \u043f\u0440\u043e\u0433\u043e\u043b\u043e\u0441\u0443\u044e \u0437\u0430 \u0441\u0435\u0431\u044f, \u0447\u0442\u043e \u0431\u044b \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043a\u0430\u043a \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c SP \u0434\u043b\u044f \u0440\u0435\u043a\u043b\u0430\u043c\u044b \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u043e\u0432)",
+    "body_length": 1470,
+    "cashout_time": "2016-08-31T03:37:03",
+    "category": "ru-steemit",
+    "children": 12,
+    "created": "2016-08-24T03:37:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"ru-steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T03:37:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31599651204284,
+    "parent_author": "litrbooh",
+    "parent_permlink": "budushee-steemit-nuzhna-li-reklama-v-steemit",
+    "pending_payout_value": "149.954 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z",
+    "post_id": 961523,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "\u0411\u0443\u0434\u0443\u0449\u0435\u0435 STEEMIT. \u041d\u0443\u0436\u043d\u0430 \u043b\u0438 \u0440\u0435\u043a\u043b\u0430\u043c\u0430 \u0432 STEEMIT?",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/ru-steemit/@litrbooh/budushee-steemit-nuzhna-li-reklama-v-steemit#@val-a/re-litrbooh-budushee-steemit-nuzhna-li-reklama-v-steemit-20160824t033703760z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "-400",
+        "reputation": 0,
+        "rshares": -6795625112,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 164482168912,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5468384423175,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4945364226662,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4656370926104,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3100766695,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3764486632,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690539083,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7221866970964,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54261605662,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 30390370257,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661700819,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213710460,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 38600533043,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 12269445334,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2651243328828,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1820914592,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1066518981517,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9578311657,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2440314179,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1336788173111,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 749198663628,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622955105,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1039484860678,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967591200,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2783598325676,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 7288280988,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288213327,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "100",
+        "reputation": 76633033946568,
+        "rshares": 14796343926,
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 8972462707,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 715648773415,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 854401132096,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5470652472,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 726664133144,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 16798528489,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 627954645291,
+        "rshares": 3868778895,
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 56779104986,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 239176165083,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 71220031567,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 608622985586,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4225750906887,
+        "rshares": 73303668582,
+        "voter": "beerbloke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 65759745683,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 53884344664,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2663003206978,
+        "rshares": 10426970985,
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2264268111917,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 57529825067,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4476883095,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 306456223000,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 501259458185,
+        "voter": "infovore"
+      },
+      {
+        "percent": "5000",
+        "reputation": 14028106211346,
+        "rshares": 26315426014,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "4900",
+        "reputation": 1050758001641,
+        "rshares": 11630218162,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 648138422927,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 69137542683,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 35291674341,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 360818648,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 84518713331,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1600943037611,
+        "rshares": 2936111289,
+        "voter": "psychonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 318074226526,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4261065978,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 140535670338,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 38348578159,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254364900,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "8900",
+        "reputation": 2222945795019,
+        "rshares": 116908007408,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2812431753,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 13896170396,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14528410967,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "1000",
+        "reputation": -2499740471746,
+        "rshares": 2046170935,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 72655151512,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 96443143963,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 40575184405,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1287519621,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 963454351109,
+        "rshares": 1827599826,
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 21069395024,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "9300",
+        "reputation": 6030999377480,
+        "rshares": 16233014225,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "0",
+        "reputation": 9968156990,
+        "rshares": 1214668585,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3259008743,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14826352016829,
+        "rshares": 38541756150,
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 241033184,
+        "voter": "bobkillaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 9142372606,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 306656746516,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1616992532719,
+        "rshares": 2482350068,
+        "voter": "steemgrindr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3860285221,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 270410711489,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14544132145555,
+        "rshares": 9763976269,
+        "voter": "pcste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 231813853890,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 9172859646,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 35903507776,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5883461278385,
+        "rshares": 37542098641,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 21424668654,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 9888950976,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 17018462501,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 38704462901,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 10716559196,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 901348001111,
+        "rshares": 2850823006,
+        "voter": "tjpezlo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13269181041,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 24054735183,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8561737881023,
+        "rshares": 18688350126,
+        "voter": "pixielolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26483585759,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 3431378627,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 89283515898,
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 73511111757,
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2730766591183,
+        "rshares": 1475564323,
+        "voter": "handmade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9986529692,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4245841619,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "5600",
+        "reputation": 2344911104009,
+        "rshares": 6013694326,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "100",
+        "reputation": 66791976065,
+        "rshares": 2112721437,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 4344750511,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 11208435898,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311638758804,
+        "rshares": 315529006,
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 8668714921,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 2402681750,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 891327,
+        "rshares": 4722016641,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11861754844312,
+        "rshares": 13978892123,
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 21216135219,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289024216569,
+        "rshares": 360104574,
+        "voter": "herbertmueller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641833483915,
+        "rshares": 2790597203,
+        "voter": "lightsplasher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 710891266725,
+        "rshares": 760244820,
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7124799262,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 59327261726,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6861320744353,
+        "rshares": 3673690786,
+        "voter": "anarchyhasnogods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5742611366,
+        "rshares": 1481195780,
+        "voter": "indykpol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 302329407,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 122637921,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1623996599,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8237809906,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8298658614343,
+        "rshares": 6391005392,
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 3425466270,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 986609023336,
+        "rshares": 293609359,
+        "voter": "pollux.one"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 1184448867,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 7304947957,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11502232563,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 17585035067,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 28036909101,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 45121178435,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66712446374,
+        "rshares": 249472621,
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2914432081,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 3648710236,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 4721456837,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 185899977514,
+        "rshares": 146618463,
+        "voter": "jens-jung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351488360313,
+        "rshares": 116558699,
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 54685141,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 70593457,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160159881697,
+        "rshares": 1584386308,
+        "voter": "dirkzett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3302532614,
+        "rshares": 66920614,
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73556721290,
+        "rshares": 71584544,
+        "voter": "justusagenstum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 140430106,
+        "voter": "angelius"
+      }
+    ],
+    "author": "donkeypong",
+    "author_reputation": 96486114508046,
+    "beneficiaries": [],
+    "body": "## I strongly oppose the \"5 votes a day\" target. \n\nI thought one of the greatest changes to be implemented so far was when that target INCREASED. People have not been so stressed in the last month or two about curation rewards; they just vote for what they like and have fun. \n\nI don't think Steemit will be FUN anymore if there is an expected target of 5 votes per day. People will spend much less time on the site. They will vote for predictably popular content. And we will be right back where we were a couple of months ago. \n\nNo, it will be worse than that. Because 20 votes a day used to stress people out. 5 votes a day? NO ONE can do any real curation under that scheme.\n\nAs an individual and an established author, the 5 votes a day could be great for me. If we go back to the days when everybody upvoted the same posts, then maybe I'd get all those votes again. I could quit my job and write for Steemit full time. \n\nAnd we'd go back to the days when emerging authors and artists got far fewer votes and rewards. \n\nAs far as curation and voting bots, they are being used for very good purposes also. Rather than turning our tails and running away from them, why don't we use them for the greater good? I think the mega-whales' curation teams are doing a far better job than ever before at redistributing rewards; I make nothing from being involved in that effort, but I think it is working quite well. Give the vote sliders and the voting bots more time; Steemit's front page is finally diversifying and newer people are getting rewards like never before. \n\nOne more thing: Redistribution of Steemit's resources from big whale accounts to the masses MUST be one of our top priorities. How does this help? I understand that big whale accounts may make less on curation rewards, but I think few of them are concerned with this anymore; they're trying to channel their votes to worthy posters. They have recognized that their big stakes will be worth nothing unless we make this thing succeed.\n\nUnder this scheme, the big whales will need to sell the max on exchanges every week and other people buy their Steem for any real redistribution to occur. That will hold down the price and our competitors will zoom right by us. \n\nSteem Team, I understand you are trying to solve real problems with these tweaks. I don't normally comment on them because I feel that Steemit is good enough that there is some margin for error with these back-end decisions. But this is far, far too severe a change for the platform to absorb.\n\n## If I am wrong, then I'd love to hear that from the community, and I am open to learning from other views. Give us time for this discussion, please, before forcing through such a change. Until then, I oppose this change.",
+    "body_length": 2749,
+    "cashout_time": "2016-09-09T21:16:27",
+    "category": "steem",
+    "children": 106,
+    "created": "2016-09-02T21:16:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steem\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T21:19:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 42304792392028,
+    "parent_author": "steemitblog",
+    "parent_permlink": "announcing-steem-0-14-0-release-candidate",
+    "pending_payout_value": "144.083 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z",
+    "post_id": 1103660,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Announcing Steem 0.14.0 Release Candidate",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@steemitblog/announcing-steem-0-14-0-release-candidate#@donkeypong/re-steemitblog-announcing-steem-0-14-0-release-candidate-20160902t211609578z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 25590936673298,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4503240944593,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3093334843,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3754789393,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703475396,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53137822427,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1658013141,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213534945,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621926043,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 945621921,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287928458,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1132310339390,
+        "rshares": 52651564,
+        "voter": "meredithpetran"
+      }
+    ],
+    "author": "jhermanbeans",
+    "author_reputation": 3507512667936,
+    "beneficiaries": [],
+    "body": "Fascinating world. Can't wait to see where it goes!",
+    "body_length": 51,
+    "cashout_time": "2016-08-30T01:17:00",
+    "category": "horror",
+    "children": 0,
+    "created": "2016-08-23T01:17:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"horror\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-23T01:17:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 30158646716022,
+    "parent_author": "senderos",
+    "parent_permlink": "the-nightmare-song",
+    "pending_payout_value": "132.545 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-senderos-the-nightmare-song-20160823t011659950z",
+    "post_id": 944107,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Nightmare Song",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/horror/@senderos/the-nightmare-song#@jhermanbeans/re-senderos-the-nightmare-song-20160823t011659950z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 31588356739639,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726201087,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524113216,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 820980926,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66047512415,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996555438,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256574080,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5893489774073,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750139848,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168034456,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346061156,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 394226217606,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "3000",
+        "reputation": 16234753830016,
+        "rshares": 24215364511,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2042269341790,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 8944971271,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": -39372262885,
+        "rshares": 52207362,
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958503,
+        "rshares": 58804600,
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 14292459528,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 39105503792,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96725733083,
+        "rshares": 120190171,
+        "voter": "emeline"
+      }
+    ],
+    "author": "luminousvisions",
+    "author_reputation": 3573461197670,
+    "beneficiaries": [],
+    "body": "### @dantheman ... you just downvoted my comment?\n\nwhat is that all about? what's wrong with it?\n\n#### I'm just suggestion a solution and in return for offering my help ... you downvote me?!?\n\n\nlook at what I've been up to;\n[little baby dolphin](https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school)\nI'm already working on a solution!",
+    "body_length": 369,
+    "cashout_time": "2016-09-18T03:56:51",
+    "category": "steemit",
+    "children": 22,
+    "created": "2016-09-11T03:56:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"dantheman\"],\"links\":[\"https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T06:14:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 40084767746965,
+    "parent_author": "luminousvisions",
+    "parent_permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z",
+    "pending_payout_value": "131.347 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z",
+    "post_id": 1204434,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@luminousvisions/re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 35321225455025,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104786127,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3769614077,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684099809,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54952584675,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663623227,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213807099,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 625076388,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973278654,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288376577,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22504728466704,
+        "rshares": 64567952685,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 741940212,
+        "rshares": 100261624,
+        "voter": "cheetah43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 760865102,
+        "rshares": 141949259,
+        "voter": "cheetah44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 760863473,
+        "rshares": 121089288,
+        "voter": "cheetah45"
+      }
+    ],
+    "author": "cheetah",
+    "author_reputation": 22504728466704,
+    "beneficiaries": [],
+    "body": "Warning! This user is on my black list, likely as a known plagiarist, spammer or ID thief. Please be cautious with this post!\nTo get off this list, please chat with us in the #steemitabuse-appeals channel in [steemit.chat](http://steemit.chat).",
+    "body_length": 244,
+    "cashout_time": "2016-09-13T06:15:21",
+    "category": "nsfw",
+    "children": 0,
+    "created": "2016-09-06T06:15:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T06:15:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 35452431954514,
+    "parent_author": "tatyanasvitsa",
+    "parent_permlink": "the-real-story-lesbian-love",
+    "pending_payout_value": "127.206 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-the-real-story-lesbian-love-20160906t061516",
+    "post_id": 1143691,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The real story lesbian love!",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/nsfw/@tatyanasvitsa/the-real-story-lesbian-love#@cheetah/re-the-real-story-lesbian-love-20160906t061516"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_results.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_tag.tavern.yaml
similarity index 80%
rename from hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_results.tavern.yaml
rename to hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_tag.tavern.yaml
index 906f35477968bdc9aaf5b09a6fe90067ed12c157..5e5e8d07da8197a8acd5eeec5ae9756d17e6e779 100644
--- a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_results.tavern.yaml
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/no_tag.tavern.yaml
@@ -1,5 +1,5 @@
 ---
-  test_name: Hivemind condenser_api.get_comment_discussions_by_payout no results test
+  test_name: Hivemind condenser_api.get_comment_discussions_by_payout patterns test
 
   marks:
     - patterntest
@@ -8,7 +8,7 @@
     - !include ../../common.yaml
 
   stages:
-    - name: get_comment_discussions_by_payout no results
+    - name: get_comment_discussions_by_payout
       request:
         url: "{service.proto:s}://{service.server:s}:{service.port}/"
         method: POST
@@ -18,11 +18,11 @@
           jsonrpc: "2.0"
           id: 1
           method: "condenser_api.get_comment_discussions_by_payout"
-          params: {"tag":"non_existing_tag","limit":100}
+          params: {}
       response:
         status_code: 200
         verify_response_with:
           function: validate_response:compare_response_with_pattern
           extra_kwargs:
-            method: "no_results"
+            method: "no_tag"
             directory: "condenser_api_patterns/get_comment_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/paginated.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/paginated.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..ab6affb6da40d891c9ec52ad4acb267007cfc2f4
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/paginated.orig.json
@@ -0,0 +1,396 @@
+[
+  {
+    "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"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/paginated.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/paginated.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..f04868c5e450871fb82463b6dfa0c3a7c16d0302
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/paginated.pat.json
@@ -0,0 +1,288 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 29864685009305,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 639212703934,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4968734358586,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2467989338,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2995315607,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 567154894,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "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": 45329454600539,
+        "rshares": 147833075316,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 33749012863,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8813120108,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 177253189627,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2017416249960,
+        "rshares": 7958656381,
+        "voter": "kristylynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214076084605,
+        "rshares": 250542489,
+        "voter": "nat4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826385508354,
+        "rshares": 2869166387,
+        "voter": "dercoco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 403314436,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 33194586794,
+        "voter": "thecurator"
+      }
+    ],
+    "author": "blueorgy",
+    "author_reputation": 21815260714191,
+    "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-08-22T16:39:03",
+    "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.092 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t163904911z",
+    "post_id": 819413,
+    "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": 14765040488827,
+        "rshares": 29864685009305,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 639212703934,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4968734358586,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11700424464,
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 18794778971,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 106925555861,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79027340053,
+        "rshares": 278001908,
+        "voter": "mirrax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17506904849,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "3300",
+        "reputation": 22504728466704,
+        "rshares": 20129459504,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 714503005,
+        "rshares": 100129802,
+        "voter": "cheetah33"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 403314436,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 737268128,
+        "rshares": 100111679,
+        "voter": "cheetah34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "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": 22504728466704,
+    "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-08-22T19:46:09",
+    "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.371 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-blocktalk-with-nexus-colin-cantrell-question-thread-20160815t194601",
+    "post_id": 822331,
+    "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"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/paginated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/paginated.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..4813d23f7793dadd613bf3e51e043a176d99b3b4
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/paginated.tavern.yaml
@@ -0,0 +1,30 @@
+---
+  test_name: Hivemind condenser_api.get_comment_discussions_by_payout patterns test
+
+  marks:
+    - patterntest # unlike in old version where page defining post (last from previous page) was always part of new page (along with others with the same
+                  # payout, potentially making it impossible to move forward with pages), new version always skips it, also has defined order for posts with
+                  # the same payout (previously random)
+
+  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: "condenser_api.get_comment_discussions_by_payout"
+          params: {"start_author":"condra","start_permlink":"re-jamtaylor-steemit-photo-challenge-4-winners-announcement-guest-judge-condra-20160815t142348222z","limit":2}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "paginated"
+            directory: "condenser_api_patterns/get_comment_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..4e2cd94ca3545eb69224b18aa39550f01d0024be
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit.orig.json
@@ -0,0 +1,3468 @@
+[
+  {
+    "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": "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": "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"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31588356739639",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726201087",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524113216",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "820980926",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66047512415",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996555438",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256574080",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5893489774073",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750139848",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168034456",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346061156",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394226217606",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "24215364511",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2042269341790",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8944971271",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52207362",
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58804600",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14292459528",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39105503792",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120190171",
+        "voter": "emeline"
+      }
+    ],
+    "author": "luminousvisions",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "### @dantheman ... you just downvoted my comment?\n\nwhat is that all about? what's wrong with it?\n\n#### I'm just suggestion a solution and in return for offering my help ... you downvote me?!?\n\n\nlook at what I've been up to;\n[little baby dolphin](https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school)\nI'm already working on a solution!",
+    "body_length": 369,
+    "cashout_time": "2016-10-12T06:00:30",
+    "category": "steemit",
+    "children": 22,
+    "created": "2016-09-11T03:56:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"dantheman\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@luminousvisions\\/little-baby-dolphin-goes-to-steemit-school\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T06:14:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 40084767746965,
+    "parent_author": "luminousvisions",
+    "parent_permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z",
+    "pending_payout_value": "131.347 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z",
+    "post_id": 918173,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@luminousvisions/re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1443108410850",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14416065371667",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6594557001172",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4954754891",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6014624652",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1115096938",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85898673742",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2655468195",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341763780",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1298845280683",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393306725106",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995778422",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1546535287",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "460858066",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25438301563",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4745033808",
+        "voter": "futurefood"
+      }
+    ],
+    "author": "cass",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Let's do this - i'm all in :) and guess my friend as happy to assist as well !",
+    "body_length": 78,
+    "cashout_time": "2016-09-27T23:14:51",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-08-27T11:00:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-27T17:39:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 24280049678822,
+    "parent_author": "futurefood",
+    "parent_permlink": "future-food-first-dutch-steemit-poster-campaign-hits-the-streets-of-amsterdam",
+    "pending_payout_value": "91.522 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-futurefood-future-food-first-dutch-steemit-poster-campaign-hits-the-streets-of-amsterdam-20160827t110002591z",
+    "post_id": 765421,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[Future Food]  First Dutch Steemit poster campaign hits the streets of Amsterdam",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@futurefood/future-food-first-dutch-steemit-poster-campaign-hits-the-streets-of-amsterdam#@cass/re-futurefood-future-food-first-dutch-steemit-poster-campaign-hits-the-streets-of-amsterdam-20160827t110002591z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7400",
+        "reputation": 0,
+        "rshares": "21308065728980",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30663857230",
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25145753869",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "619555638",
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3015243216",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57318946",
+        "voter": "shadowspub"
+      }
+    ],
+    "author": "lifeworship",
+    "author_reputation": 737526751761,
+    "beneficiaries": [],
+    "body": "way to hate on hate. if you want less of it how about starting by not posting with a picture that says hate sixteen times. energy follows attention. resist not evil. create more of what you want to see, instead of complaining about what you don't.",
+    "body_length": 247,
+    "cashout_time": "2016-09-18T13:33:48",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-08-18T13:16:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T13:16:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21367567457879,
+    "parent_author": "hitmeasap",
+    "parent_permlink": "steemians-what-the-hell-are-we-doing-here-what-happened-to-this-place",
+    "pending_payout_value": "72.538 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-hitmeasap-steemians-what-the-hell-are-we-doing-here-what-happened-to-this-place-20160818t131626226z",
+    "post_id": 655175,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemians!! - What The Hell Are We Doing Here?! - What Happened To This Place...?",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@hitmeasap/steemians-what-the-hell-are-we-doing-here-what-happened-to-this-place#@lifeworship/re-hitmeasap-steemians-what-the-hell-are-we-doing-here-what-happened-to-this-place-20160818t131626226z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1442805340113",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14244487677832",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1977058087901",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1020774163392",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121369746028",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13083135286",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1339964315",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1020379418",
+        "voter": "seasi06"
+      }
+    ],
+    "author": "cass",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Moinsen - sch\u00f6n zu sehen, das sich auch in Hamburg ein community aufbaut :) Hach vermiss Sie schon ein wenig, meine Perle - wenn das n\u00e4chste mal in HH - Lust auf nen weiteres Treffen? Oder auch wenn in Berlin - sagt Bescheid! So weitermachen & reingehaun \n\n--- \n\nHowdy - great to see steemit is gaining traction in Hamburg as well! Let me know if u'd be interested to meet when i'm in HH next time - or Berlin as well Just ping me - happy steeming \n\n> Hamburg, my pearl,\nyou wonderful city,\nyou're my home, you'e my life\nYou are the city where I can, where I can\n \n>If you come from the south,\nHamburg is directly in front of Greenland\nIf you come from the north,\nHamburg is in Africa.\nIf you come from the Balcans,\nyou might not stick out\nIf you come from China,\nthe people here look weird\n \n>If I'm far away,\nin Sydney or Rome,\nthen I think of Hamburg, my pearl\nand sing \"Home, sweet home\"\n\n[Source](http://lyricstranslate.com/de/hamburg-meine-perle-hamburg-my-pearl.html)\n\nhttps://www.youtube.com/watch?v=-_gNe1JFfmI",
+    "body_length": 1019,
+    "cashout_time": "2016-09-19T06:17:24",
+    "category": "steemit",
+    "children": 1,
+    "created": "2016-08-19T07:07:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=-_gNe1JFfmI\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T08:52:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 18821938494285,
+    "parent_author": "sirwinchester",
+    "parent_permlink": "steemit-gathering-in-hamburg-germany",
+    "pending_payout_value": "54.566 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-sirwinchester-steemit-gathering-in-hamburg-germany-20160819t070743159z",
+    "post_id": 666919,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Gathering in Hamburg, Germany!",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@sirwinchester/steemit-gathering-in-hamburg-germany#@cass/re-sirwinchester-steemit-gathering-in-hamburg-germany-20160819t070743159z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "5760813418877",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "646344430923",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28856551753",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "491587420848",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6142515095820",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "900985379316",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2473141587",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1978181674569",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3001864600",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562498734",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42273869934",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1325653530",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170794809",
+        "voter": "moon"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "110569121577",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497315648",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "741748616",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "679121029",
+        "voter": "elmato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230286157",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1197059238",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58085500315",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1378915293",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108103867964",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75113973996",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "847893968",
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31814437490",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20829214563",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54594928",
+        "voter": "thomasdh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55932832",
+        "voter": "littlescribe"
+      }
+    ],
+    "author": "arhag",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I don't agree with the minimum price formula. That means if all SD in existence right now except for 1 SD was collected into one account and then converted to STEEM with a single conversion request, that 1 remaining SD would likely be able to claim  13503 STEEM (which at current prices is worth approximately $19,444 USD) through a later conversion. Now obviously, that is a ridiculous example, but it demonstrates how a sudden large decrease in SD supply due to conversions, can cause later converters to get a lot more STEEM than they should due to that minimum rule, even if the  price of STEEM in USD doesn't change.\n\nThere is no need for the minimum price. If the USD hyperinflates (which I disagree with you regarding it being more likely than the other type of black swan), then the witnesses could just transition to tracking the price of some other asset with reasonably stable value. For example, the witnesses could instead track the price of some other currency, or if necessary maybe even the price of gold. An appropriate factor would be included into the definition of the price being tracked so that there isn't a discontinuous change in the SD/STEEM feed price during the switch over from tracking USD to some other asset. \n\nThe social contract regarding the price feed should not be to track USD, but rather to track an asset with relatively stable purchasing power that has a well-defined computable price relative to STEEM, whichever the best asset for satisfying those conditions is at the time. Obviously, we would also want to avoid switching the assets we track unless it is truly necessary to satisfy that social contract. And the decision to switch and the particular asset to track instead should only be made after extensive community discussion (and enough time for stakeholders to reflect their views through witness vote changes) which includes the opinions of both relevant parties: SD holders and STEEM/SP holders.",
+    "body_length": 1948,
+    "cashout_time": "2016-09-21T01:19:30",
+    "category": "steemit",
+    "children": 22,
+    "created": "2016-08-21T01:33:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-21T01:33:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16409290778914,
+    "parent_author": "dantheman",
+    "parent_permlink": "steem-dollars-have-limits",
+    "pending_payout_value": "50.198 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dantheman-steem-dollars-have-limits-20160821t013333999z",
+    "post_id": 689996,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steem Dollars have Limits",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@dantheman/steem-dollars-have-limits#@arhag/re-dantheman-steem-dollars-have-limits-20160821t013333999z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-28649509654879",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32219934287235",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376227404992",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "10120122935193",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726201087",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524113216",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "820980926",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66047473608",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996555438",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256574080",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6011327678606",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1155045756583",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750139848",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168034456",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346061156",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394226217606",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2042269341790",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "105084005",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399177345",
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2149540452",
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16822772956",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "700",
+        "reputation": 0,
+        "rshares": "1456871415",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58804600",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83977666117",
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39105053398",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212620152",
+        "voter": "jaredandanissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50197894",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2836212288",
+        "voter": "ltm"
+      }
+    ],
+    "author": "luminousvisions",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "### There's only 1 proper solution to this; a hard fork to reduce all accounts above 100k SP to ... 100k SP\n\n#### That way the whales will no longer be able to skew the results as they do now, and the votes of the dolphin will actually mean something ... as it should\n\n(as in; I agree; inactive whales are in fact better than active whales ... let's turn them all into dolphins; problem solved!)\n\nso, and by now, I wrote a post about it;\nhttps://steemit.com/tag/@luminousvisions/safe-steemit-1-day-voting-moratorium-for-the-whales",
+    "body_length": 530,
+    "cashout_time": "2016-10-12T06:00:30",
+    "category": "steemit",
+    "children": 32,
+    "created": "2016-09-11T02:19:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https:\\/\\/steemit.com\\/tag\\/@luminousvisions\\/safe-steemit-1-day-voting-moratorium-for-the-whales\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T16:07:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 23896454101563,
+    "parent_author": "ned",
+    "parent_permlink": "re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t011254010z",
+    "pending_payout_value": "49.548 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z",
+    "post_id": 917470,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@luminousvisions/re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "462477624791",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14293082408966",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103012759",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767337211",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54630385693",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662788865",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1159133050923",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969741207",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1013601334269",
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56323948436",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66803137935",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2339911971986",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265054140500",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114728523946",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1869328820",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82838530734",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12006452807",
+        "voter": "jako"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "53980398570",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3143598968",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "674356372",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8013129379",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5984315893",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5205390768",
+        "voter": "brendio"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "133089426",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25944627853",
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439601637",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8187684279",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20128078127",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1628223298",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3905567073",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3695264647",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10903423662",
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31226473800",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3404056877",
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "976524813",
+        "voter": "mikkolyytinen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272047043",
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51114532",
+        "voter": "john-galt-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "448113307",
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158655277",
+        "voter": "kjsxj"
+      }
+    ],
+    "author": "stellabelle",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "@heiditravels: Welcome to my world. I am sorry this happened to you, but I am glad you stood up and cleared the air.\n\nThank you for defending me too. I am very glad to read your post as I suspected something fishy about @fyrstikken after he lied about me \"giving financial advice\". I never gave any single person financial advice to invest in Synereo. He confused the solutions i presented (one for addressing harassment and abuse (duh!) and the other for addressing centralized power), with offering advice to invest. I never told anyone to do anything with their money. I am an artist and writer, not an investor. So, when he began spreading lies about me, I just couldn't believe it since I considered us to be friends. I was shocked actually. And of course hurt. The reason I didn't create a post yet about it, is because, quite frankly, his insane behavior points to an unstable mind. \n\nI was taken aback by his calling you a 'cunt' multiple times, and also all the sexually violent talk. That just showed me exactly who **he** is. He is definitely not who I thought he was. Thank you for clearing this up, because it has been weighing on my mind how to approach this issue. My natural tendency is to withdraw from such nutjobs, who are both powerful, rich and have followers and also who have it out to get people (note death threats aimed at Tuck).  \n\nI was very disturbed that he was spreading misinformation about me when I did nothing to him personally. I see that he was angry because I was bringing up flaws of steemit, ones that I want to be fixed before things get out of hand.(Like they are now).\n\nAnd another thing I will just clear up with this. The reason I made that Synereo post so controversial is because I could not stand the fact that one user was continuing to be harassed. To ignore the most vulnerable people in society is to be the worst kind of human. \n\nThe misogyny in here is exactly as I described it. I have been noticing, and absorbing other people's pain for far too long. I wrote that post because I cannot stand to see people suffer. I am not going to be happy in a place that ignores suffering. I wrote it mainly for others, as well as my future safety. Not having a block feature is simply absurd at this stage of the game. (And yes, I realize that the blockchain will contain all data. I realized that in my first week of being on Steemit. I am only referring to the application known as Steemit having the filter or block feature.)\n\nMy only regret is that because of my anger in the devs not taking this issue seriously, I used part of that email from Dan. That was wrong of me to do so and I have already apologized to him. I know when I have gone too far, because I feel bad about it. I did make a mistake in quoting that email and I want to apologize to him and also to all the newbies who were negatively affected. \n But the rest of it stands. I am not a puppet and I will always seek the truth over everything else. I cannot be bought off, and no one owns me. You can tell a lot about a society with the way they treat the most vulnerable members.\n\nThis new thing of @fyrstikken lying now about 2 women and calling us 'cunts' is the exact reason that women have already started fleeing. I am glad all this came to light because it has been in the shadows, happening to women, gays and other marginalized people. I know, because they tell me. \n\nThanks for your comments, and for clearing up what i suspected already, @fyrstikken is a wolf in sheep's clothing, someone with a giant ego and an explosive, violent temper. He has destroyed any trust I had for him previously. And I also have evidence that there are many others, both within Steemit and outside of Steemit who have been misled and manipulated by him.\n\nI waited a long time to respond because, like everyone else, I wanted to believe in that jovial, Norweigan image. I had to collect research, data, from sources. I have enough data to make a firm conclusion.\nI had even written a long story about Steemit weeks ago with him as a character in it. I see now that I have to remove his character because it is not representative of the real person. I think what really sucks about all of this is that I really love that SHITCOIN YouTube video he did. And I guess I will continue to like that video, even though the person who made it tried to ruin my reputation in Steemit. well I believe I still have the highest reputation in here. Numbers are more trustworthy than words. When I am wrong, at least I admit it. Now, it's someone else's turn. People need to come clean and admit they were wrong. \n\nNo human being is right 100% of the time. We are not robots. We are in constant evolution. However, I do not spread lies about others. In fact, I am naive about people and I tend to see the good in others, even when I shouldn't. \n\nIt takes a lot for me to see the bad in people and publicly come forth and reveal that. It feels wrong to write about others (that's why I apologized when I wrote about the email). That is the reason I know fyrstikken is misguided. For him to fly off the handle and make public accusations based on a vague conversation, and try to ruin @heiditravels is enough to make me steer clear of him altogether.\n\nhttp://i.giphy.com/OKXQYY6SQsw1y.gif",
+    "body_length": 5273,
+    "cashout_time": "2016-10-07T01:35:57",
+    "category": "steemit",
+    "children": 38,
+    "created": "2016-09-05T15:49:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"heiditravels\",\"fyrstikken\"],\"image\":[\"http:\\/\\/i.giphy.com\\/OKXQYY6SQsw1y.gif\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T16:48:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 20125285331017,
+    "parent_author": "heiditravels",
+    "parent_permlink": "my-first-bad-experience-with-steemit",
+    "pending_payout_value": "44.246 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-heiditravels-my-first-bad-experience-with-steemit-20160905t154941559z",
+    "post_id": 863697,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "My First Bad Experience with Steemit",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@heiditravels/my-first-bad-experience-with-steemit#@stellabelle/re-heiditravels-my-first-bad-experience-with-steemit-20160905t154941559z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28851426273",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14660905118594",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323291888380",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586358175",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269379546",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13321464545",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "285865597",
+        "voter": "jtoubia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2359201317",
+        "voter": "matherly"
+      }
+    ],
+    "author": "smooth",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Thanks for the additional verification. This is certainly a much better presentation than the original and I have removed my flag and edited my comment accordingly.",
+    "body_length": 164,
+    "cashout_time": "2016-09-16T04:46:15",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-08-16T06:38:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T06:38:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15029870702427,
+    "parent_author": "steemapp",
+    "parent_permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z",
+    "pending_payout_value": "44.066 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-steemapp-re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t063806100z",
+    "post_id": 623599,
+    "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#@smooth/re-steemapp-re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t063806100z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039241685498",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14428335580523",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1176897016622",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12604684250",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419448456266",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4300280251",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6198770230",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17541391181",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1919200251",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13550940616",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20771693772",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1291965512",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22059143637",
+        "voter": "eneismijmich"
+      }
+    ],
+    "author": "summon",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "i've downvoted this post! Why? I get the message but can't accept this in terms of \"steem\" PR - from both sides.. these actions harms US the hole community. \n\nAre u guys aware of what u are doing here currently? Here are many poeple working their asses out for developing applications etc for steem to bring more value - how u are planning to add value again? \n\nAs a stakeholder - this is an important question to me! \nif u want like u are actiong currently as STEEM testimonials/opinion leaders.\n\n**SO PLS START ACTING LIKE THIS!**\n\nCurrently it seems to me like childish EGO acting.\nFROM ALL INVOLVED PARTIES - sry!\n\n\n# I will support every action who will bring you guys on the same table to get this issue done - ASAP!",
+    "body_length": 722,
+    "cashout_time": "2016-10-05T10:04:33",
+    "category": "steemit",
+    "children": 11,
+    "created": "2016-09-04T11:13:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T11:24:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17164160808609,
+    "parent_author": "fyrstikken",
+    "parent_permlink": "steemit-harassment-wow-it-finally-happened-to-me-too-d",
+    "pending_payout_value": "37.934 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t111342245z",
+    "post_id": 852429,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d#@summon/re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t111342245z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039241685498",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14428335580523",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1153820604531",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289931304",
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369008392",
+        "voter": "ukblogger"
+      }
+    ],
+    "author": "officialfuzzy",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Man can't we all just get along?  No need to go \"circle jerking\" all over the place.  Both people are valuable and bring something of value to the table.  Neither will always see eye to eye and that is fine.  But while both of you are complaining about one another's actions on steemit, you COULD be ignoring one another and just doing what you do best--creating!",
+    "body_length": 363,
+    "cashout_time": "2016-10-05T10:04:33",
+    "category": "steemit",
+    "children": 11,
+    "created": "2016-09-04T06:54:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T06:54:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16622056810248,
+    "parent_author": "tuck-fheman",
+    "parent_permlink": "re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160903t215719018z",
+    "pending_payout_value": "35.882 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-tuck-fheman-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t065357111z",
+    "post_id": 851377,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d#@officialfuzzy/re-tuck-fheman-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t065357111z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14242334852698",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3088438719",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3748473263",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702580012",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52524132763",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1655522803",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213391830",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621178313",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "910652938",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287701653",
+        "voter": "helen.tan"
+      }
+    ],
+    "author": "williambanks",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "@venuspcs Quit deleting your posts please.  I'm not a bright person.  I think very slowly.  It can take me hours to compose a coherent reply.  When you delete your post, you negate my efforts.  \n\nI think people are entitled to speak their mind.  Say what you believe.  Even if it means your opinion changed and you have to post a mea culpa like I did to @veralynn at least you said what you meant to say at that moment in time.\n\nHowever when you censor yourself, you censor me as well.  I don't like censorship even when it comes from within.",
+    "body_length": 542,
+    "cashout_time": "2016-09-18T13:44:27",
+    "category": "steemit",
+    "children": 0,
+    "created": "2016-08-18T03:34:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"venuspcs\",\"veralynn\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T03:34:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14306086924992,
+    "parent_author": "venuspcs",
+    "parent_permlink": "the-constant-attacks-against-me-have-gone-too-far-this-time-and-will-not-be-tolerated-any-longer",
+    "pending_payout_value": "35.082 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-venuspcs-the-constant-attacks-against-me-have-gone-too-far-this-time-and-will-not-be-tolerated-any-longer-20160818t033413665z",
+    "post_id": 650949,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "deleted",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@venuspcs/the-constant-attacks-against-me-have-gone-too-far-this-time-and-will-not-be-tolerated-any-longer#@williambanks/re-venuspcs-the-constant-attacks-against-me-have-gone-too-far-this-time-and-will-not-be-tolerated-any-longer-20160818t033413665z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750690865195",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14004209817787",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101903335",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765919843",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690731471",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54441719371",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662257121",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213742499",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "406106099779",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624719426",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969479298",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288275841",
+        "voter": "helen.tan"
+      }
+    ],
+    "author": "officialfuzzy",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "> Let that sink in ladies.\n> Welcome to Steemit!\n\nYeh because its **so** obvious how terrible i am towards women...\n\nMy point tuck...is that it is a free world and anyone can be as much of an asshole as they want to be. Hurting someones feelings and lying is a double edged sword. I suggest people realize that attacking men is no better than attacking women. Adding \"women\" instead of people just makes you seem to onlookers to be covering one side (and they will all assume what your motivations are). \n\nFyrst and you are both charming hotheads.  That is all there is to say about it for me.  I do thank you for bringing the threats up though. Heidis experience was the only one i had seen on here that was bad from fyrst and i assumed it was just one incident and that there wasnt a history of this stuff on other boards. I thank the tuck team for this.  At least one of the tuck team, though, really needs to chill out sometimes.",
+    "body_length": 933,
+    "cashout_time": "2016-10-05T10:04:33",
+    "category": "steemit",
+    "children": 0,
+    "created": "2016-09-04T15:20:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 5,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T15:21:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15226765530966,
+    "parent_author": "officialfuzzy",
+    "parent_permlink": "re-tuck-fheman-re-fyrstikken-re-cherryleaf-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t134845394z",
+    "pending_payout_value": "30.648 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-officialfuzzy-re-tuck-fheman-re-fyrstikken-re-cherryleaf-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t151953914z",
+    "post_id": 854047,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d#@officialfuzzy/re-officialfuzzy-re-tuck-fheman-re-fyrstikken-re-cherryleaf-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t151953914z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "433572773241",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14293082408966",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103012759",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767337211",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54630385693",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662788865",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1182788827473",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969741207",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52309096320",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132872177928",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13299353870",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13278882511",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "4864580665",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6411724227",
+        "voter": "beanz"
+      },
+      {
+        "percent": "5900",
+        "reputation": 0,
+        "rshares": "3252804327",
+        "voter": "jrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3509797589",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8187684279",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3327069227",
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3202715261",
+        "voter": "luminousvisions"
+      }
+    ],
+    "author": "demotruk",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "\"Sounds like a great idea\" is not a confirmation. Did she ever confirm the time and place?\n\nEdit: What you have proven is that you blew up at @heiditravels over your own misunderstanding of a non-committal reply. An appointment includes a time and date and confirmation of those things. This is fairly basic stuff for someone who organizes things with people. If you don't get those things, you don't have an arrangement. How would she even know when and where to turn up?",
+    "body_length": 472,
+    "cashout_time": "2016-10-07T01:35:57",
+    "category": "steemit",
+    "children": 3,
+    "created": "2016-09-05T20:36:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"heiditravels\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T20:51:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16219911037187,
+    "parent_author": "fyrstikken",
+    "parent_permlink": "re-vi1son-re-heiditravels-my-first-bad-experience-with-steemit-20160905t202905580z",
+    "pending_payout_value": "30.590 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-fyrstikken-re-vi1son-re-heiditravels-my-first-bad-experience-with-steemit-20160905t203611118z",
+    "post_id": 866363,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "My First Bad Experience with Steemit",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@heiditravels/my-first-bad-experience-with-steemit#@demotruk/re-fyrstikken-re-vi1son-re-heiditravels-my-first-bad-experience-with-steemit-20160905t203611118z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4331436726786",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726199239",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524111368",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "820980926",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6867912848396",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66047362728",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996555438",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256574080",
+        "voter": "moon"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "194467978041",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750139848",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168034456",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2800186859741",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346061156",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405843973774",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2227930191043",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "476275534735",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208063929336",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35994915521",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7013391007",
+        "voter": "handsolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96239619605",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3156342464",
+        "voter": "moviefan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19864247184",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3446330474",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "20951010174",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39398797411",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37653845392",
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202251524",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1292588399",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176886452",
+        "voter": "florentina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9490079862",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20134600028",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2436064708",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3062750661",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2214523036",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3126820330",
+        "voter": "funnyman"
+      }
+    ],
+    "author": "stellabelle",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Dear Richard,\n\nWow. That took some serious guts to write. I commend you for your honesty and I thank you for thinking about me in the context of what you see as a solution. I believe that @donkeypong would be an excellent choice in that role.\n\nI have also been experiencing the same things you mentioned with regards to the cognitive dissonance. It suddenly dawned upon me last month that Steemit was not created by artists/writers/curators who would instinctively know what needed to be done for future artists/writers/curators. We have a very detail-oriented programmer/visionary and an ex-private equity fund manager who knows a great deal about finance and markets. Steemit is an excellent bank and I greatly appreciate the blockchain and all the technical aspects of its construction. I also feel indebted to this site because it rewarded me for my writing, in a way that no other client has ever rewarded me for. Like all things, however, now, I do feel that I am not able to speak my mind, for fear of backlash and flagging. I did not see this coming.\nI agree with your assessment that there seems to be a lack of emotional intelligence and an inability to listen, take feedback and then turn that feedback into action. This kind of thing does require a certain kind of personality and it also requires life experience and maturity.\n\nI see the primary issue as a tug of war between attempting to create a decentralized, transparent system and a centralized chain of command. By posting as individuals on Steemit and letting the community comment freely, it gives the illusion of a decentralized system. However, when an unpopular hardfork goes into effect, despite the fact that many prominent members, @donkeypong being the most visible voice, it gives rise to a pause. I don't think anyone really knows or understands why the vote count is going to be changed to 5 instead of 40. In my mind, a reduction of votes equals a sort of constriction effect, like a boa constrictor wrapping itself around my neck, which leads to a sort of rationing of energy which leads to stress, which leads to me wanting to get off Steemit in order to reduce the stress levels. And, no, I still don't understand what the restriction of votes mean. I read a bunch of posts and rebuttals, but to be honest, even I don't understand why it was changed. I doubt that many people even have the foggiest idea. Perhaps in theory it is a good idea, but to an artist, with a visually-enhanced imagination, I equate fewer votes with a scarcity mindset. An abundance mindset would mean that people would not have restrictions and would be encouraged to love the posts on steemit so much that they could vote to their heart's content. This is the cognitive dissonance that Richard is describing so well. \nWhen you have Vulcans (And I use Vulcans in a good way, as Spock is one of my favorite characters) making rules for regular people, it turns out that the regular people don't really understand the rules at all, and continue playing their own game in spite of the rules, because they were never made for them in the first place. Vulcans just need to be balanced by regular people, that is what I meant to add. \nI guess if I ran this place, I would send a huge apology to Richard. And then I would thank him for opening my eyes to the truth. Then I'd sit down, get several drinks ready and just sort of soak in everything that has gone down so far, while continuing to sip my drinks. I'd start listening to the people who are the power users and I'd really start reading everything that minnows are complaining about. I'd take several days off the regular grind, and dive into solving the issues for the users, because I'd realize that the users will either make or break my future. I'd start with reading every response from [The Steemit User Survey](https://steemit.com/steemit/@stellabelle/steemit-user-survey-results-part-1) because I would realize that the answers to the problems lie inside there. Then, I'd build my own surveys, in an attempt to collect more data on how to improve Steemit. I'd respond to the data and make changes based on what I found, not on preconceived notions of how I wanted to change it. \nI guess that is what I would do. I would not give up, but I would not continue down the same path either. I would become more like water, less like rock. I would realize that I would still be in the running to alter the course of history. That is why I'd change.",
+    "body_length": 4461,
+    "cashout_time": "2016-10-12T06:00:30",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-11T03:06:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"donkeypong\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@stellabelle\\/steemit-user-survey-results-part-1\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T03:18:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17897609125323,
+    "parent_author": "steemship",
+    "parent_permlink": "open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or",
+    "pending_payout_value": "29.129 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t030620073z",
+    "post_id": 917801,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@stellabelle/re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t030620073z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "462477624791",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14293082408966",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103012759",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767337211",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54630385693",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662788865",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "118282633199",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969741207",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130214765444",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "142483711",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1502119996",
+        "voter": "roland.haynes"
+      }
+    ],
+    "author": "roland.haynes",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I have read all the comments here to this post and feel compelled to add my reaction and opinions to what has been posted already.\nIt is most interesting to look at the posts from an analytical point of view.\nFirst, there are way too many people who see this as an entertaining piece rather than a totally unacceptable event that should not exist on the platform. Yes, it is supposed to be censorship free, however, that should not be used as an excuse for extreme abuse and harassment.\nSecond, we have two people here who have clearly demonstrated through their posts over time that they are reasonable, mature, and personable individuals so why the comments suggesting that this is a case of \"he said, she said\"?\nThere should not be any question about that even if all one has as evidence is the information put forward in this post.\nThird, in my opinion, this is definitely both a Steemit issue AND an incident of abuse and harassment that must be taken seriously and acted upon in a decisive and constructive manner.\nThis is not a \"problem for Dan to deal with\". It is a problem that falls squarely on the shoulders of all who are a part of the community and it is our aggregate responsibility to condemn unacceptable behavior in no uncertain terms and demonstrate the fact that abuse and harassment on the Steemit platform should and will not be tolerated.\nRegardless of how incredible the technology, innovative infrastructure, and financial potential Steemit provides, the whole project will fail miserably if the community does not take concrete and immediate steps to deal with and prevent abuse and harassment on the platform.",
+    "body_length": 1636,
+    "cashout_time": "2016-10-07T01:35:57",
+    "category": "steemit",
+    "children": 6,
+    "created": "2016-09-05T21:55:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T21:55:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15071653177410,
+    "parent_author": "stellabelle",
+    "parent_permlink": "re-heiditravels-my-first-bad-experience-with-steemit-20160905t154941559z",
+    "pending_payout_value": "26.810 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-stellabelle-re-heiditravels-my-first-bad-experience-with-steemit-20160905t215542813z",
+    "post_id": 867028,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "My First Bad Experience with Steemit",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@heiditravels/my-first-bad-experience-with-steemit#@roland.haynes/re-stellabelle-re-heiditravels-my-first-bad-experience-with-steemit-20160905t215542813z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6369849234790",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101186370",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765012430",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690608231",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54337627462",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661905030",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213715284",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2651243328828",
+        "voter": "recursive"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1150944340463",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623017822",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967695714",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288232627",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2217132176566",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315338917",
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3966338432",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167157550959",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118305739659",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4805110624",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16449026481",
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9047040961",
+        "voter": "aleksandraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72131169",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "612120792",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163456454",
+        "voter": "gari"
+      }
+    ],
+    "author": "recursive",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Here are screenshots of the action. Pay attention folks, what you are seeing here is something that happens in mainstream media all the time: creating buzz on other subjects to divert the attention from another, more problematic, news story. Nice to see this happen in a controlled environment.\nhttp://i.imgur.com/xqXDozg.jpg\nhttp://i.imgur.com/JvxHzpT.jpg",
+    "body_length": 356,
+    "cashout_time": "2016-10-04T11:59:45",
+    "category": "steemit",
+    "children": 11,
+    "created": "2016-09-02T09:06:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"image\":[\"http:\\/\\/i.imgur.com\\/xqXDozg.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T09:06:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 12775711936065,
+    "parent_author": "snowflake",
+    "parent_permlink": "re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t022728700z",
+    "pending_payout_value": "22.412 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t090800648z",
+    "post_id": 832692,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@leavemealone/ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on#@recursive/re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t090800648z"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..f742c48e1de1cc8ba2266ba48fedbaaf7ae4809b
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit.pat.json
@@ -0,0 +1,3468 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "300",
+        "reputation": 32455846463901,
+        "rshares": 1294968367268,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28860902224,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14409605494831,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40261554792719,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3155750963782,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 377906636658,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1245475534803,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 2875138885044,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 992692841277,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 948645888607,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314602171157,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3094244335,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3755939559,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703615315,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 5751660885474,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1644151280793,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53261984748,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1658441464,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213555429,
+        "voter": "moon"
+      },
+      {
+        "percent": "300",
+        "reputation": 83941319998,
+        "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": 96486114508046,
+        "rshares": 54127411451,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5116325730997,
+        "rshares": 1759901644,
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 351517418935,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 282481919881,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287957469,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 25822874684,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 10283360038,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24290958657,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 7456570912,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 491733834025,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 41463145095,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 367830728600,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 45912096650,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3663597787321,
+        "rshares": 23227592357,
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8330279054423,
+        "rshares": 63707549495,
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 31690086400,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 73022585138,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 109636482823,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61288399197,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 117389810764,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 449244898326,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9131956116299,
+        "rshares": 128017998380,
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2676865682314,
+        "rshares": 36007650081,
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 32961119819,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13090894039053,
+        "rshares": 71452016003,
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5121130339,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25440234426,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 13382892819,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24939158057,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 103574158909,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 7881221000,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 112751020008,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 14190084617,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 159492592967,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33597624083,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7028930352,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17438618169,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75155947399,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3697940497,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10377897348,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 7753599028,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1388783807,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37347150,
+        "rshares": 115874018,
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 505816971,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19973803502,
+        "rshares": 124907433,
+        "voter": "biternator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725570292123,
+        "rshares": 3090635988,
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 54497070629,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1606242116192,
+        "rshares": 4745090234,
+        "voter": "bakingengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 36689125715,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1277366753949,
+        "rshares": 16359584188,
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176296837750,
+        "rshares": 10399150907,
+        "voter": "npl77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 108836213411,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11060114610,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 2050213474,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 295915630,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 38819548773,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 359477747983,
+        "rshares": 461449860,
+        "voter": "neddykelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1579699570,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 77473387847,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 61385527,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4829784286,
+        "rshares": 4190219999,
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213488752136,
+        "rshares": 125663528,
+        "voter": "nelkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 182784126217,
+        "rshares": 148930176,
+        "voter": "letsgo.asino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 14968711124,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 58226150,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 253750401751,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 191216226,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1527616438386,
+        "rshares": 13741567322,
+        "voter": "antoinev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 61289460,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 5100395909,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129741556,
+        "rshares": 54884363,
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 50351260,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 349611227,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59354601485,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 51884666,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 130434883,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7370152734,
+        "rshares": 52571606,
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 586250180,
+        "rshares": 53224648,
+        "voter": "yanikkoval"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 51136429,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": -800687411550,
+        "rshares": 50977036,
+        "voter": "tldr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99160090205,
+        "rshares": 50797377,
+        "voter": "bo-ro"
+      }
+    ],
+    "author": "smooth",
+    "author_reputation": 32455846463901,
+    "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-08-31T16:43:21",
+    "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.567 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t164320100z",
+    "post_id": 969220,
+    "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": 70486967561347,
+        "rshares": 40261554792719,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3991861275580,
+        "rshares": 48124579959,
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 282481919881,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 25822874684,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 10283360038,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24290958657,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8330279054423,
+        "rshares": 62458381858,
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 71100938161,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61288297136,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 117389810764,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5121130339,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 7881221000,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10377897348,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 49642777135,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37347150,
+        "rshares": 115874018,
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 37453482500,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 4096208838,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8375659361,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 108836213411,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 195118598,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 61289460,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 657881264,
+        "rshares": 56939384,
+        "voter": "dcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 130434883,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7370152734,
+        "rshares": 50468741,
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54957783711,
+        "rshares": 50353356,
+        "voter": "takemyfive"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 17701690051649,
+    "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-08-31T16:23:00",
+    "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_hbd": 10000,
+    "permlink": "re-steemdrive-steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream-20160824t162300868z",
+    "post_id": 968989,
+    "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": 32455846463901,
+        "rshares": 14824916004472,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28851426273,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14660905118594,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5645842591970,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3085011784,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3744178588,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 708945412,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52221628833,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1653774577,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213265420,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "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": 376960001789,
+        "rshares": 5519141498,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 151618531853,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13114605961,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 137573239907,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 586358175,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 128697036640,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 269379546,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 13452877972,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51529058014,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1215490422294,
+        "rshares": 5729767206,
+        "voter": "inti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1757805373821,
+        "rshares": 14254612849,
+        "voter": "deanero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 1646059150,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 116253105,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61980222,
+        "voter": "breastsono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 2359201317,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824556048979,
+        "rshares": 897505702,
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 17530292877,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4300748049,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1246651487,
+        "rshares": 54634677,
+        "voter": "stephenm"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 5743108025054,
+    "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-08-23T04:52:51",
+    "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_hbd": 10000,
+    "permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z",
+    "post_id": 829289,
+    "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": 83122046,
+        "rshares": 17387563883098,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2050320927937,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 17506821189546,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2472687085,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3001252537,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562430414,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "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": 642608867428,
+        "rshares": 5163277168,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 4146107046,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 100022771,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7788315865,
+        "rshares": 58035101,
+        "voter": "aaronjwhite"
+      }
+    ],
+    "author": "knircky",
+    "author_reputation": 3320684282022,
+    "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-08-27T03:22:36",
+    "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_hbd": 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": 900160,
+    "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"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 31588356739639,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726201087,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524113216,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 820980926,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66047512415,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996555438,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256574080,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5893489774073,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750139848,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168034456,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346061156,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 394226217606,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "3000",
+        "reputation": 16234753830016,
+        "rshares": 24215364511,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2042269341790,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 8944971271,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": -39372262885,
+        "rshares": 52207362,
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958503,
+        "rshares": 58804600,
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 14292459528,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 39105503792,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96725733083,
+        "rshares": 120190171,
+        "voter": "emeline"
+      }
+    ],
+    "author": "luminousvisions",
+    "author_reputation": 3573461197670,
+    "beneficiaries": [],
+    "body": "### @dantheman ... you just downvoted my comment?\n\nwhat is that all about? what's wrong with it?\n\n#### I'm just suggestion a solution and in return for offering my help ... you downvote me?!?\n\n\nlook at what I've been up to;\n[little baby dolphin](https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school)\nI'm already working on a solution!",
+    "body_length": 369,
+    "cashout_time": "2016-09-18T03:56:51",
+    "category": "steemit",
+    "children": 22,
+    "created": "2016-09-11T03:56:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"dantheman\"],\"links\":[\"https://steemit.com/steemit/@luminousvisions/little-baby-dolphin-goes-to-steemit-school\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T06:14:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 40084767746965,
+    "parent_author": "luminousvisions",
+    "parent_permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z",
+    "pending_payout_value": "131.347 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z",
+    "post_id": 1204434,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@luminousvisions/re-luminousvisions-re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t035652062z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1443108410850,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14416065371667,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6594557001172,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 4954754891,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 6014624652,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 1115096938,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 85898673742,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2655468195,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 341763780,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1298845280683,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 393306725106,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 995778422,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1546535287,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 460858066,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25438301563,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 4745033808,
+        "voter": "futurefood"
+      }
+    ],
+    "author": "cass",
+    "author_reputation": 82600290949846,
+    "beneficiaries": [],
+    "body": "Let's do this - i'm all in :) and guess my friend as happy to assist as well !",
+    "body_length": 78,
+    "cashout_time": "2016-09-03T11:00:03",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-08-27T11:00:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-27T17:39:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 24280049678822,
+    "parent_author": "futurefood",
+    "parent_permlink": "future-food-first-dutch-steemit-poster-campaign-hits-the-streets-of-amsterdam",
+    "pending_payout_value": "91.522 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-futurefood-future-food-first-dutch-steemit-poster-campaign-hits-the-streets-of-amsterdam-20160827t110002591z",
+    "post_id": 1011417,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[Future Food]  First Dutch Steemit poster campaign hits the streets of Amsterdam",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@futurefood/future-food-first-dutch-steemit-poster-campaign-hits-the-streets-of-amsterdam#@cass/re-futurefood-future-food-first-dutch-steemit-poster-campaign-hits-the-streets-of-amsterdam-20160827t110002591z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7400",
+        "reputation": 145171381514207,
+        "rshares": 21308065728980,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44591565205,
+        "rshares": 30663857230,
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25145753869,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80723007188,
+        "rshares": 619555638,
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 3015243216,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 57318946,
+        "voter": "shadowspub"
+      }
+    ],
+    "author": "lifeworship",
+    "author_reputation": 737348426612,
+    "beneficiaries": [],
+    "body": "way to hate on hate. if you want less of it how about starting by not posting with a picture that says hate sixteen times. energy follows attention. resist not evil. create more of what you want to see, instead of complaining about what you don't.",
+    "body_length": 247,
+    "cashout_time": "2016-08-25T13:16:27",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-08-18T13:16:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T13:16:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21367567457879,
+    "parent_author": "hitmeasap",
+    "parent_permlink": "steemians-what-the-hell-are-we-doing-here-what-happened-to-this-place",
+    "pending_payout_value": "72.538 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-hitmeasap-steemians-what-the-hell-are-we-doing-here-what-happened-to-this-place-20160818t131626226z",
+    "post_id": 870339,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemians!! - What The Hell Are We Doing Here?! - What Happened To This Place...?",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@hitmeasap/steemians-what-the-hell-are-we-doing-here-what-happened-to-this-place#@lifeworship/re-hitmeasap-steemians-what-the-hell-are-we-doing-here-what-happened-to-this-place-20160818t131626226z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1442805340113,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14244487677832,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1977058087901,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1020774163392,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 121369746028,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 13083135286,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1339964315,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1020379418,
+        "voter": "seasi06"
+      }
+    ],
+    "author": "cass",
+    "author_reputation": 82600290949846,
+    "beneficiaries": [],
+    "body": "Moinsen - sch\u00f6n zu sehen, das sich auch in Hamburg ein community aufbaut :) Hach vermiss Sie schon ein wenig, meine Perle - wenn das n\u00e4chste mal in HH - Lust auf nen weiteres Treffen? Oder auch wenn in Berlin - sagt Bescheid! So weitermachen & reingehaun \n\n--- \n\nHowdy - great to see steemit is gaining traction in Hamburg as well! Let me know if u'd be interested to meet when i'm in HH next time - or Berlin as well Just ping me - happy steeming \n\n> Hamburg, my pearl,\nyou wonderful city,\nyou're my home, you'e my life\nYou are the city where I can, where I can\n \n>If you come from the south,\nHamburg is directly in front of Greenland\nIf you come from the north,\nHamburg is in Africa.\nIf you come from the Balcans,\nyou might not stick out\nIf you come from China,\nthe people here look weird\n \n>If I'm far away,\nin Sydney or Rome,\nthen I think of Hamburg, my pearl\nand sing \"Home, sweet home\"\n\n[Source](http://lyricstranslate.com/de/hamburg-meine-perle-hamburg-my-pearl.html)\n\nhttps://www.youtube.com/watch?v=-_gNe1JFfmI",
+    "body_length": 1019,
+    "cashout_time": "2016-08-26T07:07:45",
+    "category": "steemit",
+    "children": 1,
+    "created": "2016-08-19T07:07:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https://www.youtube.com/watch?v=-_gNe1JFfmI\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T08:52:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 18821938494285,
+    "parent_author": "sirwinchester",
+    "parent_permlink": "steemit-gathering-in-hamburg-germany",
+    "pending_payout_value": "54.566 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-sirwinchester-steemit-gathering-in-hamburg-germany-20160819t070743159z",
+    "post_id": 884976,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Gathering in Hamburg, Germany!",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@sirwinchester/steemit-gathering-in-hamburg-germany#@cass/re-sirwinchester-steemit-gathering-in-hamburg-germany-20160819t070743159z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1900",
+        "reputation": 145171381514207,
+        "rshares": 5760813418877,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "100",
+        "reputation": 32455846463901,
+        "rshares": 646344430923,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28856551753,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "2000",
+        "reputation": 25104157850610,
+        "rshares": 491587420848,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20297981245452,
+        "rshares": 6142515095820,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 900985379316,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2473141587,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1978181674569,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3001864600,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562498734,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 42273869934,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1325653530,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170794809,
+        "voter": "moon"
+      },
+      {
+        "percent": "100",
+        "reputation": 83941319998,
+        "rshares": 110569121577,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 497315648,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 741748616,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7621368,
+        "rshares": 679121029,
+        "voter": "elmato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230286157,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1197059238,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 58085500315,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1378915293,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 108103867964,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75113973996,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211462616494,
+        "rshares": 847893968,
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 31814437490,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 20829214563,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119788937,
+        "rshares": 54594928,
+        "voter": "thomasdh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 55932832,
+        "voter": "littlescribe"
+      }
+    ],
+    "author": "arhag",
+    "author_reputation": 49280708331375,
+    "beneficiaries": [],
+    "body": "I don't agree with the minimum price formula. That means if all SD in existence right now except for 1 SD was collected into one account and then converted to STEEM with a single conversion request, that 1 remaining SD would likely be able to claim  13503 STEEM (which at current prices is worth approximately $19,444 USD) through a later conversion. Now obviously, that is a ridiculous example, but it demonstrates how a sudden large decrease in SD supply due to conversions, can cause later converters to get a lot more STEEM than they should due to that minimum rule, even if the  price of STEEM in USD doesn't change.\n\nThere is no need for the minimum price. If the USD hyperinflates (which I disagree with you regarding it being more likely than the other type of black swan), then the witnesses could just transition to tracking the price of some other asset with reasonably stable value. For example, the witnesses could instead track the price of some other currency, or if necessary maybe even the price of gold. An appropriate factor would be included into the definition of the price being tracked so that there isn't a discontinuous change in the SD/STEEM feed price during the switch over from tracking USD to some other asset. \n\nThe social contract regarding the price feed should not be to track USD, but rather to track an asset with relatively stable purchasing power that has a well-defined computable price relative to STEEM, whichever the best asset for satisfying those conditions is at the time. Obviously, we would also want to avoid switching the assets we track unless it is truly necessary to satisfy that social contract. And the decision to switch and the particular asset to track instead should only be made after extensive community discussion (and enough time for stakeholders to reflect their views through witness vote changes) which includes the opinions of both relevant parties: SD holders and STEEM/SP holders.",
+    "body_length": 1948,
+    "cashout_time": "2016-08-28T01:33:33",
+    "category": "steemit",
+    "children": 22,
+    "created": "2016-08-21T01:33:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-21T01:33:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16409290778914,
+    "parent_author": "dantheman",
+    "parent_permlink": "steem-dollars-have-limits",
+    "pending_payout_value": "50.205 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dantheman-steem-dollars-have-limits-20160821t013333999z",
+    "post_id": 914489,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steem Dollars have Limits",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@dantheman/steem-dollars-have-limits#@arhag/re-dantheman-steem-dollars-have-limits-20160821t013333999z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "-10000",
+        "reputation": 145171381514207,
+        "rshares": -28649509654879,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 32219934287235,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 376227404992,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "1500",
+        "reputation": 13270505121655,
+        "rshares": 10120122935193,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726201087,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524113216,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 820980926,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66047473608,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996555438,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256574080,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 6011327678606,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1155045756583,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750139848,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168034456,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346061156,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 394226217606,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2042269341790,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "0",
+        "reputation": 1959446497877,
+        "rshares": 105084005,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 399177345,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2620486879029,
+        "rshares": 2149540452,
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 16822772956,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "700",
+        "reputation": 3803717948969,
+        "rshares": 1456871415,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958503,
+        "rshares": 58804600,
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27504418847,
+        "rshares": 83977666117,
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 39105053398,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19512256979,
+        "rshares": 212620152,
+        "voter": "jaredandanissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 50197894,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 2836212288,
+        "voter": "ltm"
+      }
+    ],
+    "author": "luminousvisions",
+    "author_reputation": 3573461197670,
+    "beneficiaries": [],
+    "body": "### There's only 1 proper solution to this; a hard fork to reduce all accounts above 100k SP to ... 100k SP\n\n#### That way the whales will no longer be able to skew the results as they do now, and the votes of the dolphin will actually mean something ... as it should\n\n(as in; I agree; inactive whales are in fact better than active whales ... let's turn them all into dolphins; problem solved!)\n\nso, and by now, I wrote a post about it;\nhttps://steemit.com/tag/@luminousvisions/safe-steemit-1-day-voting-moratorium-for-the-whales",
+    "body_length": 530,
+    "cashout_time": "2016-09-18T02:19:09",
+    "category": "steemit",
+    "children": 32,
+    "created": "2016-09-11T02:19:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https://steemit.com/tag/@luminousvisions/safe-steemit-1-day-voting-moratorium-for-the-whales\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T16:07:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 23896454101563,
+    "parent_author": "ned",
+    "parent_permlink": "re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t011254010z",
+    "pending_payout_value": "49.548 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z",
+    "post_id": 1203573,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@luminousvisions/re-ned-re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t021909082z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 462477624791,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14293082408966,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103012759,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767337211,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690899726,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54630385693,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662788865,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213777416,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624870220,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1159133050923,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969741207,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288328206,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35537325381339,
+        "rshares": 1013601334269,
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 56323948436,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 66803137935,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2339911971986,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 265054140500,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 114728523946,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1869328820,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 82838530734,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 12006452807,
+        "voter": "jako"
+      },
+      {
+        "percent": "4000",
+        "reputation": 2974404080988,
+        "rshares": 53980398570,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3143598968,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 674356372,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 8013129379,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5984315893,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 5205390768,
+        "voter": "brendio"
+      },
+      {
+        "percent": "0",
+        "reputation": 2637292041469,
+        "rshares": 133089426,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12393203621507,
+        "rshares": 25944627853,
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439601637,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 8187684279,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20128078127,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1628223298,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9053611702217,
+        "rshares": 3905567073,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5941821821586,
+        "rshares": 3695264647,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887625476110,
+        "rshares": 10903423662,
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 31226473800,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 660913097252,
+        "rshares": 3404056877,
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2012742263000,
+        "rshares": 976524813,
+        "voter": "mikkolyytinen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 272047043,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9269773541,
+        "rshares": 51114532,
+        "voter": "john-galt-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487989126850,
+        "rshares": 448113307,
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330431039244,
+        "rshares": 158655277,
+        "voter": "kjsxj"
+      }
+    ],
+    "author": "stellabelle",
+    "author_reputation": 200733663789408,
+    "beneficiaries": [],
+    "body": "@heiditravels: Welcome to my world. I am sorry this happened to you, but I am glad you stood up and cleared the air.\n\nThank you for defending me too. I am very glad to read your post as I suspected something fishy about @fyrstikken after he lied about me \"giving financial advice\". I never gave any single person financial advice to invest in Synereo. He confused the solutions i presented (one for addressing harassment and abuse (duh!) and the other for addressing centralized power), with offering advice to invest. I never told anyone to do anything with their money. I am an artist and writer, not an investor. So, when he began spreading lies about me, I just couldn't believe it since I considered us to be friends. I was shocked actually. And of course hurt. The reason I didn't create a post yet about it, is because, quite frankly, his insane behavior points to an unstable mind. \n\nI was taken aback by his calling you a 'cunt' multiple times, and also all the sexually violent talk. That just showed me exactly who **he** is. He is definitely not who I thought he was. Thank you for clearing this up, because it has been weighing on my mind how to approach this issue. My natural tendency is to withdraw from such nutjobs, who are both powerful, rich and have followers and also who have it out to get people (note death threats aimed at Tuck).  \n\nI was very disturbed that he was spreading misinformation about me when I did nothing to him personally. I see that he was angry because I was bringing up flaws of steemit, ones that I want to be fixed before things get out of hand.(Like they are now).\n\nAnd another thing I will just clear up with this. The reason I made that Synereo post so controversial is because I could not stand the fact that one user was continuing to be harassed. To ignore the most vulnerable people in society is to be the worst kind of human. \n\nThe misogyny in here is exactly as I described it. I have been noticing, and absorbing other people's pain for far too long. I wrote that post because I cannot stand to see people suffer. I am not going to be happy in a place that ignores suffering. I wrote it mainly for others, as well as my future safety. Not having a block feature is simply absurd at this stage of the game. (And yes, I realize that the blockchain will contain all data. I realized that in my first week of being on Steemit. I am only referring to the application known as Steemit having the filter or block feature.)\n\nMy only regret is that because of my anger in the devs not taking this issue seriously, I used part of that email from Dan. That was wrong of me to do so and I have already apologized to him. I know when I have gone too far, because I feel bad about it. I did make a mistake in quoting that email and I want to apologize to him and also to all the newbies who were negatively affected. \n But the rest of it stands. I am not a puppet and I will always seek the truth over everything else. I cannot be bought off, and no one owns me. You can tell a lot about a society with the way they treat the most vulnerable members.\n\nThis new thing of @fyrstikken lying now about 2 women and calling us 'cunts' is the exact reason that women have already started fleeing. I am glad all this came to light because it has been in the shadows, happening to women, gays and other marginalized people. I know, because they tell me. \n\nThanks for your comments, and for clearing up what i suspected already, @fyrstikken is a wolf in sheep's clothing, someone with a giant ego and an explosive, violent temper. He has destroyed any trust I had for him previously. And I also have evidence that there are many others, both within Steemit and outside of Steemit who have been misled and manipulated by him.\n\nI waited a long time to respond because, like everyone else, I wanted to believe in that jovial, Norweigan image. I had to collect research, data, from sources. I have enough data to make a firm conclusion.\nI had even written a long story about Steemit weeks ago with him as a character in it. I see now that I have to remove his character because it is not representative of the real person. I think what really sucks about all of this is that I really love that SHITCOIN YouTube video he did. And I guess I will continue to like that video, even though the person who made it tried to ruin my reputation in Steemit. well I believe I still have the highest reputation in here. Numbers are more trustworthy than words. When I am wrong, at least I admit it. Now, it's someone else's turn. People need to come clean and admit they were wrong. \n\nNo human being is right 100% of the time. We are not robots. We are in constant evolution. However, I do not spread lies about others. In fact, I am naive about people and I tend to see the good in others, even when I shouldn't. \n\nIt takes a lot for me to see the bad in people and publicly come forth and reveal that. It feels wrong to write about others (that's why I apologized when I wrote about the email). That is the reason I know fyrstikken is misguided. For him to fly off the handle and make public accusations based on a vague conversation, and try to ruin @heiditravels is enough to make me steer clear of him altogether.\n\nhttp://i.giphy.com/OKXQYY6SQsw1y.gif",
+    "body_length": 5273,
+    "cashout_time": "2016-09-12T15:49:39",
+    "category": "steemit",
+    "children": 38,
+    "created": "2016-09-05T15:49:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"heiditravels\",\"fyrstikken\"],\"image\":[\"http://i.giphy.com/OKXQYY6SQsw1y.gif\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T16:48:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 20125285331017,
+    "parent_author": "heiditravels",
+    "parent_permlink": "my-first-bad-experience-with-steemit",
+    "pending_payout_value": "44.274 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-heiditravels-my-first-bad-experience-with-steemit-20160905t154941559z",
+    "post_id": 1135559,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "My First Bad Experience with Steemit",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@heiditravels/my-first-bad-experience-with-steemit#@stellabelle/re-heiditravels-my-first-bad-experience-with-steemit-20160905t154941559z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28851426273,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14660905118594,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 323291888380,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 586358175,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 269379546,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 13321464545,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705177068813,
+        "rshares": 285865597,
+        "voter": "jtoubia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 2359201317,
+        "voter": "matherly"
+      }
+    ],
+    "author": "smooth",
+    "author_reputation": 32455846463901,
+    "beneficiaries": [],
+    "body": "Thanks for the additional verification. This is certainly a much better presentation than the original and I have removed my flag and edited my comment accordingly.",
+    "body_length": 164,
+    "cashout_time": "2016-08-23T06:38:06",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-08-16T06:38:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T06:38:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15029870702427,
+    "parent_author": "steemapp",
+    "parent_permlink": "re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t045252952z",
+    "pending_payout_value": "44.066 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-steemapp-re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t063806100z",
+    "post_id": 830224,
+    "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#@smooth/re-steemapp-re-smooth-re-steemapp-introducing-steemy-fully-native-ios-android-apps-for-steem-20160816t063806100z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1039241685498,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14428335580523,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1176897016622,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 12604684250,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419448456266,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "2000",
+        "reputation": 5463774640621,
+        "rshares": 4300280251,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 6198770230,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17541391181,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1919200251,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13550940616,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 20771693772,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1291965512,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15018520093808,
+        "rshares": 22059143637,
+        "voter": "eneismijmich"
+      }
+    ],
+    "author": "summon",
+    "author_reputation": 13823888326286,
+    "beneficiaries": [],
+    "body": "i've downvoted this post! Why? I get the message but can't accept this in terms of \"steem\" PR - from both sides.. these actions harms US the hole community. \n\nAre u guys aware of what u are doing here currently? Here are many poeple working their asses out for developing applications etc for steem to bring more value - how u are planning to add value again? \n\nAs a stakeholder - this is an important question to me! \nif u want like u are actiong currently as STEEM testimonials/opinion leaders.\n\n**SO PLS START ACTING LIKE THIS!**\n\nCurrently it seems to me like childish EGO acting.\nFROM ALL INVOLVED PARTIES - sry!\n\n\n# I will support every action who will bring you guys on the same table to get this issue done - ASAP!",
+    "body_length": 722,
+    "cashout_time": "2016-09-11T11:13:42",
+    "category": "steemit",
+    "children": 11,
+    "created": "2016-09-04T11:13:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T11:24:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17164160808609,
+    "parent_author": "fyrstikken",
+    "parent_permlink": "steemit-harassment-wow-it-finally-happened-to-me-too-d",
+    "pending_payout_value": "37.937 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t111342245z",
+    "post_id": 1121310,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d#@summon/re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t111342245z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1039241685498,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14428335580523,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1153820604531,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131860560605,
+        "rshares": 289931304,
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508004290970,
+        "rshares": 369008392,
+        "voter": "ukblogger"
+      }
+    ],
+    "author": "officialfuzzy",
+    "author_reputation": 68236886814465,
+    "beneficiaries": [],
+    "body": "Man can't we all just get along?  No need to go \"circle jerking\" all over the place.  Both people are valuable and bring something of value to the table.  Neither will always see eye to eye and that is fine.  But while both of you are complaining about one another's actions on steemit, you COULD be ignoring one another and just doing what you do best--creating!",
+    "body_length": 363,
+    "cashout_time": "2016-09-11T06:54:06",
+    "category": "steemit",
+    "children": 11,
+    "created": "2016-09-04T06:54:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T06:54:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16622056810248,
+    "parent_author": "tuck-fheman",
+    "parent_permlink": "re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160903t215719018z",
+    "pending_payout_value": "35.882 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-tuck-fheman-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t065357111z",
+    "post_id": 1119965,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d#@officialfuzzy/re-tuck-fheman-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t065357111z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14242334852698,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3088438719,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3748473263,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 702580012,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52524132763,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1655522803,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213391830,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621178313,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 910652938,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287701653,
+        "voter": "helen.tan"
+      }
+    ],
+    "author": "williambanks",
+    "author_reputation": 15621086173579,
+    "beneficiaries": [],
+    "body": "@venuspcs Quit deleting your posts please.  I'm not a bright person.  I think very slowly.  It can take me hours to compose a coherent reply.  When you delete your post, you negate my efforts.  \n\nI think people are entitled to speak their mind.  Say what you believe.  Even if it means your opinion changed and you have to post a mea culpa like I did to @veralynn at least you said what you meant to say at that moment in time.\n\nHowever when you censor yourself, you censor me as well.  I don't like censorship even when it comes from within.",
+    "body_length": 542,
+    "cashout_time": "2016-08-25T03:34:15",
+    "category": "steemit",
+    "children": 0,
+    "created": "2016-08-18T03:34:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"venuspcs\",\"veralynn\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T03:34:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14306086924992,
+    "parent_author": "venuspcs",
+    "parent_permlink": "the-constant-attacks-against-me-have-gone-too-far-this-time-and-will-not-be-tolerated-any-longer",
+    "pending_payout_value": "35.082 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-venuspcs-the-constant-attacks-against-me-have-gone-too-far-this-time-and-will-not-be-tolerated-any-longer-20160818t033413665z",
+    "post_id": 864773,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "deleted",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@venuspcs/the-constant-attacks-against-me-have-gone-too-far-this-time-and-will-not-be-tolerated-any-longer#@williambanks/re-venuspcs-the-constant-attacks-against-me-have-gone-too-far-this-time-and-will-not-be-tolerated-any-longer-20160818t033413665z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 750690865195,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14004209817787,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3101903335,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3765919843,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690731471,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54441719371,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662257121,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213742499,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 406106099779,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624719426,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969479298,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288275841,
+        "voter": "helen.tan"
+      }
+    ],
+    "author": "officialfuzzy",
+    "author_reputation": 68236886814465,
+    "beneficiaries": [],
+    "body": "> Let that sink in ladies.\n> Welcome to Steemit!\n\nYeh because its **so** obvious how terrible i am towards women...\n\nMy point tuck...is that it is a free world and anyone can be as much of an asshole as they want to be. Hurting someones feelings and lying is a double edged sword. I suggest people realize that attacking men is no better than attacking women. Adding \"women\" instead of people just makes you seem to onlookers to be covering one side (and they will all assume what your motivations are). \n\nFyrst and you are both charming hotheads.  That is all there is to say about it for me.  I do thank you for bringing the threats up though. Heidis experience was the only one i had seen on here that was bad from fyrst and i assumed it was just one incident and that there wasnt a history of this stuff on other boards. I thank the tuck team for this.  At least one of the tuck team, though, really needs to chill out sometimes.",
+    "body_length": 933,
+    "cashout_time": "2016-09-11T15:20:00",
+    "category": "steemit",
+    "children": 0,
+    "created": "2016-09-04T15:20:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 5,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T15:21:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15226765530966,
+    "parent_author": "officialfuzzy",
+    "parent_permlink": "re-tuck-fheman-re-fyrstikken-re-cherryleaf-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t134845394z",
+    "pending_payout_value": "30.648 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-officialfuzzy-re-tuck-fheman-re-fyrstikken-re-cherryleaf-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t151953914z",
+    "post_id": 1123432,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d#@officialfuzzy/re-officialfuzzy-re-tuck-fheman-re-fyrstikken-re-cherryleaf-re-fyrstikken-steemit-harassment-wow-it-finally-happened-to-me-too-d-20160904t151953914z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 433572773241,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14293082408966,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103012759,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767337211,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690899726,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54630385693,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662788865,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213777416,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624870220,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1182788827473,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969741207,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288328206,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 52309096320,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132872177928,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 13299353870,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 13278882511,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 16743994030016,
+        "rshares": 4864580665,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 6411724227,
+        "voter": "beanz"
+      },
+      {
+        "percent": "5900",
+        "reputation": 1938969324440,
+        "rshares": 3252804327,
+        "voter": "jrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3509797589,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 8187684279,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648377040631,
+        "rshares": 3327069227,
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3573461197670,
+        "rshares": 3202715261,
+        "voter": "luminousvisions"
+      }
+    ],
+    "author": "demotruk",
+    "author_reputation": 2974404080988,
+    "beneficiaries": [],
+    "body": "\"Sounds like a great idea\" is not a confirmation. Did she ever confirm the time and place?\n\nEdit: What you have proven is that you blew up at @heiditravels over your own misunderstanding of a non-committal reply. An appointment includes a time and date and confirmation of those things. This is fairly basic stuff for someone who organizes things with people. If you don't get those things, you don't have an arrangement. How would she even know when and where to turn up?",
+    "body_length": 472,
+    "cashout_time": "2016-09-12T20:36:12",
+    "category": "steemit",
+    "children": 3,
+    "created": "2016-09-05T20:36:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"heiditravels\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T20:51:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16219911037187,
+    "parent_author": "fyrstikken",
+    "parent_permlink": "re-vi1son-re-heiditravels-my-first-bad-experience-with-steemit-20160905t202905580z",
+    "pending_payout_value": "30.590 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-fyrstikken-re-vi1son-re-heiditravels-my-first-bad-experience-with-steemit-20160905t203611118z",
+    "post_id": 1139037,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "My First Bad Experience with Steemit",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@heiditravels/my-first-bad-experience-with-steemit#@demotruk/re-fyrstikken-re-vi1son-re-heiditravels-my-first-bad-experience-with-steemit-20160905t203611118z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 4331436726786,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726199239,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524111368,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 820980926,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6867912848396,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66047362728,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996555438,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256574080,
+        "voter": "moon"
+      },
+      {
+        "percent": "2500",
+        "reputation": 101807714979611,
+        "rshares": 194467978041,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750139848,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168034456,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2800186859741,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346061156,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 405843973774,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2227930191043,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 476275534735,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 208063929336,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 35994915521,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3028406122926,
+        "rshares": 7013391007,
+        "voter": "handsolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 96239619605,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 183660738363,
+        "rshares": 3156342464,
+        "voter": "moviefan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 19864247184,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3446330474,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "800",
+        "reputation": 20001506960251,
+        "rshares": 20951010174,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 39398797411,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39913884914319,
+        "rshares": 37653845392,
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 202251524,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1292588399,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396514667430,
+        "rshares": 176886452,
+        "voter": "florentina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9490079862,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20134600028,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2436064708,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 3062750661,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 2214523036,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4069545029880,
+        "rshares": 3126820330,
+        "voter": "funnyman"
+      }
+    ],
+    "author": "stellabelle",
+    "author_reputation": 200733663789408,
+    "beneficiaries": [],
+    "body": "Dear Richard,\n\nWow. That took some serious guts to write. I commend you for your honesty and I thank you for thinking about me in the context of what you see as a solution. I believe that @donkeypong would be an excellent choice in that role.\n\nI have also been experiencing the same things you mentioned with regards to the cognitive dissonance. It suddenly dawned upon me last month that Steemit was not created by artists/writers/curators who would instinctively know what needed to be done for future artists/writers/curators. We have a very detail-oriented programmer/visionary and an ex-private equity fund manager who knows a great deal about finance and markets. Steemit is an excellent bank and I greatly appreciate the blockchain and all the technical aspects of its construction. I also feel indebted to this site because it rewarded me for my writing, in a way that no other client has ever rewarded me for. Like all things, however, now, I do feel that I am not able to speak my mind, for fear of backlash and flagging. I did not see this coming.\nI agree with your assessment that there seems to be a lack of emotional intelligence and an inability to listen, take feedback and then turn that feedback into action. This kind of thing does require a certain kind of personality and it also requires life experience and maturity.\n\nI see the primary issue as a tug of war between attempting to create a decentralized, transparent system and a centralized chain of command. By posting as individuals on Steemit and letting the community comment freely, it gives the illusion of a decentralized system. However, when an unpopular hardfork goes into effect, despite the fact that many prominent members, @donkeypong being the most visible voice, it gives rise to a pause. I don't think anyone really knows or understands why the vote count is going to be changed to 5 instead of 40. In my mind, a reduction of votes equals a sort of constriction effect, like a boa constrictor wrapping itself around my neck, which leads to a sort of rationing of energy which leads to stress, which leads to me wanting to get off Steemit in order to reduce the stress levels. And, no, I still don't understand what the restriction of votes mean. I read a bunch of posts and rebuttals, but to be honest, even I don't understand why it was changed. I doubt that many people even have the foggiest idea. Perhaps in theory it is a good idea, but to an artist, with a visually-enhanced imagination, I equate fewer votes with a scarcity mindset. An abundance mindset would mean that people would not have restrictions and would be encouraged to love the posts on steemit so much that they could vote to their heart's content. This is the cognitive dissonance that Richard is describing so well. \nWhen you have Vulcans (And I use Vulcans in a good way, as Spock is one of my favorite characters) making rules for regular people, it turns out that the regular people don't really understand the rules at all, and continue playing their own game in spite of the rules, because they were never made for them in the first place. Vulcans just need to be balanced by regular people, that is what I meant to add. \nI guess if I ran this place, I would send a huge apology to Richard. And then I would thank him for opening my eyes to the truth. Then I'd sit down, get several drinks ready and just sort of soak in everything that has gone down so far, while continuing to sip my drinks. I'd start listening to the people who are the power users and I'd really start reading everything that minnows are complaining about. I'd take several days off the regular grind, and dive into solving the issues for the users, because I'd realize that the users will either make or break my future. I'd start with reading every response from [The Steemit User Survey](https://steemit.com/steemit/@stellabelle/steemit-user-survey-results-part-1) because I would realize that the answers to the problems lie inside there. Then, I'd build my own surveys, in an attempt to collect more data on how to improve Steemit. I'd respond to the data and make changes based on what I found, not on preconceived notions of how I wanted to change it. \nI guess that is what I would do. I would not give up, but I would not continue down the same path either. I would become more like water, less like rock. I would realize that I would still be in the running to alter the course of history. That is why I'd change.",
+    "body_length": 4461,
+    "cashout_time": "2016-09-18T03:06:18",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-11T03:06:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"users\":[\"donkeypong\"],\"links\":[\"https://steemit.com/steemit/@stellabelle/steemit-user-survey-results-part-1\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T03:18:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17897609125323,
+    "parent_author": "steemship",
+    "parent_permlink": "open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or",
+    "pending_payout_value": "29.129 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t030620073z",
+    "post_id": 1204007,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Open Letter to Ned and Dan: You Badly Need a Communications/Community/Content Expert and I Hereby Nominate @stellabelle or @donkeypong For That Job",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemship/open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or#@stellabelle/re-steemship-open-letter-to-ned-and-dan-you-badly-need-a-communications-community-content-expert-and-i-hereby-nominate-stellabelle-or-20160911t030620073z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 462477624791,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14293082408966,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103012759,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767337211,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690899726,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54630385693,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662788865,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213777416,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624870220,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "1000",
+        "reputation": 147478489309626,
+        "rshares": 118282633199,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969741207,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288328206,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 130214765444,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "100",
+        "reputation": 5571312226030,
+        "rshares": 142483711,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1502119996,
+        "voter": "roland.haynes"
+      }
+    ],
+    "author": "roland.haynes",
+    "author_reputation": 1159303098899,
+    "beneficiaries": [],
+    "body": "I have read all the comments here to this post and feel compelled to add my reaction and opinions to what has been posted already.\nIt is most interesting to look at the posts from an analytical point of view.\nFirst, there are way too many people who see this as an entertaining piece rather than a totally unacceptable event that should not exist on the platform. Yes, it is supposed to be censorship free, however, that should not be used as an excuse for extreme abuse and harassment.\nSecond, we have two people here who have clearly demonstrated through their posts over time that they are reasonable, mature, and personable individuals so why the comments suggesting that this is a case of \"he said, she said\"?\nThere should not be any question about that even if all one has as evidence is the information put forward in this post.\nThird, in my opinion, this is definitely both a Steemit issue AND an incident of abuse and harassment that must be taken seriously and acted upon in a decisive and constructive manner.\nThis is not a \"problem for Dan to deal with\". It is a problem that falls squarely on the shoulders of all who are a part of the community and it is our aggregate responsibility to condemn unacceptable behavior in no uncertain terms and demonstrate the fact that abuse and harassment on the Steemit platform should and will not be tolerated.\nRegardless of how incredible the technology, innovative infrastructure, and financial potential Steemit provides, the whole project will fail miserably if the community does not take concrete and immediate steps to deal with and prevent abuse and harassment on the platform.",
+    "body_length": 1636,
+    "cashout_time": "2016-09-12T21:55:30",
+    "category": "steemit",
+    "children": 6,
+    "created": "2016-09-05T21:55:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T21:55:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15071653177410,
+    "parent_author": "stellabelle",
+    "parent_permlink": "re-heiditravels-my-first-bad-experience-with-steemit-20160905t154941559z",
+    "pending_payout_value": "26.810 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-stellabelle-re-heiditravels-my-first-bad-experience-with-steemit-20160905t215542813z",
+    "post_id": 1139930,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "My First Bad Experience with Steemit",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@heiditravels/my-first-bad-experience-with-steemit#@roland.haynes/re-stellabelle-re-heiditravels-my-first-bad-experience-with-steemit-20160905t215542813z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2000",
+        "reputation": 32455846463901,
+        "rshares": 6369849234790,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3101186370,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3765012430,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690608231,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54337627462,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661905030,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213715284,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2651243328828,
+        "voter": "recursive"
+      },
+      {
+        "percent": "2000",
+        "reputation": 83941319998,
+        "rshares": 1150944340463,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 623017822,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967695714,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288232627,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2217132176566,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30097018787,
+        "rshares": 315338917,
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1960155455032,
+        "rshares": 3966338432,
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 167157550959,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 118305739659,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 4805110624,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19073889900896,
+        "rshares": 16449026481,
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2136142852031,
+        "rshares": 9047040961,
+        "voter": "aleksandraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 72131169,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 612120792,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163456454,
+        "voter": "gari"
+      }
+    ],
+    "author": "recursive",
+    "author_reputation": 9028537022578,
+    "beneficiaries": [],
+    "body": "Here are screenshots of the action. Pay attention folks, what you are seeing here is something that happens in mainstream media all the time: creating buzz on other subjects to divert the attention from another, more problematic, news story. Nice to see this happen in a controlled environment.\nhttp://i.imgur.com/xqXDozg.jpg\nhttp://i.imgur.com/JvxHzpT.jpg",
+    "body_length": 356,
+    "cashout_time": "2016-09-09T09:06:51",
+    "category": "steemit",
+    "children": 11,
+    "created": "2016-09-02T09:06:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"image\":[\"http://i.imgur.com/xqXDozg.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T09:06:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 12775711936065,
+    "parent_author": "snowflake",
+    "parent_permlink": "re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t022728700z",
+    "pending_payout_value": "22.412 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t090800648z",
+    "post_id": 1096218,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@leavemealone/ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on#@recursive/re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t090800648z"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..67faacf45be199510f2cd057b566da3b3979251a
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit.tavern.yaml
@@ -0,0 +1,28 @@
+---
+  test_name: Hivemind condenser_api.get_comment_discussions_by_payout patterns test
+
+  marks:
+    - patterntest
+
+  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: "condenser_api.get_comment_discussions_by_payout"
+          params: {"tag":"steemit"}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "tag_steemit"
+            directory: "condenser_api_patterns/get_comment_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit_paginated.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit_paginated.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..30f15ad8278b92ff068b0b47f8239ac519426ca8
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit_paginated.orig.json
@@ -0,0 +1,378 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6369849234790",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101186370",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765012430",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690608231",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54337627462",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661905030",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213715284",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2651243328828",
+        "voter": "recursive"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1150944340463",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623017822",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967695714",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288232627",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2217132176566",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315338917",
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3966338432",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167157550959",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118305739659",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4805110624",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16449026481",
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9047040961",
+        "voter": "aleksandraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72131169",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "612120792",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163456454",
+        "voter": "gari"
+      }
+    ],
+    "author": "recursive",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Here are screenshots of the action. Pay attention folks, what you are seeing here is something that happens in mainstream media all the time: creating buzz on other subjects to divert the attention from another, more problematic, news story. Nice to see this happen in a controlled environment.\nhttp://i.imgur.com/xqXDozg.jpg\nhttp://i.imgur.com/JvxHzpT.jpg",
+    "body_length": 356,
+    "cashout_time": "2016-10-04T11:59:45",
+    "category": "steemit",
+    "children": 11,
+    "created": "2016-09-02T09:06:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"image\":[\"http:\\/\\/i.imgur.com\\/xqXDozg.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T09:06:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 12775711936065,
+    "parent_author": "snowflake",
+    "parent_permlink": "re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t022728700z",
+    "pending_payout_value": "22.412 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t090800648z",
+    "post_id": 832692,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@leavemealone/ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on#@recursive/re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t090800648z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "9305098550743",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "857186086307",
+        "voter": "liondani"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "474106344",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22703855840",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15488518839",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59541191039",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51465833026",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198120963204",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10368505517",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731063947",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1442720449",
+        "voter": "dtsddace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131349861599",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12673818586",
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1425146090",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2558385878",
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224702176",
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111944290",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116253105",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453895192",
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3908250284",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "294948150",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60982926",
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8136053037",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55119698",
+        "voter": "jdp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56162395",
+        "voter": "sslstinkypete224"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1126663983",
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53615432",
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50968607",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54027130",
+        "voter": "kluse"
+      }
+    ],
+    "author": "shapeshiftio",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "We are working on it :) We will continue to update the community on Steemit and the following outlets: \n\nNewsletter Sign-up: http://eepurl.com/bdbzO1\nFacebook: https://www.facebook.com/shapeshiftexchange\nTwitter: https://twitter.com/ShapeShift_io\nPublic Slack: https://shapeshiftcommunity.herokuapp.com/",
+    "body_length": 303,
+    "cashout_time": "2016-09-18T05:13:27",
+    "category": "steemit",
+    "children": 5,
+    "created": "2016-08-17T21:01:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"http:\\/\\/eepurl.com\\/bdbzO1\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T21:01:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 10685332193813,
+    "parent_author": "someguy123",
+    "parent_permlink": "re-shapeshiftio-official-announcement-shapeshift-has-added-steem-to-the-exchange-20160817t204622283z",
+    "pending_payout_value": "20.584 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-someguy123-re-shapeshiftio-official-announcement-shapeshift-has-added-steem-to-the-exchange-20160817t210137104z",
+    "post_id": 646814,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "OFFICIAL ANNOUNCEMENT: ShapeShift has added Steem to the Exchange",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@shapeshiftio/official-announcement-shapeshift-has-added-steem-to-the-exchange#@shapeshiftio/re-someguy123-re-shapeshiftio-official-announcement-shapeshift-has-added-steem-to-the-exchange-20160817t210137104z"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit_paginated.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit_paginated.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..fa3b961e2862428b579ff447b458fe5a0b45d94f
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit_paginated.pat.json
@@ -0,0 +1,396 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "3200",
+        "reputation": 145171381514207,
+        "rshares": 9305098550743,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 857186086307,
+        "voter": "liondani"
+      },
+      {
+        "percent": "0",
+        "reputation": 7404914959204,
+        "rshares": 474106344,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 22703855840,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15488518839,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 59541191039,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 51465833026,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 198120963204,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10368505517,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 731063947,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 908929098218,
+        "rshares": 1442720449,
+        "voter": "dtsddace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 131349861599,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570848703227,
+        "rshares": 12673818586,
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 1425146090,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549388274509,
+        "rshares": 2558385878,
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41016280414,
+        "rshares": 224702176,
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 111944290,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 116253105,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164191748705,
+        "rshares": 453895192,
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 3908250284,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 294948150,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263257839975,
+        "rshares": 60982926,
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 8136053037,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 378195340228,
+        "rshares": 55119698,
+        "voter": "jdp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 860330,
+        "rshares": 56162395,
+        "voter": "sslstinkypete224"
+      },
+      {
+        "percent": "10000",
+        "reputation": 580482162746,
+        "rshares": 1126663983,
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1666032,
+        "rshares": 53615432,
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 50968607,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75900167,
+        "rshares": 54027130,
+        "voter": "kluse"
+      }
+    ],
+    "author": "shapeshiftio",
+    "author_reputation": 3224894234874,
+    "beneficiaries": [],
+    "body": "We are working on it :) We will continue to update the community on Steemit and the following outlets: \n\nNewsletter Sign-up: http://eepurl.com/bdbzO1\nFacebook: https://www.facebook.com/shapeshiftexchange\nTwitter: https://twitter.com/ShapeShift_io\nPublic Slack: https://shapeshiftcommunity.herokuapp.com/",
+    "body_length": 303,
+    "cashout_time": "2016-08-24T21:01:36",
+    "category": "steemit",
+    "children": 5,
+    "created": "2016-08-17T21:01:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"http://eepurl.com/bdbzO1\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T21:01:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 10685332193813,
+    "parent_author": "someguy123",
+    "parent_permlink": "re-shapeshiftio-official-announcement-shapeshift-has-added-steem-to-the-exchange-20160817t204622283z",
+    "pending_payout_value": "20.584 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-someguy123-re-shapeshiftio-official-announcement-shapeshift-has-added-steem-to-the-exchange-20160817t210137104z",
+    "post_id": 859473,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "OFFICIAL ANNOUNCEMENT: ShapeShift has added Steem to the Exchange",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@shapeshiftio/official-announcement-shapeshift-has-added-steem-to-the-exchange#@shapeshiftio/re-someguy123-re-shapeshiftio-official-announcement-shapeshift-has-added-steem-to-the-exchange-20160817t210137104z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2000",
+        "reputation": 32455846463901,
+        "rshares": 6369849234790,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3101186370,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3765012430,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690608231,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54337627462,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661905030,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213715284,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2651243328828,
+        "voter": "recursive"
+      },
+      {
+        "percent": "2000",
+        "reputation": 83941319998,
+        "rshares": 1150947559725,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 623017822,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967695714,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288232627,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 16311176121,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 254551668124,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 233230107272,
+        "voter": "wingz"
+      },
+      {
+        "percent": "4100",
+        "reputation": 8397302485673,
+        "rshares": 86786469044,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 323509837196,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1960155455032,
+        "rshares": 3966354593,
+        "voter": "usefree"
+      },
+      {
+        "percent": "2000",
+        "reputation": 5463774640621,
+        "rshares": 4299908739,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 37017484438,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 150579939,
+        "voter": "apptrade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10368438493,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 72946572,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 945836468614,
+        "rshares": 945789959,
+        "voter": "stickman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 119381980,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 780913278306,
+        "rshares": 202921940,
+        "voter": "stackcats"
+      }
+    ],
+    "author": "recursive",
+    "author_reputation": 9028537022578,
+    "beneficiaries": [],
+    "body": "I think the question isn't whether this was right or wrong, this would be creating a false dichotomy. There are usually as many views of right or wrong as there are people judging a specific case.  Beside OP is arguably FUD so it's not like reducing its visibility was entirely undeserved.\n\nThe real point was that what happened here was extremely manipulative, in the same kind of way we usually reproach to mainstream media and the private interests and powerful bureaucrats that control them. \n\nThe last few years in the crypto world have shown that the exact same crap that happens in the real world economy has happened in crypto markets: pumps and dumps, market manipulation, insider trading, money laundering, cartels, scammy IPOs, large scale ponzi schemes, money supply debasing, attempt at co-opting power by self-appointed influence groups, herding, mass hysteria, panick, fear and greed all around...  Crypto is a fascinating sandbox that helps understanding what's going on in the real economy, how greedy and ignorant economic actors are and how truely clueless economists and central banks really are. \n\nWith the advent of crypto based content publishing and social media platforms like Steem, we are now going to be able to observe all the panel of tactics used by government agencies, large corporates and mainstream media to attempt manipulate the public opinion and their effect. We will also have the opportunity to experiment with counter-tactics like trying to make things backfire for wannabe manipulators.\n\nIt's from that perspective that I find what Ned did here absolutely fascinating. This is the kind of stuff you find in Machiavelli's \"The Prince\" and  Robert Greene's \"48 Laws of Power\". And I expect that we will see more and more of that coming from every directions. This is going to be very interesting, and provide a lot of insight about what's happening in the world at large.",
+    "body_length": 1912,
+    "cashout_time": "2016-09-09T10:35:15",
+    "category": "steemit",
+    "children": 5,
+    "created": "2016-09-02T10:35:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"steemit\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T10:45:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11209222188723,
+    "parent_author": "pfunk",
+    "parent_permlink": "re-recursive-re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t092831890z",
+    "pending_payout_value": "17.827 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-pfunk-re-recursive-re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t103626146z",
+    "post_id": 1096810,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@leavemealone/ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on#@recursive/re-pfunk-re-recursive-re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t103626146z"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit_paginated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit_paginated.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..c52a0f829d2668b395da1394331db41e881e586e
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/tag_steemit_paginated.tavern.yaml
@@ -0,0 +1,28 @@
+---
+  test_name: Hivemind condenser_api.get_comment_discussions_by_payout patterns test
+
+  marks:
+    - patterntest # see paginated.tavern.yaml
+
+  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: "condenser_api.get_comment_discussions_by_payout"
+          params: {"tag":"steemit","start_author":"recursive","start_permlink":"re-snowflake-re-leavemealone-ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on-20160902t090800648z","limit":2}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "tag_steemit_paginated"
+            directory: "condenser_api_patterns/get_comment_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/truncated.orig.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/truncated.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..fc6e7c6bec79cb0498a6838c06b6f0df8c586257
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/truncated.orig.json
@@ -0,0 +1,3403 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211439242838",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51307830",
+        "voter": "highnye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54126702",
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50221956",
+        "voter": "steemithelper1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306081747",
+        "voter": "steemorama"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Fail ? No ",
+    "body_length": 26,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 9,
+    "created": "2016-08-17T02:06:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:06:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 211900981073,
+    "parent_author": "trogdor",
+    "parent_permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army",
+    "pending_payout_value": "0.132 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z",
+    "post_id": 635692,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127840289791",
+        "voter": "demotruk"
+      }
+    ],
+    "author": "bige37",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "This is li",
+    "body_length": 92,
+    "cashout_time": "2016-10-14T01:42:18",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-12T11:49:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/i.imgur.com\\/OG66bhF.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T13:26:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 127840289791,
+    "parent_author": "royaltiffany",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.029 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-royaltiffany-test-20160912t114919145z",
+    "post_id": 929861,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@bige37/re-royaltiffany-test-20160912t114919145z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "111795622957",
+        "voter": "derekareith"
+      }
+    ],
+    "author": "bitcoiner",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "It would s",
+    "body_length": 502,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T22:37:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 6,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T22:37:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 111795622957,
+    "parent_author": "derekareith",
+    "parent_permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z",
+    "pending_payout_value": "0.022 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z",
+    "post_id": 944530,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66397090281",
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101333267",
+        "voter": "cheetah22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188781535",
+        "voter": "cheetah23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144867260",
+        "voter": "cheetah24"
+      }
+    ],
+    "author": "cheetah",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Warning! T",
+    "body_length": 244,
+    "cashout_time": "2016-09-16T19:09:49",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-15T19:02:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-15T19:02:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 66832072343,
+    "parent_author": "machinelearning",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.014 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-test-20160915t190252",
+    "post_id": 960637,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@machinelearning/test#@cheetah/re-test-20160915t190252"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57522418578",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3750338819",
+        "voter": "achim86"
+      }
+    ],
+    "author": "achim86",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "yeahhhh! h",
+    "body_length": 125,
+    "cashout_time": "2016-09-16T14:39:17",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-15T15:53:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@achim86\\/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-15T17:05:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 61272757397,
+    "parent_author": "oaldamster",
+    "parent_permlink": "re-achim86-test-20160915t070512394z",
+    "pending_payout_value": "0.013 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-oaldamster-re-achim86-test-20160915t155303746z",
+    "post_id": 959003,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@achim86/test#@achim86/re-oaldamster-re-achim86-test-20160915t155303746z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19450828249",
+        "voter": "str11ngfello"
+      }
+    ],
+    "author": "alktoni",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "test if te",
+    "body_length": 25,
+    "cashout_time": "2016-10-05T23:22:30",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-04T23:30:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T23:30:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 19450828249,
+    "parent_author": "str11ngfello",
+    "parent_permlink": "test2",
+    "pending_payout_value": "0.004 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-str11ngfello-test2-20160904t233043502z",
+    "post_id": 857734,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test2",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@str11ngfello/test2#@alktoni/re-str11ngfello-test2-20160904t233043502z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12292537315",
+        "voter": "r4fken"
+      }
+    ],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 45,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T12:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T12:22:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 12292537315,
+    "parent_author": "pompe72",
+    "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z",
+    "pending_payout_value": "0.002 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218",
+    "post_id": 921255,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5205390768",
+        "voter": "brendio"
+      }
+    ],
+    "author": "brendio",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Does dickb",
+    "body_length": 47,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 4,
+    "created": "2016-09-06T06:19:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T06:19:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5205390768,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-dickbutt",
+    "pending_payout_value": "0.001 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z",
+    "post_id": 870030,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@brendio/re-dickbutt-testing-dickbutt-20160906t061918048z"
+  },
+  {
+    "active_votes": [],
+    "author": "derekareith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Just saw t",
+    "body_length": 331,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-13T22:25:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 5,
+    "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https:\\/\\/steemd.com\\/test\\/@derekareith\\/page-view-counter-test-post\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T22:25:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "bitcoiner",
+    "parent_permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z",
+    "post_id": 944446,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://i3.",
+    "body_length": 69,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-02T06:43:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 5,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T06:43:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336",
+    "post_id": 831916,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259-20160902t064336"
+  },
+  {
+    "active_votes": [],
+    "author": "laonie",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Anyway, i ",
+    "body_length": 118,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-18T07:50:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 5,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T07:50:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "trogdor",
+    "parent_permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z",
+    "post_id": 652753,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160818t075042763z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60116331",
+        "voter": "scotthelms89"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I knoooow ",
+    "body_length": 75,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-17T02:22:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 5,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:22:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60116331,
+    "parent_author": "trogdor",
+    "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z",
+    "post_id": 635813,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022232495z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14714651186",
+        "voter": "hellokitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121297875",
+        "voter": "btctoken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53821026",
+        "voter": "solarempirepc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134400698",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54126702",
+        "voter": "lovetosteemit"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Yes i did ",
+    "body_length": 38,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-17T02:13:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 5,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:13:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15078297487,
+    "parent_author": "trogdor",
+    "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z",
+    "post_id": 635744,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "77095774656",
+        "voter": "derekareith"
+      }
+    ],
+    "author": "bitcoiner",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Oh haha. Y",
+    "body_length": 62,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-13T20:29:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:29:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 77095774656,
+    "parent_author": "derekareith",
+    "parent_permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z",
+    "post_id": 943539,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "breath",
+    "body_length": 6,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:52:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:52:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z",
+    "post_id": 920022,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "its just a",
+    "body_length": 14,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:31:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:31:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z",
+    "post_id": 919922,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "reply to t",
+    "body_length": 41,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:30:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:30:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z",
+    "post_id": 919920,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://i3.",
+    "body_length": 69,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-02T06:43:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T06:43:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259",
+    "post_id": 831914,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226-20160902t064259"
+  },
+  {
+    "active_votes": [],
+    "author": "gary-smith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "If I said ",
+    "body_length": 35,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-17T14:22:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T14:22:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "thebeachedwhale",
+    "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z",
+    "post_id": 641876,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t142255070z"
+  },
+  {
+    "active_votes": [],
+    "author": "trogdor",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Hi @laonie",
+    "body_length": 293,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-17T10:20:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"laonie\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T10:20:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "laonie",
+    "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z",
+    "post_id": 639400,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-laonie-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t102017449z"
+  },
+  {
+    "active_votes": [],
+    "author": "trogdor",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "This is re",
+    "body_length": 118,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-17T02:21:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:21:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "royaltiffany",
+    "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z",
+    "post_id": 635801,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022047644z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14714651186",
+        "voter": "hellokitty"
+      }
+    ],
+    "author": "trogdor",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Could have",
+    "body_length": 203,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-17T02:12:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"bot\",\"test\"],\"users\":[\"royaltiffany\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:12:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14714651186,
+    "parent_author": "royaltiffany",
+    "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z",
+    "post_id": 635740,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60116331",
+        "voter": "scotthelms89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141474418",
+        "voter": "mrainp"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Lol",
+    "body_length": 3,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-17T02:05:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:05:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 201590749,
+    "parent_author": "thebeachedwhale",
+    "parent_permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z",
+    "post_id": 635684,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-thebeachedwhale-re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020535226z"
+  },
+  {
+    "active_votes": [],
+    "author": "freebornangel",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "That is to",
+    "body_length": 46,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-14T03:18:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T03:18:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z",
+    "post_id": 946378,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2767044151",
+        "voter": "bitcoiner"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "This is my",
+    "body_length": 88,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 3,
+    "created": "2016-09-13T20:26:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:26:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 2767044151,
+    "parent_author": "boomer",
+    "parent_permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z",
+    "post_id": 943519,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z"
+  },
+  {
+    "active_votes": [],
+    "author": "golfball",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "mouse \u0e40\u0e21\u0e32\u0e2a",
+    "body_length": 330,
+    "cashout_time": "2016-09-30T07:41:51",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T07:19:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T07:20:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "golfball",
+    "parent_permlink": "re-golfball-re-golfball-test-20160913t063516433z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-golfball-re-golfball-re-golfball-test-20160913t071932003z",
+    "post_id": 938127,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test One",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-re-golfball-test-20160913t071932003z"
+  },
+  {
+    "active_votes": [],
+    "author": "royaltiffany",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Ahahahhaha",
+    "body_length": 27,
+    "cashout_time": "2016-10-14T01:42:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T05:12:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T05:12:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "demotruk",
+    "parent_permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z",
+    "post_id": 937498,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@royaltiffany/re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52449059",
+        "voter": "paolo75"
+      }
+    ],
+    "author": "pompe72",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "dickbutt\n\n",
+    "body_length": 73,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-11T12:21:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i64.tinypic.com\\/1zn8p6d.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T12:21:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 52449059,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z",
+    "post_id": 921247,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@pompe72/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Breath Ske",
+    "body_length": 66,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T09:16:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/y43FolFlY78\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=y43FolFlY78\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T09:16:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z",
+    "post_id": 920140,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "feminism?",
+    "body_length": 9,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:55:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:55:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z",
+    "post_id": 920044,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "feminism?",
+    "body_length": 9,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:54:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:54:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z",
+    "post_id": 920039,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "femninism?",
+    "body_length": 10,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:54:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:54:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z",
+    "post_id": 920034,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "feminism?",
+    "body_length": 9,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:53:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:53:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z",
+    "post_id": 920031,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "feminist?",
+    "body_length": 9,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:32:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:32:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z",
+    "post_id": 919932,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z"
+  },
+  {
+    "active_votes": [],
+    "author": "skeptic",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Sick littl",
+    "body_length": 19,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 3,
+    "created": "2016-09-11T07:27:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T07:27:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z",
+    "post_id": 919626,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "feminist",
+    "body_length": 8,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:29:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:29:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z",
+    "post_id": 919917,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Much femin",
+    "body_length": 17,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:33:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:33:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z",
+    "post_id": 919938,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z"
+  },
+  {
+    "active_votes": [],
+    "author": "bullionstackers",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Thank you ",
+    "body_length": 36,
+    "cashout_time": "2016-10-06T04:18:33",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-05T05:08:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"ace108\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T06:05:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "ace108",
+    "parent_permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z",
+    "post_id": 859549,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@bullionstackers/re-ace108-re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t050838289z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 80,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-04T22:24:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T22:24:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "steemjesus",
+    "parent_permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429",
+    "post_id": 857335,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z-20160904t222429"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://i3.",
+    "body_length": 69,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-02T06:42:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T06:42:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226",
+    "post_id": 831911,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147-20160902t064226"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5186228610",
+        "voter": "ivicaa"
+      }
+    ],
+    "author": "thecleangame",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "lol Glad I",
+    "body_length": 24,
+    "cashout_time": "2016-09-28T17:56:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-28T18:19:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-28T18:19:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5186228610,
+    "parent_author": "ivicaa",
+    "parent_permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z",
+    "post_id": 780488,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "TEST - please ignore",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@ivicaa/test-please-ignore#@thecleangame/re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z"
+  },
+  {
+    "active_votes": [],
+    "author": "laonie",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "It seems @",
+    "body_length": 88,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 2,
+    "created": "2016-08-17T06:45:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"wang\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T06:45:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "trogdor",
+    "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z",
+    "post_id": 637778,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@laonie/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t064556368z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14714651186",
+        "voter": "hellokitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60116331",
+        "voter": "scotthelms89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121297875",
+        "voter": "btctoken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54874786",
+        "voter": "alexbones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50303592",
+        "voter": "biker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54792292",
+        "voter": "coutchpotatoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317967",
+        "voter": "sleepcult"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50221956",
+        "voter": "steemithelper1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54397669",
+        "voter": "waltrichards"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Wait for i",
+    "body_length": 29,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 4,
+    "created": "2016-08-17T02:10:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:10:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15210973654,
+    "parent_author": "trogdor",
+    "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z",
+    "post_id": 635722,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1947875840",
+        "voter": "gary-smith"
+      }
+    ],
+    "author": "thebeachedwhale",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Are you?",
+    "body_length": 8,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 2,
+    "created": "2016-08-17T02:02:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:02:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 1947875840,
+    "parent_author": "gary-smith",
+    "parent_permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z",
+    "post_id": 635668,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@thebeachedwhale/re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z"
+  },
+  {
+    "active_votes": [],
+    "author": "derekareith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Wish it wa",
+    "body_length": 62,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-14T02:14:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T02:14:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "steemitqa",
+    "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z",
+    "post_id": 946058,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60293991",
+        "voter": "freebornangel"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Yea, that'",
+    "body_length": 402,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-14T02:13:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T02:13:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60293991,
+    "parent_author": "freebornangel",
+    "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z",
+    "post_id": 946049,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z"
+  },
+  {
+    "active_votes": [],
+    "author": "boomer",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "ahhh...got",
+    "body_length": 13,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 4,
+    "created": "2016-09-13T20:24:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:24:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "bitcoiner",
+    "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z",
+    "post_id": 943509,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@boomer/re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z"
+  },
+  {
+    "active_votes": [],
+    "author": "derekareith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "yea stuck ",
+    "body_length": 92,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:18:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:18:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "goldmatters",
+    "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z",
+    "post_id": 943452,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z"
+  },
+  {
+    "active_votes": [],
+    "author": "golfball",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "mouse \u0e40\u0e21\u0e32\u0e2a",
+    "body_length": 680,
+    "cashout_time": "2016-09-30T07:41:51",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-13T06:35:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T06:35:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "golfball",
+    "parent_permlink": "re-golfball-test-20160913t063057513z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-golfball-re-golfball-test-20160913t063516433z",
+    "post_id": 937890,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test One",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-test-20160913t063516433z"
+  },
+  {
+    "active_votes": [],
+    "author": "royaltiffany",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Well if u ",
+    "body_length": 31,
+    "cashout_time": "2016-10-14T01:42:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T05:12:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T05:12:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "mrlogic",
+    "parent_permlink": "re-royaltiffany-test-20160912t110110157z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-mrlogic-re-royaltiffany-test-20160913t051214805z",
+    "post_id": 937496,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@royaltiffany/re-mrlogic-re-royaltiffany-test-20160913t051214805z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-10-14T04:41:42",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:39:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:39:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "contentjunkie",
+    "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z",
+    "post_id": 936569,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-10-14T04:41:42",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:36:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:36:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "contentjunkie",
+    "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022535074z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z",
+    "post_id": 936550,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z"
+  },
+  {
+    "active_votes": [],
+    "author": "demotruk",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I pushed t",
+    "body_length": 62,
+    "cashout_time": "2016-10-14T01:42:18",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-12T13:30:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T13:30:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "bige37",
+    "parent_permlink": "re-royaltiffany-test-20160912t114919145z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z",
+    "post_id": 930445,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@demotruk/re-bige37-re-royaltiffany-test-20160912t133042108z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": ":) Transex",
+    "body_length": 20,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T09:01:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T09:01:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "brendio",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z",
+    "post_id": 920080,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Can you br",
+    "body_length": 57,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T09:01:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T09:01:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z",
+    "post_id": 920072,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "you got it",
+    "body_length": 17,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:56:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:56:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z",
+    "post_id": 920050,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "breath 10 ",
+    "body_length": 15,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:56:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:56:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z",
+    "post_id": 920045,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "it is, jus",
+    "body_length": 32,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:55:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:55:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z",
+    "post_id": 920042,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "there you ",
+    "body_length": 12,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:52:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:52:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z",
+    "post_id": 920027,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 72,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-11T08:46:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:46:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643",
+    "post_id": 919991,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Im not afr",
+    "body_length": 30,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:58:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:58:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z",
+    "post_id": 920055,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 45,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-11T08:39:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:39:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948",
+    "post_id": 919966,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 50,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-11T08:36:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:36:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628",
+    "post_id": 919953,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "::) Got yo",
+    "body_length": 11,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:32:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:32:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "brendio",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z",
+    "post_id": 919934,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "dick butt?",
+    "body_length": 81,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:29:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:29:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z",
+    "post_id": 919913,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 45,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 3,
+    "created": "2016-09-11T08:21:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:21:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139",
+    "post_id": 919868,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 46,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 5,
+    "created": "2016-09-11T07:25:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T07:25:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542",
+    "post_id": 919616,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "go one up",
+    "body_length": 9,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:27:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:27:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z",
+    "post_id": 919903,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z"
+  },
+  {
+    "active_votes": [],
+    "author": "leprechaun",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Thanks.  f",
+    "body_length": 62,
+    "cashout_time": "2016-10-11T07:48:42",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-10T21:08:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T21:08:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "whatsup",
+    "parent_permlink": "re-leprechaun-steemedit-test-5-20160910t194955148z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z",
+    "post_id": 915135,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "steemedit test 5",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@leprechaun/steemedit-test-5#@leprechaun/re-whatsup-re-leprechaun-steemedit-test-5-20160910t210828490z"
+  },
+  {
+    "active_votes": [],
+    "author": "djangothegod",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I just sub",
+    "body_length": 52,
+    "cashout_time": "2016-09-25T14:37:57",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-10T19:34:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T19:35:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "steembaby",
+    "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t145927000z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z",
+    "post_id": 914301,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test -- my posts disappeared!",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@steembaby/test-my-posts-disappeared#@djangothegod/re-steembaby-re-steembaby-test-my-posts-disappeared-20160910t193455528z"
+  },
+  {
+    "active_votes": [],
+    "author": "hacon",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I am tryin",
+    "body_length": 199,
+    "cashout_time": "2016-10-11T17:09:06",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-10T14:54:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T14:54:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "kjsxj",
+    "parent_permlink": "re-hacon-first-post-20160910t144933601z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-kjsxj-re-hacon-first-post-20160910t145455609z",
+    "post_id": 911784,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "First post",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@hacon/first-post#@hacon/re-kjsxj-re-hacon-first-post-20160910t145455609z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 49,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-06T06:19:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T06:19:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "brendio",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952",
+    "post_id": 870034,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952"
+  },
+  {
+    "active_votes": [],
+    "author": "ace108",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "You're wel",
+    "body_length": 294,
+    "cashout_time": "2016-10-06T04:18:33",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-05T04:41:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T04:41:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "bullionstackers",
+    "parent_permlink": "re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t035325452z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z",
+    "post_id": 859422,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@ace108/re-bullionstackers-re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t044532251z"
+  },
+  {
+    "active_votes": [],
+    "author": "steemjesus",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "fuck r4fke",
+    "body_length": 55,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-04T22:23:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T22:23:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z",
+    "post_id": 857331,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@steemjesus/re-dickbutt-re-dickbutt-testing-dickbutt-20160904t222338417z"
+  },
+  {
+    "active_votes": [],
+    "author": "str11ngfello",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "asdf",
+    "body_length": 4,
+    "cashout_time": "2016-10-04T09:03:45",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-03T10:53:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T10:53:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "str11ngfello",
+    "parent_permlink": "re-str11ngfello-testing-20160903t104442633z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-str11ngfello-re-str11ngfello-testing-20160903t104442633z",
+    "post_id": 843277,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Testing",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@str11ngfello/testing#@str11ngfello/re-str11ngfello-re-str11ngfello-testing-20160903t104442633z"
+  },
+  {
+    "active_votes": [],
+    "author": "deli",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "good reall",
+    "body_length": 12,
+    "cashout_time": "2016-10-03T09:26:45",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-02T09:45:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T09:45:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "deli",
+    "parent_permlink": "re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t093020211z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z",
+    "post_id": 832895,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test just how to see how this all works qbd",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/re-deli-re-deli-test-just-how-to-see-how-this-all-works-qbd-20160902t094545057z"
+  },
+  {
+    "active_votes": [],
+    "author": "deli",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "bla bla bl",
+    "body_length": 11,
+    "cashout_time": "2016-10-03T09:26:45",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-02T09:42:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T10:01:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "deli",
+    "parent_permlink": "ghfhdg",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "kjhkfgfgud",
+    "post_id": 832881,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test just how to see how this all works qbd",
+    "title": "this is another test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@deli/test-just-how-to-see-how-this-all-works-qbd#@deli/kjhkfgfgud"
+  },
+  {
+    "active_votes": [],
+    "author": "no-mercy",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "They are \"",
+    "body_length": 50,
+    "cashout_time": "2016-10-03T07:15:03",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-02T06:56:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T06:56:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "iamgrateful",
+    "parent_permlink": "re-thebatchman1-do-not-vote-test-20160902t065341712z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z",
+    "post_id": 831973,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "do not vote - test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@thebatchman1/do-not-vote-test#@no-mercy/re-iamgrateful-re-thebatchman1-do-not-vote-test-20160902t065638142z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://i3.",
+    "body_length": 69,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-02T06:50:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T06:50:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "contentjunkie",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t065005906z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051",
+    "post_id": 831946,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://i3.",
+    "body_length": 69,
+    "cashout_time": "2016-10-03T07:19:21",
+    "category": "test",
+    "children": 3,
+    "created": "2016-09-02T06:41:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T06:41:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160902t064114931z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147",
+    "post_id": 831908,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160902t064114931z-20160902t064147"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356509174",
+        "voter": "jonathan-looman"
+      }
+    ],
+    "author": "jonathan-looman",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I think th",
+    "body_length": 328,
+    "cashout_time": "2016-09-30T19:02:24",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-30T21:46:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T21:46:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 356509174,
+    "parent_author": "whatsup",
+    "parent_permlink": "re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t200608106z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z",
+    "post_id": 805729,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "What is Steemit?",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain#@jonathan-looman/re-whatsup-re-jonathan-looman-hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain-20160830t214632491z"
+  },
+  {
+    "active_votes": [],
+    "author": "ivicaa",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": ":) At leas",
+    "body_length": 143,
+    "cashout_time": "2016-09-28T17:56:18",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-28T18:01:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-28T18:01:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "thecleangame",
+    "parent_permlink": "re-ivicaa-test-please-ignore-20160828t172635435z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z",
+    "post_id": 780295,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "TEST - please ignore",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@ivicaa/test-please-ignore#@ivicaa/re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z"
+  },
+  {
+    "active_votes": [],
+    "author": "steembaby",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Exactly th",
+    "body_length": 183,
+    "cashout_time": "2016-09-25T14:37:57",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-25T15:03:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T15:03:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "ibringawareness",
+    "parent_permlink": "re-steembaby-test-my-posts-disappeared-20160825t144249526z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z",
+    "post_id": 743391,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test -- my posts disappeared!",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@steembaby/test-my-posts-disappeared#@steembaby/re-ibringawareness-re-steembaby-test-my-posts-disappeared-20160825t150259870z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14714651186",
+        "voter": "hellokitty"
+      }
+    ],
+    "author": "trogdor",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Looks like",
+    "body_length": 100,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 8,
+    "created": "2016-08-17T02:09:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:09:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14714651186,
+    "parent_author": "royaltiffany",
+    "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z",
+    "post_id": 635716,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z"
+  },
+  {
+    "active_votes": [],
+    "author": "rawnetics",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Oh yes, he",
+    "body_length": 22,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-17T02:07:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:07:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "rawnetics",
+    "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020521246z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z",
+    "post_id": 635701,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@rawnetics/re-rawnetics-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020745425z"
+  },
+  {
+    "active_votes": [],
+    "author": "gary-smith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "are you a ",
+    "body_length": 17,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 3,
+    "created": "2016-08-17T02:02:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:02:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "thebeachedwhale",
+    "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020213239z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z",
+    "post_id": 635663,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@gary-smith/re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z"
+  },
+  {
+    "active_votes": [],
+    "author": "oaldamster",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Result: co",
+    "body_length": 22,
+    "cashout_time": "2016-09-16T14:39:17",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-15T07:05:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-15T07:05:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "achim86",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-achim86-test-20160915t070512394z",
+    "post_id": 955877,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@achim86/test#@oaldamster/re-achim86-test-20160915t070512394z"
+  },
+  {
+    "active_votes": [],
+    "author": "steemitqa",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I tried th",
+    "body_length": 26,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-14T02:12:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T02:12:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z",
+    "post_id": 946041,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@steemitqa/re-derekareith-page-view-counter-test-post-20160914t021242459z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "46263835410",
+        "voter": "derekareith"
+      }
+    ],
+    "author": "freebornangel",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Http://min",
+    "body_length": 57,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-14T01:54:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http:\\/\\/minds.com\\/ottman\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T01:57:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 46263835410,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z",
+    "post_id": 945943,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "77095774656",
+        "voter": "derekareith"
+      }
+    ],
+    "author": "bitcoiner",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "All images",
+    "body_length": 157,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 5,
+    "created": "2016-09-13T20:23:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:23:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 77095774656,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z",
+    "post_id": 943502,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10592290339",
+        "voter": "elissahawke"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<!-- Count",
+    "body_length": 455,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:22:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.e-zeeinternet.com\\/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http:\\/\\/www.e-zeeinternet.com\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:22:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 10592290339,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t202249477z",
+    "post_id": 943498,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t202249477z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10384598371",
+        "voter": "elissahawke"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<!-- Start",
+    "body_length": 332,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:19:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/simplehitcounter.com\\/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http:\\/\\/www.marcleaningservices.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:20:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 10384598371,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201948735z",
+    "post_id": 943470,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201948735z"
+  },
+  {
+    "active_votes": [],
+    "author": "jbouchard12",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Let us kno",
+    "body_length": 34,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:19:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:19:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201859183z",
+    "post_id": 943456,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@jbouchard12/re-derekareith-page-view-counter-test-post-20160913t201859183z"
+  },
+  {
+    "active_votes": [],
+    "author": "goldmatters",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Do not see",
+    "body_length": 21,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-13T20:18:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:18:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z",
+    "post_id": 943447,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@goldmatters/re-derekareith-page-view-counter-test-post-20160913t201813326z"
+  },
+  {
+    "active_votes": [],
+    "author": "derekareith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "no luck :(",
+    "body_length": 10,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:17:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:17:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201727708z",
+    "post_id": 943437,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201727708z"
+  },
+  {
+    "active_votes": [],
+    "author": "karenb54",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I opened, ",
+    "body_length": 61,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:17:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:17:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201718842z",
+    "post_id": 943436,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@karenb54/re-derekareith-page-view-counter-test-post-20160913t201718842z"
+  },
+  {
+    "active_votes": [],
+    "author": "vinotinto",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "test comme",
+    "body_length": 12,
+    "cashout_time": "2016-10-14T13:15:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T13:13:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T13:13:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "vinotinto",
+    "parent_permlink": "3qkywh-test",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-vinotinto-3qkywh-test-20160913t131315550z",
+    "post_id": 939969,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@vinotinto/3qkywh-test#@vinotinto/re-vinotinto-3qkywh-test-20160913t131315550z"
+  },
+  {
+    "active_votes": [],
+    "author": "golfball",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "1. mouse  ",
+    "body_length": 763,
+    "cashout_time": "2016-09-30T07:41:51",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-13T06:31:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/compass.microsoft.com\\/assets\\/ff\\/be\\/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T06:33:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "golfball",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-golfball-test-20160913t063057513z",
+    "post_id": 937862,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test One",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@golfball/test#@golfball/re-golfball-test-20160913t063057513z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-10-14T04:41:42",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:53:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:53:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z",
+    "post_id": 936699,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-10-14T04:41:42",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:51:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:51:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z",
+    "post_id": 936684,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/truncated.pat.json b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/truncated.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..ed906284944f087e6f00a13eaa1ec89fbf83a4fe
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/truncated.pat.json
@@ -0,0 +1,3430 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 211439242838,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51307830,
+        "voter": "highnye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78138793415,
+        "rshares": 54126702,
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": -47452169124,
+        "rshares": 50221956,
+        "voter": "steemithelper1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51223240,
+        "rshares": 306081747,
+        "voter": "steemorama"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 10900524985586,
+    "beneficiaries": [],
+    "body": "Fail ? No ",
+    "body_length": 26,
+    "cashout_time": "2016-08-24T02:06:00",
+    "category": "test",
+    "children": 9,
+    "created": "2016-08-17T02:06:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:06:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 211900981073,
+    "parent_author": "trogdor",
+    "parent_permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army",
+    "pending_payout_value": "0.132 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z",
+    "post_id": 845516,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127840289791,
+        "voter": "demotruk"
+      }
+    ],
+    "author": "bige37",
+    "author_reputation": 49922441497,
+    "beneficiaries": [],
+    "body": "This is li",
+    "body_length": 92,
+    "cashout_time": "2016-09-19T11:49:18",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-12T11:49:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://i.imgur.com/OG66bhF.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T13:26:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 127840289791,
+    "parent_author": "royaltiffany",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.029 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-royaltiffany-test-20160912t114919145z",
+    "post_id": 1218903,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@bige37/re-royaltiffany-test-20160912t114919145z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7500",
+        "reputation": 18799092030582,
+        "rshares": 111795622957,
+        "voter": "derekareith"
+      }
+    ],
+    "author": "bitcoiner",
+    "author_reputation": 4603449402273,
+    "beneficiaries": [],
+    "body": "It would s",
+    "body_length": 502,
+    "cashout_time": "2016-09-20T22:37:39",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T22:37:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 6,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T22:37:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 111795622957,
+    "parent_author": "derekareith",
+    "parent_permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z",
+    "pending_payout_value": "0.022 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z",
+    "post_id": 1237190,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t223741801z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 18799092030582,
+        "rshares": 77095774656,
+        "voter": "derekareith"
+      }
+    ],
+    "author": "bitcoiner",
+    "author_reputation": 4603449402273,
+    "beneficiaries": [],
+    "body": "Oh haha. Y",
+    "body_length": 62,
+    "cashout_time": "2016-09-20T20:29:33",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-13T20:29:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:29:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 77095774656,
+    "parent_author": "derekareith",
+    "parent_permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z",
+    "pending_payout_value": "0.018 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z",
+    "post_id": 1235942,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 18799092030582,
+        "rshares": 77095774656,
+        "voter": "derekareith"
+      }
+    ],
+    "author": "bitcoiner",
+    "author_reputation": 4603449402273,
+    "beneficiaries": [],
+    "body": "All images",
+    "body_length": 157,
+    "cashout_time": "2016-09-20T20:23:15",
+    "category": "test",
+    "children": 5,
+    "created": "2016-09-13T20:23:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:23:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 77095774656,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.018 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z",
+    "post_id": 1235897,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@bitcoiner/re-derekareith-page-view-counter-test-post-20160913t202316437z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 22504728466704,
+        "rshares": 66397090281,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 856945350,
+        "rshares": 101333267,
+        "voter": "cheetah22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 941978751,
+        "rshares": 188781535,
+        "voter": "cheetah23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138268096,
+        "rshares": 144867260,
+        "voter": "cheetah24"
+      }
+    ],
+    "author": "cheetah",
+    "author_reputation": 22504728466704,
+    "beneficiaries": [],
+    "body": "Warning! T",
+    "body_length": 244,
+    "cashout_time": "2016-09-22T19:02:51",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-15T19:02:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-15T19:02:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 66832072343,
+    "parent_author": "machinelearning",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.014 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-test-20160915t190252",
+    "post_id": 1257452,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@machinelearning/test#@cheetah/re-test-20160915t190252"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 57522418578,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 3750338819,
+        "voter": "achim86"
+      }
+    ],
+    "author": "achim86",
+    "author_reputation": 2287220532946,
+    "beneficiaries": [],
+    "body": "yeahhhh! h",
+    "body_length": 125,
+    "cashout_time": "2016-09-22T15:53:06",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-15T15:53:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https://steemit.com/steemit/@achim86/html-commands-how-to-structure-your-texts-on-steemit-german-text-strukturierung\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-15T17:05:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 61272757397,
+    "parent_author": "oaldamster",
+    "parent_permlink": "re-achim86-test-20160915t070512394z",
+    "pending_payout_value": "0.013 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-oaldamster-re-achim86-test-20160915t155303746z",
+    "post_id": 1255452,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@achim86/test#@achim86/re-oaldamster-re-achim86-test-20160915t155303746z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3000",
+        "reputation": 18799092030582,
+        "rshares": 46263835410,
+        "voter": "derekareith"
+      }
+    ],
+    "author": "freebornangel",
+    "author_reputation": 62995887468,
+    "beneficiaries": [],
+    "body": "Http://min",
+    "body_length": 57,
+    "cashout_time": "2016-09-21T01:54:00",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-14T01:54:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"Http://minds.com/ottman\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T01:57:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 46263835410,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.011 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z",
+    "post_id": 1238946,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-page-view-counter-test-post-20160914t015352577z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 2601725582045,
+        "rshares": 14714651186,
+        "voter": "hellokitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": -655701032,
+        "rshares": 121297875,
+        "voter": "btctoken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53821026,
+        "voter": "solarempirepc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 134400698,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78138793415,
+        "rshares": 54126702,
+        "voter": "lovetosteemit"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 10900524985586,
+    "beneficiaries": [],
+    "body": "Yes i did ",
+    "body_length": 38,
+    "cashout_time": "2016-08-24T02:13:30",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-17T02:13:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 5,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:13:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15078297487,
+    "parent_author": "trogdor",
+    "parent_permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z",
+    "pending_payout_value": "0.009 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z",
+    "post_id": 845582,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021331735z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 2601725582045,
+        "rshares": 14714651186,
+        "voter": "hellokitty"
+      }
+    ],
+    "author": "trogdor",
+    "author_reputation": 12494904871301,
+    "beneficiaries": [],
+    "body": "Could have",
+    "body_length": 203,
+    "cashout_time": "2016-08-24T02:12:48",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-17T02:12:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"bot\",\"test\"],\"users\":[\"royaltiffany\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:12:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14714651186,
+    "parent_author": "royaltiffany",
+    "parent_permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z",
+    "pending_payout_value": "0.009 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z",
+    "post_id": 845578,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021234629z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 2601725582045,
+        "rshares": 14714651186,
+        "voter": "hellokitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10450510,
+        "rshares": 60116331,
+        "voter": "scotthelms89"
+      },
+      {
+        "percent": "10000",
+        "reputation": -655701032,
+        "rshares": 121297875,
+        "voter": "btctoken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54874786,
+        "voter": "alexbones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3996156608,
+        "rshares": 50303592,
+        "voter": "biker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7455348681,
+        "rshares": 54792292,
+        "voter": "coutchpotatoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 407993596,
+        "rshares": 50317967,
+        "voter": "sleepcult"
+      },
+      {
+        "percent": "10000",
+        "reputation": -47452169124,
+        "rshares": 50221956,
+        "voter": "steemithelper1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2403071,
+        "rshares": 54397669,
+        "voter": "waltrichards"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 10900524985586,
+    "beneficiaries": [],
+    "body": "Wait for i",
+    "body_length": 29,
+    "cashout_time": "2016-08-24T02:10:24",
+    "category": "test",
+    "children": 4,
+    "created": "2016-08-17T02:10:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:10:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15210973654,
+    "parent_author": "trogdor",
+    "parent_permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z",
+    "pending_payout_value": "0.009 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z",
+    "post_id": 845556,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@royaltiffany/re-trogdor-re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t021026566z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 2601725582045,
+        "rshares": 14714651186,
+        "voter": "hellokitty"
+      }
+    ],
+    "author": "trogdor",
+    "author_reputation": 12494904871301,
+    "beneficiaries": [],
+    "body": "Looks like",
+    "body_length": 100,
+    "cashout_time": "2016-08-24T02:09:30",
+    "category": "test",
+    "children": 8,
+    "created": "2016-08-17T02:09:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:09:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14714651186,
+    "parent_author": "royaltiffany",
+    "parent_permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020602907z",
+    "pending_payout_value": "0.009 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z",
+    "post_id": 845549,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@trogdor/re-royaltiffany-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020915512z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2000",
+        "reputation": 22504728466704,
+        "rshares": 12848201254,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46335594,
+        "rshares": 120373295,
+        "voter": "cheetah73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 752249873,
+        "rshares": 99741664,
+        "voter": "cheetah74"
+      }
+    ],
+    "author": "cheetah",
+    "author_reputation": 22504728466704,
+    "beneficiaries": [],
+    "body": "Warning! T",
+    "body_length": 244,
+    "cashout_time": "2016-08-29T19:16:33",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-22T19:16:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-22T19:16:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 13068316213,
+    "parent_author": "dicov",
+    "parent_permlink": "test-flags",
+    "pending_payout_value": "0.008 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-test-flags-20160822t191625",
+    "post_id": 939190,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test flags",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dicov/test-flags#@cheetah/re-test-flags-20160822t191625"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 11477066225,
+        "voter": "williambanks"
+      }
+    ],
+    "author": "williambanks",
+    "author_reputation": 15621086173579,
+    "beneficiaries": [],
+    "body": "Need to gi",
+    "body_length": 68,
+    "cashout_time": "2016-08-24T02:20:39",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-17T02:20:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:20:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11477066225,
+    "parent_author": "trogdor",
+    "parent_permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army",
+    "pending_payout_value": "0.007 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022041083z",
+    "post_id": 845657,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@williambanks/re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t022041083z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 2629304079354,
+        "rshares": 19450828249,
+        "voter": "str11ngfello"
+      }
+    ],
+    "author": "alktoni",
+    "author_reputation": 8652306644,
+    "beneficiaries": [],
+    "body": "test if te",
+    "body_length": 25,
+    "cashout_time": "2016-09-11T23:30:45",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-04T23:30:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T23:30:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 19450828249,
+    "parent_author": "str11ngfello",
+    "parent_permlink": "test2",
+    "pending_payout_value": "0.006 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-str11ngfello-test2-20160904t233043502z",
+    "post_id": 1128110,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test2",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@str11ngfello/test2#@alktoni/re-str11ngfello-test2-20160904t233043502z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 12292537315,
+        "voter": "r4fken"
+      }
+    ],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 45,
+    "cashout_time": "2016-09-18T12:22:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T12:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T12:22:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 12292537315,
+    "parent_author": "pompe72",
+    "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z",
+    "pending_payout_value": "0.004 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218",
+    "post_id": 1208141,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z-20160911t122218"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 10592290339,
+        "voter": "elissahawke"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 18799092030582,
+    "beneficiaries": [],
+    "body": "<!-- Count",
+    "body_length": 455,
+    "cashout_time": "2016-09-20T20:22:51",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:22:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://www.e-zeeinternet.com/count.php?page=1156943&style=blushdw&nbdigits=5\"],\"links\":[\"http://www.e-zeeinternet.com/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:22:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 10592290339,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.002 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t202249477z",
+    "post_id": 1235892,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t202249477z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 10384598371,
+        "voter": "elissahawke"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 18799092030582,
+    "beneficiaries": [],
+    "body": "<!-- Start",
+    "body_length": 332,
+    "cashout_time": "2016-09-20T20:19:51",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:19:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://simplehitcounter.com/hit.php?uid=2165971&f=16777215&b=0\"],\"links\":[\"http://www.marcleaningservices.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:20:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 10384598371,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.002 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201948735z",
+    "post_id": 1235859,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201948735z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 5205390768,
+        "voter": "brendio"
+      }
+    ],
+    "author": "brendio",
+    "author_reputation": 97328985094,
+    "beneficiaries": [],
+    "body": "Does dickb",
+    "body_length": 47,
+    "cashout_time": "2016-09-13T06:19:18",
+    "category": "test",
+    "children": 4,
+    "created": "2016-09-06T06:19:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T06:19:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5205390768,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-dickbutt",
+    "pending_payout_value": "0.002 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z",
+    "post_id": 1143719,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@brendio/re-dickbutt-testing-dickbutt-20160906t061918048z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5186228610,
+        "voter": "ivicaa"
+      }
+    ],
+    "author": "thecleangame",
+    "author_reputation": 3651111167339,
+    "beneficiaries": [],
+    "body": "lol Glad I",
+    "body_length": 24,
+    "cashout_time": "2016-09-04T18:19:12",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-28T18:19:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-28T18:19:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5186228610,
+    "parent_author": "ivicaa",
+    "parent_permlink": "re-thecleangame-re-ivicaa-test-please-ignore-20160828t180155417z",
+    "pending_payout_value": "0.002 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z",
+    "post_id": 1030241,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "TEST - please ignore",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@ivicaa/test-please-ignore#@thecleangame/re-ivicaa-re-thecleangame-re-ivicaa-test-please-ignore-20160828t181208140z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5289953183,
+        "voter": "ivicaa"
+      }
+    ],
+    "author": "thecleangame",
+    "author_reputation": 3651111167339,
+    "beneficiaries": [],
+    "body": "# NOOOOOOO",
+    "body_length": 152,
+    "cashout_time": "2016-09-04T17:33:39",
+    "category": "test",
+    "children": 2,
+    "created": "2016-08-28T17:33:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-28T17:33:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5289953183,
+    "parent_author": "ivicaa",
+    "parent_permlink": "test-please-ignore",
+    "pending_payout_value": "0.002 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-ivicaa-test-please-ignore-20160828t172635435z",
+    "post_id": 1029615,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "TEST - please ignore",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@ivicaa/test-please-ignore#@thecleangame/re-ivicaa-test-please-ignore-20160828t172635435z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5469062752,
+        "voter": "arcaneinfo"
+      }
+    ],
+    "author": "arcaneinfo",
+    "author_reputation": 6813289592775,
+    "beneficiaries": [],
+    "body": "https://st",
+    "body_length": 138,
+    "cashout_time": "2016-09-03T05:11:24",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-27T05:11:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https://steemit.com/health/@arcaneinfo/virtual-reality-therapy-might-help-paralyzed-patients-walk-again\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-27T05:11:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5469062752,
+    "parent_author": "stino-san",
+    "parent_permlink": "46vbbv-test",
+    "pending_payout_value": "0.002 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-stino-san-46vbbv-test-20160827t051122635z",
+    "post_id": 1008897,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@stino-san/46vbbv-test#@arcaneinfo/re-stino-san-46vbbv-test-20160827t051122635z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 3374491185,
+        "voter": "ace108"
+      }
+    ],
+    "author": "bullionstackers",
+    "author_reputation": 4063076365725,
+    "beneficiaries": [],
+    "body": "<h2>Yay!!!",
+    "body_length": 152,
+    "cashout_time": "2016-09-12T03:53:27",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-05T03:53:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"ace108\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T03:53:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 3374491185,
+    "parent_author": "ace108",
+    "parent_permlink": "test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want",
+    "pending_payout_value": "0.001 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t035325452z",
+    "post_id": 1129817,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want#@bullionstackers/re-ace108-test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want-20160905t035325452z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 794373773056,
+        "rshares": 3000374699,
+        "voter": "sune"
+      }
+    ],
+    "author": "twitterbot",
+    "author_reputation": 149692767350,
+    "beneficiaries": [],
+    "body": "### ![tech",
+    "body_length": 396,
+    "cashout_time": "2016-09-02T05:01:15",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-26T05:01:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-26T05:01:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 3000374699,
+    "parent_author": "bodet.grrla",
+    "parent_permlink": "hello-world",
+    "pending_payout_value": "0.001 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-hello-world-20160826t050115",
+    "post_id": 993286,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Hello world",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@bodet.grrla/hello-world#@twitterbot/re-hello-world-20160826t050115"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 1947875840,
+        "voter": "gary-smith"
+      }
+    ],
+    "author": "thebeachedwhale",
+    "author_reputation": 1902109169053,
+    "beneficiaries": [],
+    "body": "Are you?",
+    "body_length": 8,
+    "cashout_time": "2016-08-24T02:02:54",
+    "category": "test",
+    "children": 2,
+    "created": "2016-08-17T02:02:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:02:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 1947875840,
+    "parent_author": "gary-smith",
+    "parent_permlink": "re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020242106z",
+    "pending_payout_value": "0.001 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z",
+    "post_id": 845487,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army#@thebeachedwhale/re-gary-smith-re-thebeachedwhale-re-trogdor-this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army-20160817t020252171z"
+  },
+  {
+    "active_votes": [],
+    "author": "oaldamster",
+    "author_reputation": 14968641922913,
+    "beneficiaries": [],
+    "body": "Result: co",
+    "body_length": 22,
+    "cashout_time": "2016-09-22T07:05:12",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-15T07:05:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-15T07:05:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "achim86",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-achim86-test-20160915t070512394z",
+    "post_id": 1251536,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@achim86/test#@oaldamster/re-achim86-test-20160915t070512394z"
+  },
+  {
+    "active_votes": [],
+    "author": "freebornangel",
+    "author_reputation": 62995887468,
+    "beneficiaries": [],
+    "body": "That is to",
+    "body_length": 46,
+    "cashout_time": "2016-09-21T03:18:00",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-14T03:18:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T03:18:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z",
+    "post_id": 1239537,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@freebornangel/re-derekareith-re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t031757591z"
+  },
+  {
+    "active_votes": [],
+    "author": "derekareith",
+    "author_reputation": 18799092030582,
+    "beneficiaries": [],
+    "body": "Wish it wa",
+    "body_length": 62,
+    "cashout_time": "2016-09-21T02:14:36",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-14T02:14:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T02:14:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "steemitqa",
+    "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z",
+    "post_id": 1239113,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-steemitqa-re-derekareith-page-view-counter-test-post-20160914t021435535z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 60293991,
+        "voter": "freebornangel"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 18799092030582,
+    "beneficiaries": [],
+    "body": "Yea, that'",
+    "body_length": 402,
+    "cashout_time": "2016-09-21T02:13:27",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-14T02:13:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T02:13:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60293991,
+    "parent_author": "freebornangel",
+    "parent_permlink": "re-derekareith-page-view-counter-test-post-20160914t015352577z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z",
+    "post_id": 1239100,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-freebornangel-re-derekareith-page-view-counter-test-post-20160914t021327023z"
+  },
+  {
+    "active_votes": [],
+    "author": "steemitqa",
+    "author_reputation": 954937043358,
+    "beneficiaries": [],
+    "body": "I tried th",
+    "body_length": 26,
+    "cashout_time": "2016-09-21T02:12:12",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-14T02:12:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T02:12:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160914t021242459z",
+    "post_id": 1239088,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@steemitqa/re-derekareith-page-view-counter-test-post-20160914t021242459z"
+  },
+  {
+    "active_votes": [],
+    "author": "derekareith",
+    "author_reputation": 18799092030582,
+    "beneficiaries": [],
+    "body": "Just saw t",
+    "body_length": 331,
+    "cashout_time": "2016-09-20T22:25:12",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-13T22:25:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 5,
+    "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https://steemd.com/test/@derekareith/page-view-counter-test-post\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T22:25:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "bitcoiner",
+    "parent_permlink": "re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202935838z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z",
+    "post_id": 1237087,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-bitcoiner-re-derekareith-re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t222510866z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 4603449402273,
+        "rshares": 2767044151,
+        "voter": "bitcoiner"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 18799092030582,
+    "beneficiaries": [],
+    "body": "This is my",
+    "body_length": 88,
+    "cashout_time": "2016-09-20T20:26:09",
+    "category": "test",
+    "children": 3,
+    "created": "2016-09-13T20:26:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:26:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 2767044151,
+    "parent_author": "boomer",
+    "parent_permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z",
+    "post_id": 1235917,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-boomer-re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202607590z"
+  },
+  {
+    "active_votes": [],
+    "author": "boomer",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "ahhh...got",
+    "body_length": 13,
+    "cashout_time": "2016-09-20T20:24:27",
+    "category": "test",
+    "children": 4,
+    "created": "2016-09-13T20:24:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:24:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "bitcoiner",
+    "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t202316437z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z",
+    "post_id": 1235904,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@boomer/re-bitcoiner-re-derekareith-page-view-counter-test-post-20160913t202425623z"
+  },
+  {
+    "active_votes": [],
+    "author": "jbouchard12",
+    "author_reputation": 2753142336385,
+    "beneficiaries": [],
+    "body": "Let us kno",
+    "body_length": 34,
+    "cashout_time": "2016-09-20T20:19:00",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:19:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:19:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201859183z",
+    "post_id": 1235845,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@jbouchard12/re-derekareith-page-view-counter-test-post-20160913t201859183z"
+  },
+  {
+    "active_votes": [],
+    "author": "derekareith",
+    "author_reputation": 18799092030582,
+    "beneficiaries": [],
+    "body": "yea stuck ",
+    "body_length": 92,
+    "cashout_time": "2016-09-20T20:18:48",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:18:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:18:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "goldmatters",
+    "parent_permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z",
+    "post_id": 1235841,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-goldmatters-re-derekareith-page-view-counter-test-post-20160913t201845702z"
+  },
+  {
+    "active_votes": [],
+    "author": "goldmatters",
+    "author_reputation": 251629303655,
+    "beneficiaries": [],
+    "body": "Do not see",
+    "body_length": 21,
+    "cashout_time": "2016-09-20T20:18:12",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-13T20:18:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:18:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201813326z",
+    "post_id": 1235833,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@goldmatters/re-derekareith-page-view-counter-test-post-20160913t201813326z"
+  },
+  {
+    "active_votes": [],
+    "author": "derekareith",
+    "author_reputation": 18799092030582,
+    "beneficiaries": [],
+    "body": "no luck :(",
+    "body_length": 10,
+    "cashout_time": "2016-09-20T20:17:30",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:17:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:17:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201727708z",
+    "post_id": 1235823,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@derekareith/re-derekareith-page-view-counter-test-post-20160913t201727708z"
+  },
+  {
+    "active_votes": [],
+    "author": "karenb54",
+    "author_reputation": 3278418228934,
+    "beneficiaries": [],
+    "body": "I opened, ",
+    "body_length": 61,
+    "cashout_time": "2016-09-20T20:17:24",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T20:17:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:17:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "derekareith",
+    "parent_permlink": "page-view-counter-test-post",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-derekareith-page-view-counter-test-post-20160913t201718842z",
+    "post_id": 1235822,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post#@karenb54/re-derekareith-page-view-counter-test-post-20160913t201718842z"
+  },
+  {
+    "active_votes": [],
+    "author": "vinotinto",
+    "author_reputation": -58083831106,
+    "beneficiaries": [],
+    "body": "test comme",
+    "body_length": 12,
+    "cashout_time": "2016-09-20T13:13:15",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T13:13:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T13:13:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "vinotinto",
+    "parent_permlink": "3qkywh-test",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-vinotinto-3qkywh-test-20160913t131315550z",
+    "post_id": 1231480,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@vinotinto/3qkywh-test#@vinotinto/re-vinotinto-3qkywh-test-20160913t131315550z"
+  },
+  {
+    "active_votes": [],
+    "author": "golfball",
+    "author_reputation": 36395159,
+    "beneficiaries": [],
+    "body": "mouse \u0e40\u0e21\u0e32\u0e2a",
+    "body_length": 330,
+    "cashout_time": "2016-09-20T07:19:33",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T07:19:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T07:20:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "golfball",
+    "parent_permlink": "re-golfball-re-golfball-test-20160913t063516433z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-golfball-re-golfball-re-golfball-test-20160913t071932003z",
+    "post_id": 1229166,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test One",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-re-golfball-test-20160913t071932003z"
+  },
+  {
+    "active_votes": [],
+    "author": "golfball",
+    "author_reputation": 36395159,
+    "beneficiaries": [],
+    "body": "mouse \u0e40\u0e21\u0e32\u0e2a",
+    "body_length": 680,
+    "cashout_time": "2016-09-20T06:35:18",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-13T06:35:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T06:35:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "golfball",
+    "parent_permlink": "re-golfball-test-20160913t063057513z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-golfball-re-golfball-test-20160913t063516433z",
+    "post_id": 1228843,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test One",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@golfball/test#@golfball/re-golfball-re-golfball-test-20160913t063516433z"
+  },
+  {
+    "active_votes": [],
+    "author": "golfball",
+    "author_reputation": 36395159,
+    "beneficiaries": [],
+    "body": "1. mouse  ",
+    "body_length": 763,
+    "cashout_time": "2016-09-20T06:31:00",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-13T06:31:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://compass.microsoft.com/assets/ff/be/ffbe20a0-c36d-42dd-b710-b1ee6ee0981f.jpg?n=Compact%20Optical%20Mouse%20500.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T06:33:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "golfball",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-golfball-test-20160913t063057513z",
+    "post_id": 1228808,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test One",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@golfball/test#@golfball/re-golfball-test-20160913t063057513z"
+  },
+  {
+    "active_votes": [],
+    "author": "royaltiffany",
+    "author_reputation": 10900524985586,
+    "beneficiaries": [],
+    "body": "Ahahahhaha",
+    "body_length": 27,
+    "cashout_time": "2016-09-20T05:12:42",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T05:12:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T05:12:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "demotruk",
+    "parent_permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z",
+    "post_id": 1228356,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@royaltiffany/re-demotruk-re-bige37-re-royaltiffany-test-20160913t051241878z"
+  },
+  {
+    "active_votes": [],
+    "author": "royaltiffany",
+    "author_reputation": 10900524985586,
+    "beneficiaries": [],
+    "body": "Well if u ",
+    "body_length": 31,
+    "cashout_time": "2016-09-20T05:12:15",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T05:12:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T05:12:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "mrlogic",
+    "parent_permlink": "re-royaltiffany-test-20160912t110110157z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-mrlogic-re-royaltiffany-test-20160913t051214805z",
+    "post_id": 1228354,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@royaltiffany/re-mrlogic-re-royaltiffany-test-20160913t051214805z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:53:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:53:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:53:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z",
+    "post_id": 1227386,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025309976z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:52:48",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:52:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:52:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025237855z",
+    "post_id": 1227381,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025237855z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:51:42",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:51:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:51:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z",
+    "post_id": 1227370,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025131685z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:51:06",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:51:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:51:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t025057253z",
+    "post_id": 1227364,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t025057253z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:46:09",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:46:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:46:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t024559179z",
+    "post_id": 1227310,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t024559179z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:45:33",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:45:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:45:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t024523945z",
+    "post_id": 1227301,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t024523945z"
+  },
+  {
+    "active_votes": [],
+    "author": "skeptic",
+    "author_reputation": -2498083480,
+    "beneficiaries": [],
+    "body": "no dickbut",
+    "body_length": 15,
+    "cashout_time": "2016-09-20T02:43:27",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:43:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:43:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t024327742z",
+    "post_id": 1227269,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@skeptic/re-dickbutt-testing-the-dickbutt-automated-system-20160913t024327742z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:43:00",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:43:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:43:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t024249953z",
+    "post_id": 1227263,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t024249953z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:39:54",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:39:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:39:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t023944016z",
+    "post_id": 1227232,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t023944016z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:39:15",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:39:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:39:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "contentjunkie",
+    "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z",
+    "post_id": 1227227,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023906456z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:36:06",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:36:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:36:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "contentjunkie",
+    "parent_permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022535074z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z",
+    "post_id": 1227201,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-contentjunkie-re-dickbutt-testing-the-dickbutt-automated-system-20160913t023554583z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:25:45",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-13T02:25:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:25:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022535074z",
+    "post_id": 1227120,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t022535074z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:23:27",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-13T02:23:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:23:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z",
+    "post_id": 1227100,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t022316187z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt d",
+    "body_length": 17,
+    "cashout_time": "2016-09-20T02:19:33",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:19:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:19:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t021924665z",
+    "post_id": 1227063,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t021924665z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:18:51",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:18:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:18:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t021843514z",
+    "post_id": 1227059,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t021843514z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:16:03",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:16:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:16:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t021551512z",
+    "post_id": 1227039,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t021551512z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:08:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:08:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:08:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t020809228z",
+    "post_id": 1226966,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t020809228z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T02:07:15",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T02:07:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T02:07:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t020706535z",
+    "post_id": 1226954,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t020706535z"
+  },
+  {
+    "active_votes": [],
+    "author": "contentjunkie",
+    "author_reputation": 3946777086453,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T01:51:12",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T01:51:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T01:51:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t015101856z",
+    "post_id": 1226814,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@contentjunkie/re-dickbutt-testing-the-dickbutt-automated-system-20160913t015101856z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T01:50:51",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T01:50:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T01:50:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t015041574z",
+    "post_id": 1226811,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t015041574z"
+  },
+  {
+    "active_votes": [],
+    "author": "trev",
+    "author_reputation": 875137794542,
+    "beneficiaries": [],
+    "body": "@dickbutt",
+    "body_length": 9,
+    "cashout_time": "2016-09-20T01:45:48",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T01:45:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"dickbutt\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T01:45:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t014554253z",
+    "post_id": 1226769,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@trev/re-dickbutt-testing-the-dickbutt-automated-system-20160913t014554253z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-20T01:45:45",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-13T01:45:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T01:45:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-the-dickbutt-automated-system",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-the-dickbutt-automated-system-20160913t014535341z",
+    "post_id": 1226768,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing the @dickbutt automated system",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-the-dickbutt-automated-system#@dickbutt/re-dickbutt-testing-the-dickbutt-automated-system-20160913t014535341z"
+  },
+  {
+    "active_votes": [],
+    "author": "dragonslayer109",
+    "author_reputation": 64573188744746,
+    "beneficiaries": [],
+    "body": "but I real",
+    "body_length": 40,
+    "cashout_time": "2016-09-19T18:20:03",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-12T18:20:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T18:20:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "royaltiffany",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-royaltiffany-test-20160912t182003189z",
+    "post_id": 1222514,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@dragonslayer109/re-royaltiffany-test-20160912t182003189z"
+  },
+  {
+    "active_votes": [],
+    "author": "demotruk",
+    "author_reputation": 2974404080988,
+    "beneficiaries": [],
+    "body": "I pushed t",
+    "body_length": 62,
+    "cashout_time": "2016-09-19T13:30:42",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-12T13:30:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T13:30:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "bige37",
+    "parent_permlink": "re-royaltiffany-test-20160912t114919145z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-bige37-re-royaltiffany-test-20160912t133042108z",
+    "post_id": 1219631,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@demotruk/re-bige37-re-royaltiffany-test-20160912t133042108z"
+  },
+  {
+    "active_votes": [],
+    "author": "mrlogic",
+    "author_reputation": 31757322861,
+    "beneficiaries": [],
+    "body": "i just had",
+    "body_length": 23,
+    "cashout_time": "2016-09-19T11:05:27",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-12T11:05:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T11:05:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "royaltiffany",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-royaltiffany-test-20160912t110110157z",
+    "post_id": 1218636,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test#@mrlogic/re-royaltiffany-test-20160912t110110157z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 28378684,
+        "rshares": 52449059,
+        "voter": "paolo75"
+      }
+    ],
+    "author": "pompe72",
+    "author_reputation": -30464467585,
+    "beneficiaries": [],
+    "body": "dickbutt\n\n",
+    "body_length": 73,
+    "cashout_time": "2016-09-18T12:21:27",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-11T12:21:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https://img1.steemit.com/0x0/http://i64.tinypic.com/1zn8p6d.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T12:21:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 52449059,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160902t065005906z-20160902t065051",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z",
+    "post_id": 1208131,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@pompe72/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160902t065051-20160911t122126354z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "Breath Ske",
+    "body_length": 66,
+    "cashout_time": "2016-09-18T09:16:27",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T09:16:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https://img.youtube.com/vi/y43FolFlY78/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=y43FolFlY78\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T09:16:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z",
+    "post_id": 1206775,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t091626900z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": ":) Transex",
+    "body_length": 20,
+    "cashout_time": "2016-09-18T09:01:57",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T09:01:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T09:01:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "brendio",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z",
+    "post_id": 1206687,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t090156700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "Can you br",
+    "body_length": 57,
+    "cashout_time": "2016-09-18T09:01:00",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T09:01:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T09:01:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z",
+    "post_id": 1206677,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t090059700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "Im not afr",
+    "body_length": 30,
+    "cashout_time": "2016-09-18T08:58:06",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:58:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:58:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z",
+    "post_id": 1206657,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085805500z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "you got it",
+    "body_length": 17,
+    "cashout_time": "2016-09-18T08:56:36",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:56:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:56:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z",
+    "post_id": 1206652,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085637400z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "breath 10 ",
+    "body_length": 15,
+    "cashout_time": "2016-09-18T08:56:15",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:56:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:56:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z",
+    "post_id": 1206647,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085613100z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "feminism?",
+    "body_length": 9,
+    "cashout_time": "2016-09-18T08:55:36",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:55:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:55:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z",
+    "post_id": 1206646,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t084643-20160911t085536300z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "it is, jus",
+    "body_length": 32,
+    "cashout_time": "2016-09-18T08:55:06",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:55:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:55:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z",
+    "post_id": 1206644,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085504300z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "feminism?",
+    "body_length": 9,
+    "cashout_time": "2016-09-18T08:54:33",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:54:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:54:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z",
+    "post_id": 1206641,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083948-20160911t085432100z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "femninism?",
+    "body_length": 10,
+    "cashout_time": "2016-09-18T08:54:00",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:54:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:54:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z",
+    "post_id": 1206635,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t083628-20160911t085400700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "feminism?",
+    "body_length": 9,
+    "cashout_time": "2016-09-18T08:53:12",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:53:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:53:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z",
+    "post_id": 1206632,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t085312300z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "there you ",
+    "body_length": 12,
+    "cashout_time": "2016-09-18T08:52:45",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:52:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:52:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z",
+    "post_id": 1206628,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t085245200z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "breath",
+    "body_length": 6,
+    "cashout_time": "2016-09-18T08:52:09",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:52:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:52:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z",
+    "post_id": 1206620,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t085207300z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 72,
+    "cashout_time": "2016-09-18T08:46:45",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-11T08:46:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:46:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643",
+    "post_id": 1206584,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t084528359z-20160911t084643"
+  },
+  {
+    "active_votes": [],
+    "author": "skeptic",
+    "author_reputation": -2498083480,
+    "beneficiaries": [],
+    "body": "i just rea",
+    "body_length": 63,
+    "cashout_time": "2016-09-18T08:45:30",
+    "category": "test",
+    "children": 7,
+    "created": "2016-09-11T08:45:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:45:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-dickbutt",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-dickbutt-20160911t084528359z",
+    "post_id": 1206580,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-testing-dickbutt-20160911t084528359z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 45,
+    "cashout_time": "2016-09-18T08:39:51",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-11T08:39:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:39:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948",
+    "post_id": 1206542,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083948"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 50,
+    "cashout_time": "2016-09-18T08:36:30",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-11T08:36:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:36:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628",
+    "post_id": 1206522,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t083628"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "Much femin",
+    "body_length": 17,
+    "cashout_time": "2016-09-18T08:33:03",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:33:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:33:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160906t061918048z-20160906t061952",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z",
+    "post_id": 1206504,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160906t061952-20160911t083302100z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "::) Got yo",
+    "body_length": 11,
+    "cashout_time": "2016-09-18T08:32:39",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:32:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:32:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "brendio",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160906t061918048z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z",
+    "post_id": 1206500,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-brendio-re-dickbutt-testing-dickbutt-20160911t083238100z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "feminist?",
+    "body_length": 9,
+    "cashout_time": "2016-09-18T08:32:12",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:32:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:32:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z",
+    "post_id": 1206497,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t082139-20160911t083211500z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "its just a",
+    "body_length": 14,
+    "cashout_time": "2016-09-18T08:31:00",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:31:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:31:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z",
+    "post_id": 1206486,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083059700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "reply to t",
+    "body_length": 41,
+    "cashout_time": "2016-09-18T08:30:39",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:30:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 4,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:30:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z",
+    "post_id": 1206484,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t083038300z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "feminist",
+    "body_length": 8,
+    "cashout_time": "2016-09-18T08:29:57",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:29:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:29:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z",
+    "post_id": 1206481,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t082956700z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "dick butt?",
+    "body_length": 81,
+    "cashout_time": "2016-09-18T08:29:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:29:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:29:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z",
+    "post_id": 1206476,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082921600z"
+  },
+  {
+    "active_votes": [],
+    "author": "earnest",
+    "author_reputation": -2314406420479,
+    "beneficiaries": [],
+    "body": "go one up",
+    "body_length": 9,
+    "cashout_time": "2016-09-18T08:27:36",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-11T08:27:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:27:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z",
+    "post_id": 1206464,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@earnest/re-skeptic-re-dickbutt-testing-dickbutt-20160911t082735600z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 45,
+    "cashout_time": "2016-09-18T08:21:42",
+    "category": "test",
+    "children": 3,
+    "created": "2016-09-11T08:21:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:21:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139",
+    "post_id": 1206421,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t082048671z-20160911t082139"
+  },
+  {
+    "active_votes": [],
+    "author": "skeptic",
+    "author_reputation": -2498083480,
+    "beneficiaries": [],
+    "body": "https://st",
+    "body_length": 232,
+    "cashout_time": "2016-09-18T08:20:51",
+    "category": "test",
+    "children": 9,
+    "created": "2016-09-11T08:20:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"],\"links\":[\"https://steemit.com/dickbutt/@skeptic/dickbutt-has-taken-over-steemit\",\"https://imgflip.com/i/1aegl9\"],\"image\":[\"https://i.imgflip.com/1aegl9.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T08:39:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-dickbutt",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-dickbutt-20160911t082048671z",
+    "post_id": 1206416,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-testing-dickbutt-20160911t082048671z"
+  },
+  {
+    "active_votes": [],
+    "author": "skeptic",
+    "author_reputation": -2498083480,
+    "beneficiaries": [],
+    "body": "Sick littl",
+    "body_length": 19,
+    "cashout_time": "2016-09-18T07:27:27",
+    "category": "test",
+    "children": 3,
+    "created": "2016-09-11T07:27:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 3,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T07:27:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z",
+    "post_id": 1206124,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-re-re-dickbutt-testing-dickbutt-20160911t072542-20160911t072735512z"
+  },
+  {
+    "active_votes": [],
+    "author": "dickbutt",
+    "author_reputation": -603562034423,
+    "beneficiaries": [],
+    "body": "https://s1",
+    "body_length": 46,
+    "cashout_time": "2016-09-18T07:25:45",
+    "category": "test",
+    "children": 5,
+    "created": "2016-09-11T07:25:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 2,
+    "json_metadata": "",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T07:25:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "skeptic",
+    "parent_permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542",
+    "post_id": 1206114,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@dickbutt/re-re-dickbutt-testing-dickbutt-20160911t072446978z-20160911t072542"
+  },
+  {
+    "active_votes": [],
+    "author": "skeptic",
+    "author_reputation": -2498083480,
+    "beneficiaries": [],
+    "body": "dickbutt",
+    "body_length": 8,
+    "cashout_time": "2016-09-18T07:24:39",
+    "category": "test",
+    "children": 8,
+    "created": "2016-09-11T07:24:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 1,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T07:24:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 0,
+    "parent_author": "dickbutt",
+    "parent_permlink": "testing-dickbutt",
+    "pending_payout_value": "0.000 HBD",
+    "percent_hbd": 10000,
+    "permlink": "re-dickbutt-testing-dickbutt-20160911t072446978z",
+    "post_id": 1206109,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "testing @dickbutt",
+    "title": "",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@dickbutt/testing-dickbutt#@skeptic/re-dickbutt-testing-dickbutt-20160911t072446978z"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/truncated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/truncated.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..bf2cfdbc1ba53c4b3e67c916db9558634af5462f
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_comment_discussions_by_payout/truncated.tavern.yaml
@@ -0,0 +1,28 @@
+---
+  test_name: Hivemind condenser_api.get_comment_discussions_by_payout limit 100 test
+
+  marks:
+    - patterntest # same as limit 100, but with truncated posts
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_comment_discussions_by_payout limit 100
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_comment_discussions_by_payout"
+          params: {"tag":"test","limit":100,"truncate_body":10}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "truncated"
+            directory: "condenser_api_patterns/get_comment_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_content/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_content/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..bb17cabbe7367f8beae360f6e805117f0a6503c6
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_content/_readme.txt
@@ -0,0 +1,13 @@
+Gives content for given post.
+
+method: "condenser_api.get_content"
+params:
+{
+  "account": "{account}", "permlink": {permlink},
+  
+     mandatory, points to valid post
+
+   "observer": "{account}",
+
+     optional, used for muted votes and blacklists
+}
diff --git a/hivemind/tavern/condenser_api_patterns/get_content_replies/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_content_replies/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..310bcf773942c61959cbea310266d5fe3554cd7c
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_content_replies/_readme.txt
@@ -0,0 +1,9 @@
+Lists replies for given post.
+
+method: "condenser_api.get_content_replies"
+params:
+{
+  "author": "{author}", "permlink": {permlink},
+  
+     mandatory, points to valid post
+}
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..df254e8bc88f84cda7daa59ac10987f4478dd5b4
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_author_before_date/_readme.txt
@@ -0,0 +1,26 @@
+Lists posts with votes based on author from the most recent.
+Similar to get_discussions_by_blog but does NOT serve reblogs.
+
+method: "condenser_api.get_discussions_by_author_before_date"
+params:
+{
+  "author":"{author}",
+
+     mandatory, points to valid start account
+
+  "start_permlink":"{permlink}"
+
+     optional, with author when given have to point to valid start post; paging mechanism
+
+  "limit":"{limit}",
+
+     optional, range 1...100; default = 20
+
+   "before_date":"{date}",
+
+     optional, when given should point on start date; completely ignored
+
+   "truncate_body":{number}
+
+     optional, default = 0; 
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..038f564ef2fb3fc7a1754524fe6b67a83d3ac946
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_blog/_readme.txt
@@ -0,0 +1,25 @@
+Lists blog's posts including reblogs.
+
+method: "condenser_api.get_discussions_by_blog"
+params:
+{
+  "tag":"{author}",
+
+     mandatory, points to valid account
+
+  "start_author":"{author}" + "start_permlink":"{permlink}",
+
+     optional, when given have to point on valid start post
+
+   "limit":"{number}",
+
+     optional, range 1...100; default = 20
+
+   "truncate_body":{number}
+
+     optional, default = 0; 
+
+   "filter_tags":"{list_of_tags}",
+
+     optional, not supported
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..46988f71943c3b4373d2e8febec58d10b4136c8b
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_comments/_readme.txt
@@ -0,0 +1,25 @@
+Lists account's replies.
+
+method: "condenser_api.get_discussions_by_comments"
+params:
+{
+  "start_author":"{author}",
+
+     mandatory, points to valid account
+
+  "start_permlink":"{permlink}",
+
+     optional, when given have to point on valid start comment
+
+   "limit":"{number}",
+
+     optional, range 1...100; default = 20
+
+   "truncate_body":{number}
+
+     optional, default = 0; 
+
+   "filter_tags":"{list_of_tags}",
+
+     optional, not supported
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_created/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..47b99551dbe6b20f3dc93ef57f4570ae235a2aee
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_created/_readme.txt
@@ -0,0 +1,25 @@
+Lists posts sorted by creation date.
+
+method: "condenser_api.get_discussions_by_created"
+params:
+{
+  "start_author":"{author}" + "start_permlink":"{permlink}",
+
+     optional, should point to valid apost
+
+   "limit":"{number}",
+
+     optional, range 1...100; default = 20
+
+   "tag":"{tag}",
+
+     optional, turns on filtering for posts with given tag
+
+   "truncate_body":{number}
+
+     optional, default = 0; 
+
+   "filter_tags":"{list_of_tags}",
+
+     optional, not supported
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_feed/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_discussions_by_feed/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..b1a334284ecc61808975e0d321b98ceeecb186e5
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_feed/_readme.txt
@@ -0,0 +1,26 @@
+Lists posts created/reblogged by those followed by selected account.
+Gives posts that were created/reblogged within last month.
+
+method: "condenser_api.get_discussions_by_feed"
+params:
+{
+  "tag":"{account}",
+
+   mandatory, have to point on valid account whose feed we are looking at
+
+  "start_author":"{author}" + "start_permlink":"{permlink}",
+
+     optional, should point to valid apost
+
+   "limit":"{number}",
+
+     optional, range 1...100; default = 20
+
+   "truncate_body":{number}
+
+     optional, default = 0; 
+
+   "filter_tags":"{list_of_tags}",
+
+     optional, not supported
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..92cd44626ecf9162c211a44107b2b66afba909e6
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_hot/_readme.txt
@@ -0,0 +1,25 @@
+Lists posts sorted by hot score [sc_hot desc] (with a favourable ratio of votes to the time the post was created)
+
+method: "condenser_api.get_discussions_by_hot"
+params:
+{
+  "start_author":"{author}" + "start_permlink":"{permlink}",
+
+     optional, should point to valid apost
+
+   "limit":"{number}",
+
+     optional, range 1...100; default = 20
+
+    "tag":"{account}",
+
+     optional, turns on filtering for posts with given tag
+
+   "truncate_body":{number}
+
+     optional, default = 0; 
+
+   "filter_tags":"{list_of_tags}",
+
+     optional, not supported
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..48d014dde1b9bca40fbda1db6b24dd70db4ddefc
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/_readme.txt
@@ -0,0 +1,27 @@
+Lists not yet paid out posts ranked by amount spent on promotion (order within the same promotion is newer first).
+Aside from different post format routine is the same as bridge.get_ranked_posts with promoted sort.
+
+method: "condenser_api.get_discussions_by_promoted"
+params:
+{
+  "start_author":"{author}", "start_permlink":"{permlink}",
+
+    start_author + start_permlink : optional, when given have to point to valid start post; paging mechanism (cuts out this and more promoted posts)
+
+  "limit":"{number}",
+
+    optional, 1..100, default = 20
+
+  "tag":"{tag}",
+
+    optional, turns on filtering for posts with given tag; when community tag is used it filters for community posts
+    (compared to original version, posts that are only tagged with community tag, but don't belong to community, are no longer put in results)
+
+  "truncate_body":{number}
+
+    optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
+
+  "filter_tags":"{list_of_tags}"
+
+    has to be left empty, not supported
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/community.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/community.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..fe51488c7066f6687ef680d6bfaa4f7768ef205c
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/community.orig.json
@@ -0,0 +1 @@
+[]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/community.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/community.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..fe51488c7066f6687ef680d6bfaa4f7768ef205c
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/community.pat.json
@@ -0,0 +1 @@
+[]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/community.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/community.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..f28b7129950ebc327ee686a37d491b0ff7bd6780
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/community.tavern.yaml
@@ -0,0 +1,28 @@
+---
+  test_name: Hivemind condenser_api.get_discussions_by_promoted community patterns test
+
+  marks:
+    - patterntest # IMHO this should be negative, since community does not exist
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: condenser_api.get_discussions_by_promoted community patterns test
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_discussions_by_promoted"
+          params: {"tag":"hive-120019"}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "community"
+            directory: "condenser_api_patterns/get_discussions_by_promoted"
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/max_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/max_limit.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..06eac1007cd0b3ba80952cf3db2687b742a823b9
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/max_limit.orig.json
@@ -0,0 +1,101602 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-28338941273774",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-56560374008",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515865522774",
+        "voter": "panadacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "591238736691",
+        "voter": "barrie"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-31244889730986",
+        "voter": "smooth"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-25869425303440",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "8900",
+        "reputation": 0,
+        "rshares": "56923627230317",
+        "voter": "ned"
+      },
+      {
+        "percent": "-4000",
+        "reputation": 0,
+        "rshares": "-61162327823",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5861402538757",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "2012701974707",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1105925638130",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1595196737607",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "986803208166",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5034399699326",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103422054",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767892961",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690943799",
+        "voter": "bunny"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "3573913851034",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6282474172783",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54717838235",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662987228",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213785292",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209038160029",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "7692488765",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3455872549975",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6781848343",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1387859952",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106098683047",
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "855490468340",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115524100455",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8261386990",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2104057003",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-5694232013608",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988597560715",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "564763376378",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168058097416",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61457593326",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29414306405",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624912728",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "902943814",
+        "voter": "stoner19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "971397151",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400674324536",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821205239311",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "16122243298",
+        "voter": "team"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "68140066479",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335329901210",
+        "voter": "lighthil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288337653",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84761882611",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221378412917",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156355134109",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125237012083",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384189354393",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78953157492",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24177692381",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47071100260",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182161233136",
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27507445535",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15043635029",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1091318863571",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3913661416",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537679658162",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "477297643",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "19875326051",
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5373300397",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31632644129",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2191644256",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1709548184767",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "292403125620",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91790166084",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6782998784",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134023949190",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32871946754",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490595494",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67870898638",
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "286727574871",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425998946",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1703165248",
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7184649989",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "584817224",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79084857477",
+        "voter": "theshell"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "22641839395",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51307800519",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5388661415",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3915776982262",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403407002721",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "426836364",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372600185",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147474797358",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370486042445",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "6226063990",
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "4666893911",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53642020280",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112536244257",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18290477525",
+        "voter": "samether"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "20435826971",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4477973596",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13353893819",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19195451431",
+        "voter": "ziv"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-37886485933",
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "814177904",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "6651057809",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187723859372",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5901731263",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "13475779704",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106662592446",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46106881411",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2879418324",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "22456450828",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6740408834",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90461089451",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70695307715",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14764907307",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73424982025",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "4332771254",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17687843258",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18766219906",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5157854283",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17552893571",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283436852",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288748933789",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52215058764",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331004446932",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4775693686",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62198582831",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249608253",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86432384761",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3299480410",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22617124650",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122156869592",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48022035978",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "977288096",
+        "voter": "lontong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135562023252",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13300237653",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124913925653",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26683327851",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2707813985",
+        "voter": "wintrop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "514388137239",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25581639649",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1344524912605",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155010079441",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5523230874",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71594122778",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16832656768",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42564757970",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1268462097",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8279675078",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40069670306",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1632266140",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55667692",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524453413",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4046708005",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4687463894",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40136504296",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3759809896",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2630980347",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27635550326",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24959867898",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10845979381",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228465690",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296045327034",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79351054414",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13957994657",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12385010041",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400742354",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484888225",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5747716426",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75001817111",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44353154247",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7146190847",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9028095567",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3710621464",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "5254853525",
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13560062590",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3175676972",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2552560220",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189609178496",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "4380569189",
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296100567501",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20078314404",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "7161559782",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8247905495",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18706560189",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4078813249",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13966407599",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23276095473",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5317355087",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9242725695",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5575772867",
+        "voter": "sharker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182819821534",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1103176661",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "977888223951",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "818040957",
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39295777834",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428031362",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1782690382",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125979055",
+        "voter": "kottai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269576627",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269980297",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156093986",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156975275",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89476508",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56769328536",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115403915",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9802713874",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4554249461",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10450628476",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25772328103",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13637653306",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15826604583",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "455136533",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "2300",
+        "reputation": 0,
+        "rshares": "8541510354",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15580395475",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639099484",
+        "voter": "curator"
+      },
+      {
+        "percent": "8200",
+        "reputation": 0,
+        "rshares": "2410557662",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "432302630",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1634018670",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231618512",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13498521499",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81028161",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1713978326",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "165045645",
+        "voter": "beanz"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "273280899",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31769283842",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149502446",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4564708091",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2873988066",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3459421629",
+        "voter": "carlas10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1493719735",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4189235490",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7874311492",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "689524426",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5394692942",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4481547788",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61911147",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7265644466",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61700262",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46418159604",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588460890536",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8609049381",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14224054622",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "655589667",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2090553241",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4256758523",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8452120116",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60138244071",
+        "voter": "poteshnik83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99476907271",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392193612",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112411845286",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1348324437",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21004018124",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11270713350",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150794650",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83986507131",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5527031256",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57523014",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2512217855",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "493960660",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63555792",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58453204",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3015124995",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219039434",
+        "voter": "xcepta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748990287",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57914427",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19865005311",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56535984",
+        "voter": "steema"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "5769564425",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73061236",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "65927774",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71228043",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28924632850",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74898697",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58639072",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102741069",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78765183",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10750764390",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2816953736",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1399636656",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59750246",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5927843564",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890579467",
+        "voter": "crazycow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3977281078",
+        "voter": "lamech-m"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9470181501",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382699085",
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12003456501",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55399493",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56575537",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56570509",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387660",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10109582992",
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88078809749",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192287988",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1592064374",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23660021285",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5932358367",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48131519933",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4001380728",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2391702679",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101945845",
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1679360131",
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58631508",
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57412782",
+        "voter": "drsamkhan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54999739",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103040256",
+        "voter": "adrevel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61202458",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2894276750",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64070582",
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1559083086",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1893166639",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9771811576",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4912386907",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "947456313",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69985187",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80557869",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2475119042",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99564797338",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7076299362",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61715783",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3325599818",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11968284833",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961187",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56665974",
+        "voter": "viktorriver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7018683565",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103345545",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1652709870",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6919572472",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53966805",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54730557",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12191050487",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15497139800",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3938044420",
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54362089",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2032879970",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5655677010",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54019345",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54017499",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56837113",
+        "voter": "blogx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17788079417",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1089484775",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53640464",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85546636",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53331040",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537067064",
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53324520",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53318865",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287913287",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1697516350",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2664939129",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52988378",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "732461217",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220578638",
+        "voter": "mamo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1706277109",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860146710",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039974",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4841952237",
+        "voter": "burnin"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "558512952",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206212756",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4652459969",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2770826537",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1336513482",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390796425",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357202147",
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55826263",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2339486479",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50852949",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9400577403",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70358845",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52648858",
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330163263",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4796038584",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147415673",
+        "voter": "flowergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51141851",
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101153586",
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1693077690",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846735133",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50798322",
+        "voter": "breeze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50796122",
+        "voter": "factom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50794039",
+        "voter": "autodesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50570250",
+        "voter": "ziggo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50482289",
+        "voter": "connection"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317220",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1824788165",
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1161216291",
+        "voter": "ayim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3675242983",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346259703",
+        "voter": "julia26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488963228",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696884040",
+        "voter": "ziogio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77637243",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80800689",
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79083956",
+        "voter": "silverbackjonz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23984282056",
+        "voter": "abdullar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1204472546",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157643687",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162128433",
+        "voter": "cebymaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143818142",
+        "voter": "eunnykim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162785391",
+        "voter": "olga4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065182434",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161974443",
+        "voter": "zapply"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158642800",
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282877474",
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "975048251",
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161212160",
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161205518",
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160973134",
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157801695",
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157654556",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125721183",
+        "voter": "rubenkusters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160269480",
+        "voter": "adpipop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103667189",
+        "voter": "charli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147606365",
+        "voter": "laskovskiy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147145004",
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159524423",
+        "voter": "radent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125821091",
+        "voter": "jasonxg"
+      }
+    ],
+    "author": "ned",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards.  One prime use for this could be the @steemit account.  @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator.  This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool.  Now they each have 4, 4, and 4 SP to be used to curate.  Better curation would earn them more curation rewards.  \n\nA side effect of delegated voting pools could be voting markets.  Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence.  This could make the system very clear in the regard that stake is either in or it is out.  Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence.  Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?",
+    "body_length": 2399,
+    "cashout_time": "2016-10-09T02:14:24",
+    "category": "steem",
+    "children": 315,
+    "created": "2016-09-07T15:44:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T15:50:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21098346399884,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "47.461 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction",
+    "post_id": 882849,
+    "promoted": "500.000 HBD",
+    "replies": [],
+    "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction",
+    "title": "Increasing Curation, Demand for Steem Power and Community Interaction",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2880158649350",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6687374255890",
+        "voter": "abit"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "200447957857",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210935138158",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34834219645",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4698991891366",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26220797410",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21778271226",
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77911793572",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24461868889",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78937661777",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36121015938",
+        "voter": "shawn-brewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3904360862",
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26249875274",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248316250061",
+        "voter": "streemian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2099078596",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337675588507",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "17248438039",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18755603275",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165650897784",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25097559512",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76844247566",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432241835",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410319999929",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37377306695",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511460192391",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10327600289",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12946826891",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52936065000",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73185813892",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77537857911",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197195881315",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2749451100",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138950405749",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221091582746",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64268303501",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12851721450",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38550537913",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9611538383",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58347816344",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151155773",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51525374588",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7787278104",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7679056409",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198782719642",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42477391661",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60016404960",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14939382244",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2764181865",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34512234336",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10505948257",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14166466386",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6881801299",
+        "voter": "jholmes91"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "28518514026",
+        "voter": "furion"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "343839867",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "318227536",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154307229509",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13857572685",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91679183298",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11951646778",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248223472",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "738272708",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "975960321",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "880403645",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173814887348",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4881725425",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35473257372",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4407297625",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361354120568",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12578911205",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4155445347",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42323621045",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2046548687",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282893744",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51736048406",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40699637402",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21204167062",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20794627117",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373589253",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1897082508",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3782713987",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12702349860",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19973266240",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73266692391",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203808871678",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130741738",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28054457341",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7719299049",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18462677959",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618911664",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2338655401",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2230891004",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9306232081",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5112788044",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2083171497",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2988238537",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4975171514",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27754515242",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2714089163",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4074243459",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124647783712",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52649085689",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9229282677",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "762973534",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6316770118",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1127651626964",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16114519862",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1589064570",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590577254",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1591154960",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66201979",
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29198785189",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262739616418",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1877080082",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4399726965",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15388176810",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35537072494",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5846804532",
+        "voter": "minion"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590888018",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590810612",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590655993",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590488698",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590312457",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590215340",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65973534",
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3352971280",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2660556388",
+        "voter": "elfkitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167413728",
+        "voter": "fishingvideos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3936367661",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110699909",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4437884870",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "625756089",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1386125077",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62207936",
+        "voter": "gregnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36481801064",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9153157264",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1709263095",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81479984950",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51186720",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62726567",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7173232709",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11671890531",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61414862",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61408183",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101234990659",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644629048075",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10749879159",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4435768463",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2087199282",
+        "voter": "levycore"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1589879876",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375942824",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58573454",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88566696",
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67820611671",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7130857719",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13266479333",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11988797227",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3530818614",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58124470",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1566284561",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4058499790",
+        "voter": "jaytaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50765978",
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354598090",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1648532870",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176893913250",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4503913660",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287896907",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96766264",
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94397808",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40194954027",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51449632",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237684324298",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3317000337",
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68637860285",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20473094261",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1607854693",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5277939809",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3169237670",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50470409",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50468091",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687487630",
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160840003",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52767110",
+        "voter": "littlemorelove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59859092",
+        "voter": "fukako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51238118",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      }
+    ],
+    "author": "laonie",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<h3>  </h3> | <h3>What Is The RobinHood Whale?</h3>\r\n------------ | -------------\r\nhttps://img1.steemit.com/0x0/http://i.imgur.com/zk4a0fC.jpg | The @robinhoodwhale (RHW) is the community's solution to an essential problem that plagues Steemit: how to get noticed and upvoted before you have a big enough following. Right now, if you are not upvoted by a \"whale\" account, it is very difficult to get exposure and any substantial rewards, which leads to many great authors leaving Steemit. Robin Hood wants to be the \"whale\" that finds and helps a diverse set of talented, yet unrecognized authors. \r\nMore Info Here -> <a href=https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed>The RobinHood Whale Initiave</a>   |  [Announcing RobinHoodWhale](https://steemit.com/robinhoodwhale/@robinhoodwhale/announcing-robinhoodwhale-the-steemit-deep-sea-savior)\n<h3> Voting History (Real-Time Update) </h3> \n<li>01-09 <a href=https://steemit.com/introduction/@leahlindeman/what-do-we-do-when-life-gets-in-the-way-of-our-dreams>What Do We Do When Life Gets in the Way of Our Dreams?</a> by @leahlindeman in <a href=https://steemit.com/trending/introduction>introduction</a></li>\n<li>01-09 <a href=https://steemit.com/savings/@sgnsteems/a-tale-of-a-couponer-the-beginning>A Tale of a Couponer- The Beginning</a> by @sgnsteems in <a href=https://steemit.com/trending/savings>savings</a></li>\n<li>01-09 <a href=https://steemit.com/politics/@heretickitten/abortion-your-body-your-choice-or-is-it-the-child-s-body-that-you-are-choosing-for>Abortion: Your body, your choice? Or is it the child's body that you are choosing for?</a> by @heretickitten in <a href=https://steemit.com/trending/politics>politics</a></li>\n<li>01-09 <a href=https://steemit.com/story/@randomstories/my-experience-partying-with-tai-lopez-the-here-in-my-garage-guy>My Experience Partying with Tai Lopez (The \"Here In My Garage\" Guy)</a> by @randomstories in <a href=https://steemit.com/trending/story>story</a></li>\n<li>01-09 <a href=https://steemit.com/life/@delphia16/the-power-of-fear-an-original-poem>The Power of Fear  (An Original Poem)</a> by @delphia16 in <a href=https://steemit.com/trending/life>life</a></li>\n<li>01-09 <a href=https://steemit.com/life/@lesliestarrohara/toilet-fires-marilyn-manson-and-my-introduction-to-the-sweet-sweet-taste-of-satire>Toilet Fires, Marilyn Manson, and My Introduction to the Sweet, Sweet Taste of Satire</a> by @lesliestarrohara in <a href=https://steemit.com/trending/life>life</a></li>\n<li>01-09 <a href=https://steemit.com/mathematics/@hanshotfirst/i-have-one-word-for-you-math-sucks-how-i-convince-my-students-with-special-needs-that-algebra-is-important>I have one word for you...\"Math Sucks!\" How I Convince My Students with Special Needs That Algebra is Important.</a> by @hanshotfirst in <a href=https://steemit.com/trending/mathematics>mathematics</a></li>\n<li>01-09 <a href=https://steemit.com/cryptography/@norbu/the-adam-and-eve-of-cryptography-meet-alice-and-bob>The Adam and Eve of Cryptography, Meet Alice and Bob!</a> by @norbu in <a href=https://steemit.com/trending/cryptography>cryptography</a></li>\n<li>01-09 <a href=https://steemit.com/fitness/@chhayll/the-best-exercise-for-longevity-great-health-and-a-great-body>The best exercise for longevity, great health and a great body</a> by @chhayll in <a href=https://steemit.com/trending/fitness>fitness</a></li>\n<li>31-08 <a href=https://steemit.com/introduceyourself/@ashe-oro/hello-steemit-i-interviewed-ceo-ned-scott-on-steemit-com-the-future-of-social-media-liberty-entrepreneurs-podcast>Hello Steemit!  I interviewed CEO Ned Scott on \"Steemit.com - The Future of Social Media\" [Liberty Entrepreneurs Podcast]</a> by @ashe-oro in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>31-08 <a href=https://steemit.com/writing/@strangerarray/taking-the-mask-off-steemit-does-steemit-work-for-you-or-do-you-work-for-steemit>Taking the Mask off Steemit: Does Steemit Work for You or Do You Work for Steemit?</a> by @strangerarray in <a href=https://steemit.com/trending/writing>writing</a></li>\n<li>31-08 <a href=https://steemit.com/introduceyourself/@melisalerue/hello-steemit-welcome-to-my-world-may-the-adventure-begin>Hello Steemit! Welcome to my world\u2026 may the adventure begin!</a> by @melisalerue in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>31-08 <a href=https://steemit.com/steemit/@mattclarke/the-new-normal>The new normal</a> by @mattclarke in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>31-08 <a href=https://steemit.com/life/@sarahjordan/a-totally-different-life-in-one-year>A Totally Different Life in One Year</a> by @sarahjordan in <a href=https://steemit.com/trending/life>life</a></li>\n<li>31-08 <a href=https://steemit.com/family/@papa-pepper/why-children-are-like-pit-bulls-part-1>Why Children are Like Pit Bulls - Part 1</a> by @papa-pepper in <a href=https://steemit.com/trending/family>family</a></li>\n<li>31-08 <a href=https://steemit.com/music/@steemitpatina/this-year-a-dj-s-saving-my-life-meet-david-olam>This Year, a DJ's Saving My Life - Meet David Olam</a> by @steemitpatina in <a href=https://steemit.com/trending/music>music</a></li>\n<li>31-08 <a href=https://steemit.com/life/@contentjunkie/tips-and-tricks-to-winning-at-blackjack-lessons-learned-by-a-solo-card-counter>Tips and Tricks to Winning at Blackjack - Lessons Learned by a Solo Card Counter</a> by @contentjunkie in <a href=https://steemit.com/trending/life>life</a></li>\n<li>30-08 <a href=https://steemit.com/science/@mione/how-english-was-made-one-language-s-long-journey-from-humble-to-honorificabilitudinitatibus>How English was Made: One Language\u2019s Long Journey from Humble to Honorificabilitudinitatibus</a> by @mione in <a href=https://steemit.com/trending/science>science</a></li>\n<li>30-08 <a href=https://steemit.com/programming/@cristi/most-voted-authors-by-whales-this-week-s-data-aug-22-aug-29>Most Voted Authors by Whales - This Week's Data (Aug. 22 - Aug. 29)</a> by @cristi in <a href=https://steemit.com/trending/programming>programming</a></li>\n<li>30-08 <a href=https://steemit.com/steemstats/@furion/steem-analysis-ownership-distribution-and-the-whale-selling-pressure>STEEM Analysis :: Ownership Distribution and the Whale Selling Pressure</a> by @furion in <a href=https://steemit.com/trending/steemstats>steemstats</a></li>\n<li>30-08 <a href=https://steemit.com/sciencefiction/@gonzo/the-dark-side-of-the-blockchain-chapter-eight-ned>The Dark Side of the Blockchain - Chapter Eight - Ned</a> by @gonzo in <a href=https://steemit.com/trending/sciencefiction>sciencefiction</a></li>\n<li>30-08 <a href=https://steemit.com/politics/@emsenn/is-it-better-to-starve>Is It Better to Starve?</a> by @emsenn in <a href=https://steemit.com/trending/politics>politics</a></li>\n<li>30-08 <a href=https://steemit.com/real-talk/@creationlayer/synereo-analysis-let-s-do-it-right-this-time>Synereo Analysis - Let's do it right this time.</a> by @creationlayer in <a href=https://steemit.com/trending/real-talk>real-talk</a></li>\n<li>30-08 <a href=https://steemit.com/life/@aaronburt/how-i-made-bank-selling-my-school-s-wifi-password>How I made Bank Selling My School's WiFi Password</a> by @aaronburt in <a href=https://steemit.com/trending/life>life</a></li>\n<li>30-08 <a href=https://steemit.com/life/@kainmarx/child-abuse-and-my-experiences-dealing-with-it-as-a-child-the-actions-effects-and-outcomes>Child Abuse and my experiences dealing with it as a child. (The actions, effects and outcomes.)</a> by @kainmarx in <a href=https://steemit.com/trending/life>life</a></li>\n<li>30-08 <a href=https://steemit.com/poetry/@tltran/15-year-old-regret-is-laid-to-rest-a-poem>15-Year-Old Regret is Laid To Rest:  A Poem</a> by @tltran in <a href=https://steemit.com/trending/poetry>poetry</a></li>\n<li>30-08 <a href=https://steemit.com/art/@diana.catherine/benetton-the-creativity-the-controversy-and-the-reality-that-we-try-to-avoid>Benetton: the creativity, the controversy and the reality that we try to avoid.</a> by @diana.catherine in <a href=https://steemit.com/trending/art>art</a></li>\n<li>30-08 <a href=https://steemit.com/writing/@artist1989/the-creation-of-the-book-beatrix-percival-inspiration-and-creative-process>The Creation of The Book \"Beatrix Percival\" - Inspiration & Creative Process</a> by @artist1989 in <a href=https://steemit.com/trending/writing>writing</a></li>\n<li>30-08 <a href=https://steemit.com/robinhoodwhale/@robinhoodwhale/announcing-robinhoodwhale-the-steemit-deep-sea-savior>Announcing RobinHoodWhale, the Steemit Deep Sea Savior</a> by @robinhoodwhale in <a href=https://steemit.com/trending/robinhoodwhale>robinhoodwhale</a></li>\n<li>28-08 <a href=https://steemit.com/life/@mada/buying-organic-tobacco-leaves-as-an-agricultural-commodity-to-make-your-own-affordable-high-quality-cigarettes-a-guide-in>Buying organic tobacco leaves as an agricultural commodity to make your own affordable, high-quality cigarettes: a guide in pictures</a> by @mada in <a href=https://steemit.com/trending/life>life</a></li>\n<li>28-08 <a href=https://steemit.com/technology/@sauravrungta/quantum-computers-the-future-of-computing>Quantum Computers: The Future of Computing</a> by @sauravrungta in <a href=https://steemit.com/trending/technology>technology</a></li>\n<li>28-08 <a href=https://steemit.com/robinhoodwhale/@lukestokes/trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale>Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale</a> by @lukestokes in <a href=https://steemit.com/trending/robinhoodwhale>robinhoodwhale</a></li>\n<li>28-08 <a href=https://steemit.com/art/@lukmarcus/wicker-heart-with-roses-made-from-paper-and-ribbon-beautiful-present-from-my-wife-to-hers-grandmother-on-70th-birthday>Wicker heart with roses made from paper and ribbon! Beautiful present from my wife to hers grandmother on 70th birthday!</a> by @lukmarcus in <a href=https://steemit.com/trending/art>art</a></li>\n<li>28-08 <a href=https://steemit.com/science/@owdy/color-for-the-color-blind-the-science-behind-the-enchroma-glasses>Color for the color blind - The science behind the EnChroma glasses</a> by @owdy in <a href=https://steemit.com/trending/science>science</a></li>\n<li>28-08 <a href=https://steemit.com/introduceyourself/@anahilarski/graphic-design-and-social-media-pro-from-panama>Graphic Design and Social Media Pro from Panama</a> by @anahilarski in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>28-08 <a href=https://steemit.com/life/@sitaru/yes-you-are-right-to-fear-and-hate-islam-there-are-1-7-billion-potential-criminals-out-there>Yes, you are right to fear and hate Islam. There are 1.7 billion potential criminals out there.</a> by @sitaru in <a href=https://steemit.com/trending/life>life</a></li>\n<li>28-08 <a href=https://steemit.com/art/@kiddarko/time-lapse-daisy-painting-start-to-finish-in-4-minutes>Time Lapse Daisy Painting, Start to finish in 4 minutes</a> by @kiddarko in <a href=https://steemit.com/trending/art>art</a></li>\n<li>28-08 <a href=https://steemit.com/education/@dorit-israeli/experimental-learning-space-education-by-dr-dorit-israeli>Experimental Learning - Space Education; By Dr. Dorit Israeli</a> by @dorit-israeli in <a href=https://steemit.com/trending/education>education</a></li>\n<li>28-08 <a href=https://steemit.com/steemit/@webosfritos/thoughts-on-steemit-power-distribution-and-steempower-an-anthropology-based-approach>Thoughts on Steemit power distribution and SteemPower. An anthropology based approach!</a> by @webosfritos in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>28-08 <a href=https://steemit.com/anarchism/@naquoya/sometimes-we-just-need-to-rage-against-the-machine>Sometimes We Just Need To Rage Against The Machine</a> by @naquoya in <a href=https://steemit.com/trending/anarchism>anarchism</a></li>\n<li>28-08 <a href=https://steemit.com/science/@kazumba/modern-day-edgar-cayce-nostradamus>Modern Day Edgar Cayce/Nostradamus</a> by @kazumba in <a href=https://steemit.com/trending/science>science</a></li>\n<li>28-08 <a href=https://steemit.com/photography/@jaytaylor/on-international-dog-day-be-more-dog>On International Dog Day - Be More Dog</a> by @jaytaylor in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>27-08 <a href=https://steemit.com/life/@kateblack/a-rant-about-a-germ-obsessed-parent-and-outdoor-play>A Rant about a Germ Obsessed Parent and Outdoor Play</a> by @kateblack in <a href=https://steemit.com/trending/life>life</a></li>\n<li>27-08 <a href=https://steemit.com/money/@josephknowles/the-economics-of-ponyville>The Economics of Ponyville</a> by @josephknowles in <a href=https://steemit.com/trending/money>money</a></li>\n<li>27-08 <a href=https://steemit.com/groups/@tonypeacock/join-a-niche-online-community-here-s-10-reasons-why>Join a Niche Online Community - Here's 10 Reasons Why</a> by @tonypeacock in <a href=https://steemit.com/trending/groups>groups</a></li>\n<li>27-08 <a href=https://steemit.com/steem/@picokernel/alpha-squeek-io-twitter-alternative-for-the-steem-blockchain>[Alpha] Squeek.io - Twitter alternative for the steem blockchain</a> by @picokernel in <a href=https://steemit.com/trending/steem>steem</a></li>\n<li>27-08 <a href=https://steemit.com/introduceyourself/@robinhoodwhale/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore>Hi, I Am RobinHoodWhale And Here is My Story From The Blockchain Folklore</a> by @robinhoodwhale in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>28-08 <a href=https://steemit.com/steemit/@invisiblegorilla/rewarding-broken-english-has-steemit-become-a-platform-for-practicing-english-as-a-foreign-language>Rewarding Broken English: Has Steemit become a platform for practicing English as a foreign language?</a> by @invisiblegorilla in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>27-08 <a href=https://steemit.com/underground/@vermillion666/ghosts-of-croatia-part-ii-abandoned-underground-airport>GHOSTS OF CROATIA - PART II: Abandoned Underground Airport</a> by @vermillion666 in <a href=https://steemit.com/trending/underground>underground</a></li>\n<li>27-08 <a href=https://steemit.com/life/@kain-jc/meditation-the-art-and-benefits-of-freeing-your-mind>MEDITATION: The Art and Benefits of Freeing Your Mind</a> by @kain-jc in <a href=https://steemit.com/trending/life>life</a></li>\n<li>27-08 <a href=https://steemit.com/music/@cherish/rachmaninoff-big-hands-me-small-hands>Rachmaninoff \u2013 BIG HANDS. Me - small hands</a> by @cherish in <a href=https://steemit.com/trending/music>music</a></li>\n<li>27-08 <a href=https://steemit.com/travel/@blinova/amsterdam-a-dream-city-with-no-boundaries>My Trip to Amsterdam, a Dream City with No Boundaries. Including a Sensation White Party.</a> by @blinova in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>26-08 <a href=https://steemit.com/science/@stephmckenzie/four-generations-of-silence-how-i-solved-a-long-standing-family-mystery-with-dna>Four Generations of Silence--How I Solved a Long-Standing Family Mystery with DNA</a> by @stephmckenzie in <a href=https://steemit.com/trending/science>science</a></li>\n<li>26-08 <a href=https://steemit.com/life/@chrisadventures/journey-to-samos-greece-the-island-where-is-refugees-don-t-go-anymore-by-chrisadventures>Journey to Samos (Greece), the island where IS refugees don't go anymore - by chrisadventures</a> by @chrisadventures in <a href=https://steemit.com/trending/life>life</a></li>\n<li>26-08 <a href=https://steemit.com/blog/@doitvoluntarily/impressing-people-by-living-on-credit>Impressing People By Living On Credit</a> by @doitvoluntarily in <a href=https://steemit.com/trending/blog>blog</a></li>\n<li>26-08 <a href=https://steemit.com/blog/@arrowj/apparently-that-deserves-a-round-of-applause>Apparently That Deserves A Round Of Applause</a> by @arrowj in <a href=https://steemit.com/trending/blog>blog</a></li>\n<li>27-08 <a href=https://steemit.com/forex/@senseiteekay/how-to-forex-a-beginners-guide-to-forex-trading-part-3-forex-trading-strategies>How to Forex - A Beginners Guide to Forex Trading - Part 3: Forex Trading Strategies</a> by @senseiteekay in <a href=https://steemit.com/trending/forex>forex</a></li>\n<li>26-08 <a href=https://steemit.com/introduceyourself/@marissah/changing-the-way-the-world-views-breasts-my-intro>Changing the Way the World Views Breasts - My Intro</a> by @marissah in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>27-08 <a href=https://steemit.com/life/@menta/my-life-ended-when-i-was-25-years-old-part-1>My Life Ended When I Was 25 Years Old \u2013 Part 1</a> by @menta in <a href=https://steemit.com/trending/life>life</a></li>\n<li>26-08 <a href=https://steemit.com/photography/@justyna/why-ginger-is-new-black-violet-beard-stories-collaboration-with-wingz>Is Ginger The New Black? Lavender Beard Adventure  \u2014 collaboration with @wingz</a> by @justyna in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>25-08 <a href=https://steemit.com/science/@elemenya/why-invest-in-fusion-energy>Why Invest in Fusion Energy</a> by @elemenya in <a href=https://steemit.com/trending/science>science</a></li>\n<li>25-08 <a href=https://steemit.com/anarchy/@johan-nygren/law-memes-and-mental-illness-towards-a-new-psychiatry>Law, memes and mental illness: Towards a New Psychiatry</a> by @johan-nygren in <a href=https://steemit.com/trending/anarchy>anarchy</a></li>\n<li>25-08 <a href=https://steemit.com/introduceyourself/@krishnasuperstar/robots-are-sexy-let-me-introduce-myself>Robots are sexy! Let me introduce myself.</a> by @krishnasuperstar in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>25-08 <a href=https://steemit.com/photography/@thecryptofiend/how-colour-can-change-the-feel-of-a-photograph>How Colour Can Change the Feel of a Photograph</a> by @thecryptofiend in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>25-08 <a href=https://steemit.com/life/@quickfingersluc/how-to-build-self-confidence-and-learn-to-be-successful>How to build self confidence and learn to be successful</a> by @quickfingersluc in <a href=https://steemit.com/trending/life>life</a></li>\n<li>25-08 <a href=https://steemit.com/photography/@kommienezuspadt/unpublished-doris-mayday-fashion-editorial-steemit-exclusive>Unpublished Doris Mayday fashion editorial! STEEMIT EXCLUSIVE!</a> by @kommienezuspadt in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>25-08 <a href=https://steemit.com/philosophy/@krnel/the-power-to-create-good>The Power to Create Good</a> by @krnel in <a href=https://steemit.com/trending/philosophy>philosophy</a></li>\n<li>25-08 <a href=https://steemit.com/politics/@juvyjabian/war-against-drugs-the-intensive-campaign-of-the-newly-elected-president-of-the-republic-of-philippines>War Against Drugs, The Intensive Campaign of the Newly Elected President of the Republic of Philippines</a> by @juvyjabian in <a href=https://steemit.com/trending/politics>politics</a></li>\n<li>24-08 <a href=https://steemit.com/life/@omfedor/mistakes-discipleship-and-the-school-of-life-response-to-onetree-s-post>Mistakes, Discipleship and The School Of Life. [Response to @onetree's post]</a> by @omfedor in <a href=https://steemit.com/trending/life>life</a></li>\n<li>24-08 <a href=https://steemit.com/technology/@pulpably/are-we-using-our-free-time-to-shorten-our-lives>Are We Using Our Free Time to Shorten Our Lives?</a> by @pulpably in <a href=https://steemit.com/trending/technology>technology</a></li>\n<li>25-08 <a href=https://steemit.com/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream>Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!</a> by @steemdrive in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>24-08 <a href=https://steemit.com/photography/@jessica-miller/military-aircraft-original-photography-part-ii-up-close-and-personal-at-macdill-usafb>Military Aircraft [original photography] - Part II - Up Close and Personal at MacDill USAFB</a> by @jessica-miller in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>25-08 <a href=https://steemit.com/steem/@oumar/steemlocator-com-locate-businesses-accepting-steem-my-contribution-to-this-community>[STEEMLOCATOR.COM] Locate Businesses accepting Steem all over the World! My contribution to this community.</a> by @oumar in <a href=https://steemit.com/trending/steem>steem</a></li>\n<li>24-08 <a href=https://steemit.com/recipe/@lauralemons/my-five-favorite-alcoholic-beverages-of-all-time>My five absolute favorite alcoholic beverages.</a> by @lauralemons in <a href=https://steemit.com/trending/recipe>recipe</a></li>\n<li>24-08 <a href=https://steemit.com/steem/@lantto/steem-api-explorer>Steem API Explorer</a> by @lantto in <a href=https://steemit.com/trending/steem>steem</a></li>\n<li>24-08 <a href=https://steemit.com/business/@bitcalm/open-plan-offices-are-a-nightmare>Open plan offices are a nightmare</a> by @bitcalm in <a href=https://steemit.com/trending/business>business</a></li>\n<li>24-08 <a href=https://steemit.com/life/@kryptik/parts-of-me-how-i-learned-to-become-a-parent-at-12-years-old-part-2-the-sheltered-life>Parts of Me: How I learned to become a parent at 12 years old (Part 2) The sheltered life.</a> by @kryptik in <a href=https://steemit.com/trending/life>life</a></li>\n<li>24-08 <a href=https://steemit.com/gardening/@veronikapmy1989/here-are-some-frequently-asked-questions-about-topsoil-in-gardens>Here are some frequently asked questions about topsoil in gardens.</a> by @veronikapmy1989 in <a href=https://steemit.com/trending/gardening>gardening</a></li>\n<li>24-08 <a href=https://steemit.com/fun/@deanliu/a-dear-wang-letter-how-i-miss-you-and-steemit>A Dear Wang Letter - how I miss you and Steemit</a> by @deanliu in <a href=https://steemit.com/trending/fun>fun</a></li>\n<li>24-08 <a href=https://steemit.com/photography/@trisnawati/28nf1y-hunting-today-with-phone-camera-10-photos-include>Hunting today, with phone camera [10 photos include]</a> by @trisnawati in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>23-08 <a href=https://steemit.com/travel/@phenom/virtual-travelling-or-five-interesting-places-that-can-be-visited-with-google-street-view>Virtual Travelling or Five interesting Places that Can Be Visited with Google Street View</a> by @phenom in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>23-08 <a href=https://steemit.com/story/@dwinblood/innate-sense-of-rebellion-attacking-perceived-wrongness-first-step-towards-anarchism>Innate sense of rebellion.   Attacking perceived wrongness.   First step towards Anarchism.</a> by @dwinblood in <a href=https://steemit.com/trending/story>story</a></li>\n<li>24-08 <a href=https://steemit.com/yoga/@yogi.artist/stranded-in-the-alps-an-earthly-offering-and-the-magic-of-the-ganesh-mantra>Stranded In The Alps, An Earthly Offering & The Magic Of The Ganesh Mantra</a> by @yogi.artist in <a href=https://steemit.com/trending/yoga>yoga</a></li>\n<li>23-08 <a href=https://steemit.com/radiator/@inertia/how-to-write-a-ruby-on-rails-app-for-steem>How to Write a Ruby on Rails App for STEEM</a> by @inertia in <a href=https://steemit.com/trending/radiator>radiator</a></li>\n<li>24-08 <a href=https://steemit.com/photography/@webdeals/taking-steemit-to-the-end-of-the-land-land-s-end-cornwall-england-part-1>Taking Steemit to the end of the Land: Land\u2019s End, Cornwall, England [part 1]</a> by @webdeals in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>23-08 <a href=https://steemit.com/life/@marrywiger/steemit-will-change-the-world>Steemit will change the world ?</a> by @marrywiger in <a href=https://steemit.com/trending/life>life</a></li>\n<li>23-08 <a href=https://steemit.com/steemit/@thebatchman/steemit-is-on-fire-and-i-am-celebrating-in-three-dimentions>Steemit is on fire and I am celebrating... In three dimensions!</a> by @thebatchman in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>24-08 <a href=https://steemit.com/economics/@jasonstaggers/why-the-federal-reserve-can-never-raise-interest-rates>Why the Federal Reserve Can NEVER Raise Interest Rates</a> by @jasonstaggers in <a href=https://steemit.com/trending/economics>economics</a></li>\n<li>23-08 <a href=https://steemit.com/travel/@myfirst/my-photography-countryside-travelling>My Photography Countryside Travelling / \u604b\u4e0a\u90a3\u67ff\u5b50\uff0c\u60f3\u5403\u4f60\u5f97\u6709\u53e3\u597d\u7259</a> by @myfirst in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>23-08 <a href=https://steemit.com/writing/@masonmiler/lost-in-time-an-original-poem-vol-1>LOST IN TIME  ( An Original Poem - Vol.1)</a> by @masonmiler in <a href=https://steemit.com/trending/writing>writing</a></li>\n<li>23-08 <a href=https://steemit.com/steemcleaners/@steemcleaners/the-steemcleaners-guide-for-dealing-with-abuse-on-steemit>The SteemCleaners Guide for Dealing with Abuse on Steemit</a> by @steemcleaners in <a href=https://steemit.com/trending/steemcleaners>steemcleaners</a></li>\n<li>23-08 <a href=https://steemit.com/steemcleaners/@steemcleaners/announcing-steemcleaners-the-steemit-abuse-fighting-team>Announcing SteemCleaners, the Steemit Abuse Fighting Team!</a> by @steemcleaners in <a href=https://steemit.com/trending/steemcleaners>steemcleaners</a></li>\n<li>23-08 <a href=https://steemit.com/photography/@lat-nayar/beach-scenes-malaysia-port-dickson-beach>BEACH Scenes Malaysia - Port Dickson Beach</a> by @lat-nayar in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>23-08 <a href=https://steemit.com/steem/@kafkanarchy84/perpetual-motion-machines-and-cryptocurrency-bootstrapping-how-i-commissioned-my-own-portrait-with-steem-dollars>Perpetual Motion Machines and Crypto-Bootstrapping: How I Commissioned My Own Portrait with Steem Dollars</a> by @kafkanarchy84 in <a href=https://steemit.com/trending/steem>steem</a></li>\n<li>22-08 <a href=https://steemit.com/photography/@nicoledphoto/why-do-you-use-photoshop-why-i-photoshop-my-images>Why Do You Use Photoshop?! Why I Photoshop My Images.</a> by @nicoledphoto in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>22-08 <a href=https://steemit.com/ufc/@daut44/ufc-202-mcgregor-vs-diaz-prefight-history-and-postfight-analysis>UFC 202: McGregor vs Diaz Prefight History and Postfight Analysis</a> by @daut44 in <a href=https://steemit.com/trending/ufc>ufc</a></li>\n<li>22-08 <a href=https://steemit.com/programming/@noisy/how-i-bankrupt-my-first-startup-by-not-understanding-the-definition-of-mvp-minimum-viable-product>How I bankrupt my first startup by not understanding the definition of MVP - Minimum Viable Product, and how I will avoid it next time :)</a> by @noisy in <a href=https://steemit.com/trending/programming>programming</a></li>\n<li>22-08 <a href=https://steemit.com/introduceyourself/@dannystravels/hey-i-m-danny-join-me-on-my-wildlife-adventures-through-africa>Hey I\u2019m Danny! Join me on my wildlife adventures through Africa!</a> by @dannystravels in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>22-08 <a href=https://steemit.com/photography/@chris.roy/1-abu-dhabi-the-arrival>#1 Abu Dhabi - The Arrival</a> by @chris.roy in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>22-08 <a href=https://steemit.com/travel/@thenakedgod/channel-island-occupation-atlantic-seawall-bunkers-germany-s-concrete-battleships>Channel Island Occupation: Atlantic Seawall Bunkers - Germany's Concrete Battleships</a> by @thenakedgod in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>22-08 <a href=https://steemit.com/marketing/@kreativ/the-dirty-little-secret-some-copywriters-just-don-t-want-you-to-know>The Dirty Little Secret Some Copywriters Just Don\u2019t Want You To Know.</a> by @kreativ in <a href=https://steemit.com/trending/marketing>marketing</a></li>\n<li>22-08 <a href=https://steemit.com/philosophy/@infinitor/existentialism-and-nihilism-why-i-myself-am-an-existentialist>Existentialism and Nihilism - Why I, myself, am an existentialist.</a> by @infinitor in <a href=https://steemit.com/trending/philosophy>philosophy</a></li>\n<li>22-08 <a href=https://steemit.com/philosophy/@kyriacos/the-myth-of-selfishness>The Myth of Selfishness</a> by @kyriacos in <a href=https://steemit.com/trending/philosophy>philosophy</a></li>\n<li>22-08 <a href=https://steemit.com/money/@steemingnow/schroedinger-s-cat-paradox-both-rich-and-poor-recovering-after-a-series-of-knockdowns>Schr\u00f6dinger's Cat Paradox: Both Rich and Poor - Recovering After a Series of Knockdowns</a> by @steemingnow in <a href=https://steemit.com/trending/money>money</a></li>\n<li>22-08 <a href=https://steemit.com/photography/@mweich/wait-is-that-a-blue-bee-steemit-colours>Wait, is that a BLUE BEE!  Steemit Colours!</a> by @mweich in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>22-08 <a href=https://steemit.com/steemit/@renzoarg/bot-baiting-a-basic-analysis-is-there-such-thing-as-a-bot-threat>Bot-baiting, a basic analysis. - Is there such thing as a bot threat?</a> by @renzoarg in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>22-08 <a href=https://steemit.com/health/@tanata/why-do-women-gain-more-weight-than-men>Why do women gain more weight than men?</a> by @tanata in <a href=https://steemit.com/trending/health>health</a></li>\n<li>21-08 <a href=https://steemit.com/bitshares/@nxtblg/bitshares-trading-diary-day-7-attack-of-the-short-sellers>Bitshares Trading Diary, Day 7: Attack Of The Short Sellers</a> by @nxtblg in <a href=https://steemit.com/trending/bitshares>bitshares</a></li>\n<li>21-08 <a href=https://steemit.com/writing/@wadepaterson/the-popular-depression-chapter-1>The Popular Depression: Chapter 1</a> by @wadepaterson in <a href=https://steemit.com/trending/writing>writing</a></li>\n<li>21-08 <a href=https://steemit.com/travel/@kennyskitchen/from-montana-to-guatemala-in-2-weeks-3500-miles-with-no-car-and-usd200-to-start-hitch-hiking-border-patrol-hare-krishnas>From Montana to Guatemala in 2 weeks, 3500 miles with no car & $200 to start! Hitch-hiking, border patrol, Hare Krishnas,</a> by @kennyskitchen in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>21-08 <a href=https://steemit.com/printing3d/@cryptos/3d-printing-what-types-of-3d-printer-filament-are-available>3D Printing: What Types of 3D Printer Filament Are Available</a> by @cryptos in <a href=https://steemit.com/trending/printing3d>printing3d</a></li>\n<li>21-08 <a href=https://steemit.com/story/@steemitwithstu/the-story-of-troye-a-young-entrepreneur-is-born>The Story Of Troye - A Young Entrepreneur Is Born</a> by @steemitwithstu in <a href=https://steemit.com/trending/story>story</a></li>\n<li>21-08 <a href=https://steemit.com/news/@fat-like-buddha/death-penalty-is-needed-in-all-societies-even-in-an-anarchism-society-here-is-why>Death Penalty is Needed in all Societies  - Even in an Anarchism Society - Here is why ...</a> by @fat-like-buddha in <a href=https://steemit.com/trending/news>news</a></li>\n<li>20-08 <a href=https://steemit.com/life/@newandold/the-monkey-mind-and-the-inner-child-how-i-get-back-on-track>The monkey mind and the inner-child. How I get back on track.</a> by @newandold in <a href=https://steemit.com/trending/life>life</a></li>\n<li>20-08 <a href=https://steemit.com/photography/@timelapse/sony-90mm-macro-vs-lensbong-setup>Sony 90mm Macro vs Lensbong Setup</a> by @timelapse in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>20-08 <a href=https://steemit.com/life/@kus-knee/the-old-dog-investigates-roads-is-there-a-better-way>The Old Dog Investigates: Roads, is There a Better Way?</a> by @kus-knee in <a href=https://steemit.com/trending/life>life</a></li>\n<li>20-08 <a href=https://steemit.com/food/@jed78/locally-grown-food-and-you-farmer-s-markets-some-info-for-healthy-food>Locally Grown Food and You: Farmer's Markets!  Some Info For Healthy Food</a> by @jed78 in <a href=https://steemit.com/trending/food>food</a></li>\n<li>20-08 <a href=https://steemit.com/psychology/@cristi/things-make-sense-in-retrospect-the-hindsight-bias>Things Make Sense in Retrospect - The Hindsight Bias</a> by @cristi in <a href=https://steemit.com/trending/psychology>psychology</a></li>\n<li>20-08 <a href=https://steemit.com/life/@freiheit/what-they-did-tell-you-about-chemtrails-but-you-weren-t-listening-3-minutes-read>What they DID tell you about chemtrails. But you weren't listening! [3 minutes read]</a> by @freiheit in <a href=https://steemit.com/trending/life>life</a></li>\n",
+    "body_length": 32905,
+    "cashout_time": "2016-10-02T10:38:42",
+    "category": "robinhoodwhale",
+    "children": 20,
+    "created": "2016-09-01T08:54:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"robinhoodwhale\",\"life\",\"writing\",\"story\",\"cn\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T22:36:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 23131290433028,
+    "parent_author": "",
+    "parent_permlink": "robinhoodwhale",
+    "pending_payout_value": "62.597 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "robinhoodwhale-01-09-2016",
+    "post_id": 821498,
+    "promoted": "271.000 HBD",
+    "replies": [],
+    "root_title": "Real-Time Update of RobinHood Whale Project \u7f57\u5bbe\u9cb8\u706b\u8d34\u5b9e\u65f6\u66f4\u65b0 01-09",
+    "title": "Real-Time Update of RobinHood Whale Project \u7f57\u5bbe\u9cb8\u706b\u8d34\u5b9e\u65f6\u66f4\u65b0 01-09",
+    "total_payout_value": "0.000 HBD",
+    "url": "/robinhoodwhale/@laonie/robinhoodwhale-01-09-2016"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "10680230250228",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6757100093988",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "1118902601491",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5925537844699",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3828633672665",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099954800",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210935138158",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3763461212",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690406462",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54134101721",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661302953",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213684579",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10777629083",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622843501",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967387415",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21550256405",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392405354610",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279111662172",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196163592993",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288174518",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74205930982",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2859098472",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5349082417",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59226109387",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1154102439",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432421152",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1506024470",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370098823461",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "917932650",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516144252764",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1350589595",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7658293419",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314968895861",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22791323090",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2596798738",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1490143673659",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687044369011",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2277766230",
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265741725388",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392842631094",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41240110326",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8970769157",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3125302080",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55677464852",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282967064",
+        "voter": "sonyanka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54720712494",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10312089759",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "457654847",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75271969902",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12378378533",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4569401045",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36245526538",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3967602880",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15604637635",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282893744",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "317446577",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17676726210",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79327997987",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37118933112",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11621730593",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19174335590",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "17229683384",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1449783634",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182392593276",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3475085906",
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7258620066",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38490866307",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15696374746",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "722574736",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96847284284",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1955550774",
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26465755082",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31250845331",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8308751917",
+        "voter": "taker"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "18077487422",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1312318561",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138994752",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133044304",
+        "voter": "luke490"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "3155521800",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2330702675",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687222192",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1367410476",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982813675",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "932742778",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54210250128",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16517911072",
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3442234051",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10969248240",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2119284500",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21912805745",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39122672915",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10587465402",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6511663813",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12934893314",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57027057",
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57022706",
+        "voter": "cloud1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5899789038",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316012583",
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3648819614",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3893409579",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57896578",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57588741",
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362203207",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1659124232",
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2582438657",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282251870",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217739533",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103730281",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50603364",
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54376435",
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367433800",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2283906005",
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60123439",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74117002",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511475810",
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55357981",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96292269",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52610096",
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56130433",
+        "voter": "jessica.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83347013",
+        "voter": "flourishing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227374514",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714843637",
+        "voter": "earthtodr01d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51409471",
+        "voter": "drherhel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50290667",
+        "voter": "elena-guseva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82372906",
+        "voter": "doctorkot873"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80735872",
+        "voter": "dumpz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164330251",
+        "voter": "rogelio11"
+      }
+    ],
+    "author": "kafkanarchy84",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "# Happy September. #\n<a href='https://postimg.org/image/3wokqy0mf/' target='_blank'><img src='https://s15.postimg.org/3jx6kricr/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/'>\n\n**I know others on this website have said this, so I'm not the first, but yeah, I quit my job to write for Steemit.** \n\nActually, though, that's not entirely true. It's kind of true. I quit my job because something shifted inside of me. When the job was gone, Steemit, on the selfsame day, rose up into my focus immediately to fill the void like it was just waiting for me to finally get real. To do this stuff I've always been wanting to do. And always *have been doing* at the expense of sleep, money, time, etc. I was now beginning to get *paid for it.* What the!?!\n\n**The first half of August was bliss.** After some initial discouragement, I found some good verbs in the mouth of one Sterlin Luxan, and was inspired to actually dig down inside of myself and make a more [honest post.](https://steemit.com/steemit/@kafkanarchy84/why-i-have-quit-five-jobs-in-the-past-six-years-a-steemit-confessional) I finally made twenty bucks on the site. From there I thought, hell, I'll just do this full time. I began to make significant sums of cash for an honest day's worth of work writing, and felt that with my side job,  as long as I hammered down, I would be able to cover my family's usual expenses by the time September rolled around.\n\n\nhttps://s22.postimg.org/wk9d1kjsx/image.jpg\n*Spending time with my son has been one of the biggest bonuses of leaving my 9-5.*\n# **Well. August 31st. Paying all my bills with SBDs? No such luck, my friend.** # \n\nBut I will tell you one thing. I never dreamed I could pull down 2Gs cold, hard cash through writing in less than a month, even if one half of it is still vested in Steem Power (I am happy about this). I was sick to my stomach, though. I have a wife and a child. Playing games at this point was not an option. Still....I had heard something that was very lovely and very clear.\n\nIt was a kind of feeling I have never had before, but which was also at once very perfectly familiar. As my kid is playing on the Octopus slide behind me, and I am staring out at the sea, it hits me:  ***It's over. You will never teach kids again.***\n\n<a href='https://postimg.org/image/4xqdopsip/' target='_blank'><img src='https://s16.postimg.org/dfztt1z1h/image.jpg' border='0' alt='image'/><br />\n\n**Weird. It's like my wish, but this time I am not even wishing for it. It comes to me. I just know that that chapter of my life is completed. That was the day after I quit my job.**\n\n**Fast forward to the end of the month.** I haven't made enough money like I had hoped....I pray to someone or something over my Matsuya beef bowl in the sketchy back alley district of the burlesque dancers: *what should I do?* I was really, really feeling low and full of doubts and self-accusations.\n\nImmediately that silly voice came back again: \n # *(Keep doing what you're doing)* #\n\nI haven't been eating this month. Haven't been sleeping. Have had headaches. Upset stomach. Welcome to fear. Welcome to the real shit. You were so cocky! Are you lazy!? You didn't like your job but so what!? You've got a family!!! Son comes home from daycare. *DAAAAADDDYYYYYY!!!!!!! Let's play!!!!!*\n\nPull yourself together.\nDon't show your frayed nerves.\n\n**My wife is equally worried.**\nShe needs security. She wants to get into massage. Vocal training school. So many dreams. Here I am sitting around the house in my underwear when all I really want to do is hand her a big fat envelope full of money.\n\nhttps://s17.postimg.org/56h7g4qxb/image.jpg\n\n**I've never been lazy. I will work my ass off when I care, and when I need to.** Fuck sleep. Fuck food. Fuck everything but the goal. \n\n# I just can't seem to give a damn about most shit that everybody else says is important. #\nWell, a lot of shit, at least. Still. Mouths to feed, my friend. But that \"voice,\" didn't it mean something? And despite the nerves, hasn't this been one of the happiest, most productive months of my life? Yes. Yes, and yes. Besides, the other job was no good. Bad, unsustainable situation. You know that, Graham.\n\nhttps://s15.postimg.org/i7lfk6hzv/image.jpg\n*My buddy Kevin shows up to the Local.*\n\n**Back to now, August, 31st, 2016. Evening. I went to my friend Craig's bar tonight.** At the depth of my despair, on the bus ride over, I received a mail from my other friend, Aidan. There might be some part time work at his school. Mail sounds promising. \n\nAfter a couple beers at Craig's place it is settled I will work Saturdays mixing booze and playing guitar. I am starting to feel good again. It is starting to seem possible that I can build my own, full-time, part-time \"Steem-lance\" schedule. [Fake priest weddings](https://steemit.com/religion/@kafkanarchy84/my-life-as-a-fake-priest-true-believer), English classes, serving beer and singing....and....\n\n# STEEEEEEEEEEEEMMMMMM!!!!!!! #\n\nAnd you know what? \n\nI am going to document it every step of the way. This is the first episode. Hope to see you next time, from my first day on the job as a bartender. \n\nhttps://youtu.be/jasziAzaiZ4\n\n<a href='https://postimg.org/image/rjlhw49rp/' target='_blank'><img src='https://s18.postimg.org/aj2lnfwqh/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/'>\n\nhttps://s17.postimg.org/yb9pkx39b/image.jpg\n*Basically how I feel now that I have discovered Steemit.com*\n\nPeace, Love, and Anarchy,\n\n~KafkA\n\nP.S. Another thing I have never been good at is keeping a consistent diary. I'm too private, and can't be bothered, even for myself. Should \"My Steemit Life\" transform into an existentialist thought stream ramble resembling a blog-turned-extended-acid trip, please forgive me. Maybe I will commit to  5 episodes. That sounds like a good number to me. Deal?\n\n***\n*Graham Smith is a Voluntaryist activist residing in Niigata, Japan.*",
+    "body_length": 5976,
+    "cashout_time": "2016-10-03T05:59:15",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-01T18:17:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"blog\",\"life\",\"money\",\"writing\"],\"image\":[\"https:\\/\\/s15.postimg.org\\/3jx6kricr\\/image.jpg\",\"https:\\/\\/s22.postimg.org\\/wk9d1kjsx\\/image.jpg\",\"https:\\/\\/s16.postimg.org\\/dfztt1z1h\\/image.jpg\",\"https:\\/\\/s17.postimg.org\\/56h7g4qxb\\/image.jpg\",\"https:\\/\\/s15.postimg.org\\/i7lfk6hzv\\/image.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/jasziAzaiZ4\\/0.jpg\",\"https:\\/\\/s18.postimg.org\\/aj2lnfwqh\\/image.jpg\",\"https:\\/\\/s17.postimg.org\\/yb9pkx39b\\/image.jpg\"],\"links\":[\"https:\\/\\/postimg.org\\/image\\/3wokqy0mf\\/\",\"https:\\/\\/postimage.org\\/\",\"https:\\/\\/steemit.com\\/steemit\\/@kafkanarchy84\\/why-i-have-quit-five-jobs-in-the-past-six-years-a-steemit-confessional\",\"https:\\/\\/postimg.org\\/image\\/4xqdopsip\\/\",\"https:\\/\\/steemit.com\\/religion\\/@kafkanarchy84\\/my-life-as-a-fake-priest-true-believer\",\"https:\\/\\/youtu.be\\/jasziAzaiZ4\",\"https:\\/\\/postimg.org\\/image\\/rjlhw49rp\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T19:21:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34863582559813,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "141.758 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "my-new-steemit-life-ep-1-write-write-write-and-fill-me-up-barkeep",
+    "post_id": 826383,
+    "promoted": "250.000 HBD",
+    "replies": [],
+    "root_title": "My New Steemit Life, ep. 1. Write, write, write and fill me up, barkeep",
+    "title": "My New Steemit Life, ep. 1. Write, write, write and fill me up, barkeep",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@kafkanarchy84/my-new-steemit-life-ep-1-write-write-write-and-fill-me-up-barkeep"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7670216559865",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31876585090724",
+        "voter": "smooth"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "317914133749",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "11008788408007",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2750965758653",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8047618620631",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2008425648912",
+        "voter": "hr1"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "124866338524",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3102984335",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767302471",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690894989",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54620023708",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662776232",
+        "voter": "mini"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "3996811840503",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213775837",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2005461457928",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "448048632495",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454605188433",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "940178035364",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123564024708",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5795927037577",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "742120382574",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11483504721",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624865483",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969733311",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6733117454",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288326627",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25303423950",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1783656248",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560134332",
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1077809816193",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641506711463",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19601271761",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5372083616",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26442946448",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "12146782657",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150002721014",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7438851067",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "579113009",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74162623116",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425432026",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2580300343",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386963068010",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "8100",
+        "reputation": 0,
+        "rshares": "12725367383",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6091161879",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13249527549",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3914878687602",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377929170961",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54758222958",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53397004453",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457401312",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012427662",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33797995673",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5955519251",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "673760893866",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46085881971",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5847907620",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501960006",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5901639288",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144695333",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7178411426",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536577431",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43623897139",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5002312350",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86290120409",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259005241756",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4737797461",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94941542765",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5362675333",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114790527271",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5000700321",
+        "voter": "vote"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "60427141792",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5270059157",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123955936289",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60646225326",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4223413440",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485248462",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531093989",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499019869",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1412946901",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1682718699",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16124466765",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3978176479",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13703431601",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11306954567",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7758574000",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354410763772",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43462674468",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15104308075",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96640276",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3786816110",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4131960392",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64244086005",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30425039030",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5934713344",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3139297205",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193450379454",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39208641632",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16286433521",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "699114314",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510988681",
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19511243271",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764587130",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464463583",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10849845352",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16486935205",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644938467",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24460059681",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1788332586",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537151647",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "502370811",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36980045409",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6269241467",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29622795026",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1916768690",
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2508005666",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22568372246",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1228556126",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8330954811",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16536123177",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7778902595",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46120509168",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93179996002",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1228318050",
+        "voter": "paynode"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "61953313410",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8390933191",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2332480922",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282475333",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9800700626",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11703925092",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9478532876",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310860944",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "4500",
+        "reputation": 0,
+        "rshares": "7922688868",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5258185581",
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3152432234",
+        "voter": "abarefootpoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1106918787",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244133529",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5604020976",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1472156059",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1811437634",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47544190219",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6942985003",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256121543428",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4503423419",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4294437615",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2169254983",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "717820732",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7312796092",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2138560797",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56265756",
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1686379746",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57099237",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6917765207",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32095690690",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15628558049",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22447321617",
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5768322041",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93669300",
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222354480",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2718313646",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6021996039",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59424037971",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "1800",
+        "reputation": 0,
+        "rshares": "5327999017",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54408230",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1236939246",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1484844103",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9128684631",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59621226",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4891777366",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51376153",
+        "voter": "eagleeye7850"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51343959",
+        "voter": "simonakindle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57266113",
+        "voter": "technium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51215236",
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51141851",
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50949641",
+        "voter": "poemandres"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61035542",
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50907857",
+        "voter": "oxygen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50568084",
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50565798",
+        "voter": "penthouse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50543061",
+        "voter": "rabobank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50487909",
+        "voter": "opticalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50482289",
+        "voter": "connection"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317220",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8222386076",
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3044306684",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162904624",
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160034557",
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160128119",
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158617835",
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158610679",
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101178006",
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107496727",
+        "voter": "elsi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154281152",
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156864426",
+        "voter": "pyroveso"
+      }
+    ],
+    "author": "timsaid",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<center><img src=\"https://s12.postimg.org/64c1pstcd/senseseye.jpg\"/></center>\n<p>Many things around us and with us happen we take for granted. We see, feel, taste, hear and smell unknowingly how it works. As we were children we called anything into question and now accept reality as it is. We lost the magic in all these wonderful things. This series addresses the wonder of natures and will bring its magic back to light. The first part of the <strong>Life Explorers - The Human Senses </strong>starts with the sense of sight. We see forms and colors, see bright and dark. But why?<br>\n&nbsp;</p>\n<p>To be able to answer this question we first need to have look at the nature off light. Light is a form of electromagnetic (EM) radiation, to be accurate we need to speak of visible light because only a small portion of the actual EM spectrum is visible to the human eye. The following illustration shows the EM spectrum. Frequency and wavelength are inversely proportional, the shorter the wavelength the higher the frequency. With higher frequencies the amount of energy is rising, this is for instance the reason why Gamma Rays are deadly. The high energy of the gamma rays are devastating for biological cells as they are ionizing and cause secondary radiation like X-Rays or electron diffraction. E= h \u2022 f is formula which depicts the proportionality of <strong>E</strong> energy and <strong>f</strong> frequency (<strong>h</strong> stands for the Planck constant). &nbsp;&nbsp;&nbsp;Here a little example for the energy of a short and a long wavelength.&nbsp;</p>\n <table>\n      <tr>\n        <td>red</td>\n        <td>E=h \u2022 f = 6,626 070 040 \u00b7 10\u221234 J*s * 384 THz</td>\n        <td>1,59 eV</td>\n      </tr>\n      <tr>\n        <td>violet</td>\n        <td>E=h \u2022 f = 6,626 070 040 \u00b7 10\u221234 J*s * 789 THz</td>\n        <td>3,26 eV</td>\n      </tr>\n    </table>\n<center><img src=\"https://s14.postimg.org/uajq64zo1/emspectrumvis.jpg\" width=\"1280\" height=\"766\"/></center>\n<center><em>Fig. 1. The electromagnetic spectrum. Source: </em><a href=\"http://www.livescience.com/32344-what-are-x-rays.html\"><em>Livescience</em></a></center>\n<p>As shown above the visible light is only a tiny portion of the EM spectrum. The human eye is able to see colors from red to violet, which is equivalent to wavelengths from 780nm to 380nm (nm = nanometer).</p>\n<h3>&nbsp;<br>\n<strong>Why do is the Steemit logo blue and not red?</strong></h3>\n<center><img src=\"https://s10.postimg.org/isgrqldc9/steemitlogo.png\" width=\"800\" height=\"800\"/></center>\n<p>Sure because @dantheman and @ned decided so :) But on a scientific base, how come we see blue and not another color?&nbsp;</p>\n<p>Now that we know what visible light is let\u2019s have a look at the interaction of EM radiation and the objects we see. The actual color we perceive depends on the physical principle of reflection and adsorption. &nbsp;<br>\n<br>\nMost objects reflect light but before that happens they adsorb part of the light they receive. The wavelength they adsorb determines what your eye will process later. For instance when all wavelengths expect red (780nm) are adsorbed the object will reflect red. Same goes for a blue steemit logo for instance. The logo absorbs all wavelengths expect the blue. &nbsp;&nbsp;</p>\n<p>More than one wavelength can be reflected the same time, this therefore is why we see shades of the same color. &nbsp;&nbsp;</p>\n<center><img src=\"https://s15.postimg.org/eajm6sv8r/prismandrgb.jpg\" width=\"800\" height=\"337\"/></center>\n<p>We can see purple color when blue and red are reflected wavelengths. We see white when an object absorbs no light. &nbsp;<br>\nIsaac Newton showed that white light contains all colors. He used a prism to separate the colors of spectrum of visible light. &nbsp;&nbsp;&nbsp;</p>\n<h3>How does reflection and adsorption work? &nbsp;&nbsp;&nbsp;&nbsp;</h3>\n<p>To understand how adsorption works we need to have a closer look into the chemistry of molecules. As described light hitting an object, here molecule, is adsorbed and we see the complementary color as a result. The following abbreviations will be used: HOMO = Highest occupied molecule orbital and LUMO = Lowest unoccupied molecule orbital. Carrots are orange, but why? &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<center><img src=\"https://s14.postimg.org/5q33u4jup/steemcarrot.jpg\" width=\"634\" height=\"800\"/></center>\n<p>Electrons are moving in a certain space around the nucleus, called orbitals. The energy of light promotes an electron from a bonding or non-bonding orbital into an empty anti-bonding orbital, from HOMO to LUMO. The gap between these two orbitals is equivalent to the amount of energy that is needed to promote the electrons. A larger gap therefore requires light with more energy, for instance blue or violet. The chemical molecule that gives the carrot its orange color is called beta-carotene. Beta-carotene absorbs light between 400nm and 500nm with a peak at 470nm. Having a look at our additive color schema we will see that the complementary color of blue is yellow. Now is that not only blue, but a wide range of light between 400nm and 500nm is absorbed. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<center><img src=\"https://s21.postimg.org/h90irk9s7/carotene.gif\" width=\"518\" height=\"150\"/></center>\n<p>So when light hits the electrons of beta-carotene the electrons move from HOMO to LUMO and adsorb the light between 400nm and 500nm. This is the wavelength needed to promote the electron with the exact amount to energy needed. &nbsp;</p>\n<center><img src=\"https://s17.postimg.org/uot71t3j3/homolumo.png\" width=\"619\" height=\"217\"/></center>\n<p>Note: The electron moves back from LUMO to HOMO. The energy from the light used to promote the electron from HOMO to LUMO can be emitted in form of radiation or heat. In summer we all notice that black material gets warmer than bright. This is because the complete wavelength of the VIS is absorbed and emitted as heat. &nbsp;&nbsp;&nbsp;&nbsp;</p>\n<h3>Transforming waves to information &nbsp;</h3>\n<p>Now that we know how the light is absorbed by objects we need to examine how our eyes work. Without the human eye we wouldn\u2019t see anything, that\u2019s for sure. But how are we able to distinguish colors and brightness? Our retina has approximately 6 million cones and 120 million rods. When the reflected light hits our retina these cells become active. <br>\n We have three different type of cone cells, S(-hort), M-(medium) and L-(ong) cones. Short, medium and long refer to the wavelength the cell is responding to. The rods however can work with different wavelengths and thus do not matter when it comes to color. They are responsible for brightness and become active when there is less light. While the cones are active and working we speak of photopic vision, responsible for color sight. Scotopic vision is the terminus for sight in low light and only seeing in shades of gray. &nbsp;&nbsp;</p>\n<center><img src=\"https://s18.postimg.org/vi5wzz509/retina.jpg\" width=\"914\" height=\"430\"/></center><center><em>Fig. 2. Eye and retinal profile. Source: </em><a href=\"http://cdn.kevinmd.com/blog/wp-content/uploads/retina.jpg\"><em>Kevinmd</em></a></center>\n<p>As described the human retina has three kinds of cones. Each sensitive to a different wavelength. The following illustrations depicts the relation of wavelength and cones. These three cones together make it possible that we see colors. By combining cones we are able to see over 200 million different colors. &nbsp;</p>\n<center><img src=\"https://s17.postimg.org/jxtaq6apr/conesrods.jpg\" width=\"1225\" height=\"800\"/></center><center><em>Fig. 3. Spectral sensitivity of the receptor (rods and cones). Source: </em><a href=\"https://en.wikibooks.org/wiki/Sensory_Systems/Visual_System\"><em>Wikibooks; Sensory Systems</em></a><em>&nbsp;</em></center>\n<h3><strong>So when light hits a cone it becomes activated. How does this activation work?</strong><br>\n&nbsp;</h3>\n<p>This is a very complex biochemical process I will try to explain without going too much into detail since we could do several posts just about this process. However we will have a look at the basic. &nbsp;&nbsp;</p>\n<p>Both, cones and rods contain a light-sensitive receptor protein called Rhodopsin, also known as visual purple. Under the influence of light Rhodopsin decomposes into Opsin and trans-Retinal. This process repeats and creates a cascade. The end of the processes results in regulating a molecule named Glutamat. The cells behind the retina turn these signals into nerve impulses to make it processable for the human brain. &nbsp;&nbsp;</p>\n<p><br></p>\n<p><em>Thank you for reading the first part of </em><em><strong>Life Explorers - The Human Senses,</strong></em><em> Don't miss the next part. <br>\nDo you have an questions or suggestions? Want to know about a scientific topic? Leave a comment.<br>\n<br>\nTim Said</em></p>\n</html>",
+    "body_length": 8892,
+    "cashout_time": "2016-10-07T14:00:12",
+    "category": "science",
+    "children": 19,
+    "created": "2016-09-05T21:02:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"science\",\"lifeexplorers\",\"life\",\"nature\",\"health\"],\"users\":[\"dantheman\",\"ned\"],\"image\":[\"https:\\/\\/s12.postimg.org\\/64c1pstcd\\/senseseye.jpg\",\"https:\\/\\/s14.postimg.org\\/uajq64zo1\\/emspectrumvis.jpg\",\"https:\\/\\/s10.postimg.org\\/isgrqldc9\\/steemitlogo.png\",\"https:\\/\\/s15.postimg.org\\/eajm6sv8r\\/prismandrgb.jpg\",\"https:\\/\\/s14.postimg.org\\/5q33u4jup\\/steemcarrot.jpg\",\"https:\\/\\/s21.postimg.org\\/h90irk9s7\\/carotene.gif\",\"https:\\/\\/s17.postimg.org\\/uot71t3j3\\/homolumo.png\",\"https:\\/\\/s18.postimg.org\\/vi5wzz509\\/retina.jpg\",\"https:\\/\\/s17.postimg.org\\/jxtaq6apr\\/conesrods.jpg\"],\"links\":[\"http:\\/\\/www.livescience.com\\/32344-what-are-x-rays.html\",\"http:\\/\\/cdn.kevinmd.com\\/blog\\/wp-content\\/uploads\\/retina.jpg\",\"https:\\/\\/en.wikibooks.org\\/wiki\\/Sensory_Systems\\/Visual_System\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T05:35:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 88758332960581,
+    "parent_author": "",
+    "parent_permlink": "science",
+    "pending_payout_value": "734.824 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-explorers-the-human-senses-part-i-sight",
+    "post_id": 866583,
+    "promoted": "202.020 HBD",
+    "replies": [],
+    "root_title": "Life Explorers - The Human Senses Part I: Sight",
+    "title": "Life Explorers - The Human Senses Part I: Sight",
+    "total_payout_value": "0.000 HBD",
+    "url": "/science/@timsaid/steemit-explorers-the-human-senses-part-i-sight"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "566627757523",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172935370348",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "979750467824",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3720488193",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4516841735",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "828581067",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65037632700",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993835727",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256442875",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398407857501",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405156538906",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2578424778892",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11606677474",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747493846",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1161008754",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5042513512",
+        "voter": "sammy007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21127702358",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392330736044",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "303917950005",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345836633",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22047833256",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3366382061",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3904360862",
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177791083963",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8045649981",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22595244740",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5586884897",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22786454650",
+        "voter": "teatree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34313430362",
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432715390",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "917851920",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "912434705",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56501870239",
+        "voter": "aenor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13177382319",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10327600289",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2217132176566",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6799266998",
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233230107272",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13833394447",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4387565307",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323509837196",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128856964990",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309032139",
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30230668820",
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179192996861",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4045665201",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2799169786",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3512092095",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4636329916",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12972939718",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5755812898",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3490323117",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7000480953",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58365810442",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12820500774",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4997920619",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3125302080",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55677464852",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4258098520",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4959284136",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2737885092",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5115172637",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14515244254",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5265412146",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11343270265",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512168285",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15963348720",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7022246224",
+        "voter": "jholmes91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646087329",
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "943863353",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151052306779",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91676883571",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11951646778",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "429990873",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181322915378",
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18940589315",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6198566354",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "9117162454",
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15663282979",
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167157550959",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4564314455",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247212033",
+        "voter": "swaghetti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5507864316",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79012264189",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7477138730",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2927449570",
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399177345",
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11984005559",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254384994",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123279502731",
+        "voter": "kevinpham20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120671854452",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3840860910",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10218475734",
+        "voter": "kewpiedoll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3021913571",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3022743349",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147627391",
+        "voter": "apptrade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2109841036",
+        "voter": "applesauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4831185704",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503443057",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570936521",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463879581",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7617108667",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3052689593",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "879507428",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "478035225",
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30896278536",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2688248291",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152695761",
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83547862361",
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4887223428",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64903901",
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30591994425",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1838865673",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2944662227",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165604593",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138994752",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133044304",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7190135631",
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9322960051",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3507463169",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "11871680838",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73603234",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101244129774",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1418847949",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249904869",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1237440732",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7130857719",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13905458489",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14291678999",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1624044881",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309692332",
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1103360772",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58645215",
+        "voter": "dubloon135"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "305607086",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9551786749",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55979644",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1890040933",
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115499462203",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70310629",
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25835980056",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1565604150",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41962066513",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75599342",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206212756",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68932158",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53873853",
+        "voter": "mike1911"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329313117",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55773949",
+        "voter": "alyssasanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78982323",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50182215",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "818498504",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1626480492",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72030714",
+        "voter": "rawbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4191984521",
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112287621",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "673845983",
+        "voter": "reddust"
+      }
+    ],
+    "author": "leavemealone",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "As we all sit here trying to build steem and support the project, Ned and Dan (two founders of Steemi) are transferring to Poloniex and dumping all over the buy orders killing the price.  Why are they doing this?  This needs to be stopped!!!\n\n![dumping](https://puu.sh/qWKV3/dde86c2c45.png)\n\nAnyone have any ideas what is going on here?  Is it time to get out while we can?",
+    "body_length": 373,
+    "cashout_time": "2016-10-04T11:59:45",
+    "category": "steemit",
+    "children": 116,
+    "created": "2016-09-01T22:49:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"market\",\"price\",\"steem\",\"poloniex\"],\"image\":[\"https:\\/\\/puu.sh\\/qWKV3\\/dde86c2c45.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T22:49:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11370017153084,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "18.273 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on",
+    "post_id": 828971,
+    "promoted": "201.352 HBD",
+    "replies": [],
+    "root_title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@leavemealone/ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6865708718794",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8391155265950",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3188661987634",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2237699549801",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6043095568756",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416502630611",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066502666030",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320974092378",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3820544781800",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099309721",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762638572",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697337991",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54024389057",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660983664",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213666660",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34042532834",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622745754",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967227764",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21561714956",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288146820",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11534784730",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "1007351350",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37107803041",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330891318789",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "1326334522",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9650753116",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3540844593",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7574954620",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14461373144",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76817142068",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562838812114",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254728253114",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20539948938",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37511548124",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9361058328",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "845745510",
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107750896479",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199343900741",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1295463489",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1487859268399",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "86220818173",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78303382465",
+        "voter": "leta-blake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5298507505",
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "404148397580",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237530501",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3447344111",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204013843843",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4614780233",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32544390735",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127352923071",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13192961002",
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "573324811634",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268679076",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215319310",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82930683818",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15941974086",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231868639",
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823925676",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11193710521",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836675772",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298314520",
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19777501932",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4300172344",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2142200192",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38216574755",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4185538732",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29701247281",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384335950",
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "744526625",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349944185",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42932326495",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3270221316",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12426328804",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2976132321",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3409584558",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18771327082",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28727446047",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203718333639",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1076818897",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207787451268",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452080638",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10990758206",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "859954354",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7262356354",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18455105687",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221727119",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10247978573",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5344357822",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993799598",
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456070989",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52649085689",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8764708303",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731831758",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "62607001675",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2648592275",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29014739933",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2037352685",
+        "voter": "roy.batty"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "102471576654",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3835736527",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "19820536682",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "400",
+        "reputation": 0,
+        "rshares": "7023685973",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48570688158",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14437662629",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "1438674885",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56250267",
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1253580623",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3236349620",
+        "voter": "blow"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3570064064",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73603234",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71506742",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145609627",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83679447269",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63303346",
+        "voter": "rmach"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "235318349",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73290501683",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68023298566",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "801075067",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17823984520",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51095992",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58132384",
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5688444338",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7913107817",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2921015416",
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24069417896",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154945190",
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55633002031",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1200772644",
+        "voter": "maryfromsochi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23712596958",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93769724",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60796067",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68442517",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5550981381",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454788",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50468091",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50357208",
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52315645",
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50878690",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56535034",
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50821675",
+        "voter": "blck"
+      }
+    ],
+    "author": "sean-king",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<blockquote>You shall no longer take things at second or third hand, nor look through the eyes of the dead, nor feed on the specters in books, You shall not look through my eyes either, nor take things from me, You shall listen to all sides and filter them from your self. &nbsp;--Walt Whitman, Song of Myself&nbsp;</blockquote>\n<p><br></p>\n<blockquote>The whole history of these books [the Gospels] is so defective and doubtful that it seems vain to attempt minute enquiry into it: and such tricks have been played with their text, and with the texts of other books relating to them, that we have a right, from that cause, to entertain much doubt what parts of them are genuine. In the New Testament there is internal evidence that parts of it have proceeded from an extraordinary man; and that other parts are of the fabric of very inferior minds. It is as easy to separate those parts, as to pick out diamonds from dunghills. &nbsp;--Thomas Jefferson, letter to John Adams</blockquote>\n<p><br></p>\n<blockquote>There is no coming to consciousness without pain. &nbsp;--Carl Jung</blockquote>\n<p><br></p>\n<p><br></p>\n<p>_______________________________________________________</p>\n<h1>Redeeming Christ, Part II, Chapter 5, How We Got Our Bibles</h1>\n<p><br></p>\n<h3>Below is Chapter 4 of \"Redeeming Christ\". &nbsp;Some of what I say below may not make sense unless you've read the <a href=\"https://steemit.com/philosophy/@sean-king/redeeming-christ-an-indispensable-introduction\">Indispensable Introduction</a>, <a href=\"https://steemit.com/philosophy/@sean-king/redeeming-christ-part-i-chapter-i-deconstructing-faith\">Chapter 1</a>, <a href=\"https://steemit.com/bible/@sean-king/redeeming-christ-part-i-chapter-2-the-perplexing-power-of-paradigms\">Chapter 2,</a> <a href=\"https://steemit.com/bible/@sean-king/the-bible-isn-t-mainly-history\">Chapter 3</a> and <a href=\"https://steemit.com/christianity/@sean-king/early-christianities-weren-t-orthodox\">Chapter 4</a>. &nbsp;</h3>\n<p><br></p>\n<p>_______________________________________________________</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Official_Presidential_portrait_of_Thomas_Jefferson_by_Rembrandt_Peale_18003f466.jpg\" width=\"1024\" height=\"1221\"/></p>\n<p>(Jefferson's official portrait. &nbsp;Source: &nbsp;Wikipedia)</p>\n<h2><br></h2>\n<h2>Divine Inspiration</h2>\n<p><br></p>\n<p>If the earthly Jesus didn\u2019t authorize our Bibles, and if Christians argued for centuries over its makeup, how did history finally settle on \u201cthe\u201d Bible? Well, as we shall come to see, it didn\u2019t. But, to the extent that some modern Literalists believe that there is a single agreed-upon, infallible book of scripture, it is due, in their view, to the concept of \u201cdivine inspiration\u201d\u2014the idea that God\u2019s hand directed both the writing and the compilation of the Bible over hundreds of years.</p>\n<p><br></p>\n<p>But, is this idea of divine inspiration a reasonable one? As suggested in the prior chapter, if God had intended for us to look to a history book for our spiritual salvation, he certainly should have, dare I say would have, made his intentions plainer, no? As Professor Ehrman notes:</p>\n<p><br></p>\n<blockquote>It is one thing for believers to affirm, on theological grounds, that the decisions about the canon, like the books themselves, were divinely inspired, but it is another thing to look at the actual history of the process and to ponder the long, drawn-out arguments over which books to include and which to reject. The process did not take a few months or years. It took centuries. And even then there was no unanimity. (Lost Christianities at 230)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Because few lay Christians have ever done so, let\u2019s examine this drawn-out process in more detail.&nbsp;</p>\n<p><br></p>\n<p><br></p>\n<h2>The Gospels</h2>\n<p><br></p>\n<p>Much of the early arguments over the Bible centered upon which gospels should be included, and which excluded, from the New Testament. After all, as previously noted, there were far more gospels in circulation than merely the four known to our Bibles today:</p>\n<p><br></p>\n<blockquote>The greatest difficulty was in choosing the Gospels, and after much controversy, four were chosen: three, those of Matthew, Mark, and Luke, are synopses of Jesus\u2019 life, while John\u2019s Gospel concentrates on a few specific miracles performed by Christ. (Solomon J. Schepps, Foreward to the 1979 edition of Lost Books of the Bible at 9)</blockquote>\n<p><br></p>\n<p><br></p>\n<p><strong>Limiting the Gospels to only four was very important to some early Literalist leaders, although other Literalists and most Gnostics opposed this limitation, and the rationale for it was strained at best.</strong> Irenaeus, who we met in the last chapter, was one of the earliest and most vehement proponents of a four gospel canon, arguing that, \u201cit is not possible that there can be more or fewer than four\u201d for \u201c just as there are four regions of the universe, and four principal winds\u201d there must be only four gospels. Though hardly compelling, this rationale has been frequently cited over the centuries.&nbsp;</p>\n<p><br></p>\n<h3>Later orthodox Literalists, who ultimately assumed control over the selection process (as we will discuss below), did offer more rational justifications for limiting the gospels to four: They deemed some of the additional ones to be merely supplementary or redundant and therefore unnecessary, while they viewed others, particularly those without a Literalist bent, as outright heretical:</h3>\n<p><br></p>\n<blockquote>Of the accounts of the life of Jesus that were rejected by the Fathers, many were considered supplementary rather than false. Such was the case with the Gospels of Peter and Nicodemus and the two accounts of Christ\u2019s infancy (I and II Infancy)\u2026.</blockquote>\n<p><br></p>\n<p>***</p>\n<p><br></p>\n<blockquote>Peter\u2019s Gospel, which was once held as high as those of Matthew and Mark, and more highly than those of Luke and John, was ultimately rejected because it differs too much in its details from the three chosen synopses. The Gospel of Thomas, one of the Nag Hammadi documents, was rejected for a very different reason. It opens by saying that he who understand the words of Jesus will be saved. This, of course, is in direct contradiction to the chosen Gospels\u2026which say that it is he who believes that will be saved\u2026. (Forward to the 1979 edition of Lost Books of the Bible at 9-10)</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>The last of the \u201cchosen\u201d gospels, often called the fourth gospel, was that of John. But the modern reader may be surprised to learn that many early Christians disapproved of it selection:</h3>\n<p><br></p>\n<blockquote>Even its first generation of readers disagreed as to whether John was a true gospel or a false one\u2014and whether it should be part of the New Testament. John\u2019s defenders among early Christians revered it as the \u201clogos gospel\u201d\u2014the gospel of the divine word or reason (logos, in Greek)\u2014and derided those who opposed it as \u201cirrational\u201d (alogos, lacking reason). Its detractors, by contrast, were quick to point out that John\u2019s narrative differs significantly from those of Matthew, Mark, and Luke. [A]t crucial moments in its account, for example, John\u2019s gospel directly contradicts the combined testimony of the other New Testament gospels. (Elaine Pagels, Beyond Belief: The Secret Gospel of Thomas at 34-35)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Even so, because it can be bent to a Literalist interpretation, John\u2019s gospel came to be accepted as canon.&nbsp;</p>\n<p><br></p>\n<p>By way of contrast, the Gospel of Peter--a book much prized by most early Christians, rivaling in popularity the Gospels of Matthew and Mark and exceeding Luke and John--was ultimately rejected because it lent itself to a potentially \u201cheretical\u201d interpretation known as <a href=\"https://en.wikipedia.org/wiki/Docetism\">docetism</a>. Although it came in a variety of forms, docetism can be understood for purposes of this book as the belief that Christ\u2019s divine nature kept him from experiencing true pain and suffering during his life and death. Serapion (c. 199), the orthodox Bishop of Antioch, (c. 199), concluded that because the Gospel of Peter could be interpreted in a manner inconsistent with orthodox teachings (which held that Jesus suffered in the ordinary sense), it could not have been written by the Apostle Peter.&nbsp;</p>\n<p><br></p>\n<h3>While modern scholarship has confirmed that the Gospel of Peter was not written by the historical Peter, Serapion\u2019s rationale for dismissing it should concern those who assert the Bible\u2019s infallibility. Serapion discarded the book simply because he disagreed with it, not because he had any actual evidence or knowledge of forgery. Thus, in Serapion\u2019s approach we see the beginnings of an orthodox \u201clitmus test\u201d for determining the authenticity of early Christian manuscripts\u2014those that largely agreed with the orthodox position, or could be interpreted or easily edited to do so, were frequently held to be authentic, while those that outright contradicted orthodox views were always discarded as forgeries.&nbsp;</h3>\n<p><br></p>\n<h3>Renowned scholar Bruce M. Metzger, PhD, acknowledges that the compilers of the Bible applied just such a litmus test. According to Metzger, for a book to be considered canonical it must have met three tests:</h3>\n<h3><br></h3>\n<h3>First, the books must have had apostolic authority\u2014that is, they must have been written either by apostles themselves, who were eyewitnesses to what they wrote about, or by followers of apostles.</h3>\n<h3><br></h3>\n<h3>[S]econd, there was the criterion of conformity to what was called the rule of faith. That is, was the document congruent with the basic Christian tradition that the [orthodox] church recognized as normative?&nbsp;</h3>\n<h3><br></h3>\n<h3>And third, there was the criterion of whether a document had had continuous acceptance and usage by the church at large. [Quoted in The Case For Christ at 66]</h3>\n<h3><br></h3>\n<h3><br></h3>\n<h3>Other scholars have noted that the litmus test came in four parts rather than three, recognizing an additional requirement that the book be \u201cancient\u201d. But regardless, it is the second test, the \u201crule of faith\u201d, that is most intriguing to critical scholars.&nbsp;</h3>\n<p><br></p>\n<p><strong>The \u201crule of faith\u201d, sometimes called the \"standard of faith\" rested on the now questionable assumption that the orthodox view of Christianity represented the exclusive authentic tradition.</strong> Under this standard, any early Christian document that contradicted the orthodox understanding was considered by the orthodox Literalists of the second and third centuries to be a forgery. <strong>For instance, the Gospel of Peter met every prong of the orthodox litmus test noted above save one\u2014the \u201crule of faith\u201d. After all, it was ostensibly written by the Apostle Peter and it was widely used and considered authentic by a great number of Christians, proving itself to be even more popular than Luke or John. The simple fact is that we don\u2019t read the Gospel of Peter in our Bibles today only because parts of it could not be reconciled with certain orthodox teachings and, as we shall see, it was the orthodox who compiled our Bibles.&nbsp;</strong></p>\n<p><br></p>\n<p>Perhaps this rationale for excluding the Gospel of Peter and other books is acceptable to those who take it on faith that the orthodox tradition was the true and complete one, but it is troublesome for those who know otherwise. After all, <strong>the reasoning employed by the early orthodox is circular: \u201cWe\u2019re right and they are wrong\u201d, contended the orthodox leaders who compiled our Bibles. \u201cSo those manuscripts that agree with us are obviously authentic, while those that do not are certainly forgeries. Therefore we shall create a collection of the \u2018authentic\u2019 teachings, and then we can point to the authenticity of this collection as proof that our interpretation of Christianity is the right one.\u201d One doesn\u2019t have to be a logician to find the holes in that reasoning.</strong></p>\n<p><br></p>\n<p><br></p>\n<h2>The Letters</h2>\n<p><br></p>\n<p>Not surprisingly, the debate over the Bible wasn\u2019t limited to the Gospels alone, but included the New Testament letters (epistles) as well. Several of the epistles in our present-day Bibles were not well respected by important early Christians, even some Literalist ones. <strong>In Origen\u2019s (c. 210) catalogue of New Testament scriptures, the Epistles of James and Jude are omitted, and Origen notes that many Christians were skeptical of 2 Peter and 2 and 3 John. More than a hundred years later, Eusebius (c. 315) states that some Christians of his time still doubted or outright rejected the authenticity of these same five books. Eusebius himself considered Revelation to be spurious. Jerome (c. 382) spoke dubiously of the epistle to the Hebrews. As late as the fifth century, the Syrian church venerated only 22 books, excluding 2 Peter, 2 and 3 John, Jude and Revelation. By contrast, the present day Ethiopian church accepts all twenty-seven books of our present day New Testament, but adds four more.&nbsp;</strong></p>\n<p><br></p>\n<p><strong>The famous fourth century teacher known as Didymus the Blind was among those who believed that 2nd Peter was a forgery. Interestingly though, he cited the Shepard of Hermas and other noncanonical books favorably.&nbsp;</strong></p>\n<p><br></p>\n<p><strong>The last book of the Bible, Revelation, is not included in the various catalogues of the New Testament offered by such notable early Christians as Cyril, Bishop of Jerusalem (c. 340); the Bishops at the Council of Caudices (c. 364); Gregory Nazianzen, Bishop of Constantinople (c. 375); and Philastrius, Bishop of Brixia in Venice (c. 380).&nbsp;</strong></p>\n<p><br></p>\n<p><strong>In short, as late at 400 CE there was no accepted, universal canon of Christian scripture. And, as we shall soon see, there still isn\u2019t even today.&nbsp;</strong></p>\n<p><br></p>\n<p><br></p>\n<h2>Forgery, Forgery Everywhere</h2>\n<p><br></p>\n<p><strong>Forgery was commonly practiced in ancient times, so early Christians had reason to be skeptical when their opponents pointed to various manuscripts to \"cinch\" their argument. And as we shall see, we have even more reasons to be skeptical of these same manuscripts today.&nbsp;</strong></p>\n<p><br></p>\n<h2>Arguing in support of the integrity of our modern Bibles, Literalists often cite the research of critical scholars who have proven many of the excluded texts, such as the once-prized Gospel of Peter, to be forgeries (i.e., it was not really written by the historical Peter). But, these Literalists overlook the fact that these very same scholars have also shown several of our New Testament letters to be forgeries:</h2>\n<p><br></p>\n<blockquote>Scholars have long recognized that even some of the books accepted into the canon are probably forgeries. Christian scholars, of course, have been loathe to call them that and so more commonly refer to them as \u201cpseudonymous\u201d writings. Possibly this is a more antiseptic term, but its does little to solve the problem of a potential deceit, for an author who attempts to pass off his own writing as that of some other well-know person has written a forgery. That is no less true of the book allegedly written to Titus that made it into the New Testament (Paul\u2019s Letter to Titus) than of the book allegedly written by Titus that did not (Pseudo-Titus), both claiming to be written by apostles (Paul and Titus), both evidently written by someone else. (Ehrman, Lost Christianities at 9)</blockquote>\n<p><br></p>\n<p><br></p>\n<p><strong>In fact, all of Paul\u2019s New Testament \u201cPastoral letters\u201d--1 and 2 Timothy and Titus--are now known to have been written long after Paul\u2019s death, very likely in the late first century. &nbsp;Among the New Testament books attributed to Paul, only Galatians, 1 and 2 Corinthians, 1 Thessalonians, Philippians, Romans, and Philemon are universally recognized by critical and \u201cfaithful\u201d scholars alike as authentic.</strong> Ephesians, Colossians and 2 Thessalonians are sometimes disputed, but the definite consensus of critical scholars is that they are either fabrications or severely edited versions of some now lost originals.&nbsp;</p>\n<p><br></p>\n<p>Although I cannot document here all of the various, compelling reasons why critical scholars are so sure that many New Testament epistles are faked, I will take a moment here discuss the Pastorals.&nbsp;</p>\n<p><br></p>\n<p>In addition to the skepticism expressed by early prominent Christians and church fathers like those noted in the previous section above, the earliest extant catalogue of Paul\u2019s letters makes no mention at all of the Pastorals. Indeed, there is no evidence of their existence prior to c. 190 when Irenaeus conveniently makes mention of them. And yet, even despite these references by Irenaeus, Eusebius (c. 300), the so-called \u201cFather of Church History\u201d, does not include the Pastorals in his catalogue of the books of sacred scripture, even though he definitely knew of them.&nbsp;</p>\n<p><br></p>\n<p>But modern scholars have many additional reasons for doubting the authenticity of the Pastorals. For one, they curiously reference aspects of church structure and hierarchical governance that, although favored by the orthodox, did not exist during Paul\u2019s lifetime. The structure of church governance discussed in the Pastorals (a top-down hierarchy) is in many ways inconsistent and irreconcilable with the organizational structure of Paul\u2019s churches described in his authentic writings (which took a more democratic, bottom-up presbyterian approach).</p>\n<p><br></p>\n<p>Additionally, the vocabulary and tone of the Pastorals is curious. They use a number of words not found elsewhere in Paul\u2019s authentic writings, and specifically contradict the teachings of the known authentic writings on many points. Not surprisingly, these points of contradiction typically advance an orthodox understanding of Christianity, with the Pastorals apparently serving to \u201cclarify\u201d those parts of Paul\u2019s authentic writings that lent themselves to a Gnostic, \"heretical\" interpretation.&nbsp;</p>\n<p><br></p>\n<p>For these and other reasons, critical scholars are in near unanimous agreement that the Pastorals are second century forgeries, and rather poor ones at that.&nbsp;</p>\n<p><br></p>\n<p><br></p>\n<h2>Circumstantial Evidence of Forgery</h2>\n<p><br></p>\n<p>Although the most \u201cfaithful\u201d of Literalist attempt to dispute the direct evidence of forgery noted above--rationalizing, for example, that the unusual vocabulary of the Pastorals might be attributable to the fact that Paul may have dictated his various letters at different times to different scribes who sometimes paraphrased him (while nonetheless perfectly preserving his \"divinely inspired\" message, we are assured)--<strong>there can be no dispute on the following point: To advance their cause, certain highly educated proto-orthodox forgers authored letters in the names of the Apostles or their followers, letters that their descendants eventually excluded from the Bible for one reason or another. </strong>For example, as mentioned previously, some orthodox sympathizer forged a letter from Titus, now called \u201cPseudo-Titus\u201d (meaning \u201cfalse Titus\u201d), that is not found in our New Testament. Extra-biblical documents forged in the name of the Apostle Paul include 3 Corinthians (created in the second century largely in order to undermine the docetic \u201cheresy\u201d, it was eventually accepted as canonical only by the Armenian church and certain Syrian churches), several letters from Paul to the Roman philosopher Seneca (designed to cast Paul as a great philosopher), and at least one to the church at Laodicea. Yet other known Pauline forgeries are lost to history\u2014we know them only because they are referenced in ancient writings that have been preserved.&nbsp;</p>\n<p><br></p>\n<h3>Faithful readers should not be surprised that all these letters were being forged in Paul\u2019s name. After all, 2 Thessalonians (2:2) records that Paul was concerned that people were forging letters in his name even in his own time. However:</h3>\n<p><br></p>\n<blockquote>In an interesting twist, scholars today are not altogether confident that 2 Thessalonians itself was written by Paul. And so we have a neat irony: either 2 Thessalonians was written by Paul and someone else was producing forgeries in Paul\u2019s name, or 2 Thessalonians itself is a forgery that condemns the production of forgeries in Paul\u2019s name. Either way, someone was forging books in Paul\u2019s name. (Lost Christianities at 10)</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>Although these undisputed forgeries weren\u2019t included in our New Testaments, to the relief of many Literalists, their mere existence casts additional doubt on many of the books that did. These extra-biblical forgeries prove indisputably that some early, highly-educated proto-orthodox sympathizers--members of the very group whose spiritual descendants ultimately organized and canonized the New Testament as Holy Writ (as we shall see)--were ready, willing, and able to employ deceit to advance their cause and to undermine the authority of their Christian opponents, going even so far as to forge letters in the name of key Apostles. Even the Catholic Encyclopedia admits as much: \"Both Catholics and Gnostics were concerned in writing these fictions. The former had no motive other than that of pious fraud.\" Gnostic forgeries were then presumably \"impious frauds.\"&nbsp;</h3>\n<p><br></p>\n<h3>Combine this known and admitted propensity for forgery with the doctrine-based litmus test later adopted by their descendants for purposes determining the authenticity of ancient Christian documents, and it would be a divinely inspired miracle indeed if some forgeries didn\u2019t make it into our New Testaments.&nbsp;</h3>\n<p><br></p>\n<p><strong>So, even if we ignore the all-but-conclusive direct evidence of forgery within our New Testament, we have compelling circumstantial evidence as well: We know with certainty that the Literalist Church had the means to commit forgery, as evidenced by, among other things, their extant forgeries that did not make it into the New Testament. We also know that the Literalists had the motive to forge documents and include them in the canon (e.g., by forging documents in Apostles\u2019 names and designating those documents as the infallible Word of God, Literalists would gain an advantage in the battles for the heart and soul of early Christianity). Finally, Literalists had the opportunity to include forged documents in the Bible: A century or two after these documents were forged, the spiritual descendants of these Literalist forgers attempted to \"close the cannon\" and adpoted a doctrine-based litmus test of authenticity that all but assured some forged documents would be canonized.&nbsp;</strong></p>\n<p><br></p>\n<p>In light of this evidence, it is only the most \u201cfaithful\u201d of Christians who deny that parts of the New Testament are obvious forgeries. Sadly, such \u201cfaithfulness\u201d borders on irrationality: It is not merely \u201cevidence of things unseen\u201d (as Paul defined faith), but the irrational rejection of things seen plainly. It is not merely an acceptance of the unprovable, but acceptance in spite of overwhelming evidence to the contrary. Why should anyone have such faith? More importantly, why would a benevolent, loving God have made such irrational faith a precondition of salvation? I can think of no reason at all, but I can, and have, identified many reasons why less than benevolent, power-driven humans did so.&nbsp;</p>\n<p><br></p>\n<p><br></p>\n<h2>Bibles, Bibles Everywhere</h2>\n<p><br></p>\n<p>Even if we ignore the known forgeries in the New Testament, there are many other problems with Literalist claims of the Bible's infallibility. One is that, as previously alluded, there is simply no such thing as the Bible. <strong>Over centuries what we now call the Bible has undergone numerous changes, and \"the\" church has never enjoyed a definitive version. </strong>For example, the identity of the books comprising the Old Testament has changed over the years, the Apocrypha was dropped from the Protestant Bible altogether after the Council of Trent (1545-1563) and, as we have seen, the books of the New Testament weren\u2019t fixed until the late fourth century or early fifth century, and even then there still wasn\u2019t complete unanimity in Christendom. <strong>The Catholic Encyclopedia admits, \"The idea of a complete and clear-cut canon of the New Testament existing from the beginning...has no foundation in history.\"&nbsp;</strong></p>\n<p><br></p>\n<p>Another problem with claims of biblical infallibility is that, even today (and ignoring disputes over which books are canonical) we have numerous versions of \u201cthe\u201d Bible. <strong>Just since the King James Version was first published in the early 1600\u2019s, English speaking peoples have seen more than three hundred English translations of the Bible alone! </strong>A trip to the local bookstore will acquaint the reader with some of these, and a somewhat more comprehensive listing can be found here.</p>\n<p><br></p>\n<h3>So, why the need for so many Bibles?</h3>\n<h3><br></h3>\n<h3>Well, different versions exist for two primary reasons: (1) scholars disagree about which of the ancient manuscripts should be translated into our modern Bibles, and (2) translators disagree as to how to properly translate a given manuscript into a language understandable by modern audiences. Let\u2019s discuss each of these disagreements, beginning with the last one first.</h3>\n<p><br></p>\n<p><br></p>\n<h2>Difficult Translations</h2>\n<p><br></p>\n<p>Jesus and his immediate followers, like most Jews of Palestine for centuries before them, spoke Aramaic, a language that is all but dead today. However, the oldest complete New Testament manuscripts still in existence are all written in an ancient form of Greek, called \u201cKoine\u201d, and all of these oldest manuscripts are \u201cuncials\u201d, meaning that they are written in only capital Greek letters with no spaces between words, no line breaks, and almost no punctuation marks\u2014i.e., no periods, no commas, no page breaks, and no exclamation points.&nbsp;</p>\n<p><br></p>\n<p><strong>These facts are important for several reasons. First, they demonstrate that, with only a few exceptions, even the oldest existing copies of the New Testament capture the words of Jesus and the Apostles only in translated form. </strong>We do not know the actual words that were originally spoken by Jesus and his Apostles in Aramaic, rather we have only a Greek hearsay translation. And, unfortunately, something is always lost in translation: As Rabbi Judah eloquently stated, \u201cHe who translates a biblical verse literally is a liar, but he who elaborates on it is a blasphemer.\u201d&nbsp;</p>\n<p><br></p>\n<p>The translator\u2019s job is to express in language understandable to his audience the meaning of words originally spoken or written by someone else using a different language. Given linguistic differences in grammar, syntax, punctuation and figures of speech, this is no easy task under the best of circumstances\u2014but, Bible translators face additional complications. NAMELYTHEYARECHARGEDWITHACCURATELYTRANSLATINGANCIENTMANUSCRIPTSTHATAREWRITTENINALLCAPSDEVOIDOFPUNTUATIONORSPACESANDTHATWEREWRITTENTHOUSANDSOFYEARSAGOINLANGUAGEORDIALECTSTHATHAVEBEENDEADFORCENTURIES.</p>\n<p><br></p>\n<p>If that last \"all caps\" sentence didn\u2019t make any sense, it is only because I wrote it in uncial form in hopes of giving the reader some appreciation for the difficult task of translating ancient uncials. Here\u2019s what I actually said: \u201cNamely they are charged with accurately translating ancient manuscripts that were written in all caps, which are virtually devoid of punctuation marks or spaces, and that were written thousands of years ago in languages or dialects that have been dead for centuries.\" If the reader had difficulty making sense of the \"all caps\" phrase above (even though it was written in modernEnglish), imagine how much greater the difficulty of interpreting a dead, foreign language written in such a manner.&nbsp;</p>\n<p><br></p>\n<p>The first step in any translation of an ancient document is to develop an understanding of the original author\u2019s intent. As anyone who has ever attempted to interpret a document knows, this is more art than science, especially when the original author has been dead for two millennia, came from a foreign culture, and spoke a dead language. Given the difficultly that each present day generation has in understanding the next one (and vice versa), imagine how much more difficult it must be for a modern translator to truly see the world through the eyes of a first century writer from another culture.&nbsp;</p>\n<p><br></p>\n<h3>In short, despite their best efforts, a translator\u2019s presuppositions (paradigms) affect his or her understanding of the original writer\u2019s intent, and therefore taint his or her interpretation of the original writer\u2019s words. The Preface to the New King James Version of the Bible, which is itself \u201cthe fifth revision of a historic document translated from specific Greek texts\u201d, is to be commended for acknowledging as much explicitly:</h3>\n<p><br></p>\n<blockquote>[T]he most important differences in the English New Testaments of today are due\u2026to the way in which translators view the task of translation: How literally should the [original] text be rendered? How does the translator view the matter of biblical inspiration? Does the translator adopt a paraphrase when a literal rendering would be quite clear and more to the point?\u201d [parentheticals and emphasis added]</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>In other words, as the preface to the New King James version makes clear, the meaning of the translated Bible varies according to the particular translator\u2019s presuppositions, including whether or not the translator presupposes that the Bible is a spiritual book written by mortals, or a divinely inspired book of history. Or, said another way, the Paradigm of Historicity affects the translation! In this manner, centuries of translator bias (until very recently, almost exclusively Literalist ones) have been not-so-subtly incorporated into the substance of the most Bible versions available to us today. We will expose many of these as we proceed.&nbsp;</h3>\n<p><br></p>\n<p>Assuming a translator can overcome the first challenge of truly understanding the intent of the original writer, the second step in translation is to then render the that understanding in language comprehensible to the translator\u2019s audience. The Christian William Tyndale was the first translator to offer an English Bible (c. 1526) derived from the most ancient Greek manuscripts available at the time (rather than later Latin manuscripts that had served as the basis for most previous translations). For this, he was eventually burned at the stake for heresy. Even so, many of his words survive to this day. It was Tyndale who, via artful translation, created from whole cloth many of the most memorable words and phrases found in our modern Bibles:</p>\n<p><br></p>\n<blockquote>It was Tyndale who established \u2026that the Bible should not be in the language of scholars but in the spoken language of the people. [H]e coined such words as \u201cPassover,\u201d \u201cscapegoat,\u201d \u201cmercy seat,\u201d and \u201clong-suffering.\u201d</blockquote>\n<blockquote><br></blockquote>\n<blockquote>Many expressions of Tyndale are also unforgettable, cherished by countless readers of the English Bible: \u201cthe kingdom of heaven is at hand\u201d (Matt. 3:2); \u201cthe pinnacle of the temple\u201d (Matt. 4:5); \u201cthe salt of the earth\u201d (Matt. 5:13); \u201cdaily bread\u201d (Matt. 6:11); \u201cConsider the lilies of the field, how they grow\u201d (Matt. 6:28); \u201cmeek and lowly in heart\u201d (Matt 11:29); \u201cshepherds abiding in the field\u201d (Luke 2:8); \u201ceat, drink, and be merry\u201d (Luke 12:19); \u201cfatted calf\u201d (Luke 15:23); \u201conly begotten son\u201d (John 1:14, 18); \u201cin my Father\u2019s house are many mansions\u201d (John 14:2); \u201cin whom we live and move and have our being\u201d (Acts 17:28); \u201cGod forbid\u201d (Rom 3:4); \u201csounding brass\u201d and \u201ctinkling cymbal\u201d (1 Cor. 13:1); \u201cin the twinkling of an eye\u201d (1 Cor. 15:52); \u201csinging and making melody (Eph. 5:19); \u201coffice of a bishop\u201d (1 Tim. 3:1); \u201cthe pleasures of sin for a season\u201d (Heb. 11:25); \u201can advocate with the Father\u201d (1 John 2:1); and \u201cBehold, I stand at the door and knock\u201d (Rev 3:20). (How We Got the Bible at 178-179)</blockquote>\n<p><br></p>\n<p>Despite their familiarity, the above expressions do not appear in the original Greek, at least not in so many words:&nbsp;</p>\n<p><br></p>\n<blockquote>[I]t is noteworthy that these expressions could have been translated differently from the Greek text, yet because Tyndale had such an ear for the English language, these [para]phrases live on. [parentheticals added]. (How We Got the Bible at 179)</blockquote>\n<p><br></p>\n<p>In short, as previously stated, something is always lost (and sometimes added)in translation.&nbsp;</p>\n<p><br></p>\n<p><br></p>\n<h2>An Important Diversion to Discuss Misleading Translations&nbsp;</h2>\n<p><br></p>\n<p>Before moving on to discuss the second primary reason that there are so many versions of the Bible\u2014namely, disagreements over which ancient documents to translate,--its worth pausing here to explore the significance of translator bias. <strong>Until very recently, virtually all Bible translations were overseen by committed Christians steeped in the Literalist, orthodox tradition. Even most of the so-called heretics of the last thousand years were, like William Tyndale, Literalists. Consequently, the Paradigm of Historicity, and all orthodox doctrines derived therefrom, weighed heavily on their efforts, and the biases of these original translators have influenced subsequent translations ever since.&nbsp;</strong></p>\n<p><br></p>\n<p><strong>Translators who presuppose that the Bible is the \u201cinspired\u201d word of God naturally \u201cview the task of translation\u201d, if only unconsciously, as supporting this idea.</strong> <strong>Such translators assume that God\u2019s inspired Word simply can\u2019t contradict itself or contain error. Thus, centuries of translators have adopted interpretations and translations that seek to reconcile or downplay inconsistencies or discrepancies that are evident in the original tongue. For example:</strong></p>\n<p><br></p>\n<blockquote>All of the Gospels present but one view of Jesus, that he is the Son of God. Yet in presenting this view their individual descriptions of him and his sayings often employ different words. Through the years, these verbal distinctions, either intentionally or unintentionally, tended to be \u201charmonized\u201d by the scribes. Thus it is a sound conclusion that in parallel accounts the text which preserves the minute verbal differences is generally the [more authentic] text. (How We Got the Bible at 93)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>The result of this translator and scribal bias for consistency is that some parts of our modern Bibles appear to modern readers to be more of a coherent whole than they actually are, while other parts appear to less of a whole than they should. The following pages will provide numerous examples of the former, but here I will note one very basic example of the latter:&nbsp;</p>\n<p><br></p>\n<p>\u201cJesus\u201d is the Greek rendering of the Hebrew name \u201cJoshua\u201d, meaning \u201csavior.\u201d It was a very common name among first century Jews. And yet it has become customary among translators to render the name of the Old Testament hero of Exodus as \u201cJoshua\u201d and that of the New Testament hero of the same name as \u201cJesus\u201d. Inconsistently translating these names adds to Jesus\u2019 uniqueness while at the same time obscuring certain similarities in the lives and actions of the two biblical heroes that may otherwise be obvious. The differing nomenclature discourages the reader from drawing analogies between the lives of the two figures, analogies that the authors of the gospels almost certainly intended.&nbsp;</p>\n<p><br></p>\n<h3>Translator bias has also served to obscure some striking similarities between the New Testament and other Gnostic scriptures. The Bible is almost always rendered in the familiar \u201cchurch speak\u201d originally adopted by Literalist translators over the centuries. However, it\u2019s important to understand that identical Greek words and ideas appearing in surviving Gnostic writings are typically rendered in unfamiliar \u201cpagan\u201d, heretical language, or simply left un-translated altogether, making these works seem more foreign, bizarre, and incredible than they should. To illustrate the point, let\u2019s consider just how strange, dare I say Gnostic, parts of the New Testament sound if we translate them from the Greek using the same principles often employed when translating Gnostic manuscripts.</h3>\n<p><br></p>\n<p>The Greek word for wisdom is \u201cSophia\u201d, which is also the name of the Greek goddess that personified the same. In Gnostic mythology, Sophia was the companion and lover of the Logos (often translated as \u201cword\u2019, which we will discuss more below), which all Christians equate with Christ (thanks to the opening chapter of the fourth gospel). This may be one reason why translators almost always translate the Greek word \u201cSophia\u201d as simply \u201cwisdom\u201d in the New Testament, but as \u201cSophia\u201d in most Gnostic texts. But is such inconsistent treatment justified? <strong>What happens, for example, when we translate some familiar Bible passages using principals of translation traditionally applied to Gnostic texts? Let\u2019s begin with words attributed to Paul in Colossians 1:8 (highlighted words are those that have been reworded using more consistently applied principles of translation, as is done with non-canonical books from the time):</strong></p>\n<p><br></p>\n<blockquote>We proclaim [Christ]\u2026teaching every man in the ways of Sophia that each may become an initiated member of Christ. (Colossians 1:28)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Translated in this manner, and remembering that in Gnostic theology, Sophia was the lover of the Logos (Christ), Paul sounds\u2026well\u2026radical. In essence, Paul teaches that we become one with Christ (that is, \u201cmembers\u201d of Christ) by learning the ways (i.e., assuming the role) of his mythical lover, Sophia. Though strange, this lesson is actually consistent with orthodox doctrine that the church is the \u201cbride of Christ\u201d, and it is also indistinguishable from the Gnostic teaching on this subject.</p>\n<p><br></p>\n<p>Continuing:&nbsp;</p>\n<p><br></p>\n<blockquote>My purpose is that they may\u2026become one in love, so that they may\u2026experience the Gnosis of God\u2019s mystery, namely, Christ, in whom are hidden all the treasures of Sophia and Gnosis. [emphasis added] (Colossians 2:2-3)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Here Paul teaches that mystical \u201coneness\u201d is achieved through Gnosis (or experiential knowledge) of God\u2019s \u201cmystery\u201d, which he defines as Christ. Christ is not discussed as an historical personage, but as a higher consciousness that, once identified with to the exclusion of our ego (i.e., once we become one with it), leads to spiritual insight\u2014hidden wisdom (Sophia) and knowledge (gnosis). This is pure Christian Gnosticism, plain and simple. Only the common misleading translation keeps us from seeing it as such.&nbsp;</p>\n<p><br></p>\n<p>Proceeding further:</p>\n<p><br></p>\n<blockquote>We speak of Sophia among the initiated; not the Sophia of this aeon, nor of the rulers of this aeon, who are passing away; but we speak of God\u2019s Sophia in a mystery. (1 Corinthians 2:6)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>And:</p>\n<p><br></p>\n<blockquote>It is central to our faith that in the end we will all attain Oneness through Gnosis of God\u2019s Son, becoming fully initiated human beings, equal to nothing less than the pleroma of Christ. (Ephesians 4:13)</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>\u201cGod\u2019s Sophia\u201d, \u201cinitiated\u201d, \u201cmystery\u201d, \u201caeons\u201d, \u201coneness\u201d and \u201cpleroma\u201d, all of these are quintessentially Gnostic terms, terms one would find repeated over and over in most any Christian Gnostic texts such as those found at Nag Hammadi. And yet, although they are expressed in the original Greek manuscripts of our Bibles, these terms are foreign to most Christians simply because bias, primarily the doctrine of divine inspiration and the Paradigm of Historicity, keeps translators from expressing Paul in this way. Rather than use the word \u201cinitiated\u201d, which is a more proper and accurate translation of the original Greek, and one they surely would have used if translating the same word in a Gnostic text, translators substitute the word \u201cmature.\u201d Rather than use the Greek word \u201cGnosis\u201d, which describes subjective, experiential knowledge (like knowing how to ride a bike) as opposed to objective, intellectual knowledge (like one plus one equals two), translators just use the more antiseptic (if somewhat misleading) English word \u201cknowledge\u201d, which has the added benefit of obscuring Paul\u2019s Gnostic tendencies.</h3>\n<p><br></p>\n<p>Another example of a translation that obscures the similarities between the Gnostic texts and the New Testament is the rendering of logos in many Gnostic texts as logos, but in the New Testament as \u201cWord\u201d (such as in John 1:1) The Greek word logos, which is the root of the English word \u201clogic\u201d, has no strict English equivalent. It can be alternatively translated as \u201cword\u201d, \u201creason\u201d, or \u201cidea\u201d depending upon context, but it actually contains elements of all three, plus more. No one English word captures the true essence of the Greek logos.&nbsp;</p>\n<p><br></p>\n<p>In the centuries before and immediately after Jesus, \"logos\" was a term of art used by pagan philosophers and adepts of the Mysteries Religions, including the Christian Gnostics. They generally used it to describe the thoughts of God\u2019s Mind through which God created and sustains the universe, or said another way, the objects of God\u2019s consciousness. To put it in terms readily understandable to most present-day Literalist Christians, before God spoke the words \u201cLet there by light\u201d (Genesis 1:3), God had to first have the idea (logos) of light in mind, else his words would have had no meaning or effect. Because thought, which is made manifest in words, must precede action, Gnostics came to view God\u2019s thoughts/ideas/words as the true source and sustainer of all Creation, present with God \u201cin the beginning\u201d, for creation could not exist prior to God conceiving of it. These divine thoughts or ideas, which are separate from God and yet one with Him (in the same sense that our thoughts are separate from our minds yet have no existence outside of them) are the divine logos. It will serve our purposes sufficiently if we conceptualize the divine logos for now as God\u2019s consciousness.&nbsp;</p>\n<p><br></p>\n<p>In Gnostic mythology, which the reader will recall contains much figurative language, creation is the result of the one transcendent God becoming consciousness of Himself. Exactly how this happened is a mystery symbolized in numerous and varying myths, but Gnostics reasoned rightly that consciousness requires both a subject and an object\u2014that is, there must be a witness (the person or thing that is conscious\u2014i.e., the \u201cmind\u201d) as well as the witnessed (i.e., the person or thing of which on is conscious, or the \u201cthought\u201d). In the Gnostic allegorical myths that seek to encode this truth, Gnostics often referred to the original witness (i.e., the \u201cmind\u201d of God) as \u201cthe Father\u201d. Likewise, they referred to the thoughts of that Divine Mind, the ideas which God\u2019s Mind contemplates, as \u201cthe Son\u201d or \u201cthe Logos\u201d (Word). Thus, thoughts (the Son) were conceptualized as the \u201coffspring\u201d or \u201cfirst born\u201d or \u201cbegotten\u201d of the mind (the Father), present with God at the dawn of creation. Before God thought, nothing was, for consciousness did not exist. Thus, Father and Son are as inseparable as thought is from mind. The Athanasian Creed expresses these ideas perfectly:</p>\n<p><br></p>\n<blockquote>The Father is made of none, neither created nor begotten, The Son is of the Father alone, neither made nor created, but begotten. [N]one is afore or after the other, none is greater or less than another.</blockquote>\n<p><br></p>\n<p><br></p>\n<p>And, as Origen once noted, \u201cThe Father did not beget the Son, but ever is begetting him.\u201d</p>\n<p><br></p>\n<h3>The experience of this simple idea was almost certainly part of the fundamental Inner Mystery taught by all Gnostic Mystery Schools in the centuries before and after Jesus. Centuries before Christ the pagan Gnostic Heraclitus (c. 600 BCE) wrote, \u201cThe Father and Son are the same.\u201d According to Clement of Alexandria, the pagan Gnostic Euripides had years before \u201cdivined as in a riddle that the Father and the Son are one God.\u201d The legendary pagan sage Orpheus, who lived, if at all, thousands of years before Christ, is quoted by the Christian Clement of Alexandria as having taught:&nbsp;</h3>\n<p><br></p>\n<blockquote>Behold the Logos divine. Tread well the narrow path of life and gaze on Him, the world\u2019s great ruler, our immortal king. (Quoted in The Jesus Mysteries at 83)</blockquote>\n<p><br></p>\n<p>Clement of Alexandria himself writes:</p>\n<p><br></p>\n<blockquote>The Son is the Consciousness of God. The Father only sees the world as reflected in the Son. (Quoted in The Jesus Mysteries at 84) [parentheticals added]</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Continuing with this idea for a moment, it is important to note that Gnostics sought to explain the mystery of human consciousness by characterizing it as fragmented, dispersed pieces of the One Divine Consciousness\u2014that is, of the Son or logos, which Christians specifically equate with Christ. How portions of the One Divine Consciousness came to be dismembered and encapsulated within each of us, how we lost our ability to \u201caccess\u201d or \u201crely on\u201d it in our daily lives, and how we can regain it, are all mysteries described allegorically in many Gnostic and Christian myths. For Christians, the most important of these myths are those describing the Incarnation of Christ (God\u2019s consciousness becoming encapsulated in man), the Fall of Man (man losing his ability to rely on that consciousness and instead being ruled by his unconscious paradigms and passions, which Paul called \u201cthe flesh\u201d), and Christ\u2019s Crucifixion and Resurrection (describing the way back to union with God, or oneness with the cosmic consciousness).&nbsp;</p>\n<p><br></p>\n<p>These Gnostic teachings about the dispersion of human consciousness, and its reunion with God, may seem quite strange to Literalists, so I will again remind the reader of just a few of Paul\u2019s words on this subject:</p>\n<p><br></p>\n<blockquote>For just as the body is a unity and yet has many members, and all the members, though many , form only one body, so it is with Christ\u2026.[i.e., the logos or Son]. For by means of one shared Spirit [or consciousness] we were all baptized into one [spiritual] body\u2026.&nbsp;</blockquote>\n<p><br></p>\n<blockquote>Now you (collectively) are Christ\u2019s body [i.e., the Logos, the One Divine Consciousness], and individually members [i.e., dispersed pieces] of it. (1 Corinthians 12:11-27)</blockquote>\n<p><br></p>\n<blockquote>It is inherent in our faith that in the end we will all attain Oneness through Gnosis of God\u2019s Son, becoming fully initiated human beings, equal to nothing less than the pleroma [fullness] of Christ. [Ephesians 4:13 as rendered in Jesus and the Lost Goddess at 149))</blockquote>\n<p><br></p>\n<p><br></p>\n<p>In Ephesians 4:25, Paul writes \u201c[w]e are all parts of one body and members one of another.\u201d In Colossians 1:25-28, Paul writes that his purpose in life is to reveal to us the Mystery that was hidden in past ages--namely, that Christ (i.e., the logos) is in us! In Galations 1:15, Paul writes that \u201cGod revealed his Son in me\u201d [emphasis added]. Demonstrating that he had come to identify completely with this higher consciousness within him, and ceased identifying with his ego, Paul states, \u201c[I]t is no longer I [i.e., my ego or \"flesh\"] who live, but Christ [the logos] lives in me; and the life I now live in this body I live by faith\u2014by reliance on and complete trust in the Son of God\u2026.\u201d&nbsp;</p>\n<p><br></p>\n<p>As we have previously noted, Jesus offers the same teachings, most explicitly in the Gospel of John (17:19-26). There, Jesus prays that his followers will come to know their true nature. He prays that they will be \u201csanctified by the Truth\u201d so that they:</p>\n<p><br></p>\n<blockquote>all may be One--just as You, Father, are in Me and I in you, they also may be One in Us. [I] in them and You in Me, in order that they may become One and perfectly united....</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>And nowhere is this pre-Christian, Gnostic teaching of creation emerging from the oneness of God through the facility of the logos (which is then dispersed among all peoples) better illustrated than in the opening Chapter of the Gospel of John (v. 1-4):&nbsp;</h3>\n<p><br></p>\n<blockquote>In the beginning was the Logos [i.e., Divine Consciousness, or thoughts of God, confusingly translated as \u201cthe Word\u201d], and the Logos was with God, and the Logos was God. He was with God in the beginning. All things came into being by Him, and apart from him nothing came into being [i.e., nothing existed prior to God becoming conscious]. In him was the life and that life was the light [i.e., consciousness] of men.</blockquote>\n<p><br></p>\n<p><br></p>\n<p>I could continue with innumerable examples of how misleading translations, warped as they are by the Paradigm of Historicity and doctrine of divine inspiration, have served to obscure similarities between Gnostic and Literalist texts. But the above is hopefully sufficient evidence for now that, properly translated and freed of the Paradigm of Historicity, large parts of the New Testament support, indeed demand, a Gnostic interpretation.&nbsp;</p>\n<p><br></p>\n<p>(to be continued in Chapter 5, <a href=\"https://steemit.com/god/@sean-king/reading-the-bible-is-like-picking-out-diamonds-from-dunghills-part-2\">Part 2</a>)</p>\n<h2><br></h2>\n</html>",
+    "body_length": 50292,
+    "cashout_time": "2016-10-01T20:13:51",
+    "category": "god",
+    "children": 28,
+    "created": "2016-08-31T16:07:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"god\",\"bible\",\"christianity\",\"religion\",\"\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/Official_Presidential_portrait_of_Thomas_Jefferson_by_Rembrandt_Peale_18003f466.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/philosophy\\/@sean-king\\/redeeming-christ-an-indispensable-introduction\",\"https:\\/\\/steemit.com\\/philosophy\\/@sean-king\\/redeeming-christ-part-i-chapter-i-deconstructing-faith\",\"https:\\/\\/steemit.com\\/bible\\/@sean-king\\/redeeming-christ-part-i-chapter-2-the-perplexing-power-of-paradigms\",\"https:\\/\\/steemit.com\\/bible\\/@sean-king\\/the-bible-isn-t-mainly-history\",\"https:\\/\\/steemit.com\\/christianity\\/@sean-king\\/early-christianities-weren-t-orthodox\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Docetism\",\"https:\\/\\/steemit.com\\/god\\/@sean-king\\/reading-the-bible-is-like-picking-out-diamonds-from-dunghills-part-2\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T16:33:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 38788362396320,
+    "parent_author": "",
+    "parent_permlink": "god",
+    "pending_payout_value": "158.785 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "reading-the-bible-is-like-picking-out-diamonds-from-dunghills",
+    "post_id": 814096,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Reading the Bible is \"Like Picking Out Diamonds from Dunghills\"--Part 1",
+    "title": "Reading the Bible is \"Like Picking Out Diamonds from Dunghills\"--Part 1",
+    "total_payout_value": "0.000 HBD",
+    "url": "/god/@sean-king/reading-the-bible-is-like-picking-out-diamonds-from-dunghills"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10188876905486",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3830035846987",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3720292037",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215423119821",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4516598968",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "828540282",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65013129899",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993734736",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256433164",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731040242281",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747456946",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160950489",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392405354610",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "285682873005",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345823038",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432554801",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399788237",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1460925170254",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221213340693",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11592975842",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67555883079",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392842631094",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261495678",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3125302080",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61289877049",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154306980856",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89328435008",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152897742927",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2212025362",
+        "voter": "johnnydollar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36245526538",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282893744",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37122522843",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19174335590",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12483663020",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2461729572",
+        "voter": "ace108"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "12032742765",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26465755082",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159607688",
+        "voter": "naomi-louise"
+      },
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "250847007495",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2300",
+        "reputation": 0,
+        "rshares": "7631325795",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262882640828",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9839187353",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58103637174",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138994752",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "28138748642",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314141984",
+        "voter": "rusteller"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "1775190239",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687222192",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9157721462",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "603283562",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61110411",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97274422829",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7816453178",
+        "voter": "johnnyyash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57930015",
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10290925854",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1773143509",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23001901442",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282840398",
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "477616797",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269346417",
+        "voter": "serioustruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2238227885",
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75599342",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66091870",
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51578525",
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2169778252",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828978",
+        "voter": "mocat15"
+      }
+    ],
+    "author": "serioustruth",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><em><strong>Yesterday I added a really crappy post on Steemit</strong></em>. Although it was a bit of a <em><strong>negative post</strong></em>, I received some <em><strong>positive feedback</strong></em>. I realised that I have been looking at Steemit from the wrong perspective.&nbsp;</p>\n<p><img src=\"https://s20.postimg.org/m18fyrqb1/download_1.png\" width=\"225\" height=\"225\"/></p>\n<p>You see... <em><strong>I am a teacher</strong></em>, and to look at something from a teacher's perspective, is totally different than looking at something from a parent's point of view, or even a fellow steemit writer. &nbsp;I would like to thank @RHW for listening, and I am very glad to be part of this community. Many projects are being launched, &nbsp;and the whales are putting in a lot of effort to notice the new aspiring writers.</p>\n<p>I have changed my view on things now, &nbsp;I make a point to read as many posts as possible. I comment if needed, and I upvote a post if I find it interesting. We are not in a race here. We are after all in the business of finding new undiscovered talent and to be heard. Now, also said, that what interests me, <em><strong>might not be interesting to you at all.&nbsp;</strong></em></p>\n<p>What I have noticed is that there are quite a few nasty people on steemit. I am certainly not going to call them by their names, but I really feel sorry for these people, as they would not give someone the time of day.</p>\n<p><em>I felt very offended by some of the comments made about my post, but realised that negative feedback can be changed into a positive view.&nbsp;</em></p>\n<p><strong>I do not promote or upvote a post just for the sake of upvoting.&nbsp;</strong></p>\n<p><strong>I &nbsp;do my fair share by reading as many posts as possible about my interests.&nbsp;</strong>Now, also said, that what interests me, <em><strong>might not be interesting to you at all.&nbsp;</strong></em></p>\n<p><em><strong>But people are just people.</strong></em>............people&nbsp;should try and upvote the good posts and promote these writers, so we can have new and exciting reading material here on Steemit.&nbsp;</p>\n<p>If you do not succeed today, tomorrow is a new day. Try harder. Do not let negative comments make you lose your way. Don't give up. <em><strong>Stay positive.&nbsp;</strong></em></p>\n<p><em><strong>Because if you are noticed by the right person, then your posts will mean something. Then you will have a voice.</strong></em></p>\n<p>I am totally up for a good debate and if you don't agree with me on posts, then&nbsp;feel free to contact me and we can discuss your opinion. Everyone is entitled to their own opinion. If you like my posts please follow me on<a href=\"https://steemit.com/@serioustruth\">@serioustruth</a><br>\nTogether we can change the world. Feel free to share or promote my posts. I want to make a difference to the way people think.</p>\n<p>&nbsp;\u2764<strong>Keep on steeming!</strong></p>\n</html>",
+    "body_length": 2969,
+    "cashout_time": "2016-10-03T05:41:03",
+    "category": "success",
+    "children": 12,
+    "created": "2016-09-01T23:53:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"success\",\"steemit\",\"life\"],\"image\":[\"https:\\/\\/s20.postimg.org\\/m18fyrqb1\\/download_1.png\"],\"links\":[\"https:\\/\\/steemit.com\\/@serioustruth\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T00:01:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 19268044087375,
+    "parent_author": "",
+    "parent_permlink": "success",
+    "pending_payout_value": "46.997 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "why-we-can-all-succeed-in-life",
+    "post_id": 829471,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Why we can all succeed in life",
+    "title": "Why we can all succeed in life",
+    "total_payout_value": "0.000 HBD",
+    "url": "/success/@serioustruth/why-we-can-all-succeed-in-life"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4264801627311",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6355020214373",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210935138158",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513752148837",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10777629083",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392405354610",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23476395882",
+        "voter": "yefet"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "404897958",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "4615942497",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36761459891",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3148612688",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "976605325",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432543138",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469385562681",
+        "voter": "cyber"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "316201719",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12858141661",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52123584116",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7907158390",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320412905",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6444619088",
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3472486489",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154306980856",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36245526538",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3748211699",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8368454072",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282893744",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19174335590",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1501784652",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28355737154",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10210797077",
+        "voter": "exyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171701958057",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435478790",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15699815948",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14043989668",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2338655401",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2991165818",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26465755082",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7849492736",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165769057",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138994752",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97274422829",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764960163",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57930015",
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11628203002",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586319380",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172932392",
+        "voter": "ezrabcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69498750",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7034398796",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3640096656",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17334568050",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615797359",
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13680199584",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197982642374",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9213852022",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51454384",
+        "voter": "wanglai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      }
+    ],
+    "author": "pinkisland",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"http://i.onionstatic.com/onion/2738/1/16x9/565.jpg\" width=\"565\" height=\"318\"/></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Behind the desk, every student sits and observes every teacher and how they address the lesson. They look at one figure inside the class within their vision and that make the view limited in their eyes. But let switch the roles and try to see how the teacher look at their student in that big vision. Looking to a speaker is different than observing the reader. Chapter one in the book \u201cTeachers, Schools, and Society\u201d by David Miller Sadker and Karen R. Zittleman, discuss how teacher scenery is different from that of student and it guides the reader to find the positive and negative points for a teacher to encounter in his career; it will help reader to discover whether they should complete aiming for to become a teacher.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The goal for every reader is to find and choose the best career that will find happiness and bring the joy while practicing it. That\u2019s what makes the chapter more comfortable to read in; it didn\u2019t force the material on the reader but instead, it gives suggestions and real life examples about how being a teacher would look like. \u201cYou be the Judge\u201d is whole examples for a student to know how being a teacher could have a negative or positive impact on their lives, and it\u2019s a good way to them clarify their position whether to continue with being a teacher as a career meant to them or not convinced by. Also, there was a survey in the chapter that shows how many teachers get paid yearly in different states; it\u2019s a good side to the students to know that being a teacher could provide a decent life for them as a job.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Teachers need to have a bunch of specification in orders to be called a successor. Preparing a teacher to this career and guiding them to be effective to his class is an important step that could impact the whole future of both teachers and learner. That idea of preparation considers as an informative process and not implicit, and it\u2019s a good topic that's been clarified in that chapter. Moreover, another idea that been addressed at the end of the chapter is how the student could improve his skills and concepts of the learning process before graduation, and that been shown with listing several steps that the student should put into consideration in order to become successful and creative. It does not only help the learner himself in the long run but also give a chance to make his future classes more creative and cooperative at the time. For instance, some of the steps say that the teacher should study their courses that the handle carefully and planned for them ahead to make sure it\u2019s clear to him and would be to students at the time. Also, they should have a good impression during their learning process and to keep on building it on. That\u2019s how a student could have some ideas to consider and to begin with if they are struggling with what to start with or improve while they are still learning about their career.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Students should figure out if the teaching career is the one that meant to them and they will enjoy practicing end for most of their life. That chapter did a good job in discussing some topic that will help the student take their decision regarding this career and if they willing to take that challenge and start filling and building their knowledge. It does not only help the student to become successful teachers but also prepare them to make a more bright future for the generation they will be willing to teach, and to be creative with their work and thoughts. So, after knowing and considering what a teacher need to handle and think of, the student will start to find their own way to teach and make their job process different from other teachers they encounter before.&nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 4322,
+    "cashout_time": "2016-10-03T02:18:48",
+    "category": "writing",
+    "children": 7,
+    "created": "2016-09-02T01:14:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"writing\",\"analysis\",\"steemit\",\"life\"],\"image\":[\"http:\\/\\/i.onionstatic.com\\/onion\\/2738\\/1\\/16x9\\/565.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T01:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17239525786043,
+    "parent_author": "",
+    "parent_permlink": "writing",
+    "pending_payout_value": "37.412 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "teaching-as-a-career-or-analysis-of-the-book-teachers-schools-and-society",
+    "post_id": 830133,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Teaching As A Career  | Analysis of the Book : \u201cTeachers, Schools, and Society\u201d",
+    "title": "Teaching As A Career  | Analysis of the Book : \u201cTeachers, Schools, and Society\u201d",
+    "total_payout_value": "0.000 HBD",
+    "url": "/writing/@pinkisland/teaching-as-a-career-or-analysis-of-the-book-teachers-schools-and-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28641756642483",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3066676253333",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487525338167",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099055663468",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308752978889",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253681914004",
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2477287329",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14775784097",
+        "voter": "valtr"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "1796764686",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11342117893",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50302545642",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177514135302",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1461417595362",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687321345894",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "57002255623",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11956530261",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14341272017",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1564158061",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-96239619605",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216367037",
+        "voter": "keyser"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "306787589",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2696646453",
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3354581940",
+        "voter": "bones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "14082581305",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10010962986",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102801288",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "433341900",
+        "voter": "berrysmok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6080328266",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3984549669",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6629256416",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "880020741",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1799932641",
+        "voter": "gaitan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134257660",
+        "voter": "yulia98"
+      },
+      {
+        "percent": "4400",
+        "reputation": 0,
+        "rshares": "3176805655",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7813639088",
+        "voter": "cmp2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588526896696",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454046245625",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222660119",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14557324469",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148150446",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62205973",
+        "voter": "rinaa"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "21000271255",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9679881459",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "7140129001",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118527119002",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "728479455",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8041154071",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50403837",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59995797",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41404629211",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2731168114",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9751538745",
+        "voter": "benadapt"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-53957255",
+        "voter": "predko777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52381149",
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68608664",
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175172738",
+        "voter": "jucbitcoin"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "1631179533",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172120554",
+        "voter": "darkminded153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104999885",
+        "voter": "bosjaya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166960400",
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116692269",
+        "voter": "dresden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158081936",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157148891",
+        "voter": "hamed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158983971",
+        "voter": "wade1970"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-159024498",
+        "voter": "messi10"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-159020694",
+        "voter": "sunny1"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158267372",
+        "voter": "me86ljj3wy"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158262346",
+        "voter": "csg0q82iul"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158234006",
+        "voter": "ljkvnzgpvq"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158231877",
+        "voter": "wstqotyddi"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158230192",
+        "voter": "ufvosobdfb"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158228488",
+        "voter": "glxmgiqrgj"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158219074",
+        "voter": "rsgmslegyx"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158211582",
+        "voter": "nkroyzrjgf"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158209558",
+        "voter": "imoqhlzemr"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158207874",
+        "voter": "qiqyyqvzhj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155094591",
+        "voter": "blend"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158192224",
+        "voter": "alexurex"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158186686",
+        "voter": "ashbuille"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158183923",
+        "voter": "auberenne"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158176291",
+        "voter": "belialis"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158172542",
+        "voter": "boyaconehou"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158169693",
+        "voter": "brandmar"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158165782",
+        "voter": "breageoa"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158156198",
+        "voter": "canixfuny"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158153164",
+        "voter": "cassachex"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158150021",
+        "voter": "ceticalwo"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158147243",
+        "voter": "commenth"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158144137",
+        "voter": "cootekel"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158140507",
+        "voter": "dinexavi"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158137183",
+        "voter": "footidie"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158134585",
+        "voter": "gwenood"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158131515",
+        "voter": "headlinez"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158128326",
+        "voter": "insellias"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158125936",
+        "voter": "janetekitan"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158122441",
+        "voter": "kluglainno"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-158120034",
+        "voter": "lullishoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474962663",
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157452140",
+        "voter": "kravmaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156731952",
+        "voter": "scarspro"
+      }
+    ],
+    "author": "benadapt",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<strong><em>Shoutout to <a href=\"https://steemit.com/@jacor\">@jacor</a>, for featuring my post <a href=\"https://steemit.com/life/@jacor/rent-a-fire-tower-and-camp-in-the-sky-featuring-new-author-benadapt\">here</a>.</em></strong>\n\n<strike><strong>Following on from this, I will now be featuring other authors to help promote a diversity of content and new authors. All STEEM Dollars for these posts go to the featured author.</strong></strike>\n\n<strike><strong>If you are looking to be featured as an author, please contact me via email - ben.adaptnetwork@gmail.com</strong></strike>\n\n<strong>Edit: From the comments, it seems that this type of author promotion is not the way to go. A 're-steemit' button has been suggested and I think this is a great idea.</strong>\n\n<hr>\n\n<center><img src=\"http://i.imgur.com/6z5In5y.jpg\"/></center>\n\nIf you've played the indie-hit video game <a href=\"http://www.firewatchgame.com/\">FireWatch</a>, by Campo Santo, then chances are that you fell in love with the idea of staying in a fire tower, just as I have.\n\nThe American novelist and poet, Jack Kerouac, famously spent the summer of 1956 manning a fire tower on Washington\u2019s Desolation Peak, in the northern Cascades. Even though he was alone with pencil and paper by design, he didn\u2019t get much writing done. I don\u2019t blame him, the views from the tower are incredible and there\u2019s plenty to fill an adventurer\u2019s time for 63 days.\n\nSo, if the idea of a few days in the sky in a cool-looking fire tower is appealing, you\u2019ll be pleased to know that you can actually rent one of these bad boys.\n\nSince Jack Kerouac\u2019s stay in the 50s, new technologies have made fire lookouts mostly obsolete, some were even torn down. Others were left to rust and splinter, becoming squatter\u2019s dens and canvases for high-altitude graffiti artists. But dozens around the US have survived and are available for rent, evolving into modest sources of revenue for the U.S. Forest Service\u2019s depleted accounts. The Forest Fire Lookout Association maintains a list of available towers; many are available for as little as $20 a night.\n\n<strong>Lets take a look at a few below:</strong>\n\n<h2>1. Black Mountain Lookout, California</h2>\n\n<center><img src=\"http://i.imgur.com/tbHIiBQ.jpg\"/></center>\n\nBlack Mountain Lookout is located on the eastern edge of the Beckwourth Ranger District, 10 miles from Highway 395, near Milford, California.\n\nThe lookout was constructed in 1934 and is a great example of Civilian Conservation Corps (CCC) architecture. The C-3-type lookout is situated on a single story 10 foot tower and is extremely well-preserved.\n\nThe one-room lookout cabin is set on a tower, rising 10 feet above the ground. It is furnished with two single beds with mattresses, but can accommodate up to four people. There is also space for tent camping adjacent to the lookout, for up to four visitors.\n\n<strong>A closer look in pictures:</strong>\n\n<center><img src=\"http://i.imgur.com/NX0S10Y.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/HgS38WU.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/ULzb0dV.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/ljj8y7X.jpg\"/></center>\n\n<h2>2. Hirz Mountain Lookout, California</h2>\n\n<center><img src=\"http://i.imgur.com/6z5In5y.jpg\"/></center>\n\nThis fire tower sits atop Hirz Mountain, California at an elevation of 3,540 feet, offering 360-degree views of Mt. Shasta\u2019s snow-laced peak to the north.\n\nThe McCloud River Wintu tribe held Hirz Mountain in reverence and had a name for it in their own language. But it was a miner, Henry Hirz, who gave the mountain its modern name.\n\nWhen the lookout was built, it was originally a structure that sat on the ground. The mountain was a strategic location for detecting fires because it had a direct view into the headwaters of the McCloud River and most of its tributaries. In 1937, the Forest Service and the Civilian Conservation Corps rebuilt the Hirz Mountain Lookout cabin and included a garage and outhouse. It was one of the last CCC-era lookouts to be built. In 1949, a steel tower was added, constructed of a steel K-brace tower that stands 20 feet above ground level.\n\n<strong>A quick look inside the tower:</strong>\n\n<center><img src=\"http://i.imgur.com/uZq8dZ5.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/ZCHllVy.jpg\"/></center>\n\n<h2>3. Hornet Lookout, Montana</h2>\n\n<center><img src=\"http://i.imgur.com/bD8F1wJ.jpg\"/></center>\n\nThe Hornet Lookout is as old school as it gets and features a two-story construction. The ground level provides a living space for two guests and the second story is a small loft used solely for full views of the region. The lookout\u2019s rustic accommodations include a propane cook stove, propane lantern and a small wood stove for heat.\n\nThe lookout provides astounding 360-degree views of the surrounding terrain, including Glacier National Park and Kintla Lake on clear days. Apparently, on some nights, the Northern Lights may be seen from the lookout.\n\n<strong>A 'slightly' more modern look:</strong>\n\n<center><img src=\"http://i.imgur.com/fbAMzHn.jpg\"/></center>\n\n<h2>4. Fall Mountain Lookout Cabin, Oregon</h2>\n\n<center><img src=\"http://i.imgur.com/EyIpkj8.jpg\"/></center>\n\nFall Mountain Lookout Tower is situated about 20 miles from John Day, in central Oregon. It provides 360-degree views of the surrounding Strawberry Mountain Wildness, as well as the towns of Seneca and Mt. Vernon.\n\nThe tower was built in 1933 and sits at an elevation of 5,949 feet. Before satellite surveillance systems, lookout personnel monitored the forest from this 18-foot perch for signs of smoke, alerting fire guards when necessary. Today guests can watch the sun rise and set, spot wildlife from the catwalk and witness dramatic thunderstorms that traverse the territory during summer months.\n\nThe one-room, 14-by-14 cabin sits atop an 18-foot tower and sleeps two. The cabin is furnished with a futon bed and a table and chairs. It has electricity and in the kitchen area, an electric stove and refrigerator.\n\n<strong>Here's a few more snaps:</strong>\n\n<center><img src=\"http://i.imgur.com/fVoStKq.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/sUrDl58.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/3CrgXdi.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/LejQWOZ.jpg\"/></center>\n\n<h2>5. Indian Ridge Lookout, Oregon</h2>\n\n<center><img src=\"http://i.imgur.com/861cU5N.jpg\"/></center>\n\nThe Indian Ridge Lookout sits at an elevation of 5,405 feet in the Willamette National Forest. Indian Ridge was named for the old Indian hunting trail that runs along the summit.\n\nBuilt in 1958, the lookout was used for firefighting by Forest Service personnel until 1973 and is still staffed occasionally during emergencies.\n\n<strong>A closer look inside the tower:</strong>\n\n<center><img src=\"http://i.imgur.com/vBd3iLs.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/DKt5G2z.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/FJePMYG.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/ULzb0dV.jpg\"/></center>\n\n<h2>6. Little Guard Lookout, Idaho</h2>\n\n<center><img src=\"http://i.imgur.com/ifhnbPK.jpg\"/></center>\n\nThe newest tower on this list, the Little Guard Lookout is located about 9 miles north of Shoshone Camp, was one of the last remaining fire lookouts used in the Coeur d\u2019Alene River area and has only just recently become inactive.\n\nThe structure standing today on Little Guard Peak is the third in a series of lookout buildings that originated back to 1919. In October 1990, Little Guard Lookout was accepted for listing in the National Historic Lookout Register and the first for Idaho.\n\nThe fully furnished two-story fire lookout has dimensions of 14 x 14 feet, an external cat walk, and a gabled roof. It sleeps four guests, but space is tight. The kitchen is on the ground floor and is equipped with a small propane refrigerator, propane cook stove, table, chairs and basic cooking utensils.\n\n<strong>A few more photos:</strong>\n\n<center><img src=\"http://i.imgur.com/NXtu1ZE.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/pPy4Dxj.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/wuBRx3w.jpg\"/></center>\n\n<h2>7. Spruce Mountain Fire Lookout Tower</h2>\n\n<center><img src=\"http://i.imgur.com/dkazLmP.jpg\"/></center>\n\nPerched atop a forested mountain, Spruce Mountain Fire Lookout Tower offers panoramic views that include Medicine Bow Peak, Rob Roy Reservoir, Jelm Mountain and the southern end of the Snowy Range. After being occupied as a fire lookout, the 55-foot tall structure was renovated and opened to the public for overnight rental in 1977.\n\nThe lookout cabin is furnished with two single beds with mattresses and can accommodate up to four guests. Inside amenities include a table with chairs, cookware, dishes, utensils, cleaning supplies, a propane heater, propane cook stove and oven, propane refrigerator and propane lights.\n\n<em>All photos: courtesy <a href=\"http://www.recreation.gov/\">Recreation.gov</a></em>\n\n<strong>For more information on renting one of these towers visit <a href=\"http://www.firelookout.org/lookout-rentals.html\">firelookout.org</a>. But first, let me know which one is your favourite?</strong>\n\n<hr>\n\n<strong><em>Please follow me on my blog <a href=\"https://steemit.com/@benadapt\">@benadapt</a> if you enjoy my topics and content. I will also follow back so that we can build a community together.</em></strong>\n\n<strike><strong><a href=\"https://steemit.com/@benadapt\">@benadapt</a> features authors to promote a diversity of content and new authors. All STEEM Dollars for these posts go to the featured author.</strong></strike>\n\n<strike><strong>If you are looking to be featured as an author, please contact me via email - ben.adaptnetwork@gmail.com</strong></strike>\n\n<strong>Shoutout to <a href=\"https://steemit.com/@jacor\">@jacor</a>, for featuring my post <a href=\"https://steemit.com/life/@jacor/rent-a-fire-tower-and-camp-in-the-sky-featuring-new-author-benadapt\">here</a> and passing on this idea.</strong>\n\n<strong>Edit: From the comments, it seems that this type of author promotion is not the way to go. A 're-steemit' button has been suggested and I think this is a great idea.</strong>\n\n<hr>",
+    "body_length": 10188,
+    "cashout_time": "2016-10-11T22:41:57",
+    "category": "life",
+    "children": 21,
+    "created": "2016-09-10T16:28:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"photography\",\"camping\",\"outdoors\"],\"image\":[\"http:\\/\\/i.imgur.com\\/6z5In5y.jpg\",\"http:\\/\\/i.imgur.com\\/tbHIiBQ.jpg\",\"http:\\/\\/i.imgur.com\\/NX0S10Y.jpg\",\"http:\\/\\/i.imgur.com\\/HgS38WU.jpg\",\"http:\\/\\/i.imgur.com\\/ULzb0dV.jpg\",\"http:\\/\\/i.imgur.com\\/ljj8y7X.jpg\",\"http:\\/\\/i.imgur.com\\/uZq8dZ5.jpg\",\"http:\\/\\/i.imgur.com\\/ZCHllVy.jpg\",\"http:\\/\\/i.imgur.com\\/bD8F1wJ.jpg\",\"http:\\/\\/i.imgur.com\\/fbAMzHn.jpg\",\"http:\\/\\/i.imgur.com\\/EyIpkj8.jpg\",\"http:\\/\\/i.imgur.com\\/fVoStKq.jpg\",\"http:\\/\\/i.imgur.com\\/sUrDl58.jpg\",\"http:\\/\\/i.imgur.com\\/3CrgXdi.jpg\",\"http:\\/\\/i.imgur.com\\/LejQWOZ.jpg\",\"http:\\/\\/i.imgur.com\\/861cU5N.jpg\",\"http:\\/\\/i.imgur.com\\/vBd3iLs.jpg\",\"http:\\/\\/i.imgur.com\\/DKt5G2z.jpg\",\"http:\\/\\/i.imgur.com\\/FJePMYG.jpg\",\"http:\\/\\/i.imgur.com\\/ifhnbPK.jpg\",\"http:\\/\\/i.imgur.com\\/NXtu1ZE.jpg\",\"http:\\/\\/i.imgur.com\\/pPy4Dxj.jpg\",\"http:\\/\\/i.imgur.com\\/wuBRx3w.jpg\",\"http:\\/\\/i.imgur.com\\/dkazLmP.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/@jacor\",\"https:\\/\\/steemit.com\\/life\\/@jacor\\/rent-a-fire-tower-and-camp-in-the-sky-featuring-new-author-benadapt\",\"http:\\/\\/www.firewatchgame.com\\/\",\"http:\\/\\/www.recreation.gov\\/\",\"http:\\/\\/www.firelookout.org\\/lookout-rentals.html\",\"https:\\/\\/steemit.com\\/@benadapt\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T21:13:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 37590191304904,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "95.021 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "rent-a-fire-tower-and-camp-in-the-sky-featured-author-announcement",
+    "post_id": 912555,
+    "promoted": "160.000 HBD",
+    "replies": [],
+    "root_title": "Rent a Fire Tower and Camp in the Sky - Featured Author Announcement",
+    "title": "Rent a Fire Tower and Camp in the Sky - Featured Author Announcement",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@benadapt/rent-a-fire-tower-and-camp-in-the-sky-featured-author-announcement"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "20239809995861",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2483542411",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3015329123",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "547232718",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43930884813",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330754717",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171038238",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500018940",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "778548508",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230687619",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13761624031",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "1300",
+        "reputation": 0,
+        "rshares": "1397418866",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1643701455969",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1412760168",
+        "voter": "murh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2780072713",
+        "voter": "scalextrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47117681972",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31290973763",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484320925",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368035021",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212415964626",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57006230591",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177813527539",
+        "voter": "knircky"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "4336063701",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "796302428",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19767774986",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89569037",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-130370985044",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3868061659",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113490249",
+        "voter": "rossh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921642016",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7978492751",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61261066",
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1332538563",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59697439",
+        "voter": "ritadey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61434762",
+        "voter": "jers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61427046",
+        "voter": "nyoba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50027573",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111526086994",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195160565",
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3037040993",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47338695487",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7674997899",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9321802893",
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56115613811",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52754410",
+        "voter": "tekez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52732096",
+        "voter": "horizonkinetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92222492",
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330193907",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "521874035",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130634157",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136721054",
+        "voter": "insight2incite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148768653",
+        "voter": "rnrador"
+      }
+    ],
+    "author": "horizonkinetics",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"http://www.horizonkinetics.com/images/horizon_kinetics_logo_blue_Small.jpg\"/></p>\n<p>Horizon Kinetics LLC is a NY-based investment firm and author of numerous research reports with increasing experience in the cryptocurrency space. &nbsp;We have been authoring research on cryptocurrencies, and bitcoin in particular, since late-2015. &nbsp;Since our founding over 20 years ago, we have continuously received invaluable feedback on our research from our subscribers. &nbsp;We now share some of our work on cryptocurrencies with the Steem community. &nbsp;&nbsp;Here is our first piece. &nbsp;Additional information on Horizon Kinetics LLC is available at <a href=\"http://www.horizonkinetics.com\">www.horizonkinetics.com</a>. We can be reached via email at info@horizonkinetics.com.&nbsp;</p>\n<p>We look forward to your comments!&nbsp; &nbsp;\u2013Hugh Ross, COO Horizon Kinetics</p>\n<p><br></p>\n<p>When the colony of Virginia made tobacco legal tender, the first problem was that the incentive was created to increase production. The second problem was the creation of very low-grade tobacco that some people refused to accept as payment. The policy ultimately created low tobacco prices for farmers. In 1682, there were riots and the tobacco crops of various farms were destroyed.</p>\n<p>The non-uniformity of a currency (apart from paper) is a not a trivial problem. Throughout history, it has been a significant issue. In colonial Plymouth, Massachusetts, the Wampanoag Tribe\u2019s wampum was made legal tender at the rate of six white beads or three purple beads per penny. Unfortunately, supply of beads was limited. It was hard for prices to rise in the sense that the bead, as an instrumentality, was not divisible.<sup>(1)</sup></p>\n<p>Historically, therefore, the government really needed to take over responsibility for coinage. That created another problem. How does one prevent the government from abusing the privilege by basically destroying the value of the currency by issuance?</p>\n<p>Enter Bitcoin. It is very hard to counterfeit since all Bitcoin in existence are always visible in the Blockchain ledger. Supply of Bitcoin is fixed; it is hardwired in the code. This is a possible revolution in currency design. If nothing else, it is a new asset class.</p>\n<p><em><sup>(1)</sup>Barry Eichengreen, Exorbitant Privilege: The Rise and Fall of the Dollar and the Future of the International Monetary System (New York: Oxford University Press, 2011), 9-10</em></p>\n<p>---------------------</p>\n<p><em>Disclaimers:</em></p>\n<p><em>Horizon Kinetics LLC (\u201cHorizon Kinetics\u201d) is the parent holding company to several SEC-registered investment advisors including Horizon Asset Management LLC, Kinetics Asset Management LLC, and Kinetics Advisers, LLC. Horizon Kinetics authors research reports based on information available to the public. &nbsp;No representation is made with regard to the reports\u2019 accuracy or completeness and all expressions of opinion reflect judgment as of the date set forth and are subject to change. This document is neither an offer, recommendation nor solicitation to buy or sell securities. Horizon Kinetics and each of its respective employees and affiliates may have positions in securities of companies mentioned herein. &nbsp;You may visit our website at </em><a href=\"http://www.horizonkinetics.com\"><em>www.horizonkinetics.com</em></a><em> to find additional information on Horizon Kinetics. &nbsp;All views expressed in these research reports accurately reflect the research analysts\u2019 personal views about any and all of the subject matter, securities or issuers. No part of the research analysts\u2019 compensation was, is, or will be, directly or indirectly, related to the specific recommendations or views expressed by the research analysts in the research reports. Reproduction and dissemination of these reports outside the constraints of this social media space is strictly prohibited. \u00a9Horizon Kinetics LLC\u00ae 2016.</em></p>\n</html>",
+    "body_length": 3989,
+    "cashout_time": "2016-10-10T19:00:09",
+    "category": "bitcoin",
+    "children": 13,
+    "created": "2016-09-09T18:05:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"bitcoin\",\"crypto-news\",\"money\"],\"image\":[\"http:\\/\\/www.horizonkinetics.com\\/images\\/horizon_kinetics_logo_blue_Small.jpg\"],\"links\":[\"http:\\/\\/www.horizonkinetics.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T18:05:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 22622590051384,
+    "parent_author": "",
+    "parent_permlink": "bitcoin",
+    "pending_payout_value": "50.779 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "technical-problems-of-a-fixed-money-supply",
+    "post_id": 904192,
+    "promoted": "150.000 HBD",
+    "replies": [],
+    "root_title": "Technical Problems of a Fixed Money Supply",
+    "title": "Technical Problems of a Fixed Money Supply",
+    "total_payout_value": "0.000 HBD",
+    "url": "/bitcoin/@horizonkinetics/technical-problems-of-a-fixed-money-supply"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535956001874",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376210910452",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "2530030733798",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6868791504690",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726151150",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229262004927",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524044786",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "820975377",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7162998420481",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66022454227",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996536940",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256574080",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1316552393",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107564523042",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7511884959",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1813913350",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1281991226298",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424835962491",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "761501110340",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1131940785371",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29824545969",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750134298",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1196536230119",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168025207",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2745281235040",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35404297187",
+        "voter": "joshua"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "406975103750",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1424182557",
+        "voter": "jbradford"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9180689311",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346059306",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15938088337",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "753663976673",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375482272962",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "1796764686",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73847143577",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76668352353",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190169312803",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489465667",
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "50872817",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "612581945",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309142566089",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9534901206",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666331594856",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1827793190",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205903307851",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39833240245",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1027351719",
+        "voter": "coar"
+      },
+      {
+        "percent": "666",
+        "reputation": 0,
+        "rshares": "353351990",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17601176156",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405843973774",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10341217409",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57144356191",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260079987946",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75980218281",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518268974",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140526207453",
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412467399967",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22430460071",
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418622798",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2274330399691",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4190059511",
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7998622846",
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105851824009",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18555285556",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382747136304",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487099978706",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23735859481",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1130181250",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19586514634",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16087619085",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173891397847",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "145235686062",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2745357590",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "400",
+        "reputation": 0,
+        "rshares": "282225162",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6545907918",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2249535177",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6606808474",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375067125844",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6022204460",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8036262291",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7122827147",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68386703441",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5599529516",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280810708",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3576117505",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "57002255623",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33046735905",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5149116277",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5303452399",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75826571301",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5263073872",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24175712542",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2715996666",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119977364734",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5598045313",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342395061261",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5899298096",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15365648590",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631145568",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14995507254",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6317322640",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1501769437",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1353291463754",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97164483535",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43603809494",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "740422795",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18303819148",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11146913938",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176060985385",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29810248025",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10859176140",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66112176064",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13884859240",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416152871",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12348118332",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1907615672",
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "806370035",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53708107979",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417250555684",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42186828341",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5699385361",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "827785579",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2553460193",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194516421502",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32130489151",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3423042796",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9367946580",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2224818881",
+        "voter": "earnest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3576934262",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3446220471",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "14106406643",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2314291578",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27102377358",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5468461567",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7815470684",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019125915486",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24288681391",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10888263743",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102801288",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424845000",
+        "voter": "berrysmok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37652543503",
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "940261675",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639471735",
+        "voter": "curator"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "23270267458",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1480528431",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6376633931",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10123028535",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "584752369",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15817307763",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156369688",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "862061134",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090189555",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2666801113",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2238357029",
+        "voter": "dirty.hera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131625157",
+        "voter": "yulia98"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "512229631",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "10720241925",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61911147",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63085782",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "793861382304",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1928457089",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "942093795",
+        "voter": "transhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21837989409",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22352782004",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22360931482",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24149442143",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "27629185020",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "167928825704",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16350272739",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "6522124565",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6185106786",
+        "voter": "brendio"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "38527719167",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473946643269",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4176872896",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6623452381",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1577306627",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22357085584",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22355328422",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22352611343",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22349767400",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22346006171",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22344294392",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "92513391118",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263105171887",
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20622142384",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20350336517",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5369683283",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "3013299405",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56650918931",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63570195",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59738641",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10973358869",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57914427",
+        "voter": "steemo"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "6073118497",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22043736930",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57765027",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1590670250",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1127808427",
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10157142611",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74494304",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3933354492",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61296223",
+        "voter": "strangedays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84406705123",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58653788",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "398349859",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77220767",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1760257480",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29749490788",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5897804656",
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7980606923",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273211506",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58947349",
+        "voter": "wendelribeiro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55414210",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55396880",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406673",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56566121",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86327402421",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9149533951",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57439383",
+        "voter": "wholefoods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22338332510",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68437243690",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "12648203513",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "4009964661",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2214821974",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2500078806",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261579534201",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4161934026",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54999739",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153032594",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446928899",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2774307105",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103203866500",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22008008063",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961187",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41405284088",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270618086",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53966805",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53613607",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494664136",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2731168114",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53252658",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54293199",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9161548599",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92326483945",
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "992040757",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56897224",
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52560790",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52242652",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230725",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7295907898",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51922012",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2377534516",
+        "voter": "lilmisjenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341097233",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "620954332",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51994517",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99072246",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5320196521",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2437884565",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4765768150",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1835091693",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50569452",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50516543",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50514225",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67956001",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71092472",
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51484593",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8066814624",
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52176950",
+        "voter": "saiku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2856393738",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76034330",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154501261",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156889025",
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9342188316",
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155204122",
+        "voter": "budgiebee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155180811",
+        "voter": "majes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154551739",
+        "voter": "reddust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474962663",
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156136975",
+        "voter": "william007"
+      }
+    ],
+    "author": "tuck-fheman",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s18.postimg.org/aid72t4nt/too_old.png\n\n# [I'm Too Old For This](https://youtu.be/MqBNSMbEzI0)\n\nYou youngin's holding onto your new age Eckhart Tolle \"live in the now\" Aleister Crowley regurgitated belief systems and rah rah sycophant always positive philosophies (so long as the handouts are still being raked in), all while rewarding, if not exalting, people with a complete disregard for human decency amaze me and give me pause to think ...  **what in the $@#! happened to this world?!**\n<br>\n\nhttps://i.imgflip.com/1adksj.jpg\n\n# Back In My Day\n\nDuring my heyday, people were able to speak their mind, so long as they did so with respect and allowed others to voice their opinion as well. Everyone was different, and that's what made each individual interesting. Nowadays, it seems most people just want to be like everyone else and fit in. Don't rock the boat, else you won't get your reward! It's like being in a Kindergarten class full of 20-30 somethings.\n\nThis younger generation seems to worry more about figuring out how to make themselves into a Gawd, while at the same time arguing over which psychopathic authoritarian they are going to vote for as their supreme leader. They do more thinking about who to vote for to control their lives than they do how they are going to survive on their own for the next 40 years or more.\n\nhttps://s16.postimg.org/dqbzdofj9/OK_dees_1_Copy.jpg \n\nWhich one of these \"leaders\" (and I must quote that) is going to do more for me, seems to be the biggest question of younger generations. While at the same time they hold onto the belief that everything was created just for them and everyone else is merely a part of them; their own personal sock puppets of pleasure who must reward them when they do something they consider to be worthwhile.\n<br>\n\nhttps://cdn.meme.am/instances/57755618.jpg\n\n# Vaporware Is Skeery\n\nOne of my biggest disappointments in this community came when @stellabelle, the person with the highest reputation on the site, made a post about an announced feature she liked in another decentralized blogging platform that doesn't even exist. \n\n### The horror! \n\nMany were quick to point out that the other platform was \"vaporware\", yet felt so threatened by her post about this \"vaporware\" that they created fictional stories to apparently discredit her. Others jumped on the bandwagon at every chance in the comments section. For what? For pointing out an announced feature in \"vaporware\"? Some even called this apparent \"vaporware\" a \"competitor\"!?\n\nhttps://s11.postimg.org/e5699gp5v/cover_ears.jpg\n\n# [Faith No More](https://youtu.be/3yVI3UgtvwU)\n\nThis says a lot about the faith these people actually have in Steemit. The fact that a piece of  \"vaporware\" can be considered a \"competitor\" to Steemit, along with the fact that these people feel threatened by this \"vaporware\" would make Leon Festinger roll over in his grave; **because he's dead ... just like this generations ability to debate on a topic without their favorite psychology book in front of them to fashion a response from someone else's thoughts.**\n\nWe even have one of the largest whales on Steemit flagging comments that dare mention a non-existent \"competitor\" or anyone saying anything that, in their mind, is considered \"divisive\" to the community. A flag from this person will all but hide a comment from anyone's view without seeking it out at the bottom of the page. \n\nhttps://s15.postimg.org/820q6kvkr/safe_space.jpg\n\n# [In Muh Safe Space](https://youtu.be/sXQkXXBqj_U)\n\n\nSo much for being a place to discuss anything openly. And yet, people here complain about Facebook and Reddit, yet I can mention Facebook all day on Reddit, and vice versa, and never have to worry that my comment will be hidden by a single individual. Even worse, Facebook and Reddit are some of the most censored platforms in existence.\n\n### Put that in your **[hash pipe](https://youtu.be/_9BGLtqqkVI)** and smoke it!\n\nSome here are taking it upon themselves to create a safe space for everyone else, because apparently the competition from these non-existent platforms is so strong we must hide their non-existent features very mention from the fragile masses. Back in my day, there was a saying ... \"competition is good\", but apparently that's no longer the case.\n\nhttps://s22.postimg.org/cal6wr4tt/manstuff.jpg\n\n# [Smells Like Teen Spirit](https://youtu.be/hTWKbfoikeg)\n\nHere on Steemit, it's hard to find anyone that appreciates sports, guns, hunting, cars or anything that my generation considers to be laced with testosterone. Sure I find computer/programming talk interesting, but it's rare these days to find people online that can talk the 4 basic man groups as well. I've found a few, but for the most part they are hiding within the Steemit caves of obscurity.\n\nSteemit advertises that \"original content\" is rewarded, yet anyone that can speak in great detail on any of those 4 basic man groups will rarely, if ever, be rewarded for doing so. There are a few of these well written articles on these topics here on Steemit, but you will be hard pressed to find one earning more than $5. Why Is that? \n\n### I'll tell you why ... because Steemit, for the most part, is lacking testosterone. \n# (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b\n<br>\n\nhttps://s13.postimg.org/oou4yaqp3/Grinds_my_gears1.jpg\n\n# [What Grinds My Gears](https://youtu.be/Q685Ko2DHDs)\n\nYou know what really grinds my gears? Steemit. **Steemit really grinds my gears.** Why? Because I'm too old for this shit! And for that reason, **this will be my last post on Steemit**. I will be relinquishing my posting key access for this account and leave it to the younger generation of Tuck Fheman's, so they can post happy thoughts about all things Steemit and be rewarded untold fortunes for doing so. I am just holding them back.\n\nI did my best to be a part of this generations next big thing, but generation Steemit is just too namby-pamby for this old codger. \n\n<div class=\"pull-left\">\nhttps://s22.postimg.org/9mkkeg19t/giphy.gif\n</div>\n<div class=\"pull-right\">\nhttps://s20.postimg.org/bcrfwvml9/mic_drop.gif\n</div>\n\n<br/>",
+    "body_length": 6089,
+    "cashout_time": "2016-10-12T07:28:27",
+    "category": "philosophy",
+    "children": 141,
+    "created": "2016-09-10T22:42:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"philosophy\",\"rant\",\"steemit\",\"new-age\",\"mic-drop\"],\"users\":[\"stellabelle\"],\"image\":[\"https:\\/\\/s18.postimg.org\\/aid72t4nt\\/too_old.png\",\"https:\\/\\/i.imgflip.com\\/1adksj.jpg\",\"https:\\/\\/s16.postimg.org\\/dqbzdofj9\\/OK_dees_1_Copy.jpg\",\"https:\\/\\/cdn.meme.am\\/instances\\/57755618.jpg\",\"https:\\/\\/s11.postimg.org\\/e5699gp5v\\/cover_ears.jpg\",\"https:\\/\\/s15.postimg.org\\/820q6kvkr\\/safe_space.jpg\",\"https:\\/\\/s22.postimg.org\\/cal6wr4tt\\/manstuff.jpg\",\"https:\\/\\/s13.postimg.org\\/oou4yaqp3\\/Grinds_my_gears1.jpg\",\"https:\\/\\/s22.postimg.org\\/9mkkeg19t\\/giphy.gif\",\"https:\\/\\/s20.postimg.org\\/bcrfwvml9\\/mic_drop.gif\"],\"links\":[\"https:\\/\\/youtu.be\\/MqBNSMbEzI0\",\"https:\\/\\/youtu.be\\/3yVI3UgtvwU\",\"https:\\/\\/youtu.be\\/sXQkXXBqj_U\",\"https:\\/\\/youtu.be\\/_9BGLtqqkVI\",\"https:\\/\\/youtu.be\\/hTWKbfoikeg\",\"https:\\/\\/youtu.be\\/Q685Ko2DHDs\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T22:42:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 42002060944755,
+    "parent_author": "",
+    "parent_permlink": "philosophy",
+    "pending_payout_value": "144.429 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "when-concerning-steemit-i-ve-come-to-realize-i-m-too-old-for-this",
+    "post_id": 915833,
+    "promoted": "138.990 HBD",
+    "replies": [],
+    "root_title": "When Concerning Steemit, I've Come To Realize ... I'm Too Old For This",
+    "title": "When Concerning Steemit, I've Come To Realize ... I'm Too Old For This",
+    "total_payout_value": "0.000 HBD",
+    "url": "/philosophy/@tuck-fheman/when-concerning-steemit-i-ve-come-to-realize-i-m-too-old-for-this"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2878128126837",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6998734695522",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6042719173062",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120838362492",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "991013934194",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "918527955423",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3719055998",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4515019251",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836782064",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64817001772",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993119622",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256394111",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210347006215",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34042532834",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401713935140",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398896422515",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17157086215",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747273339",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160639989",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21561714956",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302719926634",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345768342",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14351424587",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77086206429",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78070381820",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95730853785",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12739865723",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9785915976",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15462863713",
+        "voter": "jademont"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7554806704",
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1455984309",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098982781",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "340907048790",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9947116773",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9650580617",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2950703828",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89884543659",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17260900202",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14125062140",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22046139567",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79658049745",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431852861",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368696007081",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586286811332",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96224456283",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37451164846",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4597420837",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8881004054",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3596528108285",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388823990187",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391275913",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362378288951",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52998773109",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "863365208",
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59069076379",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124185870189",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8333460340",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266442266951",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500746650031",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48671150838",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138353237297",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1863788514",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2434631651",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100534891530",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43181755485",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403540320598",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40797153099",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18543754999",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289162489",
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302683064",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17546278068",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264522603",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8820348623",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204013843843",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300446841809",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3112471750",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4707075837",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15801611273",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32544390735",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2870229595",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133098789385",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "599975985871",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32961215897",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283810485",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25445457118",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259486897",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1625153964",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8892666616",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15616629499",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499156305959",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3613581209",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "198330012",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "183568347",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147240421388",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12022855311",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1571508493",
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "885891994",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "919965160",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10802622782",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4405634199",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24942066295",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1367833704",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10301497593",
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356943865",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47927575572",
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384335950",
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "793082709",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367441394",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47406569721",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70372093790",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42927707223",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3422295233",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5725254373",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2064928807",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3782713987",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12974410735",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2976001628",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252357240414",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3477776250",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3556231334",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59941579508",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3433845802",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19157179302",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3987315202",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35138047991",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12019513269",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73099576639",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8132763030",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214418183330",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "373770800",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26816500737",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6113574314",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683378197",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255303484",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255686119",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147914638",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148750003",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84813726",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4164065341",
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18119834837",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11673305563",
+        "voter": "quickfingersluc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220766396409",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11219620297",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "859954354",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20113164016",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7430932441",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203965977",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18453282331",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618560648",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408950035",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219368610",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "274335473",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76805770",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10590243337",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126426805",
+        "voter": "ipopular"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74356260",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18695991236",
+        "voter": "pixielolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1840946810",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "861558297",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1526231546",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456054658",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19988784545",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5647038859",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139439065521",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9225459807",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731723236",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5553712976",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951944925",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1515473458",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15130676889",
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8140603858",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759071342",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9623723965",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4010159410",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3565700998",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1146725005",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7063527946",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512286246",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3424311094",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14726415882",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10366372843",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12931796143",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293812470",
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85386694477",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55591289",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411872432",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1467824207",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253738615",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1030648559",
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145609627",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83673051926",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58499109",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62332619",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7624079651",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9995207527",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73290501683",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094162",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4390594623",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89766690138",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3574771803",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4346734216",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18099477167",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51095992",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467996430",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201888000",
+        "voter": "tlarsen2080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11457714027",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4621091782",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1609584914",
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194564074",
+        "voter": "arty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88366627",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709285853",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56583285",
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "581299661",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82668168",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262718397",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2209122623",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24239498471",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223746762",
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55278008",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117140255",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57522774",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311627797",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1524816681",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594706072",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1645692763",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5550458547",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454788",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50468091",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53474283",
+        "voter": "barbosabarros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51583902",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71766021",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631761737",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177106697",
+        "voter": "ziogio"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center><img src=\"https://stakepool.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-31-at-07.58.21.png\"></center>\n\n<center><h2>We are now 600+ users registered and 20-30 active hosts at any time of the day talking about steemit, crypto and news 24/7 live on air and this is how you do it to become a host on steemspeak radio stakepool</h2></center>\n\n<h1><center>WE WANT TO HEAR YOU TOO!</center></h1>\n\n<b>First</b>, make sure you have a GOOD Microphone and a GREAT Headset. When you are on air talking about your latest steemit-post or something else that is on your mind, you want to sound great and make sure you don\u00b4t transmit echo, so if you don\u00b4t have headphones - buy some before you join.\n\n<b>Second</b>, Download the Teamspeak 3 Client that works for your Operative System or Phone from <a href=\"http://teamspeak.com/downloads\">Official Teamspeak Download</a>.\n\n<b>Third</b>, Connect your TeamSpeak 3 Client to this server: <b>ts.steemspeak.com</b>\n\n---\n<center>It is THAT Simple!</center>\n---\n\n---\nOK, Now that you have logged in, you need to set your <b>Push To Talk Button!</b> And to do that I have included a good youtube-tutorial for you here so that you can easily figure out how to do it in settings->capture->push to talk->hotkeys\n\n<h1>Setting up the Push to Talk button!</h1>\nhttps://www.youtube.com/watch?v=u89aMcyfr2s\n\n<h4>The Mac Version settings are found in the Teamspeak 3->Preferences ->Capture</h4>\n\n---\n<center>If you just want to listen, go to <a href=\"http://steemspeak.com\">steemspeak.com</a>24/7 all year!</center>\n---",
+    "body_length": 1552,
+    "cashout_time": "2016-10-01T15:15:30",
+    "category": "steemit",
+    "children": 31,
+    "created": "2016-08-31T13:26:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"life\",\"freedom\",\"news\",\"music\"],\"image\":[\"https:\\/\\/stakepool.com\\/wp-content\\/uploads\\/2016\\/08\\/Screen-Shot-2016-08-31-at-07.58.21.png\",\"https:\\/\\/img.youtube.com\\/vi\\/u89aMcyfr2s\\/0.jpg\"],\"links\":[\"http:\\/\\/teamspeak.com\\/downloads\",\"https:\\/\\/www.youtube.com\\/watch?v=u89aMcyfr2s\",\"http:\\/\\/steemspeak.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T13:26:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31741689374910,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "120.057 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "how-to-connect-and-be-a-host-on-steemspeak-radio-and-let-your-voice-be-heard-across-the-world",
+    "post_id": 812590,
+    "promoted": "125.000 HBD",
+    "replies": [],
+    "root_title": "How to CONNECT and be a HOST on SteemSpeak Radio and let your VOICE be HEARD across the WORLD!",
+    "title": "How to CONNECT and be a HOST on SteemSpeak Radio and let your VOICE be HEARD across the WORLD!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/how-to-connect-and-be-a-host-on-steemspeak-radio-and-let-your-voice-be-heard-across-the-world"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "14287655717809",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372316824459",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7292928003093",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6712692598434",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8748358954886",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5924081466216",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20671106684513",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118417933788",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "923945830721",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898909637848",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2479218792",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3009798108",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557836382",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7335421547210",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43175636897",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1328665238",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170926788",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214530506030",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391741109003",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389075404441",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1331361114912",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77471889244",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253801568876",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20262312121",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "498161277",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773724643",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399862483868",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "411408907897",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6821654706",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230509608",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14466370135",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48090324970",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82688369456",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13170169522",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11072341222",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80028506637",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419229125146",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81246195312",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13405317241",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535527459153",
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3020965065",
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1454961783",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19097994036",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056146398",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "340794336001",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3315032051",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9613892204",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "847659311",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18234332542",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156478008187",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16814582950",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57941109413",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32680055185",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105824577331",
+        "voter": "amartinezque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24012631923",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54102266581",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973588246",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73938949282",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1430756403",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19203629337",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7452226457",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12917828173",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11828369962",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10554741746",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3518424323798",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363217648620",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342038785",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5613435698",
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362364795494",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51869215030",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186263884937",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4565655246",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258065486703",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13619124411",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138324583233",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1184500561",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140244128104",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636647277",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100470233346",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41356310366",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13787125963",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385584242228",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40796944760",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28959157027",
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289162489",
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17893924588",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266425807",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9856964632",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20384429842",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300446841809",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38998845686",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3043909864",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4522484628",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4911853013",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15159309172",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2763332921",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31283265272",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14006522484",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2928756549",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13606146685",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8236654789",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28836579075",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266065805",
+        "voter": "nurev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1559706980",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8358639536",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74156962501",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12165590095",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366301565",
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10585603645",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3610761428",
+        "voter": "owdy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "80089524",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "73425371",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1350155707",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1206462597",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143979313132",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10020572535",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14094648142",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127923097868",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15306226751",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "864077460",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15904625406",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4206277713",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11502422370",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165119969029",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33632847618",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89059288467",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34393459049",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348823659599",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11225967160",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4183969872",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8674367887",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389393307",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46987819188",
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61876999450",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43998433342",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19908734998",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15095626509",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19208995641",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2026353384",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3346143159",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5604949614",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1811685903",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7735024258",
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12972669244",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8412249152",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3449406742",
+        "voter": "kimmar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188704962743",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3409584558",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3485025335",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1432554908",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61134908757",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25467461905",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8079581131",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6737481039",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3227799659",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18031572419",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7960988445",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3143648302",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23784532545",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3982662435",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40963637365",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67031280822",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116058250",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1492718093",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534037396",
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100131242",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8132697646",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192890960021",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365818230",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111304161",
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25060291197",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4073521267",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646370099",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249753408",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250127725",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144699103",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145516307",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82969949",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10146325450",
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207780137797",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200189709",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1089072756",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4458162709",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "461290417",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1912624362",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11673105366",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20532124227",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8105938340",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17523357805",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568834437",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400045064",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214599727",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268956346",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75136080",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108154560",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13159019704",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125670168",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4182979272",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897211578",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1283349286",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2406933564",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24693180396",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1483559041",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2713256489",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5150829096",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5533183281",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11454886978",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099605749",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48206857966",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8761147948",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5886582033",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5495724559",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2131190527",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38671084581",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52102443",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15130676889",
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22839801085",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1711191717",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15561021463",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9238067538",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4004906164",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266924190",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3564833888",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5902111209",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162194218",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "724724078",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574381549",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93392827573",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14148411388",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15893252296",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63829521",
+        "voter": "dedushkadiesel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56272514",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93243566220",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "559711438",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70682332",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1361293312",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52502611",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52099594",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3235630451",
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323509012",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753317",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148403993",
+        "voter": "steem-engine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1200202101",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51619811",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28469021518",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1963729757",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83587645574",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29373154668",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61094018",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10543706281",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71357161",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2331044924",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405029117",
+        "voter": "noor818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863356",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51860909",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51852278",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92671420",
+        "voter": "how2steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3502906874",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8121800981",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941499119",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51481279",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59465570",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454956115",
+        "voter": "steemhorizon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18096899554",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2511369735",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11435132110",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6205342073",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4298995859",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22500043307",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562255",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85421073",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615508801",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55750195",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666955368",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8515004507",
+        "voter": "ironwood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79669298",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13864037687",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2155153681",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51712804",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109805573",
+        "voter": "maxfuchs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20656731535",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51388276",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51379706",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53537748",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814474",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607135202",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13828807095",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51451058",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262391495",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2146314155",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54349843",
+        "voter": "lynceus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24762164330",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52015504",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190473967",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140568307",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54949117",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304997419",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54665234",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582022660",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51979174",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50812926",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1579487626",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5683012749",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71251561",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979879533",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2439471741",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50507607",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454788",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65292516",
+        "voter": "paketkita.net"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73815531",
+        "voter": "conspiracynut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52710031",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143043369",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1869420478",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66920614",
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366333355",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607607141",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82374501",
+        "voter": "alexclarkbarry"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>Ladies and Gentlemen Welcome to the STEEMIT SHOW! 100% Pure Entertainment ONLY FOR YOU!</center>\n---\nhttps://www.youtube.com/watch?v=0SMMo7aQnPY\n\n\n---\n<center>Welcome to @fyrstikken I am so happy to see you! Leave a comment below so I know you have been here :)</center>\n---",
+    "body_length": 282,
+    "cashout_time": "2016-10-01T02:09:48",
+    "category": "steemit",
+    "children": 56,
+    "created": "2016-08-30T19:19:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"funny\",\"comedy\",\"fyrstikken\",\"entertainment\"],\"users\":[\"fyrstikken\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/0SMMo7aQnPY\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=0SMMo7aQnPY\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T19:19:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 88601715868403,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "809.229 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-steemit-show-fresh-entertainment-directly-to-you-because-we-need-a-good-laugh-d",
+    "post_id": 804282,
+    "promoted": "122.000 HBD",
+    "replies": [],
+    "root_title": "THE STEEMIT SHOW! - FRESH ENTERTAINMENT DIRECTLY TO YOU! - BECAUSE WE NEED A GOOD LAUGH :D",
+    "title": "THE STEEMIT SHOW! - FRESH ENTERTAINMENT DIRECTLY TO YOU! - BECAUSE WE NEED A GOOD LAUGH :D",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/the-steemit-show-fresh-entertainment-directly-to-you-because-we-need-a-good-laugh-d"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6861504603453",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5924234483394",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099192085",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762483356",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697315118",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54010291270",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660921578",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213661759",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34042532834",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1305259200680",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622724514",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967195088",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297041068093",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31488210815",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288140285",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46091338521",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15147326440",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29088869234",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2141819165",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692261667883",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91718922101",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12107337047",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236023250940",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60750319225",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79657198561",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431846323",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602018562",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586286811332",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64284714678",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37511548124",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8876135165",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391275913",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283907126703",
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1267900436",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324237643911",
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20461884222",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "929020048",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946608196",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429697273174",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686886224488",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267977999",
+        "voter": "alefernandez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4224777539",
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269921024",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6602307370",
+        "voter": "emhaze222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266592981",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204013843843",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31880219495",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14064842257",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25445573460",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7049471118",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105798664165",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147240421388",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41975059972",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1131075798",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "910500105",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4487120677",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37452179267",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17227141109",
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341993222983",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24443224969",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237985094",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6129221694",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4162801602",
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19507833697",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3498346239",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61164729955",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16745418519",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365818230",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841259695",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7093464346",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268956346",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4975171514",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112914306",
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1909130025",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993799598",
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456070989",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19988784545",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731723236",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15792261330",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238353830",
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88049981467",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1253580623",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3360204812",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54355927",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10079591501",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119439375",
+        "voter": "harrycoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12237404949",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145609627",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62332619",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7285753049",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74755928437",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59512540",
+        "voter": "boatman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3307244480",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12186383861",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58931862",
+        "voter": "wesley399"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1763987441",
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8629294348",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14595736783",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7184799429",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1604647373",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14193492376",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23042993006",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110372559",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84510824",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1230797907",
+        "voter": "profitgenerator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55821108",
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117787613687",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24239498471",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140568307",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56372318",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269335193609",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2984877979",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69255373",
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51342868",
+        "voter": "steemitmag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65057583",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3319272143",
+        "voter": "adilsontsilva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136773607",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245473",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3365771273",
+        "voter": "merlin"
+      }
+    ],
+    "author": "marketingmonk",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://steemit-bucket-4a743ec2.s3.amazonaws.com/Getting%20More%20Attention%20By%20Using%20The%20Promote%20Button.jpg\n\nThis is the eighth installment of what will turn into a paid course called The Complete Steemit Course.\n\nHere is Steemit Tutorial 8: Getting More Attention By Using The Promote Button:\n\n**(please note that this video was updated with a corrected version 23 hours after the original post)**\nhttps://www.youtube.com/watch?v=ob9Zksnguzg\n\nPrevious lessons here:\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-1-creating-an-account-on-steemit-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-2-steemit-account-dashboard-overview-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-3-creating-our-first-ever-basic-post-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-4-reading-writing-decorating-and-voting-on-comments-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-5-voting-power-weighting-spying-and-managing-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-6-getting-paid-twice-from-the-steem-network-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-7-buying-steem-power-with-steem-dollars-or-bitcoin-video\n\nPlease upvote to show your support, I really appreciate it.\nhttps://img1.steemit.com/0x0/https://www.cryptoversity.com/wp-content/uploads/Steemit-upvote-cta-3.gif",
+    "body_length": 1407,
+    "cashout_time": "2016-10-01T15:51:39",
+    "category": "steemit",
+    "children": 18,
+    "created": "2016-08-31T12:33:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"tutorial\",\"howto\",\"steem\",\"video\"],\"image\":[\"https:\\/\\/steemit-bucket-4a743ec2.s3.amazonaws.com\\/Getting%20More%20Attention%20By%20Using%20The%20Promote%20Button.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ob9Zksnguzg\\/0.jpg\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/www.cryptoversity.com\\/wp-content\\/uploads\\/Steemit-upvote-cta-3.gif\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=ob9Zksnguzg\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-1-creating-an-account-on-steemit-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-2-steemit-account-dashboard-overview-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-3-creating-our-first-ever-basic-post-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-4-reading-writing-decorating-and-voting-on-comments-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-5-voting-power-weighting-spying-and-managing-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-6-getting-paid-twice-from-the-steem-network-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-7-buying-steem-power-with-steem-dollars-or-bitcoin-video\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T11:32:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21127721369166,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "55.734 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-tutorial-8-getting-more-attention-by-using-the-promote-button-video",
+    "post_id": 812173,
+    "promoted": "121.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Tutorial 8: Getting More Attention By Using The Promote Button [VIDEO]",
+    "title": "Steemit Tutorial 8: Getting More Attention By Using The Promote Button [VIDEO]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@marketingmonk/steemit-tutorial-8-getting-more-attention-by-using-the-promote-button-video"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3100531233",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224361742775",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3764189886",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690498765",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6143394622323",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54237110459",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661583090",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213702396",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149450248229",
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6580261519",
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79094601875",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10777629083",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622922850",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967529916",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392331448467",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288200426",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3475466942",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46099177392",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21457200657",
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3643243484",
+        "voter": "kenmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263657666737",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5349082417",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "868009462",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3898446152",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14465314654",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432626059",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1460925170254",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687032102605",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8578280196",
+        "voter": "cannav"
+      },
+      {
+        "percent": "8800",
+        "reputation": 0,
+        "rshares": "12348648799",
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247087647",
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9892359288",
+        "voter": "jay4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243640107",
+        "voter": "sekoorane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1343937139914",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151103722616",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5530655167",
+        "voter": "secom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4569401045",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2212025362",
+        "voter": "johnnydollar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45220437401",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3120668012",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189075416368",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19174335590",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9133228344",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109445777",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9700063815",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18091703755",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64903901",
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16678639301",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152609578",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17231154057",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122437504",
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62928860",
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6587662692",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69829863",
+        "voter": "qq553937961"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57930015",
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7130857719",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6785162040",
+        "voter": "alexandre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "628286793",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41225084978",
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56995776",
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363138694",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16414058791",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1649052287",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168496112075",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287896907",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22669235593",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259672323",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639848102",
+        "voter": "kharn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50833490",
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192620865",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314717764",
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53488939",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51915855",
+        "voter": "apexnine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109667822",
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76027456",
+        "voter": "motsna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161012229",
+        "voter": "gunbread"
+      }
+    ],
+    "author": "woo7739",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![29637d.jpg](https://www.steemimg.com/images/2016/09/01/29637d.jpg)\n\nThis photo seems real. Because it IS REAL!\n\nTeam CSL, one of the most famous cosplay group in Korea, posted unbelievable photos about Silent Hill.\n\nLet's take a look at the rest of photos.\n\n![4b7c8d.jpg](https://www.steemimg.com/images/2016/09/01/4b7c8d.jpg)\n\n![52cdcc.jpg](https://www.steemimg.com/images/2016/09/01/52cdcc.jpg)\n\n![6ef4bd.jpg](https://www.steemimg.com/images/2016/09/01/6ef4bd.jpg)\n\n![9e4d4f.jpg](https://www.steemimg.com/images/2016/09/01/9e4d4f.jpg)\n\n![103f314.jpg](https://www.steemimg.com/images/2016/09/01/103f314.jpg)\n\n![11eef23.jpg](https://www.steemimg.com/images/2016/09/01/11eef23.jpg)\n\n![12aaa03.jpg](https://www.steemimg.com/images/2016/09/01/12aaa03.jpg)\n\n![13cbf58.jpg](https://www.steemimg.com/images/2016/09/01/13cbf58.jpg)\n\nAnd a YouTube video here.\n\nhttps://www.youtube.com/watch?v=KaBzFJnziVs\n\nYou see quality of their cosplay? I think they are so awesome.\n\nI am trying to convince them to post their contents by themselves.\n\n![005751a.jpg](https://www.steemimg.com/images/2016/09/01/005751a.jpg)\nhttps://www.steemimg.com/images/2016/09/01/11296c4.md.jpg\n\nTheir reaction regarding Steemit, is positive.\n\nBut they're not completely convinced yet. You know, it's too good to be true.\n\nWith that said, I need your support.\n\nAll Steem Dollar reward will go to them, I am sure they will find how fascinating Steemit is.",
+    "body_length": 1420,
+    "cashout_time": "2016-10-03T07:40:42",
+    "category": "cosplay",
+    "children": 4,
+    "created": "2016-09-02T05:15:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"cosplay\",\"photography\",\"horror\",\"art\",\"kr\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/29637d.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/4b7c8d.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/52cdcc.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/6ef4bd.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/9e4d4f.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/103f314.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/11eef23.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/12aaa03.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/13cbf58.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/KaBzFJnziVs\\/0.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/005751a.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/11296c4.md.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=KaBzFJnziVs\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T05:43:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11724772371579,
+    "parent_author": "",
+    "parent_permlink": "cosplay",
+    "pending_payout_value": "19.639 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "unreleased-steal-cut-of-slient-hill-no-its-real",
+    "post_id": 831489,
+    "promoted": "121.000 HBD",
+    "replies": [],
+    "root_title": "Unreleased steal cut of Slient Hill? No, its REAL!",
+    "title": "Unreleased steal cut of Slient Hill? No, its REAL!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/cosplay/@woo7739/unreleased-steal-cut-of-slient-hill-no-its-real"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28865473791883",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17174544934448",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6741398871343",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8391169619604",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5925252164516",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187621512499",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099515402",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762904646",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697373904",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1585286495451",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54046050794",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661086507",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5907379161631",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213673190",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2142024197765",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33250846024",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "740067577802",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253842278185",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622778402",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1120034999305",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967281634",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823522090888",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31150917768",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40749565179",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288158246",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80058020962",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411023729959",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78077847939",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173731843505",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7585671701",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550644954644",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36301508450",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8059949925",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14125062140",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "426969856",
+        "voter": "zheka-melnikov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570227675922",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431967857",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47661340196",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195004765553",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37374648233",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511396696440",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21926968622",
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20539865673",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37511548124",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11592122420",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9361058328",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107752715191",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13348057713",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251383713111",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13352180210",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20461698330",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334447067",
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138950405749",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "86227251302",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14067763080",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1170048458",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16019230638",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210538398",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3374026415",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204013843843",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10364264135",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132657096959",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240080589407",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "466928201309",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296710962",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210192659",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36264884009",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72257534352",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113581011154",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144039542662",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13532699743",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143380752469",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515148804",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14019560181",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2932258651",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109188618706",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8923261762",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29701247281",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11929926137",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12871286440",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10289043539",
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7236481997",
+        "voter": "corinnestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "332446975",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2027442179",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3629922224",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001662053",
+        "voter": "jsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82686830113",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424094754",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59943852587",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3219325103",
+        "voter": "moviefan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3034936936",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3573419992",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2030193955",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17744271849",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1894056221",
+        "voter": "idan4326"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74885413307",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3547300393",
+        "voter": "mastletter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400623749",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26243392108",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333358949",
+        "voter": "valenttina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261379803",
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6108553793",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203458546034",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6960645822",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107496012",
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841259695",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445706908",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7093464346",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208498554",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184772599",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17665762711",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10248653702",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31943139423",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5344490062",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362618765",
+        "voter": "laurame86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10175387109",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69849820",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4975171514",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15053973666",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456070989",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19368137736",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1049062937",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951944925",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "375668517110",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23834697789",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2595700392",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121563194275",
+        "voter": "bridgetbunchy"
+      },
+      {
+        "percent": "2200",
+        "reputation": 0,
+        "rshares": "6307916292",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "102479436470",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3835982150",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15650028306",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35535725906",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "19821844477",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5921167530",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3067653962",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "45657317456",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13118148961",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228819677",
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52521013",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714188538",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "1438747070",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56250267",
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687153403",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773487823",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10323552313",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510558795",
+        "voter": "galamirissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61569261",
+        "voter": "hysmagus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233196315",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3570294010",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22911239981",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5838110908",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4508841975",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "795125532",
+        "voter": "kateblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63734270",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145609627",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174751392",
+        "voter": "florentina"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "235328801",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10748521073",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20522445870",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64551062343",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258347207",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51095992",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2976838803",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2291984181",
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97567611",
+        "voter": "claudia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35066739983",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12921415762",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2006235920",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7454987616",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11509373633",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6671849990",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23649624986",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11380609295",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76756531",
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111425803",
+        "voter": "jyezie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1181054867",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85913014",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55633002031",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72888933",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67994567",
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55443372",
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1580324483",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10800740085",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108822425815",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7184066856",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316281166",
+        "voter": "getonthetrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56017401",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3639301731",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56566110",
+        "voter": "minihelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3319520861",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346743386",
+        "voter": "masonmiler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16416762623",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84510824",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55936364",
+        "voter": "minisupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "766025841",
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24770721231",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9370846764",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4836979493",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93771031",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105329833",
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59536536",
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53043871",
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1576328130",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68442517",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2921775535",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2610482432",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52282021",
+        "voter": "pdavid000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54464967",
+        "voter": "mynameisricky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89309975",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5219360203",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55029837",
+        "voter": "jessica.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50878690",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91297442",
+        "voter": "qezzit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80288789",
+        "voter": "benberger"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_75367465_SMALLee110.jpg\" width=\"848\" height=\"565\"/></p>\n<p>I have found myself in a contemplative mood over the last few days. &nbsp;The main reason for this that I am due to have surgery on my left eye this Thursday (1st September) - sorry for constantly bringing it up and being such a wimp. &nbsp;</p>\n<p>The surgery is routine and is in some ways self-inflicted - it is due to a complication with having had laser eye surgery last year to correct my vision. &nbsp;</p>\n<p>Had I not had that done I wouldn't be in this position (although) I don't regret it. &nbsp;No procedure is without risk and since this is a second procedure the risk is increased. &nbsp;It is even greater because I am also a type I diabetic (on insulin) which slows healing down and makes complications more likely.</p>\n<p>My eyesight is very important to me particularly due to my artistic hobbies like photography. &nbsp;Luckily my right eye is absolutely fine at the moment.</p>\n<p>Anyway the natural anxiety over this has lead me to be quite introspective and think about life in general. &nbsp;I have been thinking back to some of the the things I have learned and how they might have helped me had I known them when I was younger.</p>\n<p>They are in no particular order. &nbsp;I make no apologies for some of them being quite obvious or even the sort of cheesy advice you would read on a greeting card.</p>\n<p>So here they are in no particular order:</p>\n<p><br></p>\n<h1>Money and your career are important but not that important</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Serbian-Dinar-and-another-Currency-000082274485_Smalla1ad2.jpg\" width=\"839\" height=\"571\"/></p>\n<p>When I was younger I was (like many kids) convinced that having lots of money would bring happiness. &nbsp;Having the latest Nike Air Jordans and most fashionable clothes, gadgets and the like was a matter of not only pride but vane necessity.</p>\n<p>It was only later that I started to realise that whilst money is a necessity for paying bills and the like it is only a tool. &nbsp;Above a certain level of comfort having more money doesn't really equate to being happier. &nbsp;It just equates to being able to have more \"things\" i.e. possessions. &nbsp;</p>\n<p>Depending on how you get the money it can also lead to a poverty of the more valuable commodity which is time. &nbsp;</p>\n<p>By similar extension whilst your career should be important it should not be the most important thing in your life. &nbsp;No matter what you do you aren't going to be able to buy yourself more time so don't waste it needlessly going after more money or a better position at work. &nbsp;</p>\n<p>It is a kind of Faustian pact where you get the worse end of the deal. &nbsp;</p>\n<h3>Time is the truly important commodity and sharing it with others is one of the most valuable uses of it.</h3>\n<h1><br></h1>\n<h1>Following the herd (or shoal) doesn't doesn't pay off</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_16631433_SMALLec951.jpg\" width=\"848\" height=\"565\"/></p>\n<p>We are all programmed by society and culture to follow what is \"normal\" and ordinary. &nbsp;This is especially true during those early teen years. &nbsp;Even though we pretend to rebel by picking subcultures like goth, emo, metalhead or whatever this is just a thinly veiled surface level of individuality. &nbsp;</p>\n<p>At it's base it is as conformist as anything else and is merely designed to massage our egos whilst still allowing us to be cocooned within the comfort of our own selected \"tribe\".</p>\n<h3>Truly great people, the kind that change the world don't follow herds or tribes or anything else. &nbsp;They set their own destiny and forge their own path. &nbsp;</h3>\n<p>They make the world follow them.</p>\n<p>I know what kind of person I would rather be and it isn't one of the sheep.</p>\n<p><br></p>\n<h1>Follow your own dreams not those of others</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_76511897_SMALL42a71.jpg\" width=\"848\" height=\"565\"/></p>\n<p>This is related to the idea of ignoring \"herd mentality\". &nbsp;We often have dreams and expectations placed upon us by our family, friends and teachers. &nbsp;I remember once telling one of my teachers that I wanted to be an artist or a film director and being told:</p>\n<h3>\"You are much too clever to waste your life on something like that. &nbsp;You should be a doctor or a lawyer.\"</h3>\n<p>It may seem like a complement but these kind of sentiments can be just as damaging as more obviously disparaging ones because they psychologically close down certain options in our lives. &nbsp;One can be made to feel that doing what we want would be letting our family, friends and educators down so we push those things aside and just do what is expected of us.</p>\n<p>This ultimately leads to dissatisfaction with our work and our lives. &nbsp;It is much harder to change this in your thirties or later and much easier in practical terms to do it when you are in your teen years and choosing your career. &nbsp;</p>\n<p>Paradoxically it seems harder in your teens to say no to the psychological pressure even though it is ultimately your choice.</p>\n<h3>Self confidence in your own ability to know what you truly want early one pays off in the long term. &nbsp;Don't live your life for other people.</h3>\n<p><br></p>\n<h1>People who agree with you all the time aren't helping you</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Better_an_open_enemy_false_friendb2a45.png\" width=\"794\" height=\"403\"/></p>\n<p>We naturally like to associate with people who have similar views to us and seem agreeable to us. &nbsp;This is part of human nature. &nbsp;Unfortunately what many of us don't realise when we are younger is that a good friend needs to be honest with us. &nbsp;</p>\n<p>Someone who is always a \"Yes-man\" can actually encourage us to stagnate and reinforce our negative behaviours. &nbsp;It is simply not healthy and it is dishonest. &nbsp;Your best friends are those who tell you the truth and call you out on your bullshit. &nbsp;</p>\n<p>Similarly in your work and acedemic life it is important to listen to conflicting opinions. &nbsp;Just reading material that agrees with what you already think prevents you from evolving both from a personal and an intellectual standpoint. &nbsp;</p>\n<p>We can see this in modern internet culture where people focus purely on material that agrees with their political or societal opinions. &nbsp;</p>\n<h3>Ultimately it leads to greater division, polarisation and entrenchment of attitudes.</h3>\n<p><br></p>\n<h1>There is no shame in changing your opinion</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/chinese-proverb-on-windmilla2b73.jpg\" width=\"800\" height=\"560\"/></p>\n<p>To some degree people who have very strong opinions may be respected. &nbsp;It is seen as a sign of confidence. &nbsp;</p>\n<p>It could also be a sign of inflexibility and inability to change. &nbsp;</p>\n<p>I believe now that life is all about change and evolution. &nbsp;If you stop moving you get left behind. &nbsp;</p>\n<p>When I was younger I would stubbornly hold on to opinions and beliefs as a matter of pride. &nbsp;There was a certain amount of machismo behind sticking to your opinions and not conceding to those of others. &nbsp;To change them would be seen as some sort of humiliation.</p>\n<p>This is a complete fallacy of course. &nbsp;</p>\n<h3>To stick to an opinion merely for the sake of not changing is not only foolish it is positively pathological. &nbsp;</h3>\n<p>Ultimately it means that you do not progress as a person. &nbsp;I now realise there is no shame in changing your position and admitting that you were wrong. &nbsp;</p>\n<p>In many ways it is a lot braver because you are sure to get flack from others who are unable to do the same for \"flip-flopping\".</p>\n<p><br></p>\n<p><br></p>\n<h1>Cherish your friends and family because you don't know how long you have with them</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Happy-multigeneration-family-walking-in-the-countryside-000073792689_Small8784a.jpg\" width=\"848\" height=\"565\"/></p>\n<p>I found this out the hard way in my early twenties. &nbsp;A friend of mine (let's call him John) who I had been with throughout Junior school went to a different college from me. &nbsp;This was in a different area of the country. &nbsp;Though we often made plans to get together they would often follow through for logistical reasons.</p>\n<h3>Over time our conversations and meetings became less and less frequent as \"life\" started to get in the way. &nbsp;</h3>\n<p>A few years later when I was home from University and I hadn't heard from him in a while I bumped into a mutual friend.</p>\n<p>Nothing in my life had prepared me for what I heard next. &nbsp;</p>\n<p>A year earlier John had been involved in a minor road accident whilst riding his motorbike. &nbsp;He had fallen off as a result and had received what seemed at the time like a minor knock to his head. &nbsp;Feeling fine he had decided that he didn't need to go to hospital. &nbsp;</p>\n<p>Unfortunately for him, that minor knock on his head had ruptured a small artery in his meninges, resulting in a slow but progressive increase in intracranial pressure. &nbsp;</p>\n<h3>A few hours later he literally dropped dead. &nbsp;He was only 21.</h3>\n<p>I felt so much guilt. &nbsp;</p>\n<p>This friend had been so close, like a brother to me. &nbsp;</p>\n<p>He had died so suddenly and I hadn't even known. &nbsp;</p>\n<p>I had so many regrets - maybe if we had gotten together before his death it could somehow have changed things just enough to prevent this from happening? &nbsp;</p>\n<p>I kept having such thoughts and I still have them from time to time.</p>\n<h3>I don't think I have every truly gotten over the trauma of this.</h3>\n<p>You assume that the people you care about and love will always be there just because you can't imagine life without them. &nbsp;</p>\n<p>The fact is life is fragile. &nbsp;Nobody knows how long they have to live.</p>\n<p>Life and death happen all around us all the time. &nbsp;</p>\n<h3>Appreciate and spend time with loved ones whilst you can because you never know when that time will be up, either for you or for them.</h3>\n<p><br></p>\n<h1>Your parents and grandparents were young too</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Photo-album---photos-of-children-000070298559_Small3feff.jpg\" width=\"848\" height=\"565\"/></p>\n<p>One of my teachers at school used to say that -</p>\n<h3>\"When you are young you know everything except your own ignorance.\"&nbsp;</h3>\n<p>&nbsp;This is so true. &nbsp;Once we become teenagers we tend to assume we know better than everyone else. &nbsp;</p>\n<p>When our parents and grandparents give us valuable advice we tend to ignore it because - what do they know? &nbsp;</p>\n<p>We tend to forget that they were once young and had the same kind of hopes and dreams we do. &nbsp;By being further on in their lives and having more experience they can give us a perspective that we lack.</p>\n<p>They are a resource that we ignore at our peril.</p>\n<p><br></p>\n<h1>Never give up on your hobbies and interests</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/painting-brush53238.jpg\" width=\"800\" height=\"530\"/></p>\n<p>We all know the saying that \"variety is the spice of life\". &nbsp;We all tend to get pushed for time as we get older and develop more responsibilities. &nbsp;</p>\n<p>It is very easy to give up on those simple hobbies that gave us so much pleasure when we were younger. &nbsp;</p>\n<p>Whether it was engaging in a particular sport, listening to music, enjoying nature or just travelling we tend to give less importance and priority to these activities.</p>\n<p>These kind of activities are very important for recharging our mental energy and helping us to get away from the worries and concerns of life. &nbsp;</p>\n<p>One could almost consider them to be like a from of activity based meditation.</p>\n<p>I gave up on my art work for many years due to the sheer workload I had during University and then in work. &nbsp;</p>\n<p>This was a mistake and it was only through being forced to re-enage with it through ill health that I realised how important and fulfilling a part of my life it was and now still is.</p>\n<h1><br></h1>\n<h1>My Final Point: Life is short make sure you actually experience it</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_89191645_SMALL0da25.jpg\" width=\"848\" height=\"565\"/></p>\n<p>As you get older you start to realise how quickly time passes by. &nbsp;We have a tendency to live in either the past or the future, rarely experiencing the present. &nbsp;</p>\n<p>Not only does this make time appear to pass more quickly but it also leaves us unable to appreciate what we have at the time only realising it later through the lens of hindsight. &nbsp;</p>\n<p>One of the principles of mindfulness is the idea of recapturing and experiencing the moment. &nbsp;</p>\n<p>I think we would all do well to follow this idea. &nbsp;</p>\n<h3>By reconnecting with our momentary existence we can become more aware of our own thoughts, feelings and what we ultimately want. &nbsp;</h3>\n<p>It can also allow us to readjust our focus on what is important and start to concentrate on it more whilst we still have time. &nbsp;</p>\n<p>So many of us simply drift through our lives without the kind of focus this could provide and you don't want to be the person who starts making these kind of observations when it is too late for you to be doing anything with them.</p>\n<h3>You don't want to end up feeling like you were just a passive bystander or a passenger in your own life.</h3>\n<p><br></p>\n<h1>Conclusion</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_57565926_SMALLac7bb.jpg\"/></p>\n<p>Thanks very much for reading. &nbsp;I hope you found it useful and interesting.</p>\n<h3>Do you have any similar things that you wished you had known when you were younger? Please share in the comments below.</h3>\n<p>This will probably be my last post for a while as I am due to have eye surgery tomorrow and will be recuperating for some days. &nbsp;</p>\n<p>If I have time I might put out another post before the operation but if I don't please all take care and I wish you all the best.</p>\n<p><br></p>\n<p><em>You can find more of my work by following me @thecryptofiend - thanks.</em></p>\n</html>",
+    "body_length": 14538,
+    "cashout_time": "2016-10-02T07:26:24",
+    "category": "life",
+    "children": 67,
+    "created": "2016-08-31T17:41:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"philosophy\",\"psychology\",\"writing\",\"steemsquad\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/iStock_75367465_SMALLee110.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/Serbian-Dinar-and-another-Currency-000082274485_Smalla1ad2.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/iStock_16631433_SMALLec951.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/iStock_76511897_SMALL42a71.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/Better_an_open_enemy_false_friendb2a45.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/chinese-proverb-on-windmilla2b73.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/Happy-multigeneration-family-walking-in-the-countryside-000073792689_Small8784a.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/Photo-album---photos-of-children-000070298559_Small3feff.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/painting-brush53238.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/iStock_89191645_SMALL0da25.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/iStock_57565926_SMALLac7bb.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T00:56:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 87244901893478,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "778.039 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "things-i-wish-i-d-known-when-i-was-18",
+    "post_id": 814971,
+    "promoted": "120.000 HBD",
+    "replies": [],
+    "root_title": "Things I wish I'd known when I was 18",
+    "title": "Things I wish I'd known when I was 18",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@thecryptofiend/things-i-wish-i-d-known-when-i-was-18"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28861578690",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14412308288396",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35599225928876",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6594573987000",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2476131997",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3005703855",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557354442",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42724131990",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1327124837",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170849766",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118280461284",
+        "voter": "stan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21494373020",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5527985680",
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1190401003512",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363371081332",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497724578",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "763596484",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22561832145",
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543033555368",
+        "voter": "kencode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230379526",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23241074306",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25655032627",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312858109385",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57879936728",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2524835106",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102093148701",
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324862068866",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195268121",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29357718372",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5490718122",
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236667071809",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61307724491",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2988479142",
+        "voter": "ola-haukland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35305921410",
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8413648946",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118455323",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4601395327",
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10101627148",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23843407312",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "533041889998",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57967426",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10272873194",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3017052825",
+        "voter": "kaneen74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8127943798",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10625262501",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1595194627",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "601083060",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337837874",
+        "voter": "illlefr4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087530326",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7156028317",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145088625",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100088553",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1507018875",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560201253",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102635194703",
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4838864543",
+        "voter": "scott.stevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15486997728",
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23815009326",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16962531382",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71274014",
+        "voter": "always1success"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24133776765",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2245652652",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3688644772",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2202673922",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60920134",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4377312833",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59075696",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38299804598",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65497834210",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12113118520",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8755530417",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368182198",
+        "voter": "ukblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5153403180",
+        "voter": "survivalist.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11145915001",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4533143507",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57371783",
+        "voter": "freegirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54921657",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158871581172",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51884666",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51213903",
+        "voter": "jebat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51961738",
+        "voter": "chamujama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51778924",
+        "voter": "alexdaroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51759386",
+        "voter": "creolegenius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51660954",
+        "voter": "patrickwienefeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50536722",
+        "voter": "hugues"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50794905",
+        "voter": "alexrknight3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160726430",
+        "voter": "edlayne"
+      }
+    ],
+    "author": "scott.stevens",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>August 25, 2016</p>\n<p>What happens when this ends?</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/DSC08614.jpg\" width=\"3648\" height=\"2736\"/></p>\n<p>Did we really need a scientific paper to tell us that there is \"no conspiracy\" with regards to chemtrails and geoengineering? Apparently, we did. The obvious--to most of us--is getting, well, too obvious. &nbsp;Some self-declared scientific types had to review some pictures and all agree (mostly, 76 of 77) that nothing of the sort is happening right in front of us.</p>\n<p>Really now?</p>\n<p>First, the published articles that I recently saw in the news referencing the <a href=\"http://iopscience.iop.org/article/10.1088/1748-9326/11/8/084011/pdf\">published paper</a>.&nbsp;</p>\n<p><a href=\"http://www.nytimes.com/2016/08/16/science/scientists-just-say-no-to-chemtrails-conspiracy-theory.html?partner=msft_msn&amp;_r=3\">The New York Times:&nbsp;</a></p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/Scientists-Just-Say-No-to-1.jpg\" width=\"841\" height=\"902\"/></p>\n<p>Now <a href=\"https://www.sciencedaily.com/releases/2016/08/160812103718.htm\">Science Daily:</a></p>\n<p><br></p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/Chemtrails-not-real-say-atmospheric-science-experts-ScienceDaily-2016-08-24-21-53-51.jpg\" width=\"776\" height=\"989\"/></p>\n<p>A quick excerpt to get us started:</p>\n<p><em>The authors of this study, including Carnegie's Ken Caldeira, conducted a survey of the world's leading atmospheric scientists, who categorically rejected the existence of a secret spraying program. The team's findings, published by Environmental Research Letters, are based on a survey of two groups of experts: atmospheric chemists who specialize in condensation trails and geochemists working on atmospheric deposition of dust and pollution.</em></p>\n<p><em>The survey results show that 76 of the 77 participating scientists said they had not encountered evidence of a secret spraying program, and agree that the alleged evidence cited by the individuals who believe that atmospheric spraying is occurring could be explained through other factors, such as typical airplane contrail formation and poor data sampling.</em></p>\n<p><em>The research team undertook their study in response to the large number of people who claim to believe in a secret spraying program. In a 2011 international survey, nearly 17 percent of respondents said they believed the existence of a secret large-scale atmospheric spraying program to be true or partly true. And in recent years a number of websites have arisen claiming to show evidence of widespread secret chemical spraying, which they say is linked to negative impacts on human health and the environment.</em></p>\n<p><em>\u2026</em></p>\n<p><em>\"The experts we surveyed resoundingly rejected </em><em><strong>contrail photographs</strong></em><em> </em>(emphasis mine)<em> and test results as evidence of a large-scale atmospheric conspiracy.\"</em></p>\n<p><em>---------------------</em></p>\n<p>Did you get that? \"Photographs\", that\u2019s (almost) all they looked at, studied or examined; that\u2019s it! Just some static pictures. In my \u201cscientific research\u201d I went a step further. How could I not? My job, my reputation, my incumbent responsibility to my employer and nightly audience was at stake. Instead of examining photographs, which I already had thousands of, I bought four cameras, two computers, and some time lapse software so that I could watch the entire day\u2019s weather happenings in under five minutes. These cameras would begin recording the sky, snapping a picture every five-seconds from sunup and finish at dark, day after day after day. Pictures were not good enough for me. I needed video just to see if there was something that I was missing!&nbsp;</p>\n<p>I would get home from doing the 10pm news, change my clothes, and go upstairs to begin rendering the four movies. I had one camera covering each of the cardinal directions and then watch each one.&nbsp;It is truly amazing what we don't see when we watch clouds without the aid of compressing time by 150 times or 300 times. At these speeds, it all makes sense. To be able to see all different layers of the atmosphere working together, or against each other, a fog that seems like and even feels calm, but is actually violently whipping around, even clouds&nbsp;retaining their shapes and sizes as they pass through each other, WTF!&nbsp;</p>\n<p>https://youtu.be/Yi4YFzyeEZ0</p>\n<p>What is quickly understood is that the wind does not carry the clouds, the water molecule is riding upon another force, another current, apart from the wind. This was a revelation to me and once realized by the wider atmospheric sciences community will utterly revolutionize the science. I lost count of the times I would see a cloud layer moving EXACTLY 90 or 180 degrees opposed to the layer immediately above or below. This is impossible in a natural setting.&nbsp;Now reflect on how many chemtrails you seen in the shape of a perfect \"T\" or \"X\". Think of alignments...&nbsp;</p>\n<p>An excerpt of me discussing when I started recording the sky with time lapse.</p>\n<p>https://youtu.be/LXsPhe9zWoA?t=8m18s</p>\n<p>I began this operation in January of 2005, just slightly more than six months after having my <a href=\"https://steemit.com/geo-engineering/@scott.stevens/wouldn-t-it-or-would-it-be-great-if-we-could-control-the-weather\">\u201cAh-ha\u201d moment</a>; in which I came to understand that all the planet\u2019s weather was profoundly impacted by man-made technology. Still, I had questions of where did all these planes, trails, and conspiracy fit into this complex story? It wasn\u2019t until I was four months into this project that I finally got my answer. Only then did I understand that these planes were tracing out geometric patterns while isolating perturbations, distortions, or gaps in already existing trails. It was freaking \u201cBrilliant!\u201d, was my exclamation.&nbsp;&nbsp;</p>\n<p>These revealed perturbations ARE the reason for the chemtrails!</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/sunset_arrowed.jpg\" width=\"480\" height=\"358\"/></p>\n<p><br></p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/DSC_0012.jpg\" width=\"500\" height=\"332\"/></p>\n<p>Watch an example in this narrated video of the planes unique flight patterns recorded by during those early days of my research.</p>\n<p>https://youtu.be/WVhbdhT9xoY</p>\n<p>How else would the weather makers know where to target, how much energy to target and the results of their work, without these straight chalk lines in the sky to gauge their effectiveness? If you\u2019re going to pulse the atmosphere with \u201csomething\u201d you\u2019ve then got to go figure out if you got it right! Was the \"input\" enough, or not enough? Was the intended impact sufficient to achieve the desired result, Yes-or-No?&nbsp;</p>\n<p>Straight lines across a moving fluid would allow for the direct observation of the atmospheric intervention and yet still appear to be just contrails to the masses below. It is an utterly elegant program that now with forty years under its belt has remained in the dark recesses of atmospheric sciences. A science that is so obsessed with the illusory CO2 issue that there is no intellectual capacity or energy available to see what\u2019s happening right of front of their faces.&nbsp;</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/EL-831-Marion-1976.bmp\" width=\"850\" height=\"526\"/></p>\n<p><strong>A train yard, &nbsp;1976 - Engine EL 831 Marion, Ohio &nbsp;-- Chemtrails already in the sky</strong></p>\n<p>Again, a very well played hand guys. Aircraft, in plain sight, some trails, but not too many, usually\u2026 Then get the program to use commercial aircraft (the most economical solution available versus military transport types) to do the work so it blends in with everything else up there, and then share the wealth that results from the program. The Military Industrial Complex makes a mint with all the planes, satellites, computers and esoteric technology perfected upon deployment. Those in the \u201cknow\u201d get to play in the energy, food &amp; agricultural, insurance, re-insurance and commodities futures markets making billion upon billions of dollars with foreknowledge of what is to come weather and climate wise.&nbsp;</p>\n<p>War, weather warfare is a racket and the population is told that we are experiencing \u201cclimate change\u201d when&nbsp;really it is \u201ceco-terrorism\u201d as Former Defense Secretary William Cohen termed these activities back in 1996, some twenty years ago!&nbsp;</p>\n<p><a href=\"https://en.wikiquote.org/wiki/William_S._Cohen\">The full quote:</a><em> \"...some scientists in their laboratories trying to devise certain types of pathogens that would be ethnic specific so that they could just eliminate certain ethnic groups and races; and others are designing some sort of engineering, some sort of insects that can destroy specific crops. Others are engaging even in an eco-type of terrorism whereby they can alter the climate, set off earthquakes, volcanoes remotely through the use of electromagnetic waves.</em></p>\n<p><em>So there are plenty of ingenious minds out there that are at work finding ways in which they can wreak terror upon other nations. It's real, and that's the reason why we have to intensify our efforts, and that's why this is so important.</em></p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/cohen3.gif\" width=\"165\" height=\"169\"/></p>\n<p>Another point to consider: With GLOBAL geoengineering now four decades active what is the true trend-line of the planet\u2019s surface temperature? I contend that this number has been totally lost and smeared by these activities. No one outside of those involved specifically with these activities knows the true state of Planet Earth\u2019s climate. It has been hijacked.. for some reason that is apparently worthy of this massive, expensive and covert operation.</p>\n<p>What we need is an Edward Snowden to emerge from the geoengineering programs to come forward and share the truth with humanity so we can make intelligent, informed and sane decisions about what to do to prepare for the coming decades. Is it an Ice Age as the <a href=\"https://astronomynow.com/2015/07/17/diminishing-solar-activity-may-bring-new-ice-age-by-2030/\">Sun is screaming</a> or is it a middling along like the past 20 years with little change in the surface temperatures or a resumption of the warming like we experienced during the first half of the 20th Century?&nbsp;</p>\n<p>Which is it?&nbsp;</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/article-2055191-0e974b4300000578-216_468x4731.jpg\" width=\"468\" height=\"473\"/></p>\n<p>We deserve to know, sooner than later.</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/gisp-last-10000-new.png\" width=\"829\" height=\"493\"/></p>\n<p>This global weather and climate engineering program WILL END. My question becomes, \"What happens then?\" &nbsp;This issue is the most important one facing all of us today. Not tomorrow or next year, but today.</p>\n<p>Keep looking up,</p>\n<p>@scott.stevens</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/Trail-finger.jpg\" width=\"2048\" height=\"1536\"/></p>\n</html>",
+    "body_length": 11277,
+    "cashout_time": "2016-09-25T23:27:12",
+    "category": "geoengineering",
+    "children": 23,
+    "created": "2016-08-25T22:55:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"geoengineering\",\"chemtrails\",\"\"],\"users\":[\"scott.stevens\"],\"image\":[\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/DSC08614.jpg\",\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/Scientists-Just-Say-No-to-1.jpg\",\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/Chemtrails-not-real-say-atmospheric-science-experts-ScienceDaily-2016-08-24-21-53-51.jpg\",\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/sunset_arrowed.jpg\",\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/DSC_0012.jpg\",\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/EL-831-Marion-1976.bmp\",\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/cohen3.gif\",\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/article-2055191-0e974b4300000578-216_468x4731.jpg\",\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/gisp-last-10000-new.png\",\"http:\\/\\/weatherwars.info\\/wp-content\\/uploads\\/2016\\/08\\/Trail-finger.jpg\"],\"links\":[\"http:\\/\\/iopscience.iop.org\\/article\\/10.1088\\/1748-9326\\/11\\/8\\/084011\\/pdf\",\"http:\\/\\/www.nytimes.com\\/2016\\/08\\/16\\/science\\/scientists-just-say-no-to-chemtrails-conspiracy-theory.html?partner=msft_msn&_r=3\",\"https:\\/\\/www.sciencedaily.com\\/releases\\/2016\\/08\\/160812103718.htm\",\"https:\\/\\/youtu.be\\/Yi4YFzyeEZ0\",\"https:\\/\\/youtu.be\\/LXsPhe9zWoA?t=8m18s\",\"https:\\/\\/steemit.com\\/geo-engineering\\/@scott.stevens\\/wouldn-t-it-or-would-it-be-great-if-we-could-control-the-weather\",\"https:\\/\\/youtu.be\\/WVhbdhT9xoY\",\"https:\\/\\/en.wikiquote.org\\/wiki\\/William_S._Cohen\",\"https:\\/\\/astronomynow.com\\/2015\\/07\\/17\\/diminishing-solar-activity-may-bring-new-ice-age-by-2030\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T22:55:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 61303182921958,
+    "parent_author": "",
+    "parent_permlink": "geoengineering",
+    "pending_payout_value": "413.811 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "what-happens-when-it-ends",
+    "post_id": 748688,
+    "promoted": "119.000 HBD",
+    "replies": [],
+    "root_title": "What Happens When It Ends?",
+    "title": "What Happens When It Ends?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/geoengineering/@scott.stevens/what-happens-when-it-ends"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "12795811535287",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372316824459",
+        "voter": "berkah"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "143470451897",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898984807435",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2479522245",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3010199699",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557883458",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "471708497687",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43227563325",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1328824820",
+        "voter": "mini"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "4508768018730",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170935941",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34042532834",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748581030023",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258887406145",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "498208362",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773801809",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823317276751",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302719926634",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230521375",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411375686313",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26495887427",
+        "voter": "blackjincrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74201402070",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34871878822",
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431720661",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "935697420",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37511548124",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10314861252",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22856402506",
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13346309453",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1138049559",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129179648054",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "80804852397",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302683064",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198782719642",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7568897676",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124699737174",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246771748723",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69581481372",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12190374285",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143380752469",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22868729155",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614055241",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192822819405",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35158481984",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10952411440",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13738300392",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4088366345",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365818230",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13209938808",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841259695",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7093464346",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "11024739057",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268956346",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10075803326",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19988784545",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4933785537",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3865257981",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "402412698850",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76821186326",
+        "voter": "twinner"
+      },
+      {
+        "percent": "2600",
+        "reputation": 0,
+        "rshares": "8809932426",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "96034818561",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3834585662",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "19814357142",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "45623458403",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "1327717265",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63750303",
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54355927",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14055782855",
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3569023089",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1227614779",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "235297436",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6857054058",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71823713867",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094162",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11509623311",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54497132206",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12067433608",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384999327",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2311621568",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53351751",
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84510824",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23711007445",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50196187",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4120769636",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1301309204",
+        "voter": "robotev"
+      }
+    ],
+    "author": "james-show",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Trading Steem is not hard. In that part steem(it) development team has done a great job. Compared to the establishment Steem is a huge step in the right direction of fairness and openness.\n# How the JS index works\nJS measures the net result of the buyers and sellers actions.\nEveryone buying Steem (or anything else) in any financial instruments market does it to profit. Interesting distinction is however if those buyers or seller do expect their profits short term or long term.\n\n## How short term Steem \u201cspeculators\u201d act?\nThey buy steem and expect return in a matter of days, weeks, months.\n## How long term Steem \u201cinvestors\u201d act?\nThey buy steem and expect return in a matter of years. They buy steem, and in this particular high devaluation environment that Steem is quickly power up .\n\nMeasuring the net result from the Steem \u201cspeculators\u201d and  Steem \u201cinvestors\u201d buying, compared to Steem owners selling can give us the ultimate tool to measure the future price movement of Steem (in  the short to medium term).\n\n# And it turns out to be incredible easy\nAll of the described above is nothing more than the \u2026 increase/decrease of the total Steem held by exchanges! (with a few caveats I will keep  proprietary for now)\n\n# How this matters\u2026 give me a practice example.\nOK here it is.\nSteem hit a local low of 0.001224 btc/steem on 08/29 4:30 UTC. Since then the price is generally higher. Should you buy (out of FOMO) or wait for the price to come down to even lower levels sometime in the near future.\nIf JS index has fallen down since  08/29 (as it has indeed) this means that all the buying (price increase) was by short time speculators. So, if no news justifie their buying exuberance, you can expect soon those speculative buyers to give up/cash out of their short term position and the price to continue following the long term trend of the JS index itself.\n\n# Initial JS index\nThe index is set at __1000.000__ as for 2016-07-26 12:56:12 UTC\n\n# Current  JS index\nAs of 2016-08-31 03:03 (UTC) the value is: __553.650__\n#\n[EDIT]\nBelow is a chart of JS Index and Steem price for July 27th to Aug 30th NB some days have more than one data point.\n#\n\n![Imgur](http://i.imgur.com/Ukazg7G.png)\n#\n#steemit #trading #finance #steem #money",
+    "body_length": 2239,
+    "cashout_time": "2016-10-01T17:41:42",
+    "category": "steemit",
+    "children": 18,
+    "created": "2016-08-31T04:11:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"trading\",\"finance\",\"steem\",\"money\"],\"image\":[\"http:\\/\\/i.imgur.com\\/Ukazg7G.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T15:07:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 24273347100904,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "68.637 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-only-index-you-should-know-to-successfully-buy-and-sell-steem-introducing-the-js-index",
+    "post_id": 808898,
+    "promoted": "110.001 HBD",
+    "replies": [],
+    "root_title": "The only index you should know to successfully buy and sell Steem \u2013 Introducing the JS Index!",
+    "title": "The only index you should know to successfully buy and sell Steem \u2013 Introducing the JS Index!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@james-show/the-only-index-you-should-know-to-successfully-buy-and-sell-steem-introducing-the-js-index"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7376349250899",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347165551187",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "44274584365947",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104392312",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3769119494",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684036241",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54908039872",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663427874",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213797798",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2179781689511",
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73521122782",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425629339547",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2705241943122",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1131791016752",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "625020571",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973177874",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "830121840154",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288359524",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392749106258",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73536772482",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18718327214",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437226882",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4895173431",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26804675937",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2024361326",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25288596864",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "9800",
+        "reputation": 0,
+        "rshares": "20099547557",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147573839789",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1412747751",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260051658583",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13566797440",
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341225233",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13354424579",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1200786297",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31290973763",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184732571490",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188002796893",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6741772425",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15700155766",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497410679",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26357168295",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207235087440",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328681996462",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55888461363",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254380477",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276540283",
+        "voter": "eugeney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237567730",
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "427726403899",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10242467766",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31087345031",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63385860760",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515128572920",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "451567923",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501733856",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464367728",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10267745462",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14937577469",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1081057545",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4587496780",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222795356",
+        "voter": "pet1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451642041",
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3541613089",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144302620",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24462414835",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79393522553",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42141046380",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89569037",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13235028002",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3403721399",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172170120707",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7072264218",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15576505282",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23812000153",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48416629676",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14672233176",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614745323",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29931116488",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14665762430",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512358622",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467497332",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921642016",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "39800990412",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7347175730",
+        "voter": "taker"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "3321239318",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014130741336",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21154154829",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "488479148",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23411380876",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23922770445",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23931515943",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36590374553",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232181512613",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8684796827",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "2766736973",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51300024326",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23927381371",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23925693365",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23923074313",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23919971478",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1377661260",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23916289883",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23914622519",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117212658457",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60010840",
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1368553119",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4012799516",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501320787",
+        "voter": "ricardoguthrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61677203",
+        "voter": "diversesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1625904484",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8086511647",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58977371",
+        "voter": "jers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3195802403",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50027573",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84334739073",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "530776888",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58964015",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23908415458",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2976871874",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7674971846",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "581734461",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232089407",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118894339",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042033097",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "884230796",
+        "voter": "pollux.one"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53608244",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108931030653",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "647204061",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3068876882",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23554872251",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44243439919",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-145412269",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85242648206",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56115613811",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44213782610",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125198095",
+        "voter": "emeline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1379855528",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100628450",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5175145781",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3134124136",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50516543",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92968218",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "1514029449",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59746972",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "521874035",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78462337",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130634157",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139650528",
+        "voter": "danie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155069498",
+        "voter": "silver-lyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148768653",
+        "voter": "rnrador"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136350043",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154135510",
+        "voter": "vlfl"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>[![SteemyLogoHeadOnlyLarge00009.md.png](https://www.steemimg.com/images/2016/09/09/SteemyLogoHeadOnlyLarge00009.md.png)](https://www.steemimg.com/image/uGfn3)</center>\n\n# BETA AVAILABLE - Steemy for iOS and Android\n(*special shout out to @xeroc for his guiding hand during on-device tx signing implementation)\n\nWe're happy to announce that the first public beta of [Steemy](https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem) is available for iOS and Android!  If you'd like to participate in the beta, simply send an email to steemapp@gmail.com and which device (iOS or Android) so we can send you a beta invite.  We're utilizing hockeyapp.net (microsoft) to manage the beta. \n\n### Some important things about the beta:\n- *Use at your own risk - **period**.*  \n- Don't login with an account that has your life savings in STEEM. Why? Because this is a beta product!\n- Don't login with your password if you don't feel comfortable - you can still use the app without logging in. Key import options will be available in a future version.\n- Images you upload from your mobile device are publicly available to the world. \n- Image hosting providers could change during the beta and your images could be wiped out permanently without notice\n- We receive crash reports, analytics and other useful debugging information from HockeyApp\n- Once signed up, you will receive notifications to download all future versions of the beta\n- Are there known issues? Yup! Expect frequent beta versions with no announcement.\n- Hockey provides features to send us feedback directly. There's a 100% chance we'll get your feedback if you submit through hockey app or email us steemapp@gmail.com.\n\n# How You Can Help\nWe are developing at a feverishly-fast pace...as fast as two guys can who have day jobs and families to support.  If we could, we'd say adios to the day job and focus 100% on Steemy (that's a dream I have weekly).   That being said, the reality is that we are building this with our own time, energy and spare funds.   That makes us no less passionate or driven, but imposes real-world constraints on development.\n\nYou can help us by:\n1) Participating in the beta\n2) Giving us constructive feedback on crashes, design, and other app-specifics\n3) Of course, financial - any funds we receive via upvoting go directly to supporting our monthly server costs, red bull addiction, etc...\n\n# How to sign up for the beta\n- Email us at steemapp@gmail.com and tell us which device (iOS or Android) you want an invite for\n- Or, if you don't care who sees your email address, post a comment below and specify iOS or Android (or both)\n\n# What is Steemy?\n\n[Learn more about Steemy Here](https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem)",
+    "body_length": 2814,
+    "cashout_time": "2016-10-10T18:10:27",
+    "category": "steemit",
+    "children": 12,
+    "created": "2016-09-09T16:36:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemapp\",\"steemy\",\"steemmobile\"],\"users\":[\"xeroc\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/09\\/SteemyLogoHeadOnlyLarge00009.md.png\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/uGfn3\",\"https:\\/\\/steemit.com\\/steemit\\/@steemapp\\/introducing-steemy-fully-native-ios-android-apps-for-steem\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T17:25:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 59917201858253,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "334.065 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "ann-steemy-mobile-app-beta-available-for-ios-android",
+    "post_id": 903475,
+    "promoted": "110.000 HBD",
+    "replies": [],
+    "root_title": "[ANN] Steemy Mobile App - Beta Available for iOS/Android",
+    "title": "[ANN] Steemy Mobile App - Beta Available for iOS/Android",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemapp/ann-steemy-mobile-app-beta-available-for-ios-android"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "1142978962513",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "11448420090513",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364395189896",
+        "voter": "berkah"
+      },
+      {
+        "percent": "4500",
+        "reputation": 0,
+        "rshares": "9508709074875",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "123044549114",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099089014",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762354107",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697302029",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6014767671433",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53983143453",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660870860",
+        "voter": "mini"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "3922021405386",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213660123",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622713062",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967170547",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289369412128",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288138648",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84447696466",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85956249019",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3904328205",
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8610771104",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8927741511",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38919363220",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1017842258",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1430747209",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45074054027",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14786864288",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37426402607",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10554741746",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12533000082",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48667206048",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1161275060",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129179648054",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1487619435556",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "76156167058",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256959483430",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1263791020",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24747939566",
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3296909724",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4441675640",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58507331115",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254327145",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31283265272",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "466928201309",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29863829277",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15304296909",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147174247311",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22929242435",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531668806",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464490860",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10491849534",
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "541784069",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2180586785",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2084249195",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1853818133",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79019592212",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12446268254",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1432554908",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381474126",
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6226552994",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139166640",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3217970214",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97881305",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4192907964",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67031181038",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88204270",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365818230",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94953554",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17983644771",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216437643539",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15964964625",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6960449261",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411306611",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8137310213",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1304825846",
+        "voter": "ace108"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10234168763",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32596890764",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268956346",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5595881940",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2717408979",
+        "voter": "tjpezlo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110407780",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5183764318",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8747695392",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "879267346",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27162065096",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5695919651",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35670632627",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2131121566",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37382286273",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "185560269563",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "7536188063",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "89223422536",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3354188843",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "18393034294",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "910840493",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7634458988",
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "558857723",
+        "voter": "romancs"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "21037601895",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52521013",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88063513040",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435119516",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "1215888442",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10314553269",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30784704904",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205842324",
+        "voter": "lordemau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "451655907",
+        "voter": "galamirissa"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3083649499",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1390975245",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62302798",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "205871498",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20118440636",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6518572686",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11188033553",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12107786940",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57549944",
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11636892671",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73686270",
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6017454300",
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85421073",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3885757245",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56694448",
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247142134",
+        "voter": "wizwom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57706367",
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11826084936",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "581299661",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2146314155",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24235309770",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54576373",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147854463",
+        "voter": "inwoxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331028196",
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66598367",
+        "voter": "paketkita.net"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50903939",
+        "voter": "augmentalized"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88328584",
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245473",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50088578",
+        "voter": "sovpara"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>Continuing on from the previous tutorial style I though it would be useful to cover how an image evolves from the original RAW file to final finished and corrected file.</p>\n<h1>TLDR: The Finished Image VS the Original Side by Side</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_final_desaturate_crop1of1copy_small35b3a.jpg\" width=\"350\" height=\"525\"/><img src=\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_original1of1copy_small65a05.jpg\" width=\"350\" height=\"525\"/></p>\n<p><br></p>\n<p>The Final image is on the left and the original image is on the right. &nbsp;You can also see a large version of the final image at the bottom of the post.</p>\n<p>The original image is already pretty good and only needs very minor corrections for blemishes, colour balance etc. - using the right kind of lighting and lenses helps with this - as well as the model having good skin and makeup. &nbsp;</p>\n<p>The equipment used was my Nikon D800 camera with Nikon 85mm/1.8 lens shooting wide open.</p>\n<p>The model here is Gabriella Kennedy. She was backlit using the window behind her and a reflector held in front for front lighting and highlights in the eyes.</p>\n<p><br></p>\n<h1>Basic Skin Retouching in LR and Photoshop</h1>\n<p>I have used the spot removal tool in Lightroom to remove some minor blemishes which leaves me with the image below. &nbsp;I have described use of this in more detail in my <a href=\"https://steemit.com/photography/@thecryptofiend/quick-portrait-retouching-in-lightroom-tutorial\">previous tutorial</a>.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.02c2a5b.png\" width=\"403\" height=\"600\"/></p>\n<p>Basic skin retouching to remove blemishes in Photoshop.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.13d51a2.png\" width=\"604\" height=\"494\"/></p>\n<p>Larger version to show this.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.31730aa.png\" width=\"415\" height=\"600\"/></p>\n<p>The difference is subtle but I don't want to go too far and remove too much skin detail. &nbsp;I'm just using the spot healing brush tool as detailed in <a href=\"https://steemit.com/photography/@thecryptofiend/how-to-fix-damaged-photos-in-photoshop-tutorial-with-example-image\">my previous photo repair tutorial</a>. &nbsp;This photo is already pretty blemish free so doesn't need anything more advanced.</p>\n<h1>Temperature Adjustment</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.4780851.png\" width=\"627\" height=\"510\"/></p>\n<p>Detail to show the difference. &nbsp;The colour seems off. &nbsp;So I'm going to do a colour balance adjustment here.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3017.34.34ee0e5.png\" width=\"658\" height=\"592\"/></p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.06.448f1bc.png\" width=\"402\" height=\"600\"/></p>\n<p><br></p>\n<p>This is an improvement but it's not perfect. &nbsp;I might do more fine adjustment in Lightroom. &nbsp;</p>\n<h1>Background Fix</h1>\n<p>I also want to remove the window bar behind her. &nbsp;So on new layer (Cmd/Ctrl+Shift+N). &nbsp;I use the clone stamp tool to copy the background to the right over to bar. &nbsp;The clone stamp tool looks exactly like a stamp and is just below the healing brush. &nbsp;It directly clones an area without any intelligent modifications.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.06.580da7b.png\" width=\"404\" height=\"600\"/></p>\n<p>So the bar is now gone.</p>\n<p><br></p>\n<h1>Eye Veins</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.07.2447c66.png\" width=\"800\" height=\"582\"/></p>\n<p>OK I might do some very subtle work on the eye veins. &nbsp;Again I will create a new layer (Cmd/Ctrl+Shift+N) and zoom in and carefully use the healing brush to erase the veins.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.09.1331e69.png\" width=\"800\" height=\"412\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.12.32785f6.png\" width=\"800\" height=\"591\"/></p>\n<p>This is to show the difference to one of the eyes. &nbsp;This is a bit too much so I will enlarge the image and reduce the opacity of this layer to 50%.</p>\n<p>Here is the full size image. &nbsp;This looks about right.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.26.1667b29.png\" width=\"402\" height=\"600\"/></p>\n<p><br></p>\n<h1>Final Adjustments in Lightroom</h1>\n<p>I'll save this and open it up in Lightroom for final adjustments. Just before saving I couldn't resist doing another colour balance change but it is really unnecessary as I will fix the colours in Lightroom.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.40.26ef4e2.png\" width=\"800\" height=\"450\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3017.44.2804107.png\" width=\"249\" height=\"598\"/></p>\n<p>I have basically adjusted the exposure very slightly to +0.10 -</p>\n<p>I have also tried auto temperature which gave a more balanced result but the colours didn't look right to me. &nbsp;It set the Blue/Yellow slider to +13, so as a compromise I set it half way to +6 which looked better to my eye.</p>\n<p>I also reduced the saturation by -11 as it seemed a bit strong to me. &nbsp;The image is essentially finished apart from cropping.</p>\n<p><br></p>\n<h1>Final Image With and Without Cropping</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_final_desaturate1of1a10fd.jpg\" width=\"800\" height=\"1199\"/></p>\n<p>Uncropped</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_final_desaturate_crop1of16fa86.jpg\" width=\"800\" height=\"1199\"/></p>\n<p>Cropped. &nbsp;The difference is very subtle but I think the crop emphasises the eyes and face more.</p>\n<p><br></p>\n<h1>THE END</h1>\n<p>I hope you found this useful. &nbsp;I've tried to keep it short and to the point.</p>\n<p><em>You can see more of my work @thecryptofiend - hope you enjoy.</em></p>\n<p><br></p>\n<p><em>(Verification for me here: </em><a href=\"http://www.aapicture.com/about-me\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n</html>",
+    "body_length": 6459,
+    "cashout_time": "2016-10-01T03:05:03",
+    "category": "photography",
+    "children": 43,
+    "created": "2016-08-30T17:37:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"photo\",\"art\",\"portrait\",\"tutorial\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Arif_Akhtar_Gabby_EOAI_01_final_desaturate_crop1of1copy_small35b3a.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Arif_Akhtar_Gabby_EOAI_01_original1of1copy_small65a05.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.05.02c2a5b.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.05.13d51a2.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.05.31730aa.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.05.4780851.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3017.34.34ee0e5.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.06.448f1bc.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.06.580da7b.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.07.2447c66.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.09.1331e69.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.12.32785f6.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.26.1667b29.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3016.40.26ef4e2.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Screenshot2016-08-3017.44.2804107.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Arif_Akhtar_Gabby_EOAI_01_final_desaturate1of1a10fd.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Arif_Akhtar_Gabby_EOAI_01_final_desaturate_crop1of16fa86.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/photography\\/@thecryptofiend\\/quick-portrait-retouching-in-lightroom-tutorial\",\"https:\\/\\/steemit.com\\/photography\\/@thecryptofiend\\/how-to-fix-damaged-photos-in-photoshop-tutorial-with-example-image\",\"http:\\/\\/www.aapicture.com\\/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T17:37:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 37254943686785,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "149.746 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "gabriella-evolution-of-an-image-from-camera-to-photoshop",
+    "post_id": 803246,
+    "promoted": "105.000 HBD",
+    "replies": [],
+    "root_title": "Gabriella - Evolution of an Image from Camera to Photoshop",
+    "title": "Gabriella - Evolution of an Image from Camera to Photoshop",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/gabriella-evolution-of-an-image-from-camera-to-photoshop"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7495010337332",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2523904177403",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9252647153781",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1296112976792",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4784277362495",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2482945943",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3014584151",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552785158",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43799327657",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330487660",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171031999",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1885285270301",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419563659471",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416354552576",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1351708732",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "855790498516",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2055704979",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467134800208",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256491273716",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28439361652",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10784680535",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499954027",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "778419980",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230675142",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14477872115",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1742086972",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98402672237",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419570142706",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8004709205",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "522816057726",
+        "voter": "eeks"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1343859847",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40554406544",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12536445913",
+        "voter": "richman"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "10739891013",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401475391",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65052908305",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "573454674209",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1069602739",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2422856546",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1771719538",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11897881050",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418467024",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136026463310",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19580448502",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15761970927",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3092266644",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "793789219",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187723859372",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13009403929",
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15684774188",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487811010591",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22486397242",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17202081611",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1305495845",
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283436852",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52215058764",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52069214000",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3232927263",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119718774298",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36129460943",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14143846717",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24509325792",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6789406154",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "695682329",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27459903552",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714059708",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3963157928",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161602864875",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14447261829",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8114081577",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1580120581",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55667692",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "11488203457",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1082151932",
+        "voter": "ellemarieisme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10768254953",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15506020391",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3096849833",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "434137550",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "119746601",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68759547206",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43237680067",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43466091162",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1815385960",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5555205600",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1814209936",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4166810553",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3127668486",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2671487906",
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3409600765",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63844065713",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32751644582",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8247953463",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3179675687",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6533428200",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3910363428",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24136839653",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4998962120",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102459876",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8138183176",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150576827786",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416307493",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38531566163",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1746700552",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264090116",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264485548",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152908394",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153771698",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87650457",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4554249461",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "18898704244",
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15206306963",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20673496598",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12832415845",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614612826",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "423540368",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1595576405",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226906656",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79374525",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "561340906",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31069067075",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27617985016",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "400",
+        "reputation": 0,
+        "rshares": "231740791",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6485983206",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6811091902",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3769304934",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202863662",
+        "voter": "tingaling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24505337345",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1916586706",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13830709571",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6072529445",
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2398018957",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64812629",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3622022384",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4077073558",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12939891296",
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8452120116",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277301564",
+        "voter": "riosparada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18325704376",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150794650",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72969875473",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5526973277",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646479152",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "274399247",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69952247",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86508262746",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78765183",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4065065477",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1552653428",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58555241",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119774742",
+        "voter": "boatman"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6433728323",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145045787",
+        "voter": "onlyvoluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62634430",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747928052",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1682814791",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "874797186",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69572705",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2547562690",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75779499",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3251697600",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57468995",
+        "voter": "azz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2333445938",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57040828",
+        "voter": "jag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181998576",
+        "voter": "greatness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4328069447",
+        "voter": "dangis"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "765388461",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "753051714",
+        "voter": "rebelmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54460450",
+        "voter": "cahuillan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257788197",
+        "voter": "reaction"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "5964784161",
+        "voter": "betamusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "858642876",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56897224",
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9646100740",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143795526758",
+        "voter": "doudou252666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60248566",
+        "voter": "frankcorvus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3265048133",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70719506",
+        "voter": "movietrailers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334136065",
+        "voter": "bones261"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "7618989830",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "608266930",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860146710",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5309916699",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61539766",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52243230",
+        "voter": "statsbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236614",
+        "voter": "newsbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51691783",
+        "voter": "crashoverride"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51675293",
+        "voter": "cartman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50944810",
+        "voter": "noriron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50540827",
+        "voter": "amstel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53927071",
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50376035",
+        "voter": "aries"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50363747",
+        "voter": "fulldisclosure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3500973452",
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7743755308",
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55031763",
+        "voter": "dickbutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82494502",
+        "voter": "peeweeherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82358254",
+        "voter": "cowboycurtis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82338409",
+        "voter": "jambii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164507026",
+        "voter": "coolcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164417185",
+        "voter": "opall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164299492",
+        "voter": "chair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164168483",
+        "voter": "conky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163289940",
+        "voter": "dademurphy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159730645",
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159710416",
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162484741",
+        "voter": "chart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162407088",
+        "voter": "mrssteve"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152824998",
+        "voter": "michaelstobiersk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162322644",
+        "voter": "towelie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161855386",
+        "voter": "philipjfry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158529766",
+        "voter": "shadowcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158523226",
+        "voter": "shadowproject"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161380845",
+        "voter": "mrhanky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161289448",
+        "voter": "popcornmachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160836235",
+        "voter": "wilburtsmythe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160470353",
+        "voter": "bitrx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156827319",
+        "voter": "sledgehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144014259",
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127768558",
+        "voter": "gamer00"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "North Korea is a perfect example on what happens to a society when strong censorship is implemented. The BigBrother censorship, the type of censorship that dictates what you are supposed to think and feel about jewish people, black people, asian people, white people, men, women, porn, Islam, what to eat and what not to eat, vaccines, history, words, music, libraries, Barbara Streisand, Terrorism, Murder, Abortion, Adoption, Foster-Care, Right & Wrong Education - the list is endless - and Now Youtube is implementing it as well, so it is time to plan the goodbye-party.\n\n<center>http://i.imgur.com/ERDcCe5.png</center>\n\nFinding a good alternative for youtube has been talked about among youtube-creators since it was bought by Google and completely changed into whatever you want to call it today, so I was happy to be introduced to the LBRY community a while back, they had this idea that video-hosting would be a good idea but failed at their initial business-plan which was Pay Per View, as we all should know by now - Pay Per View is a really hard market to conquer, and to be completely honest - I was against the model, because I don\u00b4t believe in PPV as something there is a demand for, so I went and told them my mind in their slack-group and left to focus on something else.\n\nSo when I just now heard that LBRY is actually going to develop a user-controlled de-centralized Youtube, of course I jumped in my chair because I believe there is a HUGE demand for a youtube without censorship. A youtube that is not controlled by studio-interests and Dictated what to show and not to show in the traffic-machine that suggest videos for users.\n\nIn the world today, documentary-makers who dedicate their life and integrity to producing non-political factual documentaries about topics such as the true Origin of the Jewish people vs the true Origin of todays Jewish people or how many of them actually was killed vs how many that has been documented to be killed during world war 2 are flagged as anti-Semites, right wing, nazis or racist - Same thing if a non political dedicated factual documentary creator makes a video about topics like: \"9/11 was an inside job\" - automatically flagged as a conspiracy theorist with a thin-foil-hat and forever sentenced to the weird side of youtube next to 300 other videos that suggest that 9/11 was not an inside job and that in fact everything the government say is true and beautiful - censorship.\n\n<h3>Big Brother hates mathematics, he absolutely hates it!</h3>\n\nIt has gone way too far now, what you can say and not say - what is allowed and what is not allowed to ask questions about. And let\u00b4s face it - Big Brother hates mathematics, if he could - he would ban it in schools worldwide and make sure nobody could add up or subtract because it is not in his interest that we - the people - learn.\n\nAnd obviously we are not alone wanting to be able to publish content without the fear of being censored by powerful authorities who give delegations to a hoard of censorship-bureaucrats  world wide who sit and flag all kinds of content their special interest does not agree with and make sure that the people walk in line the way they want people to walk in line.\n\n<h1>If you actually really saw a UFO, had your friend take a picture of it with you and the alien next to it - do you think anyone would see it? or believe it?</h1>\n\nOne of the basic censorships they do is to laugh and label everyone who has seen anything that can question the power to be - for example a stronger power that maybe dwell not so far away from us.\n\nJust think about it - You and your friends walk down the road, and you meet a big alien with a space-ship that use complex technology that does not exist here on earth - he tells you that he is able to cause all kinds of cool effects on the earth with his knowledge and technology - and since he is in a good mood he shows you a few examples of how advanced his civilisation is, and also tells you that they are many more then those who live on earth. Imagine if this really happen to you  and your friends - you even documented it on two cameras and even sound-recorded the whole event, gave the alien a hug - waved goodbye - high-fived your friends and started uploading content to facebook, youtube, instagram, soundcloud and in excitement started blogging about it - would anyone really believe you?\n\n<h1>All we want to do is to talk about what we are not allowed to talk about, because that is where the skeletons in the closet are hidden.</h1>\n\nSo, after the <a href=\"http://observer.com/2016/09/youtube-phillyd-eric-schiffer/\"> recent youtube controversy about the new censorship-rules</a>  a lot of people are sad and depressed, because Youtube has reduced so many of us into clowns with no circus already, so when  <a href=\"https://lbry.io/press/500k-fundraising-round-pillar-vc.md\">LBRY Announced $500K Raised to Build the First Community-Controlled YouTube Alternative</a> I feel very optimistic again about the future, maybe the truth, the whole truth and nothing but the truth - once again can flourish on this earth and the institutions of liars shamefully sent home packing as the old world truly is soaking in the blood of corruption, the new world which we are creating as communities should always embrace free speech and freedom of information and protect those rights. Free speech and freedom of information is not a ticket to become an asshole or a full time troll which in every case of course is the other side of the debate. \n\nBig Brother Censorship must end - and the way to end it is by Little Brother(s) start telling the whole world every single thing they know about Big Brother, expose all those politicians who have ripped off the people and supported special interests and replace them with people who have not been and will not allow themselves to be corrupted by greed or fear. \n\nAs we all know, good men have died for the rights to free speech, others has died for bringing true stories out in public about knowledge that is forbidden by anyone to know anything about.\n\nWe as human beings and technocrats are the ones who can change the world, and we must change the world - there are too many numbers in too many affairs that does not add up, we know that their game is rigged and it is time for revolution. \n\nThe one right most people do know they have, is the right to remain silent - everything they say can and will be used against you in the court of law. That is the sad majority of the world now unfortunately. The silent partners.\n\nI love you all - Freedom Fighters, Keyboard Warriors - Truthers!! Don\u00b4t give up just yet!\n\n---\n<center><a href=\"http://steemspeak.com/\"><img src=\"http://i.imgur.com/gzDNmHq.png\"></a></center>\n---",
+    "body_length": 6748,
+    "cashout_time": "2016-10-09T02:21:48",
+    "category": "anarchy",
+    "children": 29,
+    "created": "2016-09-08T00:00:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"anarchy\",\"censorship\",\"youtube\",\"media\",\"bigbrother\"],\"image\":[\"http:\\/\\/i.imgur.com\\/ERDcCe5.png\",\"http:\\/\\/i.imgur.com\\/gzDNmHq.png\"],\"links\":[\"http:\\/\\/observer.com\\/2016\\/09\\/youtube-phillyd-eric-schiffer\\/\",\"https:\\/\\/lbry.io\\/press\\/500k-fundraising-round-pillar-vc.md\",\"http:\\/\\/steemspeak.com\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T00:00:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34259010824854,
+    "parent_author": "",
+    "parent_permlink": "anarchy",
+    "pending_payout_value": "119.325 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "time-to-talk-about-our-tube-the-decentralization-of-youtube",
+    "post_id": 887468,
+    "promoted": "101.573 HBD",
+    "replies": [],
+    "root_title": "Time to talk about - \"Our Tube\" - The decentralization of YouTube",
+    "title": "Time to talk about - \"Our Tube\" - The decentralization of YouTube",
+    "total_payout_value": "0.000 HBD",
+    "url": "/anarchy/@fyrstikken/time-to-talk-about-our-tube-the-decentralization-of-youtube"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28337481495132",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "605054202636",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375797501706",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6899657717718",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5875425725245",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2103735705580",
+        "voter": "hr1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "197350870235",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4823041872577",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2482489693",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1689744353709",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013973227",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552727348",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43722960528",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330267679",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171024455",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200631444608",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1423891958",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "876459346701",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118179862461",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8846955965",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2152310689",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7948252496",
+        "voter": "supergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499903743",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "775810627",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230665087",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24794631524",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16251020055",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19597409080",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85526339302",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10083460529",
+        "voter": "makishart"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "92433605489",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74987247876",
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75795031193",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "10071098316",
+        "voter": "fkn"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": "487271558",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": "5369463575",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28340759824",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "4700",
+        "reputation": 0,
+        "rshares": "49448005933",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "13247495874",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "4519322665",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144465949299",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26516736386",
+        "voter": "tmendieta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490443153",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67847295588",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1069348096",
+        "voter": "murh"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "9544167563",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41167926762",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4451341567",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": "380437107",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258363528866",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377834429632",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "33524923089",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15132186921",
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51960349384",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208799779463",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4477345730",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13353689520",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33785196884",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1490503275679",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43185482362",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5339578403",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2882668559",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6494753195",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536461338",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39865567060",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4525901650",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50785197295",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "22535574872",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248645032085",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4286578655",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117261767025",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524443148",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4768148761",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "874985559",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120365648521",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792008422388",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "30376512860",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4223912868",
+        "voter": "owdy"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "237022986",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "265901386",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "243759726",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151763700815",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452069359",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1473450451",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90756765",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16453997687",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13294445014",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3758408519",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25328130017",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346983489",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36334866498",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150621438",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11534871172",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235512684",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "448946992",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43462674468",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1815380313",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7443194536",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96640276",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130211659731",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3710606394",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "11106355045",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3175094870",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3353659009",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64027340659",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7620147467",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4245145393",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3143598968",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16426451743",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182764669318",
+        "voter": "jl777"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "8159179596",
+        "voter": "positive"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6111284001",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764587130",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15575907279",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639009474",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24863078932",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1711275100",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2242556592",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "268949193",
+        "voter": "fnait"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "245394332",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149502446",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184489646",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20170588933",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110626149",
+        "voter": "bluebell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5475281216",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122233144003",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70376481208",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7871166550",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60565253",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61700262",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24430920885",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24407155133",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24416426858",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "1735770144",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63747178",
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3199941620",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24412199287",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24410732703",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24408329032",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24405573752",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1656951191",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24402026987",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24400841139",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81338740",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376414529",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19318370958",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86892789274",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12781131185",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232895758",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55022014",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192175071324",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62174144",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58453204",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8867300566",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11751323553",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57914427",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20318867928",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56535984",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71228043",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60730988",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1802712014",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51199976",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11813114611",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56563243",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57391432",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "565879902",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71740798",
+        "voter": "hhcwebmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55393797",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387773",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "626012702821",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5805302022",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11978540048",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55399493",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56575537",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56570509",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387660",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8470010325",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7163167644",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24395131330",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1908971109",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71221451964",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46612959839",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8161550832",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18579446047",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1401285964",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4503423419",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "5800",
+        "reputation": 0,
+        "rshares": "25379964093",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54999739",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52425992",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1970534065",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7834748327",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1572045156",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4679890064",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26082174893",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59542406",
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84026579",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24033874515",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55085378",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6881062319",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53966805",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53613607",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "803386637",
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52171620",
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54362089",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55979441",
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54019345",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54017499",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54977174",
+        "voter": "optimus-prime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1386590598",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56897224",
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52545761",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2941923052",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158636223091",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53331040",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53324520",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53318865",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1841985827",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52988378",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5170755904",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326611087837",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59390432273",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179868865",
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039974",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4453859197",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63407335",
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51838673",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951354892",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354988640",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1881146859",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106836853",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51141851",
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1560287283",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846735133",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7899939563",
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76019801",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157643687",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159918764",
+        "voter": "tanemahuta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155753958",
+        "voter": "mityay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158786091",
+        "voter": "jennane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158642800",
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158057595",
+        "voter": "sdc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161205518",
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161089804",
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160973134",
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160957729",
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160900665",
+        "voter": "digitalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160835930",
+        "voter": "skrillex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157654556",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160789982",
+        "voter": "jack.johnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154109909",
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156821466",
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150483032",
+        "voter": "serikus"
+      }
+    ],
+    "author": "churdtzu",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![jumpingpeoplesteemitanarchyfaba6.jpg](https://www.steemimg.com/images/2016/09/06/jumpingpeoplesteemitanarchyfaba6.jpg)\n\nFor many of us, Steemit has already changed so much - the way we navigate the web, the way we think about money, and for a fortunate committed few, it's even changed their professions. However, the change that I expect from this model goes even deeper. It's possible that Steemit, and descendent technologies, may play a part in creating a voluntary world, a stateless world, in which everyone who takes money from someone, or puts someone in a cage without their consent, or orders such acts, will be seen and treated as a criminal. There are several ways in which Steemit can aid this cause. Let's start with the most important - the conversation.\n\n# It changes the way we talk\n![argument288ba5.jpg](https://www.steemimg.com/images/2016/09/06/argument288ba5.jpg)\n## The problem with voluntaryist argumentation\nMany of you might have noticed, and even been a party to, hard-line conversations about anarchy, in which the voluntaryist proceeds to take the words of the other party, and question them about some perceived inconsistency in their beliefs, attempting to lead them through a Socratic dialogue, in order to bring them to accept the truth - that the other party is wrong - very, very wrong. You also might have noticed (as I eventually noticed, after years of banging my head on walls) that this technique almost never works.\n\nOf course, the reason that it doesn't work, is because people have a need to feel that they're being understood, that their concerns are heard, that their thoughts are valid. In brief, they need to feel like people. If you don't treat someone like a person - unless you're talking to an exceptionally patient person - you're unlikely to receive a personable response.\n## An oasis\nThe comment section on YouTube is a running joke. Facebook discussions descend into dirtslinging, strawmen and threats. You may wade through many racist and sexist comments before you find something that is truly valuable information, and even then it may be tainted with aggression. In contrast, Steemit's comments sections seem like a desert oasis - all but filled with calm discussion, respect, insight, or at the very least, positivity. Surely, this is a place where one can have a constructive conversation about controversial topics.\n## The incentive to be good\nI have noticed over these few short months, the way that Steemit has changed the way that I interact with people, especially online - on Steemit and other social networks. I've found myself a few times, even as I'm about to make a statement which is mildly passive-aggressive, thinking \"Hold on - is this something I would write if my reputation were on the line? If not, maybe I shouldn't write it.\" Even when I'm going to give someone some piercing criticism, which, if presented in the wrong way, may seem a condemnation, I can find ways to demonstrate empathy, such as compliments or other niceties.\n\nIt may sound like an unfortunate description of humanity (or of myself) to say it, but when our bank balances and reputations are on the line in every moment, we can find ways to communicate more kindly, and therefore, more fluidly, with the people we interact with.\n## Commitment and consistency\nIn Cialdini's famous and excellent book, [Influence: The psychology of persuasion](http://amzn.to/2c5z38T) he describes how, when people make a commitment to something, they are more likely to see it as part of their identity, and strive to live up to that identity.\n\nWhen people are kind to each other, respectful, and even open-minded on Steemit, it's not just that they're pretending to be nice. By acting nicer, they become nicer. By acting more open-minded, they become more open-minded.\n## The quality of our ideas\nIf the ideas of voluntaryism are as good as we believe they are, then surely a place like Steemit, where people are strongly encouraged to be respectful, considerate, empathetic and even open-minded, would be an ideal place to discuss them. If it turns out that our ideas are not as good as we think they are, then it gives us the perfect medium to discover something even better. That is beautiful.\n# Tax-free and shameless\n![breakchains10ab9.png](https://www.steemimg.com/images/2016/09/06/breakchains10ab9.png)\nIn many developed countries, taxes are generally seen as legitimate and necessary, and people claim to be proud of paying their taxes - sometimes because they truly believe it, and sometimes because they don't want to face the fact that they have been forced into an elaborate con, from which they have no apparent escape.\u007f\n\nBut what if they did have an escape? What if, instead of being paid as an employee, having their income taxes automatically deducted from their pay, they were paid directly. What if thousands or millions of people were making income, or making a living, this way, and decided to openly flout the tax authority, publicly, knowing that it wouldn't have the resources to pursue any more than a small fraction of the cases?\n\nObviously, that would damage the appearance of legitimacy of the state, and also the perception of omniscience and omnipotence that its proponents tend to ascribe to it.\n# Development of cryptoanarchic solutions\n>\"Unlike the communities traditionally associated with the word 'anarchy', in a crypto-anarchy the government is not temporarily destroyed but permanently forbidden and permanently unnecessary. It\u2019s a community where the threat of violence is impotent because violence is impossible, and violence is impossible because its participants cannot be linked to their true names or physical locations.\"\n> - Wei Dai\n\nWe all know that Steemit/Steem is much more accessible than virtually any other cryptocurrency, being based around a style of platform which more than one billion people are already familiar with. That's pretty cool, and that means that more money will flow into cryptocurrency, meaning more attention, and thus even more development for similar technologies.\n\nMore development in cryptocurrency means more methods to control money, and other forms of information, publicly, privately, or anonymously, without governments being able to do anything about it.\n# Conclusion\nSteemit is an important step, a continuation of the snowball effect of cryptocurrency, leading us to a voluntary, cryptoanarchic future, full of wonders we have not yet imagined, and degrees of freedom as yet unforeseeable. Boldly we take our pens, pads, keyboards and wallets, building a highway to a world where concepts are our language and our tools, but never our weapons, where the purity of ideas is worth fighting for, but never worth fighting with.\n\n---\n\n# About me\n\n[![kurt robinson in the mountains of puebla](https://www.steemimg.com/images/2016/08/26/pictureofmecroppedbdb8d.md.jpg)](https://www.steemimg.com/image/gsqzK)\n\nMy name is Kurt Robinson. I grew up in Australia, but now I live in Guadalajara, Jalisco. I write interesting things about voluntaryism, futurism, science fiction, travelling Latin America, and psychedelics. Remember to press follow so you can stay up to date with all the cool shit I post, and follow our podcast where we talk about crazy ideas for open-minded people, here: @paradise-paradox, and like us on Facebook here - [The Paradise Paradox](https://www.facebook.com/theparadiseparadox/)\n\n# Some other cool posts\n\nHere are some other posts of mine to check out:\n\n[Freedom seekers' song: \"Freedom on the beach (To Acapulco Part 2)\"](https://steemit.com/music/@churdtzu/freedom-seekers-song-freedom-on-the-beach-to-acapulco-part-2)\n\n[Everyone deserves truth; everyone deserves compassion](https://steemit.com/life/@churdtzu/everyone-deserves-truth-everyone-deserves-compassion)\n\n[Impossible! A conversation with a statist about starting a business](https://steemit.com/anarchism/@churdtzu/impossible-a-conversation-with-a-statist-about-starting-a-business)\n\n[Freedom trumps fear: Everything you do is an act of liberty](https://steemit.com/freedom/@churdtzu/freedom-trumps-fear-everything-you-do-is-an-act-of-liberty)",
+    "body_length": 8141,
+    "cashout_time": "2016-10-08T00:37:00",
+    "category": "steemit",
+    "children": 28,
+    "created": "2016-09-06T22:36:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"anarchism\",\"anarchy\",\"bitcoin\",\"blockchain\"],\"users\":[\"paradise-paradox\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/jumpingpeoplesteemitanarchyfaba6.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/argument288ba5.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/breakchains10ab9.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/26\\/pictureofmecroppedbdb8d.md.jpg\"],\"links\":[\"http:\\/\\/amzn.to\\/2c5z38T\",\"https:\\/\\/www.steemimg.com\\/image\\/gsqzK\",\"https:\\/\\/www.facebook.com\\/theparadiseparadox\\/\",\"https:\\/\\/steemit.com\\/music\\/@churdtzu\\/freedom-seekers-song-freedom-on-the-beach-to-acapulco-part-2\",\"https:\\/\\/steemit.com\\/life\\/@churdtzu\\/everyone-deserves-truth-everyone-deserves-compassion\",\"https:\\/\\/steemit.com\\/anarchism\\/@churdtzu\\/impossible-a-conversation-with-a-statist-about-starting-a-business\",\"https:\\/\\/steemit.com\\/freedom\\/@churdtzu\\/freedom-trumps-fear-everything-you-do-is-an-act-of-liberty\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T22:50:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60135241680958,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "311.891 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-will-make-the-world-an-anarchic-voluntary-society",
+    "post_id": 876880,
+    "promoted": "101.100 HBD",
+    "replies": [],
+    "root_title": "Steemit will make the world an anarchic, voluntary society",
+    "title": "Steemit will make the world an anarchic, voluntary society",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@churdtzu/steemit-will-make-the-world-an-anarchic-voluntary-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "636650937593",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2222223261106",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6354361142613",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3100095944",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3763655895",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690429176",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54156746043",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661372715",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213687824",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4512972751283",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "114482134346",
+        "voter": "smooth.witness"
+      },
+      {
+        "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"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96966639395",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432524983",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204696463721",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48813685424",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "86347513299",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54492837940",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320412905",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15188383397",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37017484438",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9003560871",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254384994",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299816166",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503443057",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39260815990",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7734375234",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "12077024248",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6340430376",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7012331246",
+        "voter": "lukmarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3689933012",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "439152462157",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46397054584",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "7646986289",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "102612381504",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3840496066",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1153305624",
+        "voter": "mama-steem"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "21261822926",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "604216404",
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "52782383311",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4437884870",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43344608886",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3574511545",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4827568973",
+        "voter": "melek"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "235453627",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624346748",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72642145",
+        "voter": "discernente"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61202454",
+        "voter": "plotbot2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74117002",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52111731",
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249534502",
+        "voter": "letstalkliberty"
+      }
+    ],
+    "author": "claudiop63",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Diamond_cutter._Amsterdam._2012.jpg/517px-Diamond_cutter._Amsterdam._2012.jpg\" width=\"517\" height=\"480\"/></p>\n<p><a href=\"https://commons.wikimedia.org/wiki/File:Diamond_cutter._Amsterdam._2012.jpg\">Image Credit</a></p>\n<p>&nbsp;This post is based on a presentation I gave at the United Nations' Office in Geneva in 2011, available <a href=\"http://fr.slideshare.net/claudioparrinello/semantic-knowledge-management-and-technology-transfer\">here</a>.&nbsp;&nbsp;&nbsp;</p>\n<p>Most successful and innovative&nbsp;organizations worldwide&nbsp;are knowledge-intensive organizations. Professional knowledge, in particular technical know-how, is a key asset for such organizations as their success depends to a large extent on their ability to create, manage and transfer knowledge efficiently. Let us call this process <strong>knowledge valorisation.</strong> &nbsp;</p>\n<p>I review below some of the key enablers of knowledge valorisation&nbsp;by sketching a sort of road map.&nbsp;</p>\n<h1>Step 1</h1>\n<p>&nbsp;The first step shown below&nbsp;might look trivial, but I believe that most organizations (in particular those which are in the process of restructuring, M&amp;A, etc)&nbsp;might find it worthwhile.&nbsp;</p>\n<p><img src=\"https://s17.postimg.org/ueoc9n77j/road.png\" width=\"959\" height=\"545\"/></p>\n<p>In other words,&nbsp;the first challenge is to make sure that knowledge is properly tracked and stored, especially if the organization is very large.&nbsp; If knowledge turns out to be mostly in <strong>implicit</strong> form, the organization runs a significant risk to lose knowledge and performance as a result of staff turnover, as when the key people leave or retire, nobody may be able to run some critical processes. In addition, as implicit knowledge is difficult to share, if explicit knowledge on key processes is not available, it is difficult for new recruits to become quickly operational. &nbsp;</p>\n<h1><strong>Step 2</strong>&nbsp;</h1>\n<p>If a large body of documents spanning the organizational knowledge landscape is available in electronic format, it is appropriate to set up and use a formal knowledge classification scheme. The most powerful approach to knowledge classification, following the principles of semantics, is based on two components: &nbsp;</p>\n<ul>\n  <li><strong>Taxonomies</strong>, i.e. multi-level, tree-like classification frameworks. An example of a comprehensive, well-known taxonomy is Linnaeus\u2019 classification scheme for nature as divided into three kingdoms: mineral, vegetable and animal. Linnaeus used five levels: class, order, genus, species, and variety.&nbsp;Advanced knowledge management might call for the definition of multiple taxonomies, as shown in the example below. &nbsp;</li>\n</ul>\n<p><br></p>\n<ul>\n  <li><strong>Classification rules</strong>, i.e. a set of criteria to place each document in one (or more) positions in the taxonomy. Rules are typically based on specific properties of the document. Simple classification rules are based on keywords and other metadata, e.g. if a document has \u201cJava\u201d as a keyword, it is likely to be classified under a \u201ccomputer science\u201d branch of a technological taxonomy. &nbsp;</li>\n</ul>\n<p>The above elements, taken as a whole constitute an <strong>ontology</strong>, i.e. a detailed, potentially exhaustive description of a knowledge domain in terms of a collection of data records, together with their metadata/attributes, organized and classified in one or more taxonomy-based \u201ccatalogues\u201d. &nbsp;</p>\n<p><img src=\"https://s13.postimg.org/jbvf5lv93/semantics.png\" width=\"1006\" height=\"522\"/></p>\n<p>&nbsp;The pictures above refer to&nbsp;an ontology which is relevant to a public research organization which regards technology transfer as part of its mission.&nbsp;Such organizations feel strong pressure by their funding bodies to demonstrate the positive socio-economic impact of public research on society through concrete examples. In order to meet such demands, they must define and implement a proactive and cost-effective Knowledge &amp; Technology Transfer (KTT) strategy. Then it is essential that all the knowledge assets in the organization are identified (technologies, general know-how, training capabilities) and as many KTT channels (licensing of intellectual property, joint R&amp;D with industry, training, people mobility \u2026) as possible are enabled. &nbsp;</p>\n<h1><strong>Step 3</strong>&nbsp;</h1>\n<p>At this point, a classification engine is used:&nbsp;</p>\n<p><img src=\"https://s15.postimg.org/fk988pp6j/classify.png\" width=\"971\" height=\"558\"/></p>\n<p>&nbsp;The ultimate deliverable is a context-sensitive, searchable knowledge catalogue&nbsp; &nbsp;</p>\n<p><br></p>\n<p><img src=\"https://s22.postimg.org/w8zb4dy35/catalogue.png\" width=\"1065\" height=\"616\"/></p>\n<p>&nbsp;</p>\n<h1><strong>Informal Summary</strong>&nbsp;</h1>\n<p>All the tools described above aim at avoiding that in a large organization people reinvent the wheel all the time, just out of lack of knowledge of what their colleagues are working/have worked on. &nbsp;</p>\n<p>Moreover, using the wheel analogy: if you are into technology transfer, such tools will help&nbsp;you show your \"wheel\" outside your organization and identify whoever could use it to make an innovative car!&nbsp;</p>\n<p>Please note that some older comments to this post refer to (very different) content which has now been removed. Please disregard them.&nbsp;&nbsp;</p>\n</html>",
+    "body_length": 5526,
+    "cashout_time": "2016-10-02T23:02:57",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-01T22:28:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"science\",\"techreview\",\"knowledge-management\",\"tech-transfer\"],\"image\":[\"https:\\/\\/upload.wikimedia.org\\/wikipedia\\/commons\\/thumb\\/3\\/31\\/Diamond_cutter._Amsterdam._2012.jpg\\/517px-Diamond_cutter._Amsterdam._2012.jpg\",\"https:\\/\\/s17.postimg.org\\/ueoc9n77j\\/road.png\",\"https:\\/\\/s13.postimg.org\\/jbvf5lv93\\/semantics.png\",\"https:\\/\\/s15.postimg.org\\/fk988pp6j\\/classify.png\",\"https:\\/\\/s22.postimg.org\\/w8zb4dy35\\/catalogue.png\"],\"links\":[\"https:\\/\\/commons.wikimedia.org\\/wiki\\/File:Diamond_cutter._Amsterdam._2012.jpg\",\"http:\\/\\/fr.slideshare.net\\/claudioparrinello\\/semantic-knowledge-management-and-technology-transfer\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T12:21:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15273611827178,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "28.714 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steembets-bet-for-free-by-upvoting-and-win-steem-dollars-inauguration-bet-clinton-vs-trump",
+    "post_id": 828794,
+    "promoted": "101.010 HBD",
+    "replies": [],
+    "root_title": "A Road Map to Knowledge Valorization.",
+    "title": "A Road Map to Knowledge Valorization.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@claudiop63/steembets-bet-for-free-by-upvoting-and-win-steem-dollars-inauguration-bet-clinton-vs-trump"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17252532938558",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "563544646717",
+        "voter": "barrie"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6315235154015",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347118013623",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2030615881329",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1362045275157",
+        "voter": "moment"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74794629682",
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18199948682777",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5132668112897",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3158922122495",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2013866692939",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452138762783",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122063056602",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5549073747882",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1130543463912",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1078421331456",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973319882060",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "317991297021",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4390790041307",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104099771",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1703029168107",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768755382",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684005121",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54832970366",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663301832",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213794688",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1761824676683",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77621760528",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419831065181",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525849575920",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2729895305560",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1388728405",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108221038447",
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "856088750266",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115621134894",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2105322267",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1167734251538",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "930994265690",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29435510701",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10313567606",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74144086470",
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624994115",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "4400",
+        "reputation": 0,
+        "rshares": "11954581297",
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973117194",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7857031052",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "9800",
+        "reputation": 0,
+        "rshares": "22930428594",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821520527371",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45098187494",
+        "voter": "steem-samiam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288353305",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23782884498",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23508133721",
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156356235250",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1665762057",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13943466836",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9981237712",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80544628435",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79788923294",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9309121573",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2917439250",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60077820020",
+        "voter": "lovelace"
+      },
+      {
+        "percent": "7681",
+        "reputation": 0,
+        "rshares": "433286620876",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18188509022",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447093363",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5012814614",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29025548799",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "51511112084",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26767597085",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23926167464",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11007893154",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713096374287",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "600",
+        "reputation": 0,
+        "rshares": "1214499527",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142837633946",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7603057313",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47384537807",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32873370739",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210251560697",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446299268",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65065948062",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "634222963816",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6615030220",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2316584245",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39904848284",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "989996166543",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58352742195",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35110203447",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8443022788",
+        "voter": "badger311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8738727767",
+        "voter": "badger313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8702230036",
+        "voter": "badger312"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9001297583",
+        "voter": "badger316"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9123216648",
+        "voter": "badger319"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9030881970",
+        "voter": "badger3101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8483805402",
+        "voter": "badger3111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9045984338",
+        "voter": "badger3121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8654403079",
+        "voter": "badger3131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8762447633",
+        "voter": "badger3141"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8738856222",
+        "voter": "badger3171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8546274352",
+        "voter": "badger3181"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9132638993",
+        "voter": "badger3191"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8546111243",
+        "voter": "badger3112"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8887325560",
+        "voter": "badger3132"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8760496163",
+        "voter": "badger3162"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8991568485",
+        "voter": "badger3113"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8642210535",
+        "voter": "badger3123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8766005376",
+        "voter": "badger3133"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9117652407",
+        "voter": "badger3153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8796092252",
+        "voter": "badger3163"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8826632166",
+        "voter": "badger3193"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8776220485",
+        "voter": "badger3114"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8685065534",
+        "voter": "badger3124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8587877805",
+        "voter": "badger3144"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8509649715",
+        "voter": "badger3154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8376968178",
+        "voter": "badger3164"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8709012551",
+        "voter": "badger3174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8989471544",
+        "voter": "badger3194"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8885761375",
+        "voter": "badger3105"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8829258163",
+        "voter": "badger3135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8423190788",
+        "voter": "badger3145"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9007115204",
+        "voter": "badger3155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8699822976",
+        "voter": "badger3175"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8475866437",
+        "voter": "badger3195"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8117642153",
+        "voter": "badger3106"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8936995703",
+        "voter": "badger3116"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8984990351",
+        "voter": "badger3126"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8611633869",
+        "voter": "badger3136"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8257944656",
+        "voter": "badger3146"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8489790477",
+        "voter": "badger3156"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8705807126",
+        "voter": "badger3166"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8620566580",
+        "voter": "badger3176"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8755292907",
+        "voter": "badger3186"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8791096935",
+        "voter": "badger3196"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8718533747",
+        "voter": "badger3107"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8470685116",
+        "voter": "badger315"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8967138703",
+        "voter": "badger318"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9016793543",
+        "voter": "badger3151"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8688906443",
+        "voter": "badger3161"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8948374029",
+        "voter": "badger3122"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8885133976",
+        "voter": "badger3142"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9108283408",
+        "voter": "badger3152"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8410991139",
+        "voter": "badger3172"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8924725447",
+        "voter": "badger3182"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8679951369",
+        "voter": "badger3192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8594490108",
+        "voter": "badger3143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8857724326",
+        "voter": "badger3173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8564073808",
+        "voter": "badger3104"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8275966513",
+        "voter": "badger3134"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8683148373",
+        "voter": "badger3184"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8620185227",
+        "voter": "badger3115"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9093630617",
+        "voter": "badger3165"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8719257308",
+        "voter": "badger3185"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8781270592",
+        "voter": "badger314"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9015963430",
+        "voter": "badger317"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8754170130",
+        "voter": "badger3102"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8715598583",
+        "voter": "badger3103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8642543556",
+        "voter": "badger3125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8608651698",
+        "voter": "badger3183"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3763646381067",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36046509876",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348982422",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370569600141",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54767511884",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53269273621",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209092851311",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354361794480",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78424941158",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31280996795",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "65197303116",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191479703088",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5664514968",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5615273302",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104818069176",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198642563544",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45230308604",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65999119522",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2248678065",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484274771",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17553722653",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166076560580",
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259043859301",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4681431941",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86510715978",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19423192668",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3030270280",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400966190394",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25016204342",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6929637554",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "439636157",
+        "voter": "kevindetreville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27793386253",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55885606243",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "723038245",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "439350376",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474968055",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "451813345",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1410590580557",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1211684689",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16639042839",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4630627643",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11261506552",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207386074024",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32300012796",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17025297072",
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2319671143",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451642041",
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3319276861",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25460531811",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11383490141",
+        "voter": "pablox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398034717",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242744796",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334006173068",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14364948465",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33639885970",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391368491",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11811714291",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20012517255",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42112607012",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33852058607",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89569037",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5685679532",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12942070229",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2696617320",
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22153382159",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2552794240",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "307757751744",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2727436517",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2745487317",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200869173",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165693192350",
+        "voter": "gabbans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3572057744",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23775123893",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36882567360",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89813747359",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161375754014",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14736639309",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3576728200",
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17601936013",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780190949",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21537531300",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13752659940",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614667524",
+        "voter": "curator"
+      },
+      {
+        "percent": "8200",
+        "reputation": 0,
+        "rshares": "2870180302",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30059788973",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1596140305",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2727754330",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485033626",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454860590",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2624223649",
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121759228",
+        "voter": "sazbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38412629886",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3695837170",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13394934034",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152942524",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843609166",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8813780350",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3047151322",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5213738136",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125370043554",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075235976",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4546480722",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "6900",
+        "reputation": 0,
+        "rshares": "45907939906",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6952211747",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5294811148",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61911147",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61714352",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1013075640820",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14888335610",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8107058910",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23400822736",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23911327544",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23919974845",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24510986824",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37769139083",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5173147926",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238503886159",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588461921530",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27629927141",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8921988905",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62472234",
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "7752",
+        "reputation": 0,
+        "rshares": "11461897501",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52698903911",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3898490945",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3334161508",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23915896370",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23914376448",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23911757517",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23908878849",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1875150048",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23905113215",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23903642189",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117128230821",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20173385112",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92960462722",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5427321003",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61261066",
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1171268133",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58773515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4122573976",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "318643015",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72629533",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62173784",
+        "voter": "clarissa1994"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63271446",
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69485065",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62188234",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58467607",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28304654029",
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41103504553",
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3580186356",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61746903",
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1580029996",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56682205",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283235546",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8307326565",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56535984",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71241819",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27199865099",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63118959",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84277779404",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53638070",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209436170",
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57405835",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "545451614",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310811927",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "1451684469",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9317330986",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1556041697",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56598010",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56591855",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "626888257495",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1443151504",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59750246",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4479862265",
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195160565",
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13247070006",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "925594033",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55414210",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55396880",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406673",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387660",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3728859219",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8480971863",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7423407511",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23897322847",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63837413",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2680828708",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65821995450",
+        "voter": "justinlaak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76937378345",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47338695487",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21806631879",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1699561647",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53437036902",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2349339281",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60157039",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53853911",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236254009",
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565688",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58000712",
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1841770571",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8573074284",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4848459038",
+        "voter": "englishtchrivy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1807478779",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25628967648",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60418402",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55546978",
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2011662877",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65997918",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14206144526",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2439186312",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2077581159",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23544130242",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961187",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41415380854",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1581775775",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53966805",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55768488",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55709351",
+        "voter": "misscathy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "18052253827",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14836422309",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3697930196",
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53252658",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52077150",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85083750",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65372788",
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56042508",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5414296170",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646077790",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1210270353",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "793170907",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4264779052",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51465774",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112543619",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54523663",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52242652",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230725",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287913287",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25313560101",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2550877074",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51922012",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227735119",
+        "voter": "irininich"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "2165334759",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337067509",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71464098",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "352780841414",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54084259617",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "13532116930",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341116913",
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1359710881",
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3134996274",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50933404",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5059183261",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100628450",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209715303",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5312185929",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4759548989",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1953000600",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2287432998",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9299091881",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52882252",
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20142442639",
+        "voter": "storyseeker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454901",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468757",
+        "voter": "zees"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50980153",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50326986",
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1430783777",
+        "voter": "dakini-dion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039951271",
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4591083065",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50602980",
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50211016",
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145435510",
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52724271",
+        "voter": "s0lo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50907857",
+        "voter": "oxygen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1049562163",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50865840",
+        "voter": "sting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452005898",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50572441",
+        "voter": "unilever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50565798",
+        "voter": "penthouse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98761775",
+        "voter": "dovepeacelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50664711",
+        "voter": "buckland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52278600",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7743755308",
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239968899",
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3517432636",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510694927",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76019801",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35493215038",
+        "voter": "abdullar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1256840918",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157689742",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161446234",
+        "voter": "yasiin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146096965",
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162904624",
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165306997",
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159762514",
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162227319",
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149641144",
+        "voter": "michaelstobiersk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158655277",
+        "voter": "kjsxj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161700361",
+        "voter": "shadowcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161218747",
+        "voter": "sdc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157816798",
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160870736",
+        "voter": "electronicarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157706877",
+        "voter": "cybergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151363355",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160649364",
+        "voter": "trevorlyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158860455",
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157182398",
+        "voter": "planet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150675328",
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156882242",
+        "voter": "dontbenormal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50161010",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159539963",
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159425365",
+        "voter": "tipsandtricks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159352476",
+        "voter": "panic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159318360",
+        "voter": "stimmt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146775786",
+        "voter": "zaidkhalifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159121147",
+        "voter": "noah.trader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149732389",
+        "voter": "gopher75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155945743",
+        "voter": "lenny1220"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159061028",
+        "voter": "dragonfruit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152792898",
+        "voter": "blackheart304"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146443049",
+        "voter": "steemit2670"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146428143",
+        "voter": "anysound.studio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158627191",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158621293",
+        "voter": "bfem44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152318749",
+        "voter": "apolymask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158526983",
+        "voter": "oghenetony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149129648",
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158259107",
+        "voter": "zedsdead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158236061",
+        "voter": "paulohenry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158229557",
+        "voter": "pac3mak3r"
+      }
+    ],
+    "author": "calaber24p",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Revamping Curation Is The Way To Increase Steem Power Demand\n\nIf you haven\u2019t been living under a rock, for the past month or so, it has been quite clear that the price of Steem has been rapidly falling. Although before the run up to $4 was most likely in a bubble and the system is in no danger of failing, as it has worked at this price before, I still believe there is a long term solution that needs to be found to fix this problem. Ned made a post yesterday talking about ideas he had, which mostly, in my opinion focused on lowering the supply entering the market, but this is only a symptom of the problem. My solution although a bit drastic addresses the problem which is a lack of incentive to purchase Steem and power up. \n\nhttp://www.chicagoartistsresource.org/sites/chicagoartistsresource.org/files/curator_1.jpg\n\nTo begin, what are the incentives now? Well the main incentive is having weight while voting, as well as getting a daily return on the Steem Power you have in the system. These might seem like adequate incentives in theory, but in practice I think we are seeing something very different. The problem right now is even with the daily interest we are getting on our Steem Power, we have still been losing money due to the price drops. The interest, which is supposed to act like inflation protection, is actually doing nothing because as long as the price is falling, people are not going to want to move their Steem dollars or Steem into Steem Power. We need to give a greater incentive to hold and purchase Steem Power that will benefit us as a community in the long run. Sure we can wait for the price to fall and have people cash out and make it cheaper to enter the system, but this still doesn\u2019t address the underlying problem.\n\nSo what is my solution? I strongly believe we need to move the payout split to 50:50 between authors and curators from the current 75:25 it is at. I know this will be controversial, especially because many authors today, INCLUDING MYSELF, are making essentially a living off the site, but ultimately it comes down to what is best for the community. We need to look at who is adding more value to the site, the authors or the curators. Depending on who you ask their answer might be different, but in my opinion both are equally as important. One cannot survive without the other and the payouts should reflect that.\n\nhttps://steemit.com/images/steemit-share.png\n\nCurating is supposed to be a heavy incentive for people to enter the system, but the earnings from it are subpar at best. For example, I have 20,000 Steem Power and my average earnings per day is around 6 Steem Power. That means my daily return on investment is .03% a day and only around 11% a year and that is with a pretty profitable curating strategy. Sure it will technically come out to a bit higher than 11% due to compounding but it still won\u2019t make that much of a difference. A huge selling point to me was that if you choose to curate rather than create content you will also be able to earn a sufficient amount, but no one is going to put 20,000 Steem into Steem Power that they would have to wait 2 years to pull out if the reward of waiting is not sufficient enough. Selling Steemit as a platform where the users who upvote the content are equally as valuable as the users who create the content makes users actually want to buy Steem and convert it into Steem Power. \n\nWe should not focus on slowing down the supply that enters the market, but rather retaining and creating new users that will become active daily. Once people have upvotes that actually mean something we will see people flock to the system. Rather than just browsing reddit and upvoting, with no return, they would have a much better experience here. The majority of the people on the site are not authors but lurkers or readers and we need to cater specifically to that crowd because they will end up as the masses, should more come. Authors deserve to be paid for their work but the percentage of money that goes to payouts is a lot. \n\n\nhttp://www.firebellymarketing.com/wp-content/uploads/2011/10/building-community-Firebelly-570x467.jpg\n\nLike I stated before, I have been very successful and Steemit which is why I want to cut down my rewards, because if we continue in the direction we are currently going, it will become a race to the bottom , at which point everyone will leave. I strongly believe that splitting the curation rewards and author rewards equally can benefit the demand for Steem power in the long run and cause a higher amount of user retention within the system. \n\n-Calaber24p",
+    "body_length": 4602,
+    "cashout_time": "2016-10-10T00:44:06",
+    "category": "steemit",
+    "children": 157,
+    "created": "2016-09-08T19:45:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"money\",\"community\",\"curation\"],\"image\":[\"http:\\/\\/www.chicagoartistsresource.org\\/sites\\/chicagoartistsresource.org\\/files\\/curator_1.jpg\",\"https:\\/\\/steemit.com\\/images\\/steemit-share.png\",\"http:\\/\\/www.firebellymarketing.com\\/wp-content\\/uploads\\/2011\\/10\\/building-community-Firebelly-570x467.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T19:45:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 101222153785235,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "945.742 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "revamping-curation-is-the-way-to-increase-steem-power-demand",
+    "post_id": 895482,
+    "promoted": "101.000 HBD",
+    "replies": [],
+    "root_title": "Revamping Curation Is The Way To Increase Steem Power Demand",
+    "title": "Revamping Curation Is The Way To Increase Steem Power Demand",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39379890566029",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3126247134380",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408356350215",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1047378310443",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314688376293",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3100444020",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3764083289",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690489074",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54213700259",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661544327",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213702396",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10777629083",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622914773",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967513764",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200086864853",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288197194",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "11589802844",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95065332740",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35527519992",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56774675772",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432384791",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40601146249",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8516999622",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134338984913",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327889281",
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2596798738",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5085058830",
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12857077759",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12174615285",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69581481372",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154263522371",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14471850655",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39327291209",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35308561613",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452860343",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1025282103",
+        "voter": "jsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2488411743",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2490120280",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2040621359",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "396751788",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7734375234",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2277111838",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5114211238",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26465755082",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1911405581",
+        "voter": "alitas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1367410476",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4291799895",
+        "voter": "milaoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11497454563",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1228517094",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74804948",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101241449865",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54155851",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3374755472",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54881755",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5807815930",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12412637918",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25219678343",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72938416050",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53742464",
+        "voter": "jamesphotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2238227885",
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1195188906",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4362291614",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2912548324",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120365336",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58464654",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1296631669",
+        "voter": "steemitmag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70358845",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2609136736",
+        "voter": "puffin"
+      }
+    ],
+    "author": "biophil",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Friends, foodies, fellow Steemers, I bring glad news: I have created **the greatest waffle recipe on the planet.**\n\n\"What?\" you say. \"Aren't you the [game theory](https://steemit.com/steem/@biophil/class-war-on-steem-the-game-theory-of-steem-part-7) guy? The guy who [picks apart arcane C++ code for fun?](https://steemit.com/steem-help/@biophil/the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references) The nerdy dude who [starts arguments with anarchists](https://steemit.com/anarchism/@biophil/an-original-parable-about-voluntaryism) and is [trying to buy a kayak?](https://steemit.com/marketplace/@biophil/want-to-buy-your-kayak-surfboard-paddleboard) What's all this about waffles?\"\n\n<center>\n![](https://ipfs.pics/ipfs/QmNNpUTSL2R9Pmy4gs9n1wq7Cj8zH5MuHDBZpGu8zVZHwK)</center>\n\nWhy yes, I am. I am all those things, and **I am also an amateur waffle chef.** And today, I am going to share with you a little piece of heaven. People, I present to you **Philip's Spectacularly Light, Fluffy, and Crispy (despite being 100% whole grain) Sourdough Waffles.**\n\n## Ingredients\n\n* 8 oz sourdough starter (don't have sourdough starter? maybe I have a solution for you! read on!)\n* 1 cup whole wheat flour\n* 1 cup old fashioned rolled oats\n* 1 cup water\n* 3 eggs\n* 3 tbsp oil (soybean, canola, refined olive, coconut oil, butter - whatever)\n* 1/4 cup milk\n* 1/4 cup plain yogurt\n* 1 tsp baking soda\n* 1/4 tsp salt\n* Flax seeds for decoration and tastiness\n\n## The Night Before, we make the sponge\n\nThis recipe results in such incredible goodness that you have to plan ahead just a little bit. The night before (or about 8 hours in advance), put the **sourdough starter,** the **whole wheat flour,** the **oats,** and the **water** in a big bowl and mix them well so there are no dry spots. Make sure your bowl has lots of extra room, because this will about double in size overnight! It should look like this:\n\n<center>\n![](https://ipfs.pics/ipfs/QmU4GbcD3PJH2SEzaSQ4Kprznb9K3tV7cfTgdjxiN4bUkP)</center>\n\nOvernight, the magic little critters in the starter will eat and eat and eat and make carbon dioxide, and by morning, your stuff will look like a sponge:\n\n<center>\n![](https://ipfs.pics/ipfs/QmPU7GNPTKQNDFiMFcxLXJSuemssexGRaLZ896fmyW8UTX)</center>\n\nNote: **If you don't have sourdough starter,** you don't have to start the night before. I have not tested this, but here's what I'd try: instead of the starter, mix a cup of flour with a half cup of water, and add a tablespoon of apple cider vinegar. Then mix everything else in and carry on with the recipe. Your batter won't ferment, so there's no need to let it sit overnight, but the baking soda will still react with the vinegar and you'll get (hopefully) fluffy waffles.\n\n## On the Magical Morning, we mix the batter\n\nNow that we have our sponge, we'll start mixing stuff in. You can add all the rest of the ingredients now, **except the baking soda.** It won't ruin it to add the baking soda now, but you'll be a little better off if you wait. So: add the **eggs, oil, milk, yogurt, and salt:**\n\n<center>\n![](https://ipfs.pics/ipfs/QmST4kHHhrK1rz42SPzVVZWJmtdE3DKK62nDQWcGRJSerY)</center>\n\nAnd mix it all up real good (I do this by hand, but you'll probably be fine if you use a stand mixer or power mixer or some such gadget):\n\n<center>\n![](https://ipfs.pics/ipfs/QmP7ufxmALnDXENuE1Tv29mCGS9dd4VBTZRJdX1EBXqdb5)</center>\n\nNow that your ingredients are mixed up, get your waffle iron all ready to go. You don't have to turn it on yet, but make sure you're ready to. Get your oil all ready to brush or spray on to the iron, and open your container of flax seeds (or whatever nuts you like) so you're ready to sprinkle them on.\n\nNow, add the **baking soda.** Sprinkle it on and mix it in quickly and thoroughly. Within a few seconds, the baking soda will react with the acid from the sourdough, and your batter will start to fizz:\n\n<center>\n![](https://ipfs.pics/ipfs/QmRhQwoTcDpvQXMV5FoDk2MSxcgdanNfUexn7P2PuvdBiw)</center>\n\nTurn your waffle iron on, and grease it. I like to use **virgin coconut oil** for this; I melt a blob of it into the center of the iron and then use a brush to spread it all around (top and bottom):\n\n<center>\n![](https://ipfs.pics/ipfs/QmdUaKUbewvgxAFoWUHCtCL9bQr335ivQf96RXY2Dr2miv)</center>\n\nPour some batter into the iron (make sure to scoop from the bottom of your batter bowl, because the oats tend to sink); my iron takes just a bit less than 1 cup of batter. Make sure it spreads all around, then sprinkle your flax seeds (or whatever nuts you like, or nothing) on the top of the batter, close the iron, flip it (if it's that kind of iron), and wait. You want to go from empty iron to closed iron pretty quickly.\n\n<center>\n![](https://ipfs.pics/ipfs/Qmbe1Nxo6V1tnXie7G5mtKqRT1WdxpGFodbRCCL3VK6kT9)</center>\n\nDepending on your iron and your altitude and your exact mix of batter, your cooking time will vary. **I cook my waffles for about 4 minutes.** You should try variations of this and see what you like. When it's done, open it up, and voila:\n\n<center>\n![](https://www.steemimg.com/images/2016/09/01/IMG_20160828_17155353683127.jpg)</center>\n\nTransfer it to a cooling rack, and enjoy!\n\n## Tips on enjoying\n\n* Butter and maple syrup\n* Sliced strawberries\n* Peanut butter\n* Cashew butter (this is one of my favorites)\n* Put leftover waffles in the fridge, and warm them up in the toaster!",
+    "body_length": 5399,
+    "cashout_time": "2016-10-02T20:04:15",
+    "category": "food",
+    "children": 17,
+    "created": "2016-09-01T16:58:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"food\",\"life\",\"waffles\",\"breakfast\",\"health\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/QmNNpUTSL2R9Pmy4gs9n1wq7Cj8zH5MuHDBZpGu8zVZHwK\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmU4GbcD3PJH2SEzaSQ4Kprznb9K3tV7cfTgdjxiN4bUkP\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmPU7GNPTKQNDFiMFcxLXJSuemssexGRaLZ896fmyW8UTX\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmST4kHHhrK1rz42SPzVVZWJmtdE3DKK62nDQWcGRJSerY\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmP7ufxmALnDXENuE1Tv29mCGS9dd4VBTZRJdX1EBXqdb5\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmRhQwoTcDpvQXMV5FoDk2MSxcgdanNfUexn7P2PuvdBiw\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmdUaKUbewvgxAFoWUHCtCL9bQr335ivQf96RXY2Dr2miv\",\"https:\\/\\/ipfs.pics\\/ipfs\\/Qmbe1Nxo6V1tnXie7G5mtKqRT1WdxpGFodbRCCL3VK6kT9\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/IMG_20160828_17155353683127.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@biophil\\/class-war-on-steem-the-game-theory-of-steem-part-7\",\"https:\\/\\/steemit.com\\/steem-help\\/@biophil\\/the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references\",\"https:\\/\\/steemit.com\\/anarchism\\/@biophil\\/an-original-parable-about-voluntaryism\",\"https:\\/\\/steemit.com\\/marketplace\\/@biophil\\/want-to-buy-your-kayak-surfboard-paddleboard\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T15:17:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 45607831321175,
+    "parent_author": "",
+    "parent_permlink": "food",
+    "pending_payout_value": "221.002 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-world-s-best-waffle-recipe",
+    "post_id": 825410,
+    "promoted": "100.010 HBD",
+    "replies": [],
+    "root_title": "The World's Best Waffle Recipe",
+    "title": "The World's Best Waffle Recipe",
+    "total_payout_value": "0.000 HBD",
+    "url": "/food/@biophil/the-world-s-best-waffle-recipe"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "642721549946",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14422749876087",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3575373896498",
+        "voter": "excalibur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7464607221397",
+        "voter": "firstclass"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3639191953732",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1669923224095",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3717974185",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213574639759",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513559168",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836606639",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6988007861700",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5996727817604",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64642495505",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992560012",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256364536",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39818841412",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371954710239",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2460761021349",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16151007755",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15367378869",
+        "voter": "lee5"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "1231163835379",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79076699259",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451819636",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747109758",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160364064",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22287691419",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348774027722",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345721003",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24424815444",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9962447624",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85472012036",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47052482880",
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51668605167",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3208539412",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14777664032",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13421601084",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550131611031",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8054401464",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11394690603",
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485282260",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5697146207",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638584817",
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38099821345",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320314797075",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9264258149",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10412058674",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "659470671268",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262097263544",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3586538842",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3736219522",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56755039638",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226277413706",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1105470146",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73899745411",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787734654",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3085996565",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299422990503",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "555763114",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61230816598",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244194157676",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9343888042",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24793132900",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4213953082",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501194922",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361800166976",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310003040",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9062015039",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13825920793",
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379034832",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49609829871",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100887290594",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67218157738",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168781926859",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4444948583",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9215212832",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207639750909",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72775359846",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135534940490",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649863857",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2070185449",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151313598203",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270287220",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189534597524",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5593332072",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107979574982",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4132934549",
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245565399746",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4972308003",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26691657968",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32317449277",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12407406735",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6731496155",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8077166192",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1061763080",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2000840823",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8698490005",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7061836326",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58024990300",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12820190462",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5944808360",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234977975",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53277444047",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5630151895",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38998653626",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3135864378",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4805051818",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25329895988",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122037864807",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5942450964",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1399449402",
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132989014669",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9678069378",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "653051005053",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1558901402",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69645935778",
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8348978059",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68835084756",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12165310382",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658969843140",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3016989385",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "213566804",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "195795730",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12433580012",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127921982448",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1088582281",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27989665079",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5235602369",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393022921",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470865927",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4326102127",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13785486061",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11255732354",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4664449459",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103415609409",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38979052441",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9855694815",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483030862",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4401948859",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7769709545",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52805276639",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28292287957",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13726024129",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3664108103",
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247320271",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10404996383",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2265421279",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421650464",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11687972825",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10504748862",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16957784324",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43955087155",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39380899533",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14477258419",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3802303915",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5603336399",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3857990313",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "608149252",
+        "voter": "ltndd1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13799232019",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12201911383",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2418631221",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37544436861",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2375612859",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19954745854",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1432554908",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58632057805",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6951568553",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60733709",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13480328466",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77066217",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3140171089",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24333845376",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "575306930",
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4496265875",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19650090910",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8983200296",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66906230856",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203502299985",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1073667948",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1015996473375",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27385580346",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "12217525826",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1696363424",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255227790",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255610425",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147899496",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148734861",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84798583",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "701002863",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5508463953",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203439098227",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951657512",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841171661",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20112172284",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22963130568",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35578875588",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8206970252",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18436436380",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574079280",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1365471076",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412577837",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221284317",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77551309",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5923617216",
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6184990126",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129066659",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27072053846",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18648831056",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238861651541",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1318009421",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2388216457",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26544745435",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28261072116",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1150395178",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9217169586",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37382286273",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14952644998",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3863422357",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53473560",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22837595162",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2590447050",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14437396418",
+        "voter": "artist1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20733647424",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12921898525",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32699512403",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3732561387",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1112917083",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636463375",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1964111181",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7190118987",
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15890354633",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111083493",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233570693",
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452879496",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2442169380",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62218938",
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6640826883",
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49201150707",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53884258",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773487823",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11166998088",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3299401993",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7832829923",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71551789",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4540723045",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3362202338",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375929648",
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27312396571",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2209169349",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85721943459",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6982744040",
+        "voter": "bitminter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54969817",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6089195575",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1719224371",
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10519914536",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75911873",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20118440636",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61302506",
+        "voter": "ignat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5584741517",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62279229",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8034296271",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106783648",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121845327",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2309373844",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "771632829",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89747247797",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438819769",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941499119",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58571448",
+        "voter": "isaacmorgentaler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368407925",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62312186",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19465520550",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24299155176",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12663340608",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8098231266",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13767766871",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1770994317",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58744201",
+        "voter": "myfriends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239974453639",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231798813",
+        "voter": "blue1950"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2313482861",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58875692",
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8826238500",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624200855",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56716182",
+        "voter": "sammie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54424511",
+        "voter": "matt525"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4007339571",
+        "voter": "asuran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18209474827",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69826982",
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1583451185",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36471501608",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55660383",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12993402861",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56017401",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230031117",
+        "voter": "rebelmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3947043569",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89846801",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5465873870",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2241938484",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413377157",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53942218",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79722988",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3311264992",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69606440",
+        "voter": "bmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56547885",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97810726",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24760371336",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860573886",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2577157447",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4592050223",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232285326",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4494562067",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91630309",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50210263",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379994386",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37096549717",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51524412",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52676609",
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1774661835",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1643965133",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5812421354",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3041925009",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2489010152",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50460250",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439002",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50436594",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56387357",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "791391648",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25501132189",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1455020482",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1967797933",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2869000034",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008239952",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50565379",
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50357208",
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52411214",
+        "voter": "mr189"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53215131",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55523890",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52098977",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4619546516",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50431113",
+        "voter": "stringer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245473",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51250081",
+        "voter": "steemjustice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50420952",
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50299690",
+        "voter": "blakeir"
+      }
+    ],
+    "author": "jesta",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "For the time being, DO NOT promote a post that's past it's first payout phase. \n\nI've [opened an issue on github](https://github.com/steemit/steemit.com/issues/199) about the issue and hopefully we'll see a resolution soon.\n\nCurrently you can promote any post, even those past the first payout phase. The problem is that if it's in it's second payout phase or beyond, as soon as someone votes on the post, the promoted status gets completely removed. \n\nI'm putting this message out there to hopefully help avoid any potential frustration this issue may cause.",
+    "body_length": 559,
+    "cashout_time": "2016-09-30T04:45:45",
+    "category": "steemit",
+    "children": 78,
+    "created": "2016-08-30T02:57:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https:\\/\\/github.com\\/steemit\\/steemit.com\\/issues\\/199\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T03:23:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60433265388165,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "396.437 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out",
+    "post_id": 796890,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@jesta/psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "12892444608649",
+        "voter": "ned"
+      },
+      {
+        "percent": "7200",
+        "reputation": 0,
+        "rshares": "4880815875440",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "10335553342256",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403470107913",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253811182495",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "716337018",
+        "voter": "tpboy3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13262368517",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26321096439",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256598245425",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "430108480",
+        "voter": "sensorium1978"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58360860731",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1106317423",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1788392946",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7303326622",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3147716497",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586114569324",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10554741746",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3267719720",
+        "voter": "ian-harris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65870793962",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1161275060",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5524329793",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129179648054",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97826496492",
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1774955978",
+        "voter": "acec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4125957705",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64261861896",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52226764896",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "829548752",
+        "voter": "poias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "285651702",
+        "voter": "darbsllim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "645715910",
+        "voter": "tyanderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9223419457",
+        "voter": "imjustsayintho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249035622",
+        "voter": "jorijnsmit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1678609165",
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24883915726",
+        "voter": "top10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1534558322",
+        "voter": "decrypt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2897072435",
+        "voter": "cashbandicoot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60005996181",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13451771168",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1934506275",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "629168596",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20765824892",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234491324",
+        "voter": "aleks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1402075017",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1513154284",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111821902",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95550797",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356922743",
+        "voter": "mssteuer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18870932759",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1221656995",
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83561940",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102459876",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357865659",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995559076604",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104217316",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2555471109",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216437643539",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204193503",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560402362",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4370747754",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7937586925",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2800931752",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "879267346",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124107318",
+        "voter": "gringo4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8435099468",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1352706706",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24075850886",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55874505973",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "716479002",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37382286273",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65200234",
+        "voter": "spider333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2595684401",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3876332821",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64679936",
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16142699856",
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14436727565",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93243566220",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63608625",
+        "voter": "willybot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13439863829",
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70486254",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1390975245",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7059588652",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1115440027",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3322606113",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87991131377",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3572970148",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12086277767",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "845006779",
+        "voter": "riceowladam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4673384938",
+        "voter": "delphia16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58900136",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660145254",
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59525287",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57683766",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11584736264",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60929153",
+        "voter": "afristeem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13828807095",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52024054",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195119674",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4836979493",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70170304",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54721512",
+        "voter": "cryptovagabond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245224163620",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168628544",
+        "voter": "whitjack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631761737",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51250382",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545124",
+        "voter": "chekave"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50264489",
+        "voter": "tunnelrat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50195168",
+        "voter": "i3inary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7871297804",
+        "voter": "cato-the-elder"
+      }
+    ],
+    "author": "willybot",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://i.imgur.com/dH35tsb.jpg\n\nThe altcoin space has been as heated as ever, especially since the DAO hype and fallout and the Ethereum hard fork. Now, Monero is off to the races with news it will be a new form of payment accepted on the Deep Web. \n\nThroughout all of this excitement, I\u2019ve watched a lesser-known two-year-old altcoin which has also been on quite the tear this summer. I\u2019m talking about NAUT or Nautilus Coin. Some of you diehard crypto followers and speculators may already be familiar with it, but I can assure you that you\u2019re NAUT (hehe) familiar with what it is about to become!\n\nNAUT has already had a huge summer. It went from 5,000 satoshis in early June to over 70,000 satoshis by mid-July. Something was brewing. I dug around and talked to my most valued sources. I learned there were new plans to take NAUT out of hibernation and into the conversation on Wall Street. \n\nhttp://i.imgur.com/9o3MEBL.png\n\nNow, just in the past few days it seems NAUT has again revved it engines. The price has almost doubled over the weekend and it\u2019s trading at ~130,000 satoshis as of this writing. All of this without any fanfare or concrete announcement. The period between the two sharp rises indicates solid accumulation took place, presumably by those in the know. I smell something big here.\n\nHere\u2019s what I know. It was created by Brian Kelly (CNBC Fast Money fame on TV) in 2014 as an attempt at creating a stable crypto-asset unlike Bitcoin\u2019s reputed volatility. When I initially dug around in July, I heard of plans to develop a parallel currency system like the WIR banc, but open source and peer to peer. Sound powerful? Well, since then it appears the homepage has been adjusted to reflect a different purpose. Something having to do with hedge funds...Oh my! (Takai voice).\n\n[PAR - Productive Asset Record System](http://par.io/index_en.html)\n\nIt states, \"PAR = Productive Asset Record System, An open investment recording system built with intelligent lending and hedge fund administration in mind.  A first of its kind, a fully transparent administration and audit platform leveraging blockchain technology.\"\n\nhttp://i.imgur.com/PgZ0IV4.png\n\nThe ticker countdown for the release of the white paper was 2:8:59:48 as of 3pm EST on August 29th.\n\nI also found the community Slack Team for NAUT/PAR, which is full of excitement, as you might imagine. I understand from reading through recent messages that the project has changed from its initial resurrection plans earlier this summer. With Brian Kelly involved, I\u2019m not surprised to see this plan steer towards a hedge fund related use case. In addition to being on CNBC Fast Money, Brian is also a cryptocurrency-friendly hedge fund manager. Needless to say, this all sounds very interesting and yet has barely appeared on the radar thanks to DAO/ETH/ETC/XMR shenanigans (as well, the professionals behind the project keeping their lips tight about it). \n\nFor those that want more details, they can be found here as well as a link to join the PAR Slack at http://par.io/index_en.html  (it\u2019s the \u201cjoin the discussion\u201d link). \n\nThat's all for now.",
+    "body_length": 3116,
+    "cashout_time": "2016-09-30T21:29:45",
+    "category": "cryptocurrency",
+    "children": 22,
+    "created": "2016-08-30T15:37:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"cryptocurrency\",\"money\",\"beyondbitcoin\",\"blockchain\",\"\"],\"image\":[\"http:\\/\\/i.imgur.com\\/dH35tsb.jpg\",\"http:\\/\\/i.imgur.com\\/9o3MEBL.png\",\"http:\\/\\/i.imgur.com\\/PgZ0IV4.png\"],\"links\":[\"http:\\/\\/par.io\\/index_en.html\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T15:37:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 32233479917849,
+    "parent_author": "",
+    "parent_permlink": "cryptocurrency",
+    "pending_payout_value": "120.840 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-altcoins-with-a-purpose-are-coming",
+    "post_id": 802069,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "The Altcoins with a Purpose Are Coming!",
+    "title": "The Altcoins with a Purpose Are Coming!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/cryptocurrency/@willybot/the-altcoins-with-a-purpose-are-coming"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1200",
+        "reputation": 0,
+        "rshares": "9024883847357",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1671138896655",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119632798758",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3378279290130",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098920208",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762101723",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697277445",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481363240580",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53949579658",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660775806",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213655207",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3081790005091",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622688481",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967132854",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134117619397",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283428793487",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30870794916",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37402877039",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288133732",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74103348709",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13405752321",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535577606639",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7552786780",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11167214864",
+        "voter": "bryner"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "394343135",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "4607965093",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9945544250",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1720965128034",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98889929473",
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "885126158",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73949092478",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431506955",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202782147716",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16435147757",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9121031191",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354817360593",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "307991426",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252198751593",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100974392952",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181953089844",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241429422235",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500746650031",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334447067",
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270503233584",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129179648054",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270521676",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31684857798",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13512010571",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "653532417",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9857787671",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3044219954",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4924694617",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44886601247",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586521710924",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28836579075",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229781794",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3538594433",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "200223812",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "183563429",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147185124876",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "864199533",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15903571736",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13785636617",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10799655800",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4558523900",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3964357464",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310840633",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8516223569",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4135548207",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2757805822",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9529319414",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760711986",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3194142218",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5717065338",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2975968890",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37545735165",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3409584558",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3296476247",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2247621331",
+        "voter": "earnest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7961851795",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4192907964",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18877883177",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67031654840",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192915960688",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357865659",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1074705684",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "8147607057",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646532527",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249753408",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250127725",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144699103",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145516307",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82969949",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79439985691",
+        "voter": "thebear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17996907775",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "682632091",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1912656511",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7262356354",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16603184304",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "593731729",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15836968437",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400045064",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214599727",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75136080",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103648120",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13160545547",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14131930953",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118877186",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224565392312",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24075850886",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8301127610",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37382286273",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20019694548",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16244944890",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15561415239",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9804831909",
+        "voter": "mrweed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3480279807",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84546938",
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93393425886",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145386275",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14701938333",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90704137146",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1588672543",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17970298536",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56658670",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145509025",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531687398",
+        "voter": "alexbenjalbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1506957596",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225801829",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17720358841",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "959019153",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666955368",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124527048",
+        "voter": "godo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216294657",
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1892341880",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81876495",
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75480893",
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107513697",
+        "voter": "xvickx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191515845",
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14802627305",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181025722983",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72763310",
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23182784473",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195119674",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318258176",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607327993",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "352982728",
+        "voter": "vh770"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50889668",
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50875769",
+        "voter": "cyan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50873654",
+        "voter": "palladium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50794039",
+        "voter": "autodesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50791473",
+        "voter": "synereo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50540827",
+        "voter": "amstel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50532230",
+        "voter": "friends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7871297804",
+        "voter": "cato-the-elder"
+      }
+    ],
+    "author": "cryptoctopus",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "# Introduction\n\nThis post was inspired by a video I stumbled upon during a late night Youtube binge and it made me wondered if #feminism was in fact something that mostly benefit men basic instincts rather than women's best interests.\n\nMy conclusion...yes it did. As you watch this video, enjoy the irony of the situation we are in today.\n\nhttps://www.youtube.com/watch?v=xeAerBwVL14\n\n# The Father of Propaganda and How He Used Feminism\n\nhttps://www.steemimg.com/images/2016/08/30/edwardbernaysd9311.jpg\n\nI'm a student of marketing and any marketer's worth it's salt knows who Edward Bernays is. I'm bringing him forward so that people can realize that there are agents who fashion social movements...while most people think those same movements are \"organic\".\n\nWhat Wikipedia says about Edward Bernays:\n>Edward Louis James Bernays; November 22, 1891 \u2212 March 9, 1995) was an Austrian-American pioneer in the field of public relations and propaganda, referred to in his obituary as \"the father of public relations\". He combined the ideas of Gustave Le Bon and Wilfred Trotter on crowd psychology with the psychoanalytical ideas of his uncle, Sigmund Freud.\n\n>He felt this manipulation was necessary in society, which he regarded as irrational and dangerous as a result of the \"herd instinct\" that Trotter had described. Adam Curtis's award-winning 2002 documentary for the BBC, The Century of the Self, pinpoints Bernays as the originator of modern public relations, and Bernays was named one of the 100 most influential Americans of the 20th century by Life magazine.\n\n### Feminism Used by Edward Bernays to Sell Cigarettes - \"The Torches of Freedom\"\n\nhttps://www.steemimg.com/images/2016/08/30/torchesoffreedom103f3.jpg\n\nHistorically, smoking was an inappropriate act for women just like it is today for most women to grow their armpits hair and leg hair. It was seen as unattractive. Dutch painters used cigarettes as a symbol of human foolishness in the 17th century and in the 19th century, cigarettes were perceived as props of \u201cfallen women\u201d and prostitutes. Back then,  even some women\u2019s groups also fought against women smoking.\n\n**So how do you reverse this mass perception? With a smart propaganda / public relation stunt of course!**\n\nThe formula was simple. In 1929, Edward Bernays paid women actress to smoke their \"torches of freedom\"during a big Easter Sunday Parade in New York. He hired his own photographers to make sure that good pictures were taken and then published around the world.\n\nFeminist Ruth Hale also called for women to join in the march saying, **\u201cWomen! Light another torch of freedom! Fight another sex taboo!\u201d** Once the footage was released, the campaign was being talked about everywhere, the women\u2019s walk was seen as a protest for equality and sparked discussion throughout the nation and is still known today.\n\n# Today's Feminists Are Useful Idiots\n\n**Useful Idiots:** In political jargon, useful idiot is a term for people perceived as propagandists for a cause whose goals they are not fully aware of, and who are used cynically by the leaders of the cause.\n\nHow does having a \"Slut Walk\" or an International \"Free the Nipples Day\" actually empowering for women? \n\nHow is working \"for the man\" in a stupid office for 40h+ per week and not spending time with their kids empowering for women? \n\nHow does having sex with unvetted men, expose themselves to STDs and at risk of becoming a single mother empowering for women? \n\n<center><h3> Last time I check, being a single mother is a straight ticket to poverty.</h3>\nhttps://www.steemimg.com/images/2016/08/30/Single-mothers_Foundry_Imaged8c35.jpg</center>\n\n# Did Feminism Make Women Less Happy in Aggregate?\n<center>https://www.steemimg.com/images/2016/08/30/original364e2.jpg\nAverage happiness index value for the period of 1972-2006 \nSource: Based on responses to question 157 of the General Social Surveys</center>\n\nAs [this Huffington Post article](http://www.huffingtonpost.com/marcus-buckingham/whats-happening-to-womens_b_289511.html) puts it:\n>Greater educational, political, and employment opportunities have corresponded to decreases in life happiness for women, as compared to men.\n\n### My theory\nSo what if most women doesn't like this \"feminist paradise\" we now live in today? Technically, there is no law in the book that discriminate on women. Women are in politics, work in every fields they want to, got to sleep with anyone they like and even have  abortions to not deal with the consequences of having sex. Why are they less happy than before?\n\nMaybe they've been sold on the idea that it is their career that defines their identity. Maybe they've been told their careers would make them happy. Maybe they've been told that focusing on family and being a homemaker is for losers who don't have ambitions. Maybe they've been told that they should never count on men because they are not to be trusted. Maybe it's because they actually lost something in this process of \"emancipation\"...what's actually needed to live \"The Good Life\".\n\n \n# In Conclusion\n\nAs Gavin McInnes crudely puts it in his clip:\n\n> I'm telling you man, this feminism thing is the best deal dude have ever had ever. You don't just get the milk for free...you get all the milk you want and the cow is happy. The cow think it's cool to give you milk. You don't have to buy the cow!\n\nFeminism along with the rise of the secular values created the perfect environment for people who want to live like rabbits and who's sole goal in life is pleasure seeking. It is also a sad place for a lot of people who will ultimately realize that no amount of self-indulgence actually fill the existential hole they have in their heart.",
+    "body_length": 5696,
+    "cashout_time": "2016-10-01T09:13:24",
+    "category": "feminism",
+    "children": 49,
+    "created": "2016-08-30T22:32:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"feminism\",\"propaganda\",\"social-engineering\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/xeAerBwVL14\\/0.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/edwardbernaysd9311.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/torchesoffreedom103f3.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/Single-mothers_Foundry_Imaged8c35.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/original364e2.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=xeAerBwVL14\",\"http:\\/\\/www.huffingtonpost.com\\/marcus-buckingham\\/whats-happening-to-womens_b_289511.html\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T22:33:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 25443958683593,
+    "parent_author": "",
+    "parent_permlink": "feminism",
+    "pending_payout_value": "79.159 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "language-warning-is-feminism-a-conspiracy-made-to-give-what-men-always-wanted",
+    "post_id": 806222,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "(LANGUAGE WARNING) - Is Feminism a \"Man-Made\" Conspiracy?",
+    "title": "(LANGUAGE WARNING) - Is Feminism a \"Man-Made\" Conspiracy?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/feminism/@cryptoctopus/language-warning-is-feminism-a-conspiracy-made-to-give-what-men-always-wanted"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29150477200511",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "701289384385",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25414633165852",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7174019152101",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210082807921",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1764791171902",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624152304261",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4648685890081",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6351970742614",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099420761",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762775739",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697355955",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7188761077812",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481370244096",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54042459354",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32970728002",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425105452508",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26810306273",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661039186",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213669926",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38923095598",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64581427225",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15818603292",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398943529648",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2463177709510",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856507042",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9947524418",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2438952883",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452823187408",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622762084",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1120034999305",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967255526",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2771175740309",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839864397684",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136849931495",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65907216897",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6554332244",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288151719",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23957331951",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14107159251",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14365023000",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "881970618",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77103074369",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314721920304",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71043895599",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24175856122",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11709056510",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2945062368",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087651795909",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5074405568",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "829397963387",
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520911060129",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8059030205",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475449654",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "844668962218",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581844145",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19479953917",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26181526037",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056240258",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330922076737",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10610979162",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9268194915",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677773729537",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "928388769",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2557289360",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91719101598",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59225313172",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141414573060",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13116548685",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55582109386",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236099584762",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59558616330",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55235327891",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73982297699",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582588520898",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432017470",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7304641272",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25681264725",
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19944116455",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42338694092",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534614046975",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63018482318",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16492689268",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24310014144",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9361058328",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3674081134736",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372036035609",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6472724320",
+        "voter": "tom-sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371338569",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52893388475",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254528506273",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53001732751",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "90478643138",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12944835075",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54146897521",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199373714258",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9459589952",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266447843894",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501068247274",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327889281",
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1948772954",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2644116640",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138950405749",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "767974669228",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6009304227",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70959553359",
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98088341974",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269875655864",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44099614167",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6874971065",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28278082847",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8989505147",
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41629748060",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3660956268",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8702193878",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12845439804",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3475503565",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302683064",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199741557",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236520170145",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8561508638",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214476092245",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42481260342",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3112847393",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5856624277",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226933661994",
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15179347364",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122110321617",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124699737174",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15389739696",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20713322105",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "546797902965",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29887760404",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293427569",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230296351",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8721417924",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77587644053",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "476648200946",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3541453614",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "211552013",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "195806237",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823925676",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24638975246",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150447264693",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7172948519",
+        "voter": "ashikmiah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42831693849",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7726853303",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "812099979",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246668071",
+        "voter": "meiks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "919975933",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666787941",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5814827093",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013710280",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11280533352",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39456765083",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192958794775",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5305619945",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10678601154",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4185662810",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58809847081",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1396522137",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349307643",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293677046360",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11184349825",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4245765824",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369337292",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2875639977",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11249031580",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1140298026",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297463655",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2180799492",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15413678024",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19745928897",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4461061038",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939224933",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2992631645",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437754345",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37719378911",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25483068946",
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12396216231",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3409584558",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58723641585",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27478627702",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6880831700",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18787146710",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14042810323",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10048486235",
+        "voter": "tessaddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3145819717",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231654921805",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25046106508",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4647865096",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36117391359",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78635089731",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3476354385",
+        "voter": "mastletter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155789703",
+        "voter": "xand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203745188637",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016267553073",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26882316910",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "10192963847",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683543474",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255303484",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255686119",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147914638",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148750003",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84813726",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261379803",
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31846354099",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207787451268",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501806576",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5062409505",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112070311",
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951690317",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686451244",
+        "voter": "clonewarz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14847664684",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10761876132",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841259695",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20113867987",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7262356354",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217563709",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17534589350",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1793399910",
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618773038",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408950035",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219368610",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10855436202",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76805770",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2077025402",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117818134",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125682243",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "861558297",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456070989",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27752122387",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5449172599",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124605670789",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1023333164",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52633105216",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8765080527",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731831758",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5411545736",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46610922073",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14656318513",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52102443",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23337147272",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2595700392",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20215747355",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23051494572",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3801240661",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "482511907124",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4673772256",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9241877973",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34796180612",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2221730069",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3651315001",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2561315048",
+        "voter": "uuuhha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102188578929",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256407267931",
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1291393037",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12816228337",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94576187995",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3532206423",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57523014",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1694788518",
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687490845",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59458578",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52502611",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1228509011",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54355927",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436393958",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5653663246",
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273860901",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61293441",
+        "voter": "chrismarketing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234905614",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27919047116",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1636585181",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52405452",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11443509504",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117292449",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62391219",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7142895146",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72982892",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61874235",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1157125253",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37801320901",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2427660705",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20523010963",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "596060484",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288080558",
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6763113815",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296332739",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428185120",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3239749695",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2510434809",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59993245",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8646097362",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "301096603",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59226282",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70234608899",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39122184230",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73706708",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1779402721",
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10832852934",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7757948841",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12474263816",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1734880593",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "959083434",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "307241644",
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61576570",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258080185",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5110452751",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60364183",
+        "voter": "uri-bruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1241673056",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17764316625",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56761351",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74585233974",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55633002031",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14150272924",
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59103677",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74584024",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394178677",
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55140441",
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21483815812",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1713129061",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115141637",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37275195891",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15859669622",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57184430",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3725515516",
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5661463232",
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55473809",
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5854747574",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490887668",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16076822216",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82786113",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55725073",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58126364",
+        "voter": "chaeya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23191446542",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9370846764",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2759964885",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4840990082",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55093071",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53110243",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55070425",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117997260",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794249",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54036170",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108903782",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57522774",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70034816",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52521499",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242929782471",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68637522935",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37138701009",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54464024",
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53400199",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52041445",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130590614407",
+        "voter": "jamielefay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53143662",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2610482432",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1575506866",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142968891",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92282121",
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3022511117",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89109313",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4965019350",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50686168",
+        "voter": "jcdobber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50658555",
+        "voter": "dillon-sauers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50182215",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50817111",
+        "voter": "mehran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293689087",
+        "voter": "iontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50420952",
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249226300",
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1632559314",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61342952",
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154276916",
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155926994",
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![Alt text](http://cdn.dailyseoblog.com/wp-content/uploads/2015/11/Competition_SEO.jpg)\n\nNew competition is in town, here I said it. Many people don\u2019t like competition, some people fear it, some people get motivated by it, and some people see it as an opportunity that helps them step up to the next level.\n\nPersonally, I get the same emotional reflex from new competition than I get from any change of weather, it doesn\u2019t really faze me that much.  Long time ago I\u2019ve learned to open a new folder in my brain containing all the elements that I can\u2019t control, and the emergence of new competition certainly qualifies for that folder.\n\nAnd the reason I do that is because I think that the worst thing you possibly can do is to let your fear-based reactions make your decisions for you.\n\nAlthough to be totally honest with you, I\u2019d be an idiot if I told you to completely ignore competition and act as if doesn\u2019t don\u2019t exist. \n\nSometimes it\u2019s well worth your attention because it may show you something you\u2019ve missed, it may remind of why you do what you do in the first place, and depending on the competition, it can even help you improve and advance. \n\n![Alt Text](http://2.bp.blogspot.com/-jCsWg5lEM9w/To2MZ4wwQMI/AAAAAAAAI8Q/VNo2kdw4ot8/s640/Matrix_067Pyxurz.jpg)\n\nA few months ago a new disruptive technology came to the world. It allowed all sorts content creators to make some income doing what they love, all while bypassing the restrictive censorship of armies of gate keepers around the world. And since you\u2019re reading this, then you\u2019re probably using it too.\n\nBut here\u2019s the thing, when what you do is truly amazing, you can\u2019t really expect that no one else is going to try to replicate it. In fact, the strange thing would be that if no one was ever going to attempt to create \u201cthe new steemit\u201d.\n\nAfter all, competition is a part of life, and it\u2019s almost here so maybe it\u2019s time we talked about it.\n\n# Dancing with Mr. Ying and Miss Yang\n\nOn the positive side, competition can make us stronger and more connected. All those small debates and unnecessary dramas would suddenly take a back seat to more important matters. \n\nIt can motivate us to up our game and take it to the next level. It can encourage us to keep improving so we don\u2019t get too comfortable. It can help us realize what we have, and not take it for granted. \n\n![Alt Text](http://3.bp.blogspot.com/-TVDMaHEL61w/U1_ZuVFcttI/AAAAAAAAMvg/dt0wlqDLFWI/s1600/living+in+the+matrix.jpg)\n\nBut there's another way  to approach competition, the Yang way, where you can go to that room where you archive all those things that you can\u2019t control, head towards the door and kick it wide open. Just sit there and let fear invade you.\n\nI know this sounds crazy, but believe it or not, the second most common thing people do in face of competition is to fear it and let them rush into making unnecessary decisions. Now, I don\u2019t know about you but to me panic doesn\u2019t precisely strike me as a solid strategy.\n\nHowever, I do understand why some people might experience some concerns. *\"Look, there\u2019s a new competition, they have a brand new website, their logo looks so professionally made, their name is so catchy. Hell, they even have shiny shoes\u2026\"* \n\nFrom that point on, it will be just a matter of time until this question starts circling around: *What if people start pouring there?*\n\nI hate to break it to you, but these things can and will probably happen.\n\nA few steemians will move there and that\u2019s ok. In fact, that\u2019s very understandable, they will have their reasons. Maybe they go on their own, or maybe they will have an offer to join. \n\nSo when that happens, there are two things that you can do:\n\nYou can worry that people are migrating elsewhere, or you can remember the \u201csecret\u201d: That they will never stop making people. \n\nPlus, if that if the goal is expansion, then it\u2019s a comfort knowing that the journey hasn\u2019t changed and that we\u2019re still on the same course.\n\n# Destination Moon\n\nThat  are enough potential users in the planet for everyone, they will never stop making people, remember? \n\nPlus, if the dream was grow and reach hundreds of thousands, maybe millions of people, then nothing has really changed in the grand scheme of things. right?\n\nMaybe a few will leave and it\u2019s ok, maybe they\u2019ll come back quickly afterwards, maybe they won\u2019t or maybe this is a good opportunity to remember:\n\n## That moon we all talked about, our moon, is still the goal.\n\n![Alt Text](https://s9.postimg.io/ptqv6s6of/Untitled_design.png)\n\n*Picture dedicated to @smooth.  Thank you for the logo advice!*\n\n# A View from the Future\n\nSo in the future if you read some open letters from some prominent writers explaining why they moved away to the competition, so maybe we don't need to give these things more importance than they deserve.\n\nSometimes diversification is a smart move, sometimes people need to look for what\u2019s best for them, and sometimes they look for whatever they perceive as such. Whatever the case may be, it\u2019s still their choice and they are free to change their minds.\n\nAnd yes, we will probably read a few editorial posts about *\u201cWhy I left steemit for X\u201d* and maybe a little worry might circle your train of thought. \n\nMaybe their reasons are totally valid, or maybe they\u2019re unconsciously making up a story with which they can justify it to themselves. So all of the sudden every small problem is magnified and the grass on the other side looks greener. It happens.\n\nEither way, it\u2019s not our place to judge them.\n\nAnd yes, the preachers of doom will jump at the opportunity to parade their psychic abilities, *See? People are leaving steemit already. I told you!*, but when that happens please remember that we\u2019re talking about people who never let a good crisis go to waste. So whatever they say should probably be taken with a fine pure grain of Himalayan salt.\n\nThese are things that we can\u2019t control, here\u2019s what we can do.\n\nWe can step up, we can up our game, we can show them what this platform has already proved, we can remember why we joined and that maybe, just maybe show them that we are still fighting for that fucking moon.\n\nBecause let\u2019s not forget, steem is third behind Bitcoin and Ether.\n\n### And just as Bitcoin had so many new competing coins that were going to completely erase it from the map, we\u2019ll probably hear the same song again.\n\n![Alt Text](http://tr1.cbsistatic.com/hub/i/2014/11/04/27691a45-1606-4647-9093-637886cc89be/forecast-crystal-ball-prediction.jpg)\n\nThere will be many death predictions too. Bitcoin had about a hundred of them, so don't be surprised when that happens.\n\nBut what if I\u2019m wrong and the competition is very strong?\n\nWell then we learn to compete better. Competition is a part of life, and it can make you better if you know how to approach it. In fact, [I wrote about the subject in the past](https://steemit.com/life/@the-alien/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age).\n\nSo this goes for those of us who experienced the life changing abilities of this platform, and especially for those who are crazy enough to still believe in the same dream that we are at the beginning  stages of a beautiful game changer. For those who still have the same passion about disruptiveness as in the first day, here\u2019s something that we can do:\n\n# We Can Bet on Our Strengths\n\n![Alt Text](https://pbs.twimg.com/media/Cm8iJ91XEAIVokI.jpg)\n\nWe can focus on what steemit has achieved already and introduce it to the world. How many people have made some good income already? How many projects has steemit helped? How many it has brought in to life? How many relationships have been forged?\n\nSo maybe you\u2019re a filmmaker looking for a good story, maybe you can make a documentary about the lives that steemit has changed and its future effects on society, maybe the rest of us can help you.\n\nMaybe I should listen to my own words and lead by example. Maybe I should carve out some time and finally launch my very own book that was born out of pure steem.\n\nOr maybe we shouldn\u2019t have to do anything at all. Maybe we shouldn\u2019t have to step up our game just yet, and ignore any competition.\n\nI\u2019m not quite sure.\n\nWhatever the case may be, I just want you to know that if you\u2019re here for the long run, than you should know that more competition will come, and when that happens don\u2019t listen to the alarming voices and trust your own judgement.\n\nI want you to know that it\u2019s not the end, that this is the beginning and that I hope that you\u2019re still enjoying this beautifully game changing ride and not planning to give up your seat just yet.\n\n#### Image Sources: [1](http://dailyseoblog.com/how-to-discover-your-competitions-seo-strategies/) - [2](http://pyxurz.blogspot.com.br/2011/10/matrix-page-2-of-7.html) - [3](http://humansarefree.com/2014/04/16-signs-that-you-are-slave-living-in.html)- [4](http://wallpaper.zone/carlsberg-wallpaper) - [5](http://www.techrepublic.com/article/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends/) - [6](https://twitter.com/riaali4)",
+    "body_length": 9016,
+    "cashout_time": "2016-10-02T00:55:54",
+    "category": "life",
+    "children": 90,
+    "created": "2016-08-31T20:01:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"competition\",\"psychology\",\"alien\"],\"users\":[\"smooth\"],\"image\":[\"http:\\/\\/cdn.dailyseoblog.com\\/wp-content\\/uploads\\/2015\\/11\\/Competition_SEO.jpg\",\"http:\\/\\/2.bp.blogspot.com\\/-jCsWg5lEM9w\\/To2MZ4wwQMI\\/AAAAAAAAI8Q\\/VNo2kdw4ot8\\/s640\\/Matrix_067Pyxurz.jpg\",\"http:\\/\\/3.bp.blogspot.com\\/-TVDMaHEL61w\\/U1_ZuVFcttI\\/AAAAAAAAMvg\\/dt0wlqDLFWI\\/s1600\\/living+in+the+matrix.jpg\",\"https:\\/\\/s9.postimg.io\\/ptqv6s6of\\/Untitled_design.png\",\"http:\\/\\/tr1.cbsistatic.com\\/hub\\/i\\/2014\\/11\\/04\\/27691a45-1606-4647-9093-637886cc89be\\/forecast-crystal-ball-prediction.jpg\",\"https:\\/\\/pbs.twimg.com\\/media\\/Cm8iJ91XEAIVokI.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/life\\/@the-alien\\/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age\",\"http:\\/\\/dailyseoblog.com\\/how-to-discover-your-competitions-seo-strategies\\/\",\"http:\\/\\/pyxurz.blogspot.com.br\\/2011\\/10\\/matrix-page-2-of-7.html\",\"http:\\/\\/humansarefree.com\\/2014\\/04\\/16-signs-that-you-are-slave-living-in.html\",\"http:\\/\\/wallpaper.zone\\/carlsberg-wallpaper\",\"http:\\/\\/www.techrepublic.com\\/article\\/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends\\/\",\"https:\\/\\/twitter.com\\/riaali4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T23:28:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 115579310823374,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1282.366 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "we-have-competition-so-what",
+    "post_id": 816377,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "We Have Competition, So What?",
+    "title": "We Have Competition, So What?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/we-have-competition-so-what"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1068066740232",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-14428335580523",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6580940624714",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2516500322385",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9730263409820",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2238089828373",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117245008705",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581077721826",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016281567712",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4712575705195",
+        "voter": "wang"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "50128182486",
+        "voter": "adm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101248946",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765091051",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690619464",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54354410559",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661935517",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213718493",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2001205407251",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418315136885",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424995350979",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2859018151628",
+        "voter": "recursive"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "223774607744",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14213361017",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11473937036",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623025846",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "23639540033",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967713364",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299060965565",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121855691094",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288235837",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "9548778927",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38491019685",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1767163827",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419437392055",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1579031296",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16975075430",
+        "voter": "jademont"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "7579732231",
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1459747282",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "6757762580",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "10632532459",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16892420207",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1448343606",
+        "voter": "n25052016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7584918683",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37443492197",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666866364",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74100412917",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1419670146",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2578496905",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39320777722",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8666838603",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13246631412",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3835227080462",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364306847511",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401376869",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2339939419364",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "93314085385",
+        "voter": "wingz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "28201520191",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212735022017",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17038534997",
+        "voter": "andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79982031063",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-209838822321",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177241468",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "5655530548",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2787011053",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175537967389",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "79382741",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792170905",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5943847648",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1460965920149",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687075875567",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46038400775",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14127596797",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470524735958",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "11246189112",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267393527",
+        "voter": "artisan"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "4490182566",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289162489",
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17550246480",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1318198250",
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12952739395",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5365157925",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266657278",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47434235880",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330653046604",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3392620167",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5858174588",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9866111769",
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5253410818",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22467197866",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34735743250",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47802301892",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281926950358",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14545520870",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24971256573",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6918017824",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946734032",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16677138219",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1339918531",
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "23124728884",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690010021",
+        "voter": "busser"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "74680604",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "188768554",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "211774654",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "194127478",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "6900",
+        "reputation": 0,
+        "rshares": "112654580280",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2068776947",
+        "voter": "gazm"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1711089537",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1605307412",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "126505514",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10429341978",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237084223",
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1969204308",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4194090115",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342507039",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242542379761",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10514634467",
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786532034",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "826867066",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70528519000",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41938187661",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19329526526",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44336327098",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-128498217434",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5644661682",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1919200251",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13274390807",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3093346077",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10945767657",
+        "voter": "stevo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10151327610",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259629450569",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-30470822745",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8266500094",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2117017421",
+        "voter": "earnest"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-262081883",
+        "voter": "shing3e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1600176825",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7971365358",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204046586021",
+        "voter": "jl777"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3900840609",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "6548020005",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1399761805",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1833955050",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277681916",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278097823",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160825350",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161733355",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92188832",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11734903206",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12811217967",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19696646539",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8065287272",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17558743505",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594907055",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207927318",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445158598",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238573730",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83484533",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "214182446",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "195430067",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7109462134",
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115507974",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13595360798",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7520902716",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129103709",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658509913",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30896278536",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77914394030",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8783779105",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3658561552",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53835780",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1556598011",
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1472655783",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54844677",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "3995394560",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25077308053",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6000428593",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2300718527",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1821180466",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4338245273",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979617190",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1407114808",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7948406128",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101379161825",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70413598",
+        "voter": "ragnaroek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88710491389",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4645077272",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "21851097144",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2482187793",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "4100",
+        "reputation": 0,
+        "rshares": "23525650772",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55265906",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53370316",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12436071828",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61746903",
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52985539",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1664097198",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52848854",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338891141",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71506742",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230331964",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61515128",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "983145708",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83962397834",
+        "voter": "miacats"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-37335893668",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114992597",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545877",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61167862",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53648513",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74131936",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-61687049",
+        "voter": "kanusteem"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "3900348752",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7833422368",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71551855",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60661014",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310680382",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651551511",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59610335965",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "834306506",
+        "voter": "inferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12520030511",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4730854063",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3289942651",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1288112247",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792593563",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863356",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039566",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51852278",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3719392493",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1810222177",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2519054922",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57399342",
+        "voter": "ethansteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51481279",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475206804",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58064982",
+        "voter": "zite"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4156286103",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562255",
+        "voter": "curpose"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-861184213",
+        "voter": "ontofractal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59978409",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "532936297",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "850866519",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1005088816",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2331050847",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59995797",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51712804",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1442988265",
+        "voter": "nadin3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683907739",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51718188",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51388276",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51379706",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34329581722",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15597377801",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254519172",
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5757204428",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814474",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157129613626",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54632424",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131546618",
+        "voter": "illusiveman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2713459817",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54012814",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106768414",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588271491",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23572897576",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1615824466",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74117002",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5292676076",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50470409",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63543002",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1548545048",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53002525",
+        "voter": "swapman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8160990156",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59088198",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4882248396",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1306905034",
+        "voter": "mrabdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69546372",
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51797456",
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52171779",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3039484418",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71167473",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154396017",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163216276",
+        "voter": "zacariajames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124699787",
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162784893",
+        "voter": "knights"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://stakepool.com/wp-content/uploads/2016/08/photo3.jpg</center>\n\nSo, I was sitting in my $5000 massage chair smoking a cuban cigar when all of a sudden all kinds of bells started ringing. So I had to stop what I was doing and walk all the way over to my enormous trading-desk on the opposite side of my man-cave to see what was going on, and of course - there it was... A new post from my ex-boyfriend who cannot believe I dumped him for a better looking guy, and I knew he was out for blood so I started reading:\n\n<h3>A littlebit of history first</h3>\n\nWhen I wrote against @stellabelle and her article about synero-amp vs steemit, @tuck-fheman started spamming my comment section with all kinds of accusations, and lately he has started what he calls a \"comic-strip\" about me where he is doing his very best to harass the hell out of me.\n\n<h5>I still stand by what I wrote in my article against @stellabelle - it was a very dumb move on her behalf and I have people on record who confess to buying synereo-amp and losing money because of her article. The point of calling her out was to let her know that she has a loud voice in this community, and that she therefore must be careful advising people about investments and projects in a market she has no real clue about, because she is new.</h5>\n\nThen, when I apologized in public to @heiditravels for using explicit words when I was mad at her for not showing up to a Public Relation Interview when she came to Per\u00fa, an Interview that would have gone out on Television to 10 million Peruvians in prime-time and maybe secure 200,000 new signups for Steemit, he went on another rampage and started posting screenshots of the conversation and tried to get people to flag my post, which did not work because people are not stupid around here - they see what is going on.\n\n<h1>I still think what @heiditravels did was selfish, but I am over it - It is history @tuck-fheman - she wanted the @dollarvigilante more then me, and I have come to accept that he is much better looking then me, no homo :) (Just kidding)</h1>\n\nToday @tuck-fheman posted another harassment-cartoon, and even went to the #steemitabuse chat and bragged about it, told people that I was a sociopath that needed to be stopped, a woman-abuser and many other things that was just degrading and sad to read from him.\n\n<h2>Tuck & Stella = Early adopters who made a lot of steem posting pure shit</h2>\n\nSo what do I do? He is one with the most reputation on Steemit because he was very early into steemit and was in the original \"circle-jerk\"-club as they called it. Apparently back in those days you could post a picture of your garbage-can and make thousands of steem and now a days you have to actually make real content with real value.\n\nThen we have @stellabelle - I have nothing against her, never tried to attack her in any way - just had to speak up when she decided to embrace synereo-amp in a way that felt like... she was pooping where she was eating and I have honestly not read a single article she has published since. Instead I have found new aspiring artists like @poeticsnake who make amazing drawings and really put in a lot of real work in her art.\n\n@stellabelle also is from the very early adopters of steemit who made a lot of steem by writing articles about how she ripped of her friends when she was a car-salesman, or how she used to shoplift in stores when she was rich. Something to be proud of? Would those articles be worth anything if she wrote them today?\n\n<h1>In case you don\u00b4t know what I do on Steemit, I make comedy, entertainment, cartoons Here are a few examples for earlier:</h1>\n\nhttps://www.youtube.com/watch?v=ojNbGf5oIhM\n\nhttps://www.youtube.com/watch?v=vh-TKt_GSCc\n\nhttps://www.youtube.com/watch?v=ijVJNn0qgxg\n\nhttps://www.youtube.com/watch?v=ZHzdXtFKwYA\n\nhttps://www.youtube.com/watch?v=0SMMo7aQnPY\n\n\n---\n<h1>I also do Technical Analysis of Forex, Stocks and Crypto-Currency in posts like this:</h1>\n\nhttps://www.youtube.com/watch?v=dyXt_kJhomU\n\n---\n\n<h1>And I also make funny songs about steemit and crypto like this:</h1>\n\nhttps://www.youtube.com/watch?v=6P2FB9Mg_YI\n\nand like this:\n\nhttps://www.youtube.com/watch?v=3gfntBEI3Aw\n\n---\n<center>So please - Tuck-Fheman, Stellabelle - Leave me alone if you are going to act like bullies and collude and harass me - there is no point to that! <b>Start doing something positive for Steemit instead of all this negativity! </b>And to all the rest of you - I hope you see it that I loud and clear do not want to have anything to do with these two people. </center>\n---\n\n<center><img src=\"http://i.imgur.com/JhD2D0s.png\"></center>\n\n<center><img src=\"http://i.imgur.com/DLFAEdd.png\"></center>\n\nBreaking up is never easy, I know - but you have to let me go :)",
+    "body_length": 4768,
+    "cashout_time": "2016-10-05T10:04:33",
+    "category": "steemit",
+    "children": 106,
+    "created": "2016-09-03T21:39:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"abuse\",\"witnesses\",\"steemitabuse\"],\"users\":[\"stellabelle\",\"tuck-fheman\",\"heiditravels\",\"dollarvigilante\",\"poeticsnake\"],\"image\":[\"https:\\/\\/stakepool.com\\/wp-content\\/uploads\\/2016\\/08\\/photo3.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ojNbGf5oIhM\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/vh-TKt_GSCc\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ijVJNn0qgxg\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ZHzdXtFKwYA\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/0SMMo7aQnPY\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/dyXt_kJhomU\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/6P2FB9Mg_YI\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/3gfntBEI3Aw\\/0.jpg\",\"http:\\/\\/i.imgur.com\\/JhD2D0s.png\",\"http:\\/\\/i.imgur.com\\/DLFAEdd.png\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=ojNbGf5oIhM\",\"https:\\/\\/www.youtube.com\\/watch?v=vh-TKt_GSCc\",\"https:\\/\\/www.youtube.com\\/watch?v=ijVJNn0qgxg\",\"https:\\/\\/www.youtube.com\\/watch?v=ZHzdXtFKwYA\",\"https:\\/\\/www.youtube.com\\/watch?v=0SMMo7aQnPY\",\"https:\\/\\/www.youtube.com\\/watch?v=dyXt_kJhomU\",\"https:\\/\\/www.youtube.com\\/watch?v=6P2FB9Mg_YI\",\"https:\\/\\/www.youtube.com\\/watch?v=3gfntBEI3Aw\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T22:52:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 28528575081428,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "112.665 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-harassment-wow-it-finally-happened-to-me-too-d",
+    "post_id": 848240,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28904011889414",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520098232581",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27187008322655",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169804839880",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2636342185376",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169207940021",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3073876330742",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2008563761368",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594575320115",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011916646700",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2393257515326",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1107774806631",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4973802490322",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4674533411216",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2482055809",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1809839585238",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013424240",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552662812",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "491465130261",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43649505393",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5572119315",
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32994834817",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392020164380",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26825111274",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330064009",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171009273",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208927024954",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2005815389795",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11196356543",
+        "voter": "steemservices3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13072638952",
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14855376121",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444955155332",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2792476965429",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1532665365",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "918878966751",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123571015707",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2248950812",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453188235245",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11723893904",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499845540",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "775709423",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786483423564",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "408396261389",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40480067408",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230642309",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25304604461",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14464815855",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1820924487",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "12861662310",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "548931646",
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1055355445022",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19313464152",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "832212930452",
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68620290271",
+        "voter": "idealist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "611673479623",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19603806106",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29124731949",
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487043900",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5487072034",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110425095104",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29577376352",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2105697423",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338115289584",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26446572833",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13242421616",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "733881760856",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "679520448",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "4200",
+        "reputation": 0,
+        "rshares": "4974441347",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151937411878",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230470945840",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534596286",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74166126146",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623001349410",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425459923",
+        "voter": "murh"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3590512275",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2634258540",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378920499792",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15588807020",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42977927576",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64657896111",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98243686947",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24400271615",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8199640991",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13249527549",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377944761420",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380255021",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370334988153",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233304410850",
+        "voter": "wingz"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "33522431436",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54397942319",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213100572181",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6210962615",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403936875902",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "539220549910",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78420366563",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012427662",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3247481989",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36310114628",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "719254637693",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167123545461",
+        "voter": "ikigai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5829433150",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687228830675",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108637592108",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272424359692",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2937074898",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2502021825",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3406174686",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36049155648",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562575775",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43623897139",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44534121657",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53127948729",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243464927250",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "14593112076",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "2600",
+        "reputation": 0,
+        "rshares": "1349434599",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92800123706",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3329170505",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15569455870",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16406069363",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23470130902",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467472850580",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120310968454",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60653460344",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10592956071",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103734236038",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3661486271",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485287450",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531132027",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486886690",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25575729781",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148458773016",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "504635563",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1206556077",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1630261480",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4600997385",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15976597511",
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10929036897",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13555525897",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3978399004",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21722940066",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10435159079",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349470768",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11941739853",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43183709774",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410205647",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3215762929",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10050955929",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "429865972",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370939417531",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43452166600",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7443194536",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103711516",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3786816110",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5649736542",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243501388",
+        "voter": "mix68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "744454404903",
+        "voter": "ramta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3174794355",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438064420",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280968811744",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64246109862",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1911344111",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7024624095",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7327096445",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6105234990",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234706981000",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29860845400",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116065815",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102459876",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182710907037",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37640387244",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16288614419",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1798884189",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269576627",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269980297",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156093986",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156975275",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89476508",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500969295",
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117711994",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764587130",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21325436037",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15571624866",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644954948",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8147029083",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221401214",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436474032",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749726803",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233864769",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81814843",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2222862544",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537189684",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "502409799",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536957638",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5841936138",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117834331",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29626477289",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139296107",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217225350",
+        "voter": "choccy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1859734787",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18184768944",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7816664104",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5874256428",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128078777101",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1279745964",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8331474043",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103516772",
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57873464",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58958028",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "7300",
+        "reputation": 0,
+        "rshares": "693670933974",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267736473",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25730062568",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16142522947",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51338511950",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4615241075",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3066422709",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807752948",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103522443133",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "7300",
+        "reputation": 0,
+        "rshares": "77778400648",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18051601393",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17911590129",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93195477512",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5248424662",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265682837",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9442440033",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "423788872",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59410849",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55911760",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11703925092",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "17730431006",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55449983",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55306941",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345831698",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234954849",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66371585",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29493027614",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65068915",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065111573",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54908311",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54842915",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117308646",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545877",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62391219",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143792",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116751214",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54313084",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72982892",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61874235",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1497361810",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17605373303",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35420250755",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57802223",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57795937",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101227402628",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662204978880",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1443290254",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54220781",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54218223",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54216305",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54213405",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54209199",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59993245",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8891054106",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53821337",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24772824820",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59226282",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71200836239",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46612959839",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "163983245",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16355375535",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "2977572185",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57797939",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53853911",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "724970673",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54705383",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146567272",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1923215341",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366942350",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118894339",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "813530163",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14529944296",
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58249183",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77673986",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7315831479",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2484284234",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56265756",
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52836995",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1650630573",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127978892",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52505412",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50191639",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32097581345",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15297756343",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53252658",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5646175108",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "397453188",
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160081558",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51451058",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158538070448",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55725073",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230725",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9219166710",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52088375",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2660739677",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55093071",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5273026357",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1541628858",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108903782",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "717513029",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341331436972",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4014959887",
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62339306632",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25877183239",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53353220",
+        "voter": "swisswatcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "772900078",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066584907",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65975408",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53729098",
+        "voter": "dariuszg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2762392872",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2035771305",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1290719213",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1451959158",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8917175222",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175892938",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54059416",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52368690",
+        "voter": "rooster.ninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4788178237",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50368777",
+        "voter": "eagleeye7850"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57266113",
+        "voter": "technium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1093018575",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50536471",
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50484452",
+        "voter": "connect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317220",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1684721465",
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99417982",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979811276",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151614981",
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51876835",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74402358",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81556444",
+        "voter": "brainup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82287966",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157628162",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60962152",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163439230",
+        "voter": "zubasky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162925257",
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162911190",
+        "voter": "front"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156833866",
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162561543",
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162424202",
+        "voter": "unlabeled"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155910854",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161855613",
+        "voter": "jamicwe219"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158660342",
+        "voter": "iberia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161815656",
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116987070",
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107496727",
+        "voter": "elsi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160573104",
+        "voter": "sortinghat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154276916",
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152869602",
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![Alt Text](http://www.geliosoft.com/100-happy-dollars-3d/falling-money-wallpaper.jpg)\n\nHave you ever wondered  why people keep trusting career politicians to handle their finances? It\u2019s a fascinating thing really. This is one of the biggest mind-boggling mysteries that seem to defy even time itself, mysteries that are impossible to explain from a purely rational point of view.\n\nAsk any person in the world \u2013 scratch that \u2013 ask any person in the history of the world to describe politics in one word and you are guaranteed to hear some of the following words: Deceiving, dishonest, incompetent, cheating\u2026Etc. And probably, this is from the generous side.\n\nNow,  ask any of those people how come they trusted those individuals to manage their finances, and it would seem like you\u2019re speaking Chinese to them.\n\n## And that area right there is where the real game is being played.\n\nThat\u2019s the space where critical thinking dulls, where the emperor sells clothes, and no one\u2019s looking at Pinocchio\u2019s nose. How on earth would a known dishonest, power hungry person convince the others that he should be the one that makes the decisions on behalf of everybody?\n\nWorse than that, they give them all the power, no accountability and a virtual 100% probability to screw them , and everybody just keeps pretending to be surprised when these things happens.\n\n# Why Does This Keep Happening to Me?\n\nYou change the country, you change the century but the song remains the same, and the mystery survives. The only way to keep convincing people to accept a deal that acts against their own self-interest is to create a story that makes the exploitation of mankind look like the solution to their problem. \n\n![Alt text](http://vignette2.wikia.nocookie.net/lostpedia/images/b/b2/Lastsupper.jpg/revision/latest?cb=20100117063640)\n\nYou look around, you find countries like Bolivia or Venezuela (just to give a few examples) that are extraordinarily blessed at the very same time with a rich abundance in natural resources  and a starving population despite the fact that these two things should be mutually exclusive by any stretch of the imagination.\n\nYou can\u2019t be that incompetent if you tried.\n\nBut then again, this isn\u2019t about incompetence. Their solutions were already predetermined in the narrative, and when it doesn't work and the tale falls on its own weight, they\u2019ll just repeat the same process again, because the narrative remains the same.\n\nThey keep seizing more lands, more factories and they keep \u201ccracking down\u201d on competition and seize everything in the name of \u2018the common good\u2019. Then they bankrupt them as well and they seize more and bankrupt those too. \n\n### If it wasn\u2019t so heartbreaking it would be hilarious.\n\nHere\u2019s the crazy part of all this is that  this wide spread phenomenon is completely irrelevant to the economic system, the economic policy, or to the continent, and it's happening across the board. \n\n![Alt Text](http://redlikeme.ca/wp-content/uploads/2015/10/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg)\n\nFind me a person in southern Europe that has good things to say about politicians in the ECB.\n\nAll the solutions they present are hell bent on screwing the little guy, whether it\u2019s draconian austerity measures, raising the retirement age, bank bail outs\u2026Etc\n\nI\u2019m not saying that it\u2019s due to incompetence, dishonesty, or both. I\u2019m saying that it\u2019s irrelevant, because the solution is already pre-set beforehand to achieve one purpose, and one purpose only, that power keeps consolidating itself. \n\nThat might explain why we always keep hearing sentences like this one: *\u201cThe game is rigged\u201d*, which happens to be one of the most popular expressions of our generation.\n\nLet me give you another example.\n\nWhen you turn on the radio and there are some finance experts on, how many times we hear the following words: \n\n*They\u2019re making things worse; They\u2019re repeating the same mistakes again;  Things are actually getting worse and not better; The solutions are creating more problems than solving; How come the recovery is worse than the recession?*\n\nYou see where this is going? \n\nAnd this is not exclusive to our generation, in fact this story form is a very common archetypal myth that exists across every society and period of human history.  With the very same the result, that whatever action that will be taken it will only serve to reinforce the dominant narrative.\n\n# Once Upon a Time\n\nIt is believed that the cavemen were the first storytellers, and whoever controlled the dominant story had a strong pull on the rest of society.\n\n![Alt Text](http://www.kino.de/wp-content/gallery/homo-erectus-2007/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg)\n\nThe  human story is at the heart of everything, it\u2019s the prima material of how most people perceive reality, the moment you question someone else\u2019s dominant narrative, the debate is over before it\u2019s even started. For many people, they much rather fall for the same thing again and again and until the end of times, rather than to dare questioning the story they grew up around.\n\n> ### *\u201cIt\u2019s easier to fool people, than show them that they have been fooled\u201d.*\u2014 Mark Twain\n\nThe crazy part however, is that the even if those individuals were to fully realized how they've been fooled, they would probably still willingly walk towards the fire nonetheless. Metaphorically speaking.\n\n### Unless of course, there is a new story that replaces the old story.\n\nI remember reading one of James Altucher\u2019s amazing posts and had a wake up call. I hope I\u2019m not butchering the story, but it basically it goes like this: A friend of James asked him to go with her to the bank to help her decide the best option for her to put her money. Since he has some solid expertise in the finance world, it seemed like a wise decision for her part.\n\nDuring that meeting in the bank, James just sat down, said nothing and only listened, when they finally left the bank he started explaining to her all the ways that they were trying to take advantage of her and rip her off.\n\n*\u201cHow can they do that to me?\u201d*\n\nThe next day, she went to the bank and did everything they asked her nonetheless.\n\n![Alt text](http://blogs-images.forbes.com/maggiemcgrath/files/2015/06/0211_hipster-piggy-bank-401k_1024x576.jpg)\n\n# This is How the Story Goes\n\nCommon folklore has it that there are those people among us that regular people  that look just like me and you, but when they get a magical paper that says that they work for the status quo, then an invisible laser descends from the sky and grants them all sorts supernatural abilities and financial savoir-faire.\n\nWell, sort of... Everything they touch still goes to crap, but that doesn\u2019t matter anymore and their never-ceasing incompetence doesn\u2019t seem to bother anyone either. Because now, they're part of the narrative.\n\n### And apparently, narrative trumps logic. \n\nA successful investor once told me: *Never listen to government economists, if they knew how to manage money, they would\u2019ve made money themselves instead of telling people what to do.*\n\n![Alt Text](https://ascendingstarseed.files.wordpress.com/2016/08/cc12b-preppers2b-2bdoomsday.jpg)\n\nAs the Altucher story goes, along with countless others, whenever there is a threat to the narrative, the debate is over before it has even started. For many people in the world, defying authority is just about the last thing they would do, and that includes killing themselves and their own children.\n\nBut let\u2019s go back to the subject of the day. We tell ourselves a story that defies every single law of the universe, that the idea of good business is spending trillions of Dollars bombing millions of people and generating the biggest debtor nation the world has ever seen.\n\nIf that is not telling you anything then honestly, I don\u2019t know what does.\n\nWe tell ourselves even crazier stories, that if we just grabbed enough productive citizens and stacked them into jail cells for victim-less crimes, or for carrying bits of vegetation in their pockets, then we're going to revitalize the economy, and that oh! We will rehabilitate those poor souls through brutality and sexual violence.\n\n### Again, narrative trumps logic in ways logic can't even perceive.\n\nSome people choose to deny their programming, and that seems as the right choice because sooner or later those stories could start acting as their very own gatekeepers. I\u2019m not talking about inner resistance, I\u2019m saying that maybe we need a new story that replaces the old story.\n\n![Alt Text](http://i0.wp.com/dailyzen.co.uk/wp-content/uploads/2015/03/How-to-Make-Good-choices-and-make-the-most-of-them.jpg)\n\nThere has never been a better time for financial independence than the times we live in, there has never been so many options available for someone to start their own company, find jobs, or make their own movies even\u2026 All of that without dealing with a large number of resistant gate-keepers who may or may not have been programmed to serve a certain narrative.\n\nI don't know about you but personally, if I had to follow a narrative, I much rather have one that I designed for myself rather than one that I was born into.\n\n# Closing thoughts\n\nThey say that when there is a paradigm shift, there is usually a new story that renders the other story irrelevant, but until then and even though the tools are already available to the public, people will not make the final move until they start seeing a certain degree of mass-adoption around them.\n\nIt is that mass adoption aspect that would make it acceptable for their psyche to separate from that old, probably coercive narrative that has been attached to them.\n\n![Alt Text](http://www.elfm.co.uk/wp-content/uploads/2014/12/storytelling-night.jpg)\n\nA few minutes ago, I was just going to end this piece with a question: \u201cDoes the Blockchain need a story?\u201d\n\nBut then I realized that steemit has both the crypto-currency and the story aspect. So I\u2019m swapping that question for a few modest words:\n\nCan we just work together to build something beautiful? Do you guys see what we have here? Why don\u2019t we just focus on what we have and how we can improve it. After all, it\u2019s much harder to create something really great when you\u2019re being held back by unnecessary drama. Wouldn't you agree?\n\n And not to forget:\n\n### Your dream needs you full steem.\n \nSources: [1](http://www.geliosoft.com/100-happy-dollars-3d/) - [2](http://lostpedia.wikia.com/wiki/The_Lost_Supper) - [3](http://redlikeme.ca/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing/) - [4](http://www.kino.de/film/homo-erectus-2007/) - [5](http://money.cnn.com/pf/millennials-and-their-money/) - [6](https://ascendingstarseed.wordpress.com/category/economy-and-global-collapse/) - [7](http://dailyzen.co.uk/2015/03/19/how-to-make-good-choices-and-make-the-most-of-them/) - [8](https://storify.com/ProfKarim/the-power-of-storytelling)\n\n## [*Follow the Alien*](https://steemit.com/@the-alien)",
+    "body_length": 10964,
+    "cashout_time": "2016-10-07T11:28:24",
+    "category": "life",
+    "children": 49,
+    "created": "2016-09-06T00:18:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"philosophy\",\"psychology\",\"alien\"],\"image\":[\"http:\\/\\/www.geliosoft.com\\/100-happy-dollars-3d\\/falling-money-wallpaper.jpg\",\"http:\\/\\/vignette2.wikia.nocookie.net\\/lostpedia\\/images\\/b\\/b2\\/Lastsupper.jpg\\/revision\\/latest?cb=20100117063640\",\"http:\\/\\/redlikeme.ca\\/wp-content\\/uploads\\/2015\\/10\\/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg\",\"http:\\/\\/www.kino.de\\/wp-content\\/gallery\\/homo-erectus-2007\\/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg\",\"http:\\/\\/blogs-images.forbes.com\\/maggiemcgrath\\/files\\/2015\\/06\\/0211_hipster-piggy-bank-401k_1024x576.jpg\",\"https:\\/\\/ascendingstarseed.files.wordpress.com\\/2016\\/08\\/cc12b-preppers2b-2bdoomsday.jpg\",\"http:\\/\\/i0.wp.com\\/dailyzen.co.uk\\/wp-content\\/uploads\\/2015\\/03\\/How-to-Make-Good-choices-and-make-the-most-of-them.jpg\",\"http:\\/\\/www.elfm.co.uk\\/wp-content\\/uploads\\/2014\\/12\\/storytelling-night.jpg\"],\"links\":[\"http:\\/\\/www.geliosoft.com\\/100-happy-dollars-3d\\/\",\"http:\\/\\/lostpedia.wikia.com\\/wiki\\/The_Lost_Supper\",\"http:\\/\\/redlikeme.ca\\/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing\\/\",\"http:\\/\\/www.kino.de\\/film\\/homo-erectus-2007\\/\",\"http:\\/\\/money.cnn.com\\/pf\\/millennials-and-their-money\\/\",\"https:\\/\\/ascendingstarseed.wordpress.com\\/category\\/economy-and-global-collapse\\/\",\"http:\\/\\/dailyzen.co.uk\\/2015\\/03\\/19\\/how-to-make-good-choices-and-make-the-most-of-them\\/\",\"https:\\/\\/storify.com\\/ProfKarim\\/the-power-of-storytelling\",\"https:\\/\\/steemit.com\\/@the-alien\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T08:14:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 110391035728415,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1196.314 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "logic-and-fiat-money-are-they-mutually-exclusive",
+    "post_id": 868056,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/logic-and-fiat-money-are-they-mutually-exclusive"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28904209517709",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-56559208770",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633095325237",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "404682721071",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "25814870366911",
+        "voter": "dan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2321790225223",
+        "voter": "diaphanous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2077749979912",
+        "voter": "bmw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1860859029886",
+        "voter": "books"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1551086497755",
+        "voter": "butterfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1469367520215",
+        "voter": "commedy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6141142270335",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6934956643994",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5536285359773",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103030120",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1689669975555",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767362463",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6142381502949",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54638988750",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662795178",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3921583473347",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62849848037",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1460238073",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897783861872",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118160004239",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8846544205",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2249794908",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1220931423430",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326641694341",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23992305455",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26771021432",
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969744364",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "804647377325",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78719523584",
+        "voter": "jwest40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361589712598",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32423888615",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83099570491",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24793284195",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14471587511",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163614861708",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9864254866",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14902174889",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "71563667896",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52311045620",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411271639019",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78952260790",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11754655518",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3913661416",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552268439259",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487226144",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "6100",
+        "reputation": 0,
+        "rshares": "3975544133",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5612587148",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109201913867",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28968973138",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2062724006",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331414403780",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "4518704719",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144379940729",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54482680287",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33524081215",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26516736386",
+        "voter": "tmendieta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37994042628",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2366331863",
+        "voter": "alenevaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534991050",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67845312433",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425735650",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6894648848",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17773072912",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602425396",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13216041083",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198603454941",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15588807020",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42080883570",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941565976892",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23912266183",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6242728467",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685622702",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12984552465",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "2917169504539",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386419893744",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8806878751",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380391693",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52367224290",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349484107",
+        "voter": "yonatann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377770820778",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40679365477",
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308660771107",
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "13998741368",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55873941967",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108025258280",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53194598358",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412538354215",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1486565432",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13353610720",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "430294140",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "4700",
+        "reputation": 0,
+        "rshares": "11167158479",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988882833",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19192619156",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15756733173",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33784111908",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182873871538",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5709056203",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9721696359",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687254164754",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075516962",
+        "voter": "comm-press"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109117596483",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6740408834",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31925745781",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68617907780",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2375236125",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "12981212473",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3755852203",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "5400",
+        "reputation": 0,
+        "rshares": "15858494668",
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536461338",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40094142832",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39857869532",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50782349370",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "22535574872",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275298770505",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20203030978",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243464927250",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318035694495",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43816713486",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60077712293",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90689728719",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3297954099",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8587323673",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17199764671",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22616447166",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122136592502",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282238576797",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3286950628",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516176839",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12276334224",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6927337869",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242042299",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597179386",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69160956194",
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120331087671",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26149661294",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2761970265",
+        "voter": "wintrop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7012104525",
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "513898732093",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4223216611",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112572902958",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236699236",
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "48431592474",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5516539304",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "2893393868",
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1111186856",
+        "voter": "demyan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56528698039",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16937012018",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525662045",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40069670306",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1525991347",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17954765467",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4507281503",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "4200",
+        "reputation": 0,
+        "rshares": "26722878081",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3949738963",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11743458717",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685025327",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218350821",
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2438495293",
+        "voter": "thelindvall"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "426995359",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10624714992",
+        "voter": "fogspam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3758226202",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24926432348",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11466221508",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346695853",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38296982211",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12382501577",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12897559714",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2086071510",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235512684",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20010696496",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55174325289",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45468090152",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240374641",
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7144301672",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96640276",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129948707617",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3709534148",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5772890880",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2091519389",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13003141497",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3175079093",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18161034703",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2450336934",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201222637041",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "2045718563",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13357712366",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "40980982912",
+        "voter": "opheliafu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298430647098",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5853998263",
+        "voter": "kidsysco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3493315959",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14607170571",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64250965781",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123387400",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7924257770",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7311343446",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3248799071",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2691561605",
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "848614521",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4244751071",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13833357665",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3244193020",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2283280595",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26463727332",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38546045916",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39483002950",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84759836456",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3869796932",
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182754922360",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "977883724416",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9747030367",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39264915236",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1781950310",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269576627",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269980297",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156093986",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156975275",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89476508",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115403915",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95203313420",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10448758256",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32452429861",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115883340",
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133255616",
+        "voter": "bigb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571692815",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3835587963",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5372665495",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15514579228",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916462256",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15575145963",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614416410",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3297833326",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "432287231",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1750139335",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231618512",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4914389699",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81028161",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2242469546",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2849432107",
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554432980",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36985556688",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1731857982",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5554504133",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518235137",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21557151502",
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142706881",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115172592",
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27075686327",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244863448245",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2873547475",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188414958",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1458929155",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19540258029",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150369025",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5474983827",
+        "voter": "jed78"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "6677336214",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122226950104",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254151045",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4400767306",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70376481208",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7870689325",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6529244168",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59219358",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1561593690",
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6817558610",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58958028",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501549780",
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18337113073",
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25086446776",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54208918167",
+        "voter": "sextusempiricus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25748578986",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1916476866",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20943614649",
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14587304759",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2312594930",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4344940420",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6812512111",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1393113935",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8284755955",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101494312815",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100860038",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91120502513",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5443084062",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12780436995",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232895758",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58773515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189563166525",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312105000",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59410849",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55911760",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3302532712",
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710962726",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55449983",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982196003",
+        "voter": "fooblic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1986815415",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580406077",
+        "voter": "bmcv001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21699399275",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55306941",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1558777881",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68397753",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67990404",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29495720282",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60730988",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1884653469",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74898697",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88707336012",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490764449",
+        "voter": "sc-steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52419023",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143792",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577428472",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6753644017",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62395538",
+        "voter": "olya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8451306126",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54313084",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1549192117",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19205801220",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56598010",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56591855",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75583534",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2707740797",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "640494020911",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1371874570",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67104569235",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12003456501",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1389946718",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2560790218",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "963036943",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54220781",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54218223",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54216305",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54213405",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54209199",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4276803918",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187186651",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8469707556",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856443329",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2569452228",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53821337",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2866954104",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22522846885",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6050957442",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1871540303",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71218036289",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47545219036",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4000720825",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18578707926",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "5228073529",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4503042264",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52708083",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58330329",
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59194500",
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "733021198",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565688",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4382079199",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1624044881",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2017275348",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1572019930",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4887499753",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "670709305",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25570333868",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69572705",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57437168622",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98218493",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90577741",
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79568473",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20981590167",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57330113",
+        "voter": "aavkc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "675058400",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2433107936",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9191275813",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52836995",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6743441072",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101985046",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1616413109",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66879121",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133765107",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7518726707",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56987529",
+        "voter": "thepeacefulrebel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185622553",
+        "voter": "greatness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52505412",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12190963825",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "7100",
+        "reputation": 0,
+        "rshares": "24470534532",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15150640986",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3748408212",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85083750",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52847912",
+        "voter": "teruneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57099030",
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5529568480",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5272311109",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814474",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17059963076",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1518574310",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51451058",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3064424390",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277324152",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89038335",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537067064",
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1769489244",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2605716510",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343538723",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1449131127",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50554364",
+        "voter": "danbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327174897",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334013630052",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5674559575",
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59387530704",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9136703623",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1167978510",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "482952591",
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52226204",
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61567608",
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161284159",
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582922475",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1642685153",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2929180084",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210337011",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5725265619",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4651778852",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2744828616",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357202147",
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55826263",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2818894604",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951311375",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1129379312",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "5911683344",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1420415841",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338284222",
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8712540579",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347888867",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1352042554",
+        "voter": "mojojojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457160010",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336901289",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343046311",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039370994",
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4689184321",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "924825759",
+        "voter": "schattenjaeger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2382508857",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143571824",
+        "voter": "flowergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615424969",
+        "voter": "nathanjtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77317255",
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1692965069",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50568084",
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50536471",
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50532230",
+        "voter": "friends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50508468",
+        "voter": "lookie-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52005424",
+        "voter": "natord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55484657",
+        "voter": "steemettes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317220",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1757970224",
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4316683465",
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2918207689",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74402358",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1309209290",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154426469",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161446234",
+        "voter": "yasiin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164151372",
+        "voter": "flowmetheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147014100",
+        "voter": "eunnykim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065088190",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159374062",
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156089617",
+        "voter": "kalev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152729000",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276984194",
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132806923",
+        "voter": "swtcamito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158051137",
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157727916",
+        "voter": "dulani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141916333",
+        "voter": "laskoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154501465",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119814391",
+        "voter": "oliver.smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157648960",
+        "voter": "viper666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110346066",
+        "voter": "jack.johnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160689927",
+        "voter": "paulreifsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122578153",
+        "voter": "rubenkusters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157126941",
+        "voter": "adpipop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157060221",
+        "voter": "craneos6626"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147606365",
+        "voter": "laskovskiy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153814397",
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159993665",
+        "voter": "ttarabichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156821466",
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125821091",
+        "voter": "jasonxg"
+      }
+    ],
+    "author": "dantheman",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://i.imgflip.com/p1ij6.jpg<br/>**CENSORSHIP**</center>\n\nLanguage is a very powerful tool because it shapes the way we think. The words we choose to use [impact how we think, feel, and reason about the world around us](https://en.wikipedia.org/wiki/Linguistic_relativity). Today I would like to address the word *censorship* because it is a very hot topic on steemit.\n\nThe first problem we always face is different and ambiguous definitions for censorship.  Unfortunately, it isn\u2019t always practical to *define* our terms in every debate and therefore drama queens toss the term \u201ccensorship\u201d around far too easily. I would go so far as to say that the censorship card is played about as often and illegitimately as the race card.  Often those who play the *race card* are more *racist and oppressive* than those they slander, the same principle applies to those who play the censorship card.\n\n## Censorship requires Aggression \n\nThe defining characteristic of a free society is the absence of initiation of violence. This includes the credible threat of violence, fraud, theft, etc.   Without the threat of aggression people can freely say whatever they want, whenever they want without fear that their person or property will be harmed. A critical distinction of a free society is that you cannot express yourself in ways that violate the property rights of others.\n\n## Graffiti is Aggression and violation of Property Rights\n \nGraffiti is defined as writing or drawings scribbled, scratched, or **sprayed illicitly on a wall or other surface in a public place**. In a free society the Graffiti artist would be tracked down and expected to pay restitution to the property owner.  No rational individual would argue that the artist has been censored by the property owner or that the property owner is the one initiating aggression against the artist.\n\n## Property Owner defines Art vs Graffiti \nThere are places where graffiti-style art is acceptable and is actually encouraged. In this case no aggression has occurred and therefore the action is legitimate. \n\n<center> https://farm8.staticflickr.com/7485/15754046208_7d666a75a9_o.jpg</center>\n\n## Spam, Porn, Harassment, and Fraudulent posts are Digital Graffiti  \n\nWhen it comes to websites like Facebook, YouTube, Google, Reddit, and Steemit we have digital property owned by individuals providing a free and voluntary service to society. It is not possible for these organizations to censor user content because they are not using violence, theft, etc. \n\nThe only true censorship is when government agents approach these companies and demand content be removed under threat of force or violence.  Provided these companies are not under any kind of threat, there can be no censorship.\n\nWhen someone [demands that YouTube share ad revenue](/steemit/@calaber24p/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video) they are taking the role of the Graffiti artist that demands property owners not repaint over their artwork.\n\nSome people may consider the [Graffiti artwork worth thousands of dollars](https://en.wikipedia.org/wiki/Banksy), but this doesn\u2019t change the moral character of the vandalism.  Likewise, some people may feel their humor, sarcasm, teasing, crude language, or vulgar posts to be artwork and demand that other users see it and/or up vote it for payment. \n\n## Graffiti Hurts Community Value \n\nWe all love the idea that Free Speech adds value to the speaker, but our selfish desires to be heard come at the expense of the listeners.  Few people desire to move into a neighborhood where there is unfettered graffiti and complete disrespect for property rights.  Likewise, few people want to join an online community where there are no standards of mutual respect.\n\n## A Perception Problem \n\nWe have a very real problem in society today.  The problem is that people feel *entitled* to things that are not theirs.  Whether it is health care, google ranking, reputation, or [right for gay couples to be served by particular vendors who oppose gay marriage](http://www.politifact.com/florida/statements/2013/jul/08/tony-perkins/wedding-vendors-have-been-forced-participate-same-/).  These entitlements can only be delivered by initiating force and violence against innocent people.\n\nIf a particular vendor (YouTube, Facebook, Google, or your Local Florist) will not serve you, then you must take your business elsewhere.  Vendors who lose a significant amount of business will voluntarily reconsider their policies.   \n\n## But they have a monopoly!  \n\nTo the extent that a business gains the vast majority of the market share without relying on government regulations to shield them from competition, the monopoly is deserved and was earned by providing a quality product that others were unable to compete with.\n\nThere are no laws forcing everyone to use Google, YouTube, Reddit, or Facebook. There are no regulations preventing competitors from starting up and competing.  Complaining about their unwillingness to serve you is like a local mall refusing to allow certain tenants.  It will certainly make business more challenging for those tenants, but the prospective tenants are not entitled to a prime high-traffic spot in the mall.\n\n## Flagging Posts based upon Differing Opinions \n\nSome people have been complaining about users who down-vote posts they disagree with. The basis of the idea is that all posts are *entitled to* funding from those who support the ideas.  This stance is in direct opposition to the vested interests of every stakeholder.  \n\n\n<center>http://godfatherpolitics.com/wp-content/uploads/2014/03/thomas-jefferson.png</center>  \n\nWhat should happen when one stakeholder wishes to fund a cause abhorrent to another stakeholder of equal size?  The two opinions are canceled out and the remaining stakeholders get to decide.\n\n## Incentive to be Tolerant and Inclusive \n\nAll users, particularly whales, have financial incentive to be tolerant and inclusive.  This grows the overall network effect and makes everyone the most money possible.  To the extent any community adopts a culture of intolerance that overly restricts the range of acceptable opinion it will push people away.  New communities will form to serve the needs of those who are rejected and the free market competition for mindshare will continue.\n\n\n## Conclusion\n\nIf Steem remains a libertarian / anarchist enclave then it will fail to attract a broader audience and that in turn will mean that ordinary people will not get involved with cryptocurrency.  Likewise, if Steemit fails to curtail abusive, threatening, and toxic individuals it will also drive away the broader audience leaving only those with skin thick enough to take the abuse of trolls.  \n\nI want Steem be a healthy, vibrant community with engaging discussions from people with all points of view. Unfortunately (and fortunately?), I am only one of many users who have a say in what kind of content gets voted on.  Each and every one of us contributes to the culture and we will all succeed or fail based upon how we act.\n\nLets stop throwing the term \u201ccensorship\u201d around here on Steemit unless it is explicitly referring to the threat of violence.  It is out of place and conjures up inappropriate negative reactions similar to playing the race card.  Instead, lets focus on the rights of all voters to express their opinion for or against any post.  If you disagree with how someone is voting, then focus your argument on how something adds or removes value to the community rather than whether someone is committing the \u201cvile\u201d sin of non-censorship by utilizing their legitimate voting rights.\n\nSteemit is a free and voluntary platform built on the basis of free association; censorship is impossible in such an environment even if the community or steemit.com chooses to minimize the visibility of some content or block it all together.  \n\nThe blockchain is open, your content is logged and recorded for all time.  Anyone who wants to see your content or offer a competing service to steemit.com is free to curate and display what they like.  \n\n## P.S. On Definitions \n\nWe live in a world where common words are generally used in ways that are in direct contradiction of their meaning.  The unfortunate reality dramatically lowers the quality of public discourse because it allows people to talk past each other.  Activists leverage the emotional response to the word censorship to provoke people into violating the property rights of others.  It may well be that censorship is taking on a broader meaning that would also encompass the no coerced behavior of Google, Facebook, etc.   The problem with the broader meaning is that the word censorship is no longer useful for accurately defining moral/immoral behavior.  Under the broader definition, accusing someone of censorship is as meaningless as accusing them of filtering spam emails.  How dare they censor spam artists!",
+    "body_length": 8987,
+    "cashout_time": "2016-10-08T03:07:00",
+    "category": "censorship",
+    "children": 164,
+    "created": "2016-09-06T18:45:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"censorship\",\"steemit\",\"steem\"],\"image\":[\"https:\\/\\/i.imgflip.com\\/p1ij6.jpg\",\"https:\\/\\/farm8.staticflickr.com\\/7485\\/15754046208_7d666a75a9_o.jpg\",\"http:\\/\\/godfatherpolitics.com\\/wp-content\\/uploads\\/2014\\/03\\/thomas-jefferson.png\"],\"links\":[\"https:\\/\\/en.wikipedia.org\\/wiki\\/Linguistic_relativity\",\"\\/steemit\\/@calaber24p\\/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Banksy\",\"http:\\/\\/www.politifact.com\\/florida\\/statements\\/2013\\/jul\\/08\\/tony-perkins\\/wedding-vendors-have-been-forced-participate-same-\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T18:45:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 117550898840994,
+    "parent_author": "",
+    "parent_permlink": "censorship",
+    "pending_payout_value": "1193.934 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "censorship-is-impossible-in-a-free-society",
+    "post_id": 874688,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Censorship is impossible in a Free Society",
+    "title": "Censorship is impossible in a Free Society",
+    "total_payout_value": "0.000 HBD",
+    "url": "/censorship/@dantheman/censorship-is-impossible-in-a-free-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20924903115",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316515996824",
+        "voter": "chitty"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "53674162292",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375656420380",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37310054020",
+        "voter": "james-show"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "2261027179",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401475391",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426173324",
+        "voter": "murh"
+      },
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "24526746705",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208985003729",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15761970927",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2706408618",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "61572228994",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "85869752009",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44050470303",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10487597892",
+        "voter": "nineyards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3661397048",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59328435116",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32438700122",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8253914298",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8181635146",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14239373762",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30764850573",
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "441006366819",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112591076283",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155086424302",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66801231",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4047643732",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3092827406",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "434137550",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2614032281",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "395135521",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43466091162",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3789831728",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5556418828",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2552654221",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "957548802260",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212019463",
+        "voter": "jasen.g1311"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "2338658584",
+        "voter": "ace108"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "12829825322",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4238804280",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52207362",
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25386139768",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5075657424",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393674302",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "63288595594",
+        "voter": "laonie"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "7296353019",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58804600",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "13007083652",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "103099601827",
+        "voter": "somebody"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "3856981690",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "22781126275",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "7095478692",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154454721",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "1782244397",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "3591246793",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2846899090",
+        "voter": "lightsplasher"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "235835929",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10995099944",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68417395",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53516176",
+        "voter": "cnmtz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26476661103",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59047422",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2897317590",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631282506",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9771811576",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91543033",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12721442209",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335474158",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "842943776",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52636635",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116378965",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78376579",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144014259",
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146428143",
+        "voter": "anysound.studio"
+      }
+    ],
+    "author": "craig-grant",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "change gon come\nhttps://www.youtube.com/watch?v=pb7shsTextM\n\n### read Ned's post @ https://steemit.com/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction\n---\n\n---\nhttps://www.steemimg.com/images/2016/09/07/20160907_200828f7272.jpg\nhttps://www.steemimg.com/images/2016/09/07/20160907_20085398483.jpg\n\n####  Get 3 meals for $30(shipping included), each meal serves two. That's $5 per meal for the highest quality food you will ever taste @ [https://www.homechef.com](https://www.homechef.com/invite/ezxbJf89eBnV)\n---\n\nFollow @craig-grant\n\nHeaven = have fun :)",
+    "body_length": 586,
+    "cashout_time": "2016-10-09T05:09:18",
+    "category": "freedom",
+    "children": 15,
+    "created": "2016-09-07T23:51:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"freedom\",\"steemit\",\"steempower\"],\"users\":[\"craig-grant\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/pb7shsTextM\\/0.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/20160907_200828f7272.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=pb7shsTextM\",\"https:\\/\\/steemit.com\\/steem\\/@ned\\/increasing-curation-demand-for-steem-power-and-community-interaction\",\"https:\\/\\/www.homechef.com\\/invite\\/ezxbJf89eBnV\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T00:31:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 3501633293272,
+    "parent_author": "",
+    "parent_permlink": "freedom",
+    "pending_payout_value": "1.473 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steem-report-curation-and-steem-power-ideas-by-ned",
+    "post_id": 887381,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "STEEM report, curation and steem power ideas by Ned",
+    "title": "STEEM report, curation and steem power ideas by Ned",
+    "total_payout_value": "0.000 HBD",
+    "url": "/freedom/@craig-grant/steem-report-curation-and-steem-power-ideas-by-ned"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6037220797579",
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6188577829665",
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "44768805123",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275442884564",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104040479",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768680486",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683998880",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6866537342197",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54822763106",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62230748588",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663275306",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213794688",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624987874",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973106272",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2426634324",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288351745",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "407365466819",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 0,
+        "rshares": "5909000055",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34065858898",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1676027632124",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426395561",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12169071403",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2014177224856",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110343825376",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56082132071",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208041294929",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "810326494",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687280474158",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82816554383",
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52215058764",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328801133166",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5337878917",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11267463759",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27228156990",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13487365582",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48416629676",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916861351",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25669997218",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1716002786",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7545983800",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25386139768",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70391342282",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297488015220",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11496127617",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62030829",
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17391787537",
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9074805566",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79579408",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69901150",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60418402",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7577221661",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54523663",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25313560101",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336916962",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71104606",
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78462337",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112139269",
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143652897",
+        "voter": "zaidkhalifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158720852",
+        "voter": "carloss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130634157",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149129648",
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154943231",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145903154",
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138768078",
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150546432",
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Community & Social Media Manager\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for an exceptional communicator to be the liaison between Steemit and our rapidly growing user base.  This is a role where you will be an expert in building and growing communities on and offline; you\u2019ve got ideas for this and can implement them.  You can also think big picture and for the long term \u2013 your ideas will reflect that.  Online communities are where you thrive and as such you know how to leverage them and will be able to do so for Steemit.  You have a track record of getting things done, live and breath social media, and want to work with a fast growing company that will change the world.\n\n### Responsibilities\n- Help deliver a best in class user experience to Steemit users who engage with us through social media\n- Be an active voice on relevant channels as a Steemit advocate\n- Monitor and post content to and across other social media networks including Facebook, Twitter, Reddit, etc. on a daily basis\n- Develop and track performance metrics for social media channels and advise on ways to maximize performance\n- Develop customer acquisition strategies through social media channels\n\n### Qualifications\n- 2 or more years of experience managing a brand's online presence\n- Motivated self-starter with great communication and writing/editing skills\n- Ability to collaborate and work with others, taking their viewpoints into consideration\n- Good judgment, professionalism, and levelheadedness as a social media ambassador\n- Nice to have: Interest in cryptocurrency and blockchains with experience in the community\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 2344,
+    "cashout_time": "2016-10-09T20:59:42",
+    "category": "steemit",
+    "children": 21,
+    "created": "2016-09-08T14:25:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitjobs\",\"jobs\",\"marketing\",\"socialmedia\"],\"image\":[\"https:\\/\\/farm9.staticflickr.com\\/8190\\/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:53:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 25834048756473,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "40.211 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "new-steemit-job-posting-community-and-social-media-manager",
+    "post_id": 892705,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Community & Social Media Manager",
+    "title": "New Steemit Job Posting: Community & Social Media Manager",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitjobs/new-steemit-job-posting-community-and-social-media-manager"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5918843919195",
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6188577829665",
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "44768805123",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281563837555",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104040479",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768680486",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683998880",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54822763106",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63475363560",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663275306",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213794688",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624987874",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973106272",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288351745",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "407365466819",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 0,
+        "rshares": "6037456578",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34065858898",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1676027632124",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1412752719",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12169071403",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1967335894046",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54982482422",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181123599305",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81192700375",
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52215058764",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5337878917",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26683593850",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13487365582",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2491498635",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47467283996",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916861351",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27308507679",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7545983800",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22847570702",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15211965868",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11270713350",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "637699371",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62030829",
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3299387426",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9074805566",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60418402",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3404025861",
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54523663",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330178623",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71104606",
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51341602",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109940460",
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146022781",
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154943231",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145903154",
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138768078",
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150546432",
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Front End Developer\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for a front-end developer to help us create the perfect GUI. Expertise in ReactJS is a must as is an eye for design and simplicity. You will work closely with all members of the Steemit team in a collaborative and fast pace start-up.\n\n### Responsibilities\n- Help define strategic direction for UI\n- Incorporate technologies and tools for all User Interfaces\n- Define and maintain testability, security, performance, quality, and usability needs\n- Define consistent patterns, reusable components, coding standards, etc.\n- Leverage the latest front end technologies to quickly deliver products while collaborating with design teams to bring the vision to reality\n- Optimize scalability, reliability, efficiency, and performance\n\n\n### Qualifications\n- Fluency with ReactJS\n- Killer portfolio of work\n- Exceptional design skills with an eye for simplicity & attention to detail\n- Ability to work collaboratively with a diverse group of individuals \n- Willingness and ability to learn quickly on the job\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 1795,
+    "cashout_time": "2016-10-09T20:21:33",
+    "category": "steemitjobs",
+    "children": 2,
+    "created": "2016-09-08T14:36:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemitjobs\",\"jobs\",\"frontend\",\"developer\",\"reactjs\"],\"image\":[\"https:\\/\\/farm9.staticflickr.com\\/8190\\/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:53:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17237688355945,
+    "parent_author": "",
+    "parent_permlink": "steemitjobs",
+    "pending_payout_value": "32.250 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "new-steemit-job-posting-front-end-developer",
+    "post_id": 892802,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Front End Developer",
+    "title": "New Steemit Job Posting: Front End Developer",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemitjobs/@steemitjobs/new-steemit-job-posting-front-end-developer"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5918843919195",
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3094288914832",
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "44768805123",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281563837555",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104040479",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768680486",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683998880",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54822763106",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62230748588",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663275306",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213794688",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624987874",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973106272",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2378101638",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288351745",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51320362201",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415852247378",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 0,
+        "rshares": "5909000055",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33254767020",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1676027632124",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1412752719",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12169071403",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2014177224856",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54982482422",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181123599305",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "810326494",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81192700375",
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52215058764",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5444636495",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26683762212",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13487365582",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2234056550",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127663674848",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47467283996",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898149895",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7545983800",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25386139768",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2844677790",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11270713350",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "637699371",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9074805566",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60418402",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3470902934",
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433189",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330178623",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72720620",
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78462337",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109940460",
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130634157",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146022781",
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158042096",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145903154",
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138768078",
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153557360",
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Blockchain Developer\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for a blockchain developer who can work in an extremely faced paced environment to help scale the Steemit platform over the next year and beyond. You will be an essential member of the team who will provide added agility and expertise to ensure an unbeatable product.\n\n### Responsibilities\n- Independently identify and manage bugs, schedule tasks, investigate code\n- Handle full development cycle of components (formalize task, write code, test, set-up and support production, resolve user requests)\n- Write flexible, manageable, and modular code that can adapt to post-launch change\n- Build scalable, efficient, high performance solutions\n\n### Qualifications\n- Bachelor\u2019s in Computer Science (or similar) or equivalent experience\n- Expert in C++ or newer\n- Hands on experience with Git\n- Collaborative team player capable of listening to different perspectives and implementing the best solution based on those views\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 1715,
+    "cashout_time": "2016-10-09T21:23:18",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-09-08T15:11:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitjobs\",\"blockchain\",\"developer\"],\"image\":[\"https:\\/\\/farm9.staticflickr.com\\/8190\\/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:54:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14341719035931,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "22.508 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "new-steemit-job-posting-blockchain-developer",
+    "post_id": 893081,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Blockchain Developer",
+    "title": "New Steemit Job Posting: Blockchain Developer",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitjobs/new-steemit-job-posting-blockchain-developer"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535849512445",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31585416159994",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405104282906",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "2600",
+        "reputation": 0,
+        "rshares": "16445135107737",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170078310304",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2284036868281",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4687079239975",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4346968921",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5277792976",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "957776516",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76993942570",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2329193705",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299334266",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1751143504227",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413183213115",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2707011698609",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1316274656",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1959767310",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5880841552013",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10335458045",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "875135073",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1362646379",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7859851792",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25018527314",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "797659608517",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131700871777",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96024199360",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3495643148",
+        "voter": "spartako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403731535",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "68148632072",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1703456531",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "5500",
+        "reputation": 0,
+        "rshares": "5390260788",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92307162061",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "8382",
+        "reputation": 0,
+        "rshares": "538116143159",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19247234721",
+        "voter": "fkn"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "50869730",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4224362680",
+        "voter": "sunjata"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "612478568",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30889801848",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25316108067",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "681278624136",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "1218525708",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46218344578",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205861395304",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93387521550",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1413027583",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "584941992",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2320828016",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57132788469",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24403535437",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10205302247",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234360429555",
+        "voter": "wingz"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "21032840209",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19762297810",
+        "voter": "samether"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "20244824438",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "541171866339",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "811434188",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "150561703420",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76518214097",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2249513572",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10718755967",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17555397378",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354932807",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7577100798",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "319017066",
+        "voter": "kosimoos"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "57002255623",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5157797283",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17860999379",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69594686784",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10594627728",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459122987",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515214917",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "472260007",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "854014479",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24464292896",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10632943304",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341723696171",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81026932227",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1907615672",
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42173981732",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18508064925",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537387356",
+        "voter": "wojooo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5955949885",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4255670564",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2778445763",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3576195335",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6499058237",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15600179759",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658582371",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334104188",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424845000",
+        "voter": "berrysmok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921456442",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639439630",
+        "voter": "curator"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "24016779323",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1519176750",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535173718",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475460463",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "115958450",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131625157",
+        "voter": "yulia98"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14948206365",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "825265209942",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23123392107",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78375114842",
+        "voter": "neilstrauss"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "11248465277",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "28922343006",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "180781445056",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588526896696",
+        "voter": "toxic"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "6761480879",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "8751",
+        "reputation": 0,
+        "rshares": "14659875268",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "39940454633",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3334515922",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64657024",
+        "voter": "jackgoldwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4583707678",
+        "voter": "miketr"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "96034871313",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115448783773",
+        "voter": "joele"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "3123926476",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "6295888178",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84384131114",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6229208165",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222804436",
+        "voter": "party1999"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "413034414",
+        "voter": "microluck"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "7140129001",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2785387942",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54970226",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14905261140",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7727181529",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "6323517480",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8041018266",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8036018428",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101945845",
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29089119363",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57337530",
+        "voter": "will.isles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58093020",
+        "voter": "austinpierce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56704316",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57791469",
+        "voter": "bglier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3870291796",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7577221661",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88409423",
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "31616820473",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55660383",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1986295682",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323382621",
+        "voter": "panther"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "31590560694",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3630617143",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53849838",
+        "voter": "asaule"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5318015477",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3071590760",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50569452",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50516543",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50514225",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4537500584",
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52357995",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70562224",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242206580",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51230296",
+        "voter": "steemq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51218466",
+        "voter": "weare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50871059",
+        "voter": "motion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50791473",
+        "voter": "synereo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1974311276",
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50568084",
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50543061",
+        "voter": "rabobank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50536471",
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64263708",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2060590767",
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118124871",
+        "voter": "bosjaya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2002213189",
+        "voter": "senseye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162911190",
+        "voter": "front"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161700361",
+        "voter": "shadowcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161089804",
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160973134",
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160957729",
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160880639",
+        "voter": "illusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159539963",
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159387371",
+        "voter": "bosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159025535",
+        "voter": "xtreme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158602900",
+        "voter": "steem-wallet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158535752",
+        "voter": "nerds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155131712",
+        "voter": "manuelgarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464168057",
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157447605",
+        "voter": "ric.mcnamee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157444337",
+        "voter": "marx34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157443737",
+        "voter": "maddog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157443313",
+        "voter": "babettesays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157435399",
+        "voter": "stuedb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157435048",
+        "voter": "angela0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157434698",
+        "voter": "s3an"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157429299",
+        "voter": "rodlongwood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157422179",
+        "voter": "huramechi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157399771",
+        "voter": "bradzickafoose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157379721",
+        "voter": "cwt108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157371999",
+        "voter": "beastwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157362454",
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157359897",
+        "voter": "legno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157358786",
+        "voter": "etihwttam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157356275",
+        "voter": "seansclevername"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157347257",
+        "voter": "matheogalatis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157341936",
+        "voter": "damjanlepceski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157339833",
+        "voter": "tashen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157332453",
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157319787",
+        "voter": "franks22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154232591",
+        "voter": "woz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157316220",
+        "voter": "bigs-in-sd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157314979",
+        "voter": "blackhorizontals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157304079",
+        "voter": "mapinguari"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157291215",
+        "voter": "schlacht"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157289185",
+        "voter": "sobi123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157285593",
+        "voter": "garymeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157281608",
+        "voter": "solomonayub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157269884",
+        "voter": "thiago6891"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157268541",
+        "voter": "indianajones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157249854",
+        "voter": "elguapo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157249547",
+        "voter": "sundruid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154164078",
+        "voter": "katechristensen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157247023",
+        "voter": "alexskye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157243713",
+        "voter": "shymu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157193454",
+        "voter": "reysurf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157183722",
+        "voter": "drgonzo90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157177526",
+        "voter": "ferrolad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157155353",
+        "voter": "nadine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157151883",
+        "voter": "patchzero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157135701",
+        "voter": "mikemullins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157102466",
+        "voter": "ironmaiden1541"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157057396",
+        "voter": "pantsrole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157041746",
+        "voter": "salkata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156994293",
+        "voter": "brentbusboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156970936",
+        "voter": "doctorawesome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156930618",
+        "voter": "femshep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156925330",
+        "voter": "leftyodinbeard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156866808",
+        "voter": "eetswah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156864455",
+        "voter": "darkturo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156836653",
+        "voter": "zacduggan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156676489",
+        "voter": "sudeep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156663206",
+        "voter": "memelis5557"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156661760",
+        "voter": "astner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156628324",
+        "voter": "shawnlauzon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153524511",
+        "voter": "jdwalt11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156566334",
+        "voter": "stefanahench"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156554577",
+        "voter": "everydaygravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156457210",
+        "voter": "nutygoalie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156453108",
+        "voter": "openconnection"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156446392",
+        "voter": "nickjoyce9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153372755",
+        "voter": "xenakis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156393629",
+        "voter": "mxzyptlk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156318300",
+        "voter": "pascaldube"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156309012",
+        "voter": "triumphcook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156281978",
+        "voter": "mndzvlz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156265688",
+        "voter": "oneofone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156255644",
+        "voter": "brantgurga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156186979",
+        "voter": "alexsalinsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156165053",
+        "voter": "hollow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156118911",
+        "voter": "firstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156117289",
+        "voter": "mkgoodwin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156081854",
+        "voter": "alextodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156059845",
+        "voter": "vinylboy65"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155948273",
+        "voter": "leomarconi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155884762",
+        "voter": "jshannon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155860330",
+        "voter": "georgebg8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155835704",
+        "voter": "kerloom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155830866",
+        "voter": "palter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155801775",
+        "voter": "rodrigopm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155747288",
+        "voter": "woodbridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155741174",
+        "voter": "meepbobeep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155674921",
+        "voter": "aqsson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155650739",
+        "voter": "drsmokey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155632775",
+        "voter": "rockinthiscity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155599311",
+        "voter": "drdoktir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152540638",
+        "voter": "simonjay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155577655",
+        "voter": "samsharifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155550233",
+        "voter": "warwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155526260",
+        "voter": "tdanderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155094527",
+        "voter": "chukkyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154980616",
+        "voter": "rogerfarley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154961685",
+        "voter": "kaiball"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154919906",
+        "voter": "millerg333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151689459",
+        "voter": "lanie.land"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154451653",
+        "voter": "tyger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153937522",
+        "voter": "germanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153590868",
+        "voter": "alphabobcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153360877",
+        "voter": "eman3488"
+      }
+    ],
+    "author": "neilstrauss",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>We were all impatiently waiting, but the day is finally upon us and it is with pleasure that we announce the official kick off to the first Steemit Book Club.</p>\n<p>http://i68.tinypic.com/wb9soy.jpg</p>\n<p>Taking into consideration personal requests from some of you, we came to the conclusion that next <strong>Monday, September 12th at 6 p.m. PST/9 p.m. EST/2 a.m. GMT/11 a.m. (Tuesday) UTC</strong> would be the ideal time to finally launch this.&nbsp;</p>\n<p>For those who may have missed <a href=\"https://steemit.com/books/@neilstrauss/the-steemit-book-club-plan-v1-0\">the preliminary plan,</a> maybe it would be a good idea to let you know that one of the perks of this steemit based Book Club is the possibility it allows for book lovers to earn rewards all while reading a beautiful masterpiece in good company.</p>\n<p>In a nutshell, all Steem Dollars generated from the weekly posts of the Book Club will be divided equally among book club members after finishing each book.</p>\n<p>All you have to do is to attend 75 percent of the calls or chats, remain in the book club until the completion of the book, and, obviously, read the whole thing. &nbsp;</p>\n<p>Yes, our \u201culterior motive\u201d is to use this to motivate everyone to complete these epic tomes.&nbsp;&nbsp;</p>\n<p>The first book we\u2019re going to launch with - as many of you know already - is James Joyce\u2019s masterpiece: <em>Ulysses</em>. This particular book choice if you may recall, came as an almost unanimous decision in <a href=\"https://steemit.com/introduceyourself/@neilstrauss/introducing-neil-strauss-and-a-steemit-book-club \">this post</a>.</p>\n<p>This was a book that was so controversial that when it first was released, this happened:</p>\n<p>http://i63.tinypic.com/23h7eb7.png</p>\n<p>According to Modern Library, <em>Ulysses</em> currently ranks first on the 100 best novels of all time. So what better way to launch a Book Club than by starting at the top \u2013 especially with a book so many people want to read, yet few are able to penetrate.</p>\n<p>http://i65.tinypic.com/4gn0gy.png</p>\n<p><br></p>\n<p>Here are the final details:</p>\n<p><strong>What</strong>: The Steemit Book Club (SBC)</p>\n<p><strong>When</strong>: Every Monday at 6 p.m. PST/9 p.m. EST/2 a.m. GMT/11 a.m. (Tuesday) UTC</p>\n<p><strong>Where</strong>: Our first session will be held via Freeconference. You can join via internet by clicking the link below:</p>\n<p><a href=\"https://hello.freeconference.com/conf/call/6291831\">https://hello.freeconference.com/conf/call/6291831</a></p>\n<p>Or you can join by phone by calling one of these toll free numbers (800) &nbsp;719-6100 or (218) 339-7800 if you are calling from within the United &nbsp;States. The participant access code is 629-1831#.</p>\n<p>If you\u2019re calling from outside the U.S., click on the same link, then &nbsp;click \u201cjoin conference\u201d and choose the option \u201cCall by Phone.\u201d In the &nbsp;\u201cDial-In Numbers\u201d tab, you will see a long list of additional toll-free &nbsp;numbers from around the world.</p>\n<p><strong>Where Else</strong>: Some book clubbers will also be in steemit.chat on our channel #steemit-book-club during the calls, so feel free to write comments and enter discussions there instead\u2014or in addition.</p>\n<p><strong>How</strong>: Just call in. Or go now to steemit.chat and register in #steemit-book-club to receive a private message containing this information on how to join the conference. These details will also be posted on a pinned post on the channel for everybody to see.</p>\n<p><strong>How much</strong>: There\u2019s no reading assignment for the first call. Just show up and we\u2019ll do the first reading aloud together. Though if you\u2019re feeling feisty, read Joyce\u2019s Portrait of the Artist as an Old Man first.&nbsp;</p>\n<p><strong>Which</strong>: Preferably order the <a href=\"https://www.amazon.com/Ulysses-original-James-Joyce-ebook/dp/B017WQ5WTI/\">Gabler edition of <em>Ulysses</em></a>, which has line numbers in the margins so we can all communicate clearly.&nbsp;</p>\n<p>If you don\u2019t want to buy the Gabler edition or can\u2019t find it in your country, grab an earlier edition of <em>Ulysses</em> for free <a href=\"https://archive.org/stream/ulysses04300gut/ulyss12.txt\">via Project Gutenberg </a>or <a href=\"https://www.amazon.com/Ulysses-James-Joyce-ebook/dp/B002RKT6QK#nav-subnav\">Kindle</a> or in your <a href=\"http://manybooks.net/titles/joycejametext03ulyss12.html\">favorite format</a>.</p>\n<p><strong>Privacy</strong>: Fortunately, Freeconference grants us the option to host a club meeting using only audio. That means there\u2019s no need to reveal your identity at all, especially if you use the web link option to join the call.&nbsp;</p>\n<p><strong>Troubleshooting</strong>: If you are having any trouble joining the call, post a message in #steemit-book-club and we will get right on it.</p>\n<p><strong>Absences</strong>: Don\u2019t worry if you miss a session. We\u2019ll post weekly summaries along with the reading assignments for the following week, and, if everyone is comfortable with it, recordings of each call.</p>\n<p>Meanwhile, the discussion will be open all week long in our steemit.chat channel (#steemit-book-club), which is now accessible to everybody. And judging by the brain-picking aspect of <em>Ulysses</em>, my guess is there will be a lot to talk about in the chat room.</p>\n<p>http://i66.tinypic.com/30vgdv9.jpg</p>\n<p>This is going to be a fun adventure, and we hope that you will join us in making this initiative a success and in expanding all of our minds.</p>\n<p>Until Monday, we remain\u2026</p>\n<p>Your Book Club Co-Captains,</p>\n<p><a href=\"https://steemit.com/@neilstrauss\"><strong>@Neilstrauss</strong></a> and <a href=\"https://steemit.com/@the-alien\"><strong>@the-alien</strong></a></p>\n<p>P.S: If you have any suggestions or feedback, please let us know in the comments section below. And of course, the next book will be chosen by those who survive this first book.</p>\n<p>P.P.S. Please welcome the members of my Inner Circle mailing list. They are just about all new to Steemit and I\u2019m sure some will become active members of the community. Make them feel at home!</p>\n<p><br></p>\n<p><br></p>\n<p><br></p>\n</html>",
+    "body_length": 6181,
+    "cashout_time": "2016-10-11T17:19:15",
+    "category": "books",
+    "children": 83,
+    "created": "2016-09-10T16:38:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"books\",\"steemitbookclub\",\"writing\",\"bookclub\",\"steemit-book-club\"],\"users\":[\"the-alien\"],\"image\":[\"http:\\/\\/i68.tinypic.com\\/wb9soy.jpg\",\"http:\\/\\/i63.tinypic.com\\/23h7eb7.png\",\"http:\\/\\/i65.tinypic.com\\/4gn0gy.png\",\"http:\\/\\/i66.tinypic.com\\/30vgdv9.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/books\\/@neilstrauss\\/the-steemit-book-club-plan-v1-0\",\"https:\\/\\/steemit.com\\/introduceyourself\\/@neilstrauss\\/introducing-neil-strauss-and-a-steemit-book-club \",\"https:\\/\\/hello.freeconference.com\\/conf\\/call\\/6291831\",\"https:\\/\\/www.amazon.com\\/Ulysses-original-James-Joyce-ebook\\/dp\\/B017WQ5WTI\\/\",\"https:\\/\\/archive.org\\/stream\\/ulysses04300gut\\/ulyss12.txt\",\"https:\\/\\/www.amazon.com\\/Ulysses-James-Joyce-ebook\\/dp\\/B002RKT6QK#nav-subnav\",\"http:\\/\\/manybooks.net\\/titles\\/joycejametext03ulyss12.html\",\"https:\\/\\/steemit.com\\/@neilstrauss\",\"https:\\/\\/steemit.com\\/@the-alien\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T16:38:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 74134244590300,
+    "parent_author": "",
+    "parent_permlink": "books",
+    "pending_payout_value": "476.729 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-steemit-book-club-begins-monday-details-call-in-numbers-chat-channel-party-tricks-inside",
+    "post_id": 912651,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "The Steemit Book Club Begins Monday: Details, Call-in Numbers, Chat Channel, Party Tricks Inside",
+    "title": "The Steemit Book Club Begins Monday: Details, Call-in Numbers, Chat Channel, Party Tricks Inside",
+    "total_payout_value": "0.000 HBD",
+    "url": "/books/@neilstrauss/the-steemit-book-club-begins-monday-details-call-in-numbers-chat-channel-party-tricks-inside"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28577640408816",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099652417",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3763074284",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697396740",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54062084360",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661153383",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213676452",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622799607",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967315888",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21561714956",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288163140",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411040031329",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91718922101",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431856783",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429697273174",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132657096959",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484889138",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9692184464",
+        "voter": "jay4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147240421388",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8253858871",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357865659",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2883239806",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401487161",
+        "voter": "ladypenelope1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7937586925",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2406933564",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21862344199",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1238683117",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54818772382",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3442234051",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2409727819",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4294437615",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55770485",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "581299661",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24239498471",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52026360",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4027411276",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53518025",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "656281830",
+        "voter": "antifragile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1205574713",
+        "voter": "robotev"
+      }
+    ],
+    "author": "infotoday",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://i65.tinypic.com/2djxchy.jpg\n\nToo often people believe that once they\u2019ve obtained that goal they\u2019ll be happy, for example, \u201cwhen I change jobs\u201d, \u201cif my business takes of\u201d, \u201cwhen the project is complete\u201d, \u201cafter we\u2019re married\u201d, \u201cif I lose some weight\u201d. Unfortunately it doesn\u2019t work like that, happiness  isn't achieved through any accomplishment.\n\nHappiness comes from within, it is only a state of mind, a choice. People come and go, relationships change, possessions get old, fortunes are made, and fortunes are lost. Everything changes, it\u2019s meant to. Life is fluid.\n\n## Emotions Start with Thoughts\n\nhttp://i64.tinypic.com/2mw9jqt.jpg\n\nSome people have nothing yet they emit a constant joy, while others who seem to have it all and are on the brink of destroying themselves. It\u2019s obviously not about anything like material possessions, or relationships, but more so emotions.\n\nHowever, it all starts with our thoughts. Thoughts come from how we react to situations, they\u2019re the building blocks of emotions. So, what we think about a situation determines the resulting emotions. For example, two people might experience the exact same situation yet have different thoughts about it... one person experiences the emotion of anger, while the other experiences the emotion of sadness.\n\nThis is an important distinction because you can control your thoughts, and whether the focus is on the positive or negative aspects. Of course, sometimes difficult situations will occur that will give way to runaway thoughts, it\u2019s only a natural part of being human.\n\n## Happiness Step #1: Strive to Increase Positivity\n\nhttp://i67.tinypic.com/10o1w7t.jpg\n\nTry to focus on the positive aspects of situations, it results in positive thoughts and therefore emotions, and helps you become \u201cmore present\u201d. If you choose to adopt the following habits you will experience an increase in positivity.\n\n**Express gratitude.** Be thankful for your past positive experiences and what you currently have, it helps release negativity. Gratitude instantly connects you to the feeling of love, and where love resides, fear and other negative emotions cannot.\n\nTry expressing 10 things you are grateful for every day, and speak them out loud if possible. Make sure it\u2019s coming from the heart and be detailed.\n\n**Meditate.** The practice of meditation expands awareness and improves the connection between mind, body and soul. It helps release negative emotions that might be holding you back, and is definitely one of the most effective ways to increase your positivity.\n\nTo mediate find a quiet and comfortable place. Sit or lie down, then close your eyes. Take a few deep breaths and start to allow yourself to relax. While breathing deeply, feel yourself letting go of whatever emotions you\u2019re holding onto, let go a little more with each breathe.\n\n**Give unconditionally to others.** Share your skills, share your advice, and help people out. Do not hesitate or doubt your value, even the smallest gestures can make a massive difference in someone\u2019s life. It will make you feel great; you\u2019ll reap the reward in increased positivity.\n\nhttp://i64.tinypic.com/mbo2di.jpg\n\n**Breathe fully.** A revealing research [study](http://www.tandfonline.com/doi/pdf/10.1080/02699930143000392) by Pierre Phillipot found that certain emotional states are associated with distinct respiration patterns. Participants were instructed to generate emotions such as sadness, fear, anger and happiness to the best of their ability, while their respiration patterns were closely observed.\n\nEach emotion was associated with a distinct respiration pattern. For example, when the participants were happy they breathed slowly and fully, when they felt anxious or afraid they breathed more quickly and shallowly. In a follow-up study the researchers instructed a different group of participants to breathe in the same patterns they had observed in the first study. The participants started to feel the corresponding emotion to whatever breathing pattern they used!\n\nBreathe slowly and fully, it enables better thinking and makes you feel more positive.\n\n## Happiness Step #2: The True Key - Become More Present\n\nhttp://i64.tinypic.com/210ksbd.jpg\n\nDon\u2019t put your happiness on hold because you\u2019re waiting for something to happen, it might not. There are no guarantees you\u2019re going to get that new job, car or anything for that matter.\n\nIf you detach yourself from the outcome and enjoy the journey you\u2019ll become fully present, living in the moment, and truly experiencing what life is about. You will have found happiness, all from within. It\u2019s contagious too... others will begin to pick up your habit, then it\u2019ll be reflected back to you.\n\nAll we really have is today, so take stock of what you really need, and try to appreciate your life more with each passing day.\n\n> \u201cHappiness, true happiness, is an inner quality. It is a state of mind. If your mind is at peace, you are happy. If your mind is at peace, but you have nothing else, you can be happy. If you have everything the world can give - pleasure, possessions, power - but lack peace of mind, you can never be happy.\u201d - Dada Vaswani\n\nHave gratitude, help others, and most of all be happy.",
+    "body_length": 5202,
+    "cashout_time": "2016-10-01T15:16:36",
+    "category": "happiness",
+    "children": 4,
+    "created": "2016-08-31T12:10:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"happiness\",\"life\",\"philosophy\",\"psychology\",\"empowerment\"],\"image\":[\"http:\\/\\/i65.tinypic.com\\/2djxchy.jpg\",\"http:\\/\\/i64.tinypic.com\\/2mw9jqt.jpg\",\"http:\\/\\/i67.tinypic.com\\/10o1w7t.jpg\",\"http:\\/\\/i64.tinypic.com\\/mbo2di.jpg\",\"http:\\/\\/i64.tinypic.com\\/210ksbd.jpg\"],\"links\":[\"http:\\/\\/www.tandfonline.com\\/doi\\/pdf\\/10.1080\\/02699930143000392\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T17:15:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31029768761714,
+    "parent_author": "",
+    "parent_permlink": "happiness",
+    "pending_payout_value": "115.049 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "stop-searching-for-happiness-and-you-might-just-find-it",
+    "post_id": 812024,
+    "promoted": "98.166 HBD",
+    "replies": [],
+    "root_title": "How lasting happiness can be yours today by living in the 'Now'",
+    "title": "How lasting happiness can be yours today by living in the 'Now'",
+    "total_payout_value": "0.000 HBD",
+    "url": "/happiness/@infotoday/stop-searching-for-happiness-and-you-might-just-find-it"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3126247134380",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408356350215",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1047378310443",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314688376293",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3100444020",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3764083289",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690489074",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54215350221",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661544327",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213702396",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10777629083",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622914773",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967513764",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273058616015",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288197194",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54492837940",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79341238573",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233452",
+        "voter": "cryptovoices"
+      }
+    ],
+    "author": "cryptovoices",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><em>As the Rio Olympics were getting underway this summer, I was reminiscing with a friend from </em><a href=\"http://www.mises.org.br/\"><em>Instituto Mises Brasil</em></a><em> about a film that both of us found remarkably enjoyable and inspirational.</em> <em>He convinced me to write an article about it.</em> <em>As I have no blog, I figured here would be a good place to start.</em> <em>Believe it or not the following is a movie review\u2026 the preface is my own personal take on how this documentary related to me and my experience.</em></p>\n<p>I'm a descendant of the <a href=\"https://en.wikipedia.org/wiki/World_War_II_evacuation_and_expulsion\">Eastern European displacement of World War II</a>. &nbsp;Growing up in Midwestern USA in the 1980s and 1990s, during a time when the US was thriving and the Soviet Union was crumbling, I always found it difficult to explain the impact of what was going on in Eastern Europe to my childhood friends.</p>\n<p>But it was a big deal. Looking back it\u2019s become clear that the collapse of the Soviet Union was a major turning point in not only the 20th century, but in a centuries\u2019 long battle of ideas among economic thinkers, from Adam Smith to Karl Marx to John Maynard Keynes to Ludwig von Mises, to name a few. The stunning defaults, crumbling infrastructure, and stagnating freedom of expression that all culminated in the (primarily peaceful) collapse of one of the two world superpowers at the time\u2014the <em>communist</em> one\u2014was a huge, huge victory for the freedom of mankind.</p>\n<p>Not that I myself had any real idea what was going on. I was too young to comprehend most of this. But I did know that a large portion of the groundswell for independence was emanating from the place where my relatives lived. A place I had never been to, never seen in person, but had learned about on the weekends in Latvian school, and from stories my father and grandparents told. I was quite aware, and proud, that the first three breakaway nations to secede from the Soviet Union, collectively known as the Baltic States, were Estonia, Latvia and Lithuania.</p>\n<p>But I remember always struggling to bring any comprehension or connection to what I was hearing at home and among Latvian circles to friends back at school. And there was good reason they should have cared. It was a scary time, as the masks were pulled away from the apparatchiks in the Kremlin, no one could be certain how the cards would fall. Would there be large swaths of violence, as the power slipped through their fingertips? The second half of the old Soviet joke, \u201cSo long as the bosses pretend to pay us, we will pretend to work,\u201d was not holding anymore. Lithuania became the first breakaway nation to declare its independence in March 1990. The first violent attack against this freedom movement occurred in January 1991, when Soviet troops killed 14 people and injured hundreds more in Vilnius, Lithuania\u2019s capital. The Lithuanians were crescendoing their rallies for recognized independence, forming barricades to protect their institutions (like the radio and television stations, and parliament) from the Soviet troops still on the ground, digging in their heels.</p>\n<p>To be clear, this wasn\u2019t the first movement for freedom and independence in the illegally annexed Baltic States. After the Soviet Union occupied the three nations in 1944, for <a href=\"https://en.wikipedia.org/wiki/Forest_Brothers\">over 10 years there was calculated guerrilla warfare</a> waged against the Stalinist regime, even into the late 1950s. And certainly there were <a href=\"https://en.wikipedia.org/wiki/Anti-Soviet_partisans\">many movements fighting for freedom across the Soviet Union and its satellites</a> for decades. Likewise, the violence in Vilnius in 1991 (and more followed in Riga) were not the first <a href=\"https://en.wikipedia.org/wiki/Mass_killings_under_Communist_regimes\">signs of aggression in the Soviet Union against its own citizens</a> (those citizens being illegally incorporated or not).</p>\n<p>Back in the United States, we played our own small roles. I recall going to rallies in major cities and seeing my father (always active in foreign Latvian politics and immigrant cultural heritage) speak for independence on the news. I incorporated these events into school projects. But again, I was young, and my friends had more important things to do. I had more important things to do.</p>\n<p>And then it happened. Almost with the flick of a switch, the old regime crumbled. <a href=\"https://en.wikipedia.org/wiki/Singing_Revolution\">The Singing Revolution</a> had achieved its goal, peacefully. Something my grandparents had only dreamed about was finally a reality. Freedom. At last. A white sheet. The Baltics were free, their independence recognized (first internationally by Iceland\u2026 side note, it\u2019s always Iceland, how great are they?!). Other satellites such as Georgia and Armenia quickly followed suit in declaring their own independence. Just like that, in December 1991, the Soviet Union was dissolved. Absolutely remarkable.</p>\n<p>And just as quickly as it ended, everyone realized they needed to rebuild. Fast. <em>Because these nations were behind.</em></p>\n<p>The key takeaway I believe everyone should remember from this time is how stark the economic and cultural contrast really was then between East and West. How utterly stumped\u2014economically and financially\u2014the Soviet Union was at its dissolution in 1991, when matched against its counterpart nations in Western Europe and North America. And remember, in total, the Soviet Union was <a href=\"https://en.wikipedia.org/wiki/List_of_countries_by_largest_historical_GDP\"><em>the second largest economy in the world</em></a><em>.</em> This fact alone, combined with the blunt economic juxtaposition between East and West as the Berlin wall came crumbling down, should make anyone think twice about defending socialism of any kind. People just couldn\u2019t see it. At the time, the combination of propaganda, lack of free press, and lack of internet probably contributed most to this stunning misinformation and misunderstanding between \u201cthem,\u201d and \u201cus\u201d (such perceptions no doubt shared equally and oppositely from both sides of the iron curtain). And yet today, with all of our leaps and bounds in technology and understanding, this battle of economic ideas rages on. People lose interest in the past. People forget. So I firmly believe we should remember this particular battle in perpetuity, as for 50 years it was truly the largest scale economic clash of <em>planned</em> versus <em>free</em> societies the world had ever seen. One more note, there is no time here to qualify all the (many) things Western nations didn\u2019t do well in the 20th century. Rather, on a higher level, I find it hard to argue for the completely disastrous, authoritarian policies of the Union of Soviet Socialist Republics. It\u2019s hard to argue for socialism.</p>\n<p>A lesson worth remembering.</p>\n<p>A quick recap on how the Baltic States in particular have gotten on since then. My first trip to Latvia was in 1996, and coming from a life in the US, it was by far the least developed country I had stepped foot in. The capital Riga was completely dark (I mean no street lights, seemingly no lights at all) in the evenings, almost scary at times. Rusted pipes and plumbing no matter where you stayed. Every car on the road was <a href=\"https://en.wikipedia.org/wiki/VAZ-2101\">hilariously old</a>. &nbsp;The potted roads would seem a luxury once one traveled a few kilometers outside the capital city to the countryside. If and when you finally did arrive at your rural destination, you almost expected dueling banjos to be heard through the trees. But the music? Far better in fact. Disco. That is, if you could find a caf\u00e9 with a stereo. Yet that genre was probably fitting, as it wasn\u2019t a stretch to compare the place to 1970s Western economic levels (if that).</p>\n<p>I moved to live in Latvia full time 10 years later, in 2006. The Ladas had been swapped for Volkswagens. The city had brightened up in a big way. Booms in construction. The disco remained. Fair enough. But the gap was closing.</p>\n<p>10 years later it\u2019s 2016 and I\u2019m still here. The country is still one of the least wealthy in the EU\u2014to be expected when its Western counterparts had such an economic head start\u2014but it is light years ahead of what I witnessed in 1996. Latvia joined the Organisation for Economic Co-operation and Development (OECD) earlier this year, so it seems we can now call it a developed nation, country #35 to join that club. Though I\u2019m Latvian, I\u2019ve had plenty of travel and work experience in Estonia (also in the OECD) and Lithuania, each beautiful and progressing in their own right. Most importantly, they have their freedom.</p>\n<p>But this journey, all these years, for me, was personal. I had some understanding, and knew the backstory. Thinking again about that kid growing up in Midwestern USA, observing the collapse of the USSR back in the 1990s, and since then increasing my own understanding (perhaps more than the average person) of how this was an incredibly meaningful, positive change for society\u2014how could I have more persuasively expressed it all back then to my childhood friends? To my community? More importantly, <em>how can I today</em> still express how crucial these (ongoing) battles for freedom and independence really are?</p>\n<p>I\u2019ve had old friends come visit me over the years, make the trip to the Wild Wild East, see that it\u2019s not so wild anymore. Sure, they\u2019d hear some stories of the grind from communist times, the bread lines, the black markets, the survival mentality my family members had to take in certain situations, even tales of Siberian deportations after the Second World War. But today, if you visit, those things seem very far away. Today, things are pretty damn comfortable and pleasant here, <em>so it\u2019s easy to forget how far we\u2019ve come</em>. Remember, 25 years ago you couldn\u2019t even own real assets in Eastern Europe.</p>\n<p>So I keep coming back to these same questions. 25 years since the dissolution of the Soviet Union\u2014<em>why should anyone care </em>about what happened here? How do you illustrate this amazing fight for freedom against the world\u2019s most authoritarian superpower at the time? How do we keep inspiring others in the same fight? Do people really understand how important the economic, political and individual freedoms being chased today by those in Ukraine, Bahrain, Iran, Myanmar, Cuba and plenty of other places around the world really are?</p>\n<p>A few years ago, I came across a film that addressed all of the aforementioned questions, and more.</p>\n<p>Something entertaining, something interesting, something thought-provoking.</p>\n<p>Something for history buffs; something for people who don\u2019t care much for history at all.</p>\n<p>Something for sports fans; something for people who couldn\u2019t care less for sports.</p>\n<p>Something for those with national pride; something for those who lack that spark and interest in where they come from. Something inspirational\u2026 about liberty.</p>\n<p>The film is called <a href=\"http://www.imdb.com/title/tt1606829/?ref_=fn_al_tt_1\"><em>The Other Dream Team</em></a>.</p>\n<p>The fight for freedom and independence, inspired. The story is told through the eyes of the 1992 Lithuanian Men\u2019s Basketball team competing at the Barcelona Olympics. The same Olympics where Magic, Michael and Larry stormed Las Ramblas in Barcelona with 8 other Hall of Famers (and Christian Laettner!) known as the Dream Team. A true treat to watch, the first time pros competed for the US at the Olympics, and <a href=\"https://www.youtube.com/watch?v=GtoHD89ylSw\">they were a hurricane</a>. But what many forget from that same Olympics in 1992\u2014a whisker in time after the Soviet Union fell apart\u2014was who took the podium after an extremely intense bronze medal game.</p>\n<p>Lithuania. Free Lithuania. It was a game in which a newly independent Lithuania faced their former Soviet teammates from the CIS team, and in a way their former Soviet occupier.</p>\n<p>I cannot recommend this film highly enough. I\u2019m not even Lithuanian. But my brothers across the border who have come to be known as the Green Machine in international basketball are truly an inspirational group\u2014both then and now\u2014and this story puts a human touch on their nation\u2019s ultimate fight for freedom during that volatile time. Again, this film is not just about sports, and will match almost anyone\u2019s attention span. It will show you what life was like during Soviet times, and the tremendous obstacles they had to overcome. This is the movie, back in the 1990s, <em>I wish I could have just pressed \u201cplay\u201d to</em>, when attempting to explain to my friends and community what the hell was going on in Eastern Europe, and why it was time to give freedom a chance. Watch this film, and you will understand.</p>\n<p>Oh yeah, and the Grateful Dead played a role, too.</p>\n<p>It probably goes without saying that I think this story is just as important today. I\u2019m not much for politicized debates about a resurgent Russia or a militant US or how China should fit in or the proper balance of global hegemony that some pundit believes is most appropriate. But I am a sucker for inspiration, especially when it\u2019s conveyed effectively and poignantly and unabashedly in favor of freedom and liberty. These are the stories we need to be reminded of. And not only in Eastern Europe. I genuinely hope to see many more tales of hope and freedom from athletes and teams peacefully chasing their goals against the odds under oppressed regimes around the world today. Sometimes we all need a little inspiration. It is an Olympic year, after all.</p>\n<p>If you have any other stories to recommend (Olympics-related or not), I for one would be delighted to hear about them.</p>\n<p>As I\u2019ve done for many years, I urge everyone to check out this film. I promise you will not be disappointed.</p>\n<p>~</p>\n<p>A small Coda. 24 years after Barcelona, the Olympics in Rio are over. The Lithuanian Men\u2019s Basketball team started strong, going 3-0 in its first three games, but they limped into the quarterfinals after losing the next two in the group, and didn\u2019t make it past Australia in the round of 8. A disappointing outcome for them, but as a country of only 3 million, on the international basketball stage they continue to punch well above their weight. &nbsp;</p>\n</html>",
+    "body_length": 14485,
+    "cashout_time": "2016-10-03T12:11:54",
+    "category": "freedom",
+    "children": 0,
+    "created": "2016-09-01T12:47:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"freedom\",\"film\",\"history\",\"economics\",\"sports\"],\"links\":[\"http:\\/\\/www.mises.org.br\\/\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/World_War_II_evacuation_and_expulsion\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Forest_Brothers\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Anti-Soviet_partisans\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Mass_killings_under_Communist_regimes\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Singing_Revolution\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/List_of_countries_by_largest_historical_GDP\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/VAZ-2101\",\"http:\\/\\/www.imdb.com\\/title\\/tt1606829\\/?ref_=fn_al_tt_1\",\"https:\\/\\/www.youtube.com\\/watch?v=GtoHD89ylSw\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T13:11:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5379914965452,
+    "parent_author": "",
+    "parent_permlink": "freedom",
+    "pending_payout_value": "5.260 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "25-years-after-the-soviet-union-watch-the-other-dream-team-to-remain-inspired-for-liberty",
+    "post_id": 822859,
+    "promoted": "97.000 HBD",
+    "replies": [],
+    "root_title": "25 Years after the Soviet Union: Watch 'The Other Dream Team' to Remain Inspired (for Liberty!)",
+    "title": "25 Years after the Soviet Union: Watch 'The Other Dream Team' to Remain Inspired (for Liberty!)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/freedom/@cryptovoices/25-years-after-the-soviet-union-watch-the-other-dream-team-to-remain-inspired-for-liberty"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28865473791883",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2822583339584",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4339707086",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5268554676",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "976380503",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75752807018",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2325712728",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299151591",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1279332871690",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "871946798",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1354285541",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403435231",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57716131545",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432241835",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602018562",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7007671362",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "917350412",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534741041304",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327889281",
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19561969515",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16046775777",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2657821576",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42659441690",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10893076834",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3542969768",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13857628632",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243356345",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254384994",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51813376221",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939239897",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2686695411",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "674473714",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1855582800",
+        "voter": "cogliostro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180153284",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28001566151",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "397267296",
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9694463412",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14373499173",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843609166",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29199353747",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110699909",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11495766018",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1146615954",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55509747",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2918567318",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24159309306",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1044738152",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12047560332",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391259806",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3538727871",
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23192834686",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226292406",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94397808",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18956641949",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1274868167",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142968891",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316250142",
+        "voter": "robotev1"
+      }
+    ],
+    "author": "karnal",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft1.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcRUQJDxUHXwUw-2IUifJunmmclmXY8N6NIc1svap6AXtqhFO53sNA&sp=9ad62521135e5c6f264578818d174278)\n\nMention the word alimony and a lot of men begin to get uncomfortable. It such a rife subject even in developed nations that political ambitions can be made or broken depending on one's stance about this. Unfortunately so many people have failed to realize that this is quite a private subject for men. There are circumstances that stem up and would make a man have to make a serious decision about his health and his future.\n\nTherefore no socio-political, cultural or religious factor should be made to take the place of his decision. A man should have the right to choose whether he wants to keep a child or not. After all it is his wallet, his wealth and his future that is in jeopardy.\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft2.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcReT4wovWfBByJ2G5q0g7NtdeBNiEBw3UkbpzxENjTi7jhH6LDYzQ&sp=e88be8f88c2ebf5e6b418d469f046195)\n\nIt is, however, unfortunate that a lot of countries continue to criminalize and shame so-called \"dead-beat dads\" even when the wealth of the father is at stake.\n\nFor instance a man called Terry Power. *His face tightened as he listened to his wife's attorney tick off their assets on the final day of his divorce trial. He sat in a leather chair at a glass-covered table inside a paneled judicial chamber and he thought not for the first time that her voice annoyed him.*\n\n*The Jet Ski . . . his wife's attorney said.*\n\n*\"Sold to pay attorney fees,\" Terry interjected.*\n\n*The IRA account?*\n\n*\"Distributed to pay property taxes on the marital property.\"*\n\n*The Raymond James investment account?*\n\n*\"Gone.\"*\n\n*Terry's wife, Murielle, petite with blond highlights, stared at him as if he were an insect, then looked down at her hands. After five years in divorce court, they were like old prizefighters in their respective corners.*\n\n*In February 2008, when Murielle Marie Helene Fournier vs. Terrance Paul Power was but a single document inside a purple file at the Pinellas County Courthouse, when Terry had his own business and made $250,000 a year, he thought of divorce court as a place where grievances were smoothed over and order restored. Now as he represented himself in his own divorce trial because he couldn't afford an attorney, his case having grown to 28 volumes and costing about $400,000 (much of it still unpaid), he viewed the system of marital justice as a journey down the rabbit hole.*\n\n*The gold coins?*\n\n*\"I have no idea.\"*\n\n*The hutch?*\n\n*\"Sold.\"*\n\n*As their divorce trial concluded, Murielle's attorney finally got around to alimony, the issue that had bogged down the case from the start. Terry had delivered his first of six alimony offers to Murielle a month after the divorce was filed: $5,400 a month until he retired, plus $50,000 cash and half the contents of their million-dollar home, which was underwater. The last letter, delivered to her attorney the month before the trial, offered her zero.*\n\n*\"Frankly I don't give a crap if she settles or not,\" he had written. \"I'd rather see her waste even more money. Like she made me do for these past four years.\"*\n\n*Now Murielle's attorney suggested a different amount: \"She's 50 years old and she doesn't have many skills, Judge . . . $6,500 a month should keep her in a decent place.\"*\n\n*Terry rolled his eyes.*\n\n*(adapted from [here](http://www.tampabay.com/features/humaninterest/the-divorce-from-hell-the-battle-for-alimony-and-emptied-pockets/2112875))*\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTmQO0c1JzFPIMQa8Ru-GZ7uNCxPWjtmSjsXXAPtrF28Vpp_Emaow&sp=1c9cf8d87d7d7625aba83f15e30270f3)\n\nMarriage is a very risky condition for the modern man and a lot of men are going to run into complications during this period and suicide is going to be their only saving grace. To cancel this option before hand for them is very inhumane thing to do as far as I\u2019m concerned.\n\n![](http://assets.nydailynews.com/polopoly_fs/1.1906336.1408258966!/img/httpImage/image.jpg_gen/derivatives/article_1200/news-robinwilliams-obit-2-la.jpg)\n\nIn another sad antithetical case, men in most countries are being forced to pay alimony when they clearly do not want such procedures carried out on them. In the United States, in order to uphold the nonsensical drivel of feminist policy, men are forced to go to jail if they refuse to pay - even if the child is not theirs!\n\nIn Switzerland, as many other places, men are forbidden from seeing their children, many times due to false allegations on the part of the mother. It is referred to as female deception. [Recently a new born baby girl was found in a dumpster and had to be rushed to the hospital to received urgent medical attention](http://news.nationalpost.com/news/canada/london-ont-police-charge-23-year-old-mother-two-days-after-dead-baby-found-in-dumpster).\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTqkHuavHk3tNlbtsfZBsUMPdGt6YUNf3b6AmoqFh-F-wd3DWJL-g&sp=dfc9275990e22e1e14f3e6bc00de0df2)\n\nThere are other cases where a man should be allowed to have a future. For example if he is not ready, financially, to support a child it is very unhealthy for such a gentleman to be forced to carry that child to adulthood. Many gentlemen have had to quit school in order to take up poor paying jobs to support a child they were not ready to have. For the welfare of father and child, young gentlemen should be allowed to make decisions on whether they want to keep paying or not.\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTcjI0bLH3GAUML1JKT0gnY073u7KcK6nxcxuz_XM_DOtJslMI6SA&sp=ffe625608bf04a3406b769867fbfab1e)\n\nMost men also get broke from horrifying experiences like divorce rape and to force such a gentleman to keep a child that will only remind him of an unfortunate and painful wife is very wicked. Most people will argue that divorce involves taking the life of an innocent man but they are just a mass of undeveloped testicles that are not even a complete human yet. It doesn't even have a developed nervous system yet and as such cannot feel emotions. And it is even sad that most religions try to guilt people into keeping a marriage at the expense of the husbands's happiness. The fathers\u2019s decision should always hold supreme as it is his wallet and he should have the final decision on what he wants to do with it. And he can always live to have healthy babies in the future.\n\n![](http://www.brocode.com/wp-content/uploads/2012/12/brobama.jpg)",
+    "body_length": 6765,
+    "cashout_time": "2016-10-02T12:16:27",
+    "category": "abortion",
+    "children": 19,
+    "created": "2016-09-01T10:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"abortion\",\"men\",\"pro-choice\",\"life\",\"steemit\"],\"image\":[\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft1.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcRUQJDxUHXwUw-2IUifJunmmclmXY8N6NIc1svap6AXtqhFO53sNA&sp=9ad62521135e5c6f264578818d174278\",\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft2.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcReT4wovWfBByJ2G5q0g7NtdeBNiEBw3UkbpzxENjTi7jhH6LDYzQ&sp=e88be8f88c2ebf5e6b418d469f046195\",\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTmQO0c1JzFPIMQa8Ru-GZ7uNCxPWjtmSjsXXAPtrF28Vpp_Emaow&sp=1c9cf8d87d7d7625aba83f15e30270f3\",\"http:\\/\\/assets.nydailynews.com\\/polopoly_fs\\/1.1906336.1408258966!\\/img\\/httpImage\\/image.jpg_gen\\/derivatives\\/article_1200\\/news-robinwilliams-obit-2-la.jpg\",\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTqkHuavHk3tNlbtsfZBsUMPdGt6YUNf3b6AmoqFh-F-wd3DWJL-g&sp=dfc9275990e22e1e14f3e6bc00de0df2\",\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTcjI0bLH3GAUML1JKT0gnY073u7KcK6nxcxuz_XM_DOtJslMI6SA&sp=ffe625608bf04a3406b769867fbfab1e\",\"http:\\/\\/www.brocode.com\\/wp-content\\/uploads\\/2012\\/12\\/brobama.jpg\"],\"links\":[\"http:\\/\\/www.tampabay.com\\/features\\/humaninterest\\/the-divorce-from-hell-the-battle-for-alimony-and-emptied-pockets\\/2112875\",\"http:\\/\\/news.nationalpost.com\\/news\\/canada\\/london-ont-police-charge-23-year-old-mother-two-days-after-dead-baby-found-in-dumpster\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T12:43:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34032380908060,
+    "parent_author": "",
+    "parent_permlink": "abortion",
+    "pending_payout_value": "130.891 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "alimony-my-wallet-no-choice",
+    "post_id": 821887,
+    "promoted": "93.304 HBD",
+    "replies": [],
+    "root_title": "Alimony: His Wallet, No Choice",
+    "title": "Alimony: His Wallet, No Choice",
+    "total_payout_value": "0.000 HBD",
+    "url": "/abortion/@karnal/alimony-my-wallet-no-choice"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55443872918",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7506279924606",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "956580537487",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "286792162044",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39580133428",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451819636",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289369412128",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6821654706",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12685758255",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51683161993",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14092150225",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9002169790",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2517444616",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "465107574",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5456091909",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37297723085",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "340794336001",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3314972930",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469151600",
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17741512743",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1062096269",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1430740640",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46018441212",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13443704142",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37420356892",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363256840",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9861567392",
+        "voter": "gsus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12933674542",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125488800966",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102981746849",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21063895973",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5014183284",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30893616494",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76784065106",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16791675664",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15304296909",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464300144106",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "66741270",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61187809",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "937524389",
+        "voter": "minergate123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147174247311",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13265886887",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531668806",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192288602621",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34393459049",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7593196010",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77404254739",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594214785",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992253521",
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20246922705",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12972669244",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37545357584",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152849407754",
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14306641323",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6979374026",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97881305",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88204270",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357865659",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108849196",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2036596449",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17997022527",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8105938340",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10956717427",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26544745435",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5153049492",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60866822",
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1949167915",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37382286273",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2697238149",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1031420029",
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13298600041",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "935922893",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10158724335",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247712895",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1390975245",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11484038338",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6147352384",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47723997975",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2022735682",
+        "voter": "anarchyhasnogods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23362349178",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12408078567",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250441174037",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24542129331",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117344778",
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11584736264",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646708938",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7218406347",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37242141910",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24762164330",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70170304",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54576373",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37864594216",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54232595",
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143043369",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51922018",
+        "voter": "augmentalized"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50218530",
+        "voter": "worldcitizen"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "It's been a busy week for me, I've started 5 or 6 projects, cancelled/froze one of them, and finished two of them.\n\nThis witness update is a little bit late, but I haven't had much to show until now. My witness server has been up and running 24/7, and I haven't missed a single block, despite running for several weeks now, and going through a hard-fork.\n\nWhat have I done this past week?\n-----\n\n### Created ANONSTEEM - for anonymous STEEM accounts\n\n![](https://i.imgur.com/Y6QDDbD.png)\n\nAnonSteem is my latest medium-sized project. A few people I know have a strong hatred towards social media accounts, and there weren't really any other methods of obtaining accounts outside of steemit.com\n\nSo, I created AnonSteem, where you can purchase your account upfront by paying AnonSteem your creation fee in BTC/LTC. I wasn't certain if it would take off, but there's been quite a few account creations so far, and I hit the frontpage with the post.\n\n**Post:** [ANONSTEEM - Create Anonymous Steem Accounts without social media](https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media)\n\n### Fixed several issues on @xeroc's Piston library\n\nWhile working on AnonSteem, I found two separate issues in the account creation system of Piston, I ended up taking the matter into my own hands, created a fix for the issues, and sent a pull request to solve the issues for everyone.\n\n**Post:** [Have you created any accounts via Piston? Your owner keys and posting keys are swapped!](https://steemit.com/steem-help/@someguy123/have-you-created-any-accounts-via-piston-your-owner-keys-and-posting-keys-are-swapped)\n\n### Ran a game giveaway to try to bootstrap the Game Review category\n\nThe post was also to possibly help me gain some more STEEM power, while at the same time giving out a game in a fair and verifiable way, however it fell flat. Many people loved the idea though, and it helped encourage people to keep writing their reviews.\n\n**Post:** https://steemit.com/gaming/@someguy123/steam-game-giveaway-outlast\n\n### Steem-in-a-box\n\n![](https://i.imgur.com/XOsLHJQ.png)\nAs you might recall from my last witness update, one problem I was trying to solve was the installation effort. I solved it partially with up-to-date instructions on [STEEM.CENTER](https://www.steem.center), but I wanted something better.\n\nSteem-in-a-box is a small shell script designed to make dealing with STEEM inside of a Docker container painless. While the post didn't get too much attention, it has been useful to myself and a few others.\n\nThe most important point of Steem-in-a-box is that using the one-liner in the post, you're able to set up a STEEM seed, witness, or RPC server without having to do anything at all, other than set up your `config.ini` file\n\n**Post:** [Steem-in-a-box - Deploy a new seed, witness, or RPC server with a one-liner](https://steemit.com/steem/@someguy123/steem-in-a-box-deploy-a-new-seed-witness-or-rpc-server-with-a-one-liner)\n\n### Joined the Wiki Content Team\n\n@ned recently asked for people to work on improving the poor quality of documentation for STEEM, for both new users and developers.\n\nI have teamed up with @dragonho and @serejandmyself as the \"Steemit Wiki Content Team\", working together on a new possibly official wiki and FAQ for STEEM/Steemit, so new users don't have to check across 5 different sites, and hundreds of outdated STEEM posts to find the information they need.\n\nIf you think you can help out, feel free to join #wiki on the Steemit.CHAT and let us know where your expertise lies.\n\n\nWhat am I doing next?\n------\n\nI'm going to be continuing to work on new STEEM services, while at the same time working with other people in the community to improve existing services, as well as working with the Steemit Wiki Content Team to produce good quality information to help people out.\n\nI love the idea of a censorship resistant, free (libre) platform, and I may continue to work on more services for that aspect, but may venture out to other areas where I see useful to the community.\n\nCheck out my last witness update [HERE](https://steemit.com/witness-category/@someguy123/someguy123-s-witness-update-2016-08-19)\n----\n\nDo you like what I've been doing? [Vote for me on the witness list](https://steemit.com/~witnesses), and follow me for more content like this.\n========",
+    "body_length": 4345,
+    "cashout_time": "2016-09-30T18:27:36",
+    "category": "witness-category",
+    "children": 10,
+    "created": "2016-08-30T16:42:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"witness-category\",\"witness-update\",\"witness\",\"steem\",\"wiki\"],\"users\":[\"xeroc\",\"ned\",\"dragonho\",\"serejandmyself\"],\"image\":[\"https:\\/\\/i.imgur.com\\/Y6QDDbD.png\",\"https:\\/\\/i.imgur.com\\/XOsLHJQ.png\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@someguy123\\/anonsteem-create-anonymous-steem-accounts-without-social-media\",\"https:\\/\\/steemit.com\\/steem-help\\/@someguy123\\/have-you-created-any-accounts-via-piston-your-owner-keys-and-posting-keys-are-swapped\",\"https:\\/\\/steemit.com\\/gaming\\/@someguy123\\/steam-game-giveaway-outlast\",\"https:\\/\\/www.steem.center\",\"https:\\/\\/steemit.com\\/steem\\/@someguy123\\/steem-in-a-box-deploy-a-new-seed-witness-or-rpc-server-with-a-one-liner\",\"https:\\/\\/steemit.com\\/witness-category\\/@someguy123\\/someguy123-s-witness-update-2016-08-19\",\"https:\\/\\/steemit.com\\/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T16:43:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11996790870948,
+    "parent_author": "",
+    "parent_permlink": "witness-category",
+    "pending_payout_value": "19.976 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "someguy123-witness-update-2-2016-08-30",
+    "post_id": 802642,
+    "promoted": "90.000 HBD",
+    "replies": [],
+    "root_title": "Someguy123 Witness Update #2 (2016-08-30)",
+    "title": "Someguy123 Witness Update #2 (2016-08-30)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/witness-category/@someguy123/someguy123-witness-update-2-2016-08-30"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1300",
+        "reputation": 0,
+        "rshares": "4000975898439",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33250846024",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748581030023",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297041068093",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34688108074",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3933191505",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431723281",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10075379390",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1091598557",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "86226608664",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302683064",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198782719642",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53588462318",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10056526674",
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1474999091",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1554048723",
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4297945677",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17119266780",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4370747754",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452064608",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7768702097",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10248594270",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95075182250",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21862344199",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7428316001",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "187832844048",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "6307774269",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "102478673665",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3835966474",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "19821725614",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86237877",
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "1800",
+        "reputation": 0,
+        "rshares": "24584535688",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "1438747070",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35467788361",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1551051361",
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3570283559",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "235328801",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1325687037",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11509623311",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1400671466",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "901855752",
+        "voter": "steemzine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97596413",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376986574",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52283518",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55770485",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322592441",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136773607",
+        "voter": "iggy"
+      }
+    ],
+    "author": "steemzine",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Shit gets rough every now and then. Life is a pain and sometimes you just need something to pick yourself up out of a rut and into a new mind frame.&nbsp;</p>\n<p>Here are 5 simple things you can do if you are not having the greatest day. They can simply change your mood and take you from one negative state to a more optimistic and <a href=\"www.instagram.com\">positive one.&nbsp;</a></p>\n<h2><img src=\"http://www.in-spirelsmagazine.co.uk/wp-content/uploads/2014/04/Think-Positive-In-spire-LS-Magazine-2.jpg\"/></h2>\n<h2>1. Put on your Jam And Throw Away Some Junk&nbsp;</h2>\n<p>Yup pump up your latest \"jam\" and start throwing junk out! One way to decide what to throw out is ask your self these two questions.&nbsp;</p>\n<ul>\n  <li>When was the last time I used this? If the answer is 6 months ago or more....then...</li>\n  <li>Do I really need to keep it? Or can it go to a better home.&nbsp;</li>\n</ul>\n<h2>2. One persons trash is another persons treasure.&nbsp;</h2>\n<p>Don't just throw it in the bin, pass it on to a new home. Go donate it. Someone can probably put it to good use! So this is a sure fire way to start a chain of positivity. Act positive and you will be positive.&nbsp;</p>\n<h2>3. Surround Yourself With Humour And A Good Friend.&nbsp;</h2>\n<p>Pick up the phone and say hello to a friend. Have a laugh, get your funny endorphins rolling around in your body. There is no better way to do this than to make a connection with someone and have a giggle.&nbsp;</p>\n<h2>4. Reminisce A Little&nbsp;</h2>\n<p>This is an odd one, but the brain often glorifies good moments in your life. So pull out the photo album of your last wild getaway or family holiday and have a think of the good times. This will put a smile on your dial.&nbsp;</p>\n<h2>5. Plan Something</h2>\n<p>Last but not least put a plan on paper, book a little trip, book a night out and go to the cinemas. We all need to have things we look forward to on a weekly basis, this is the stuff that keeps you going . You place the light at the end of the tunnel no on else. So turn on the light and plan a little night :)&nbsp;</p>\n<p><br></p>\n<p>I hope you found these helpful. They are things I do all the time if I'm not feeling the best! Share with us below what you do. :)&nbsp;</p>\n<p>#steemit #steemzine #psychology #life &nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 2339,
+    "cashout_time": "2016-10-01T17:14:57",
+    "category": "steemit",
+    "children": 4,
+    "created": "2016-08-31T01:44:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemzine\",\"psychology\",\"life\",\"\"],\"image\":[\"http:\\/\\/www.in-spirelsmagazine.co.uk\\/wp-content\\/uploads\\/2014\\/04\\/Think-Positive-In-spire-LS-Magazine-2.jpg\"],\"links\":[\"www.instagram.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T22:02:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 6055119383758,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6.393 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemzine-27-five-things-to-make-you-feel-better",
+    "post_id": 807842,
+    "promoted": "89.000 HBD",
+    "replies": [],
+    "root_title": "STEEMZINE #27 - Five Things To Make You Feel Better",
+    "title": "STEEMZINE #27 - Five Things To Make You Feel Better",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemzine/steemzine-27-five-things-to-make-you-feel-better"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7522075256853",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24988348886256",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9901828793949",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36025763130607",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2496029970194",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3288561279691",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "422917366153",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1112236856849",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1183862689597",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312196904148",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24248742779",
+        "voter": "jaewoocho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104274241",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768967241",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98293661014",
+        "voter": "testz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684023815",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6262040942648",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54879922251",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663376608",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213796245",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211173098584",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2179750028854",
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76449229334",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3649298703094",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425545852651",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412795654359",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149519862664",
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6451379962",
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1297104191956",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "479173275727",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58301259311",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "625011253",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973151466",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20925089971",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400815204843",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25536159117",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126314629886",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311760015914",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288356419",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "51523044174",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24301983295",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "317661921087",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "565165844",
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4092550231",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79790877765",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554083555",
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4229901343",
+        "voter": "atomrigs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47076852463",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "542657562",
+        "voter": "panmeur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21463792797",
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401576015977",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11524469542",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "8065",
+        "reputation": 0,
+        "rshares": "478171148244",
+        "voter": "eeks"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "1516993575",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2067432843",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335151732396",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "2660762796",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1031904899",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143474566462",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7756564648",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43838713879",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490963482",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426405521",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "596609188",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014021436859",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61541292423",
+        "voter": "theshell"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "25360606957",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54554448698",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147474797358",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "352099935937",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53652979111",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20737376375",
+        "voter": "samether"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "20441782051",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24830088226",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191689407723",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31384002121",
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177241468",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19582695354",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30445271769",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173865949638",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687283775705",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "16109589732",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "471231170",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44581007671",
+        "voter": "clement"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "67353282904",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59389039635",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33316496731",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55883294544",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "5900",
+        "reputation": 0,
+        "rshares": "8232743777",
+        "voter": "wefdi"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "1043405105",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12819399545",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "805014389604",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "4100",
+        "reputation": 0,
+        "rshares": "4993479281",
+        "voter": "jay4u"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "5165462249",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "728943966",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6226920004",
+        "voter": "owdy"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "52802898",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1591182061",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1468179089306",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5543993422",
+        "voter": "secom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429626348",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1194448323",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4725192532",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10536548854",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215588792605",
+        "voter": "jesta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "17496195281",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762588821",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24462855657",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280868838879",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16063833668",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399177345",
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44419603271",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37955810506",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87211957",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127815186400",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166457850344",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1668103782",
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20090141106",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3061930750",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7507318975",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3573032836",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23249882297",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182915328244",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7072481705",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "1638811638",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9869776299",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3980845591",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710213220",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14316005865",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41105371277",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15588069737",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639294741",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26668886727",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "2640228486",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5526372219",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13899591365",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "53921295",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40053798507",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156341247",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113500096",
+        "voter": "peace77"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "2305218289",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18454999414",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3254259308",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254441972",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "35209586477",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7880937531",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36891688832",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63257042",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64457212",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "95032455818",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23121983186",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "7786511219",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "3913140293",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "19342356456",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17327320500",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "723540075",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "7734",
+        "reputation": 0,
+        "rshares": "11858584602",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1015711349723",
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9752646840",
+        "voter": "mrweed"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "4273763897",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4081288848",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60963253140",
+        "voter": "ssm1810"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15450353150",
+        "voter": "tommycoin"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "10652439829",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1890555526",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21440262662",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65105820",
+        "voter": "korose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1296524008",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62525016",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116629075",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "334316050",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64952156",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61009676",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62978439988",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56698723",
+        "voter": "dmns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59146649",
+        "voter": "steemo"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "673691369",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58994070",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58969965",
+        "voter": "nyoba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74480084",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50027573",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59901741",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5635633617",
+        "voter": "userlogin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18470040669",
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12697983735",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57933957",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "5500",
+        "reputation": 0,
+        "rshares": "3649124709",
+        "voter": "blocho"
+      },
+      {
+        "percent": "1100",
+        "reputation": 0,
+        "rshares": "3418565775",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190168923",
+        "voter": "cryptomental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13246920821",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57772261",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57754194",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56573535",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57764404",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56566121",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56161396",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7674854463",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3837911452",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59196527",
+        "voter": "rgla216"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56145566",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59160726",
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57991172",
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "14180456361",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7066713736",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703482676",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55085378",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43794544469",
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55091113",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54739685",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54730557",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10072410872",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55501723",
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54362089",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5774724528",
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54019345",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54017499",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "892494003",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53655807",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53331040",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53324520",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53318865",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2062521702",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25841078460",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54085429",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3283008303",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54793782",
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54556846761",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394704692",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459120073",
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53055629",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1347001825",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2284345748",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3196982382",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1610026744",
+        "voter": "bontonstory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90855304",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136546238548",
+        "voter": "skt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51484593",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316214146",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225136890",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898379463",
+        "voter": "twinbraid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59746972",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4055464024",
+        "voter": "luzcypher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543618786",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79254686",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160907900",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111492251",
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184673908",
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56431137",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155990992",
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155911120",
+        "voter": "blackheart304"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146185843",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155496536",
+        "voter": "alterego"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155166744",
+        "voter": "catman69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154958886",
+        "voter": "jovic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123954585",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2981585837",
+        "voter": "cgp17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154476148",
+        "voter": "hacon"
+      }
+    ],
+    "author": "clayop",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "## Summary\nThis post introduces two new statistics about influences on rewards with the consideration of the leverage of Steem Power (IPR) to provide more through understanding about the whale issue.\n\n\n## Introduction\n\nThe whale issue of Steem is one of the most frequently debated topic from its beginning. But we still do not have through understanding regarding the current situations, such as how much whales have influences on rewards, or how unequal the situation is. In this post, I would like to introduce two new statistics, 1) Influences on (author) rewards, 2) Influence to Steem Power Ratio (IPR), to provide more comprehensive knowledge about the whale issue.\n\n\n\n## Methods\n\nThe data is from Steem blockchain from 2016/8/16 (After v0.13.0) to 2016/9/8.\nInfluences of whales on rewards is calculated based on the following equations.\n\n```\n- Rshares of a post: sum(voters_rshares)\n- Vshares of a post: (posts_rshares)^2\n- Daily vshares: sum(posts_vshares)\n- Voter's vshares on a post: posts_vshares * (voters_rshares / posts_rshares)\n- Voter's daily vshares: sum(voters_vshares)\n- Voter's influence: voters_daily_vshares / daily_vshares\n```\n\nTo get IPR, we just need a simple equation.\n```\n- IPR = Influence / (voters_vests / total_vests)\n```\n*Note: Steemit account's vests are excluded from total_vests*\n\n\n## Results\n\nRank | Account | Influence(%) | Steem Power (%) | IPR\n:----:|:----:|----|----|----\n1\t|\tsmooth\t|\t13.34\t|\t2.86\t|\t4.67\n2\t|\tblocktrades\t|\t11.60\t|\t3.71\t|\t3.13\n3\t|\tberniesanders\t|\t10.55\t|\t2.97\t|\t3.55\n4\t|\tsteemed\t|\t3.92\t|\t1.62\t|\t2.42\n5\t|\titsascam\t|\t3.82\t|\t1.53\t|\t2.49\n6\t|\ttombstone\t|\t3.62\t|\t1.87\t|\t1.93\n7\t|\tdantheman\t|\t3.51\t|\t2.54\t|\t1.38\n8\t|\tsummon\t|\t3.11\t|\t1.29\t|\t2.41\n9\t|\tjamesc\t|\t2.78\t|\t3.20\t|\t0.87\n10\t|\tcomplexring\t|\t2.37\t|\t0.67\t|\t3.52\n11\t|\tsmooth.witness\t|\t2.32\t|\t0.53\t|\t4.37\n12\t|\twang\t|\t1.97\t|\t0.66\t|\t2.97\n13\t|\tnextgencrypto\t|\t1.81\t|\t0.51\t|\t3.53\n14\t|\trainman\t|\t1.78\t|\t1.51\t|\t1.18\n15\t|\trecursive\t|\t1.56\t|\t0.31\t|\t5.11\n16\t|\tsilversteem\t|\t1.55\t|\t0.46\t|\t3.39\n17\t|\triverhead\t|\t1.53\t|\t0.68\t|\t2.23\n18\t|\tpharesim\t|\t1.53\t|\t0.88\t|\t1.74\n19\t|\tned\t|\t1.52\t|\t5.73\t|\t0.27\n20\t|\tsteemit200\t|\t1.38\t|\t0.57\t|\t2.42\n21\t|\tsteempty\t|\t1.30\t|\t0.69\t|\t1.87\n22\t|\tkushed\t|\t1.15\t|\t0.50\t|\t2.29\n23\t|\txeldal\t|\t1.15\t|\t0.64\t|\t1.79\n24\t|\thr1\t|\t1.00\t|\t0.21\t|\t4.69\n25\t|\tsatoshifund\t|\t0.99\t|\t0.35\t|\t2.85\n26\t|\tenki\t|\t0.91\t|\t0.53\t|\t1.71\n27\t|\tval-a\t|\t0.91\t|\t2.80\t|\t0.32\n28\t|\tsilver\t|\t0.74\t|\t0.19\t|\t3.85\n29\t|\tau1nethyb1\t|\t0.72\t|\t0.42\t|\t1.71\n30\t|\tbadassmother\t|\t0.63\t|\t0.26\t|\t2.44\n\nSurprisingly, top 10 have about 60% (actually over 60% since `smooth` and `smooth.witness` is controlled by same person) of author rewards, while they only have 22% of Steem Power. And the top 3 (`smooth`, `blocktrades`, `berniesanders` consist of 35.5% of influences, for instance, if daily author reward is $20,000, about $7,000 is from these three's voting activities. The average IPR of the top 10 is 2.63, but if we do the same calculation with rank 41~50, they only have IPR of 0.75. This means that influences on rewards is unequally distributed, more specifically it is biased to some whales.\n\n![](http://i.imgsafe.org/26684444a1.jpg)\n\nAdditionally, I calculated some basic statics about top rankers voting patterns.\n\n- Range: Number of unique writers they voted for\n- Mean: Average number of votes per writer\n- Max: Maximum number of votes on a writer\n- Stdev: Standard deviation of votes\n\nRank | Account | Range | Mean | Max | Stdev\n:----:|:----:|----|----|----|----\n1\t|\tsmooth\t|\t340\t|\t2.32\t|\t65\t|\t7.49\n2\t|\tblocktrades\t|\t480\t|\t1.31\t|\t22.4\t|\t1.51\n3\t|\tberniesanders\t|\t785\t|\t1.27\t|\t14.5\t|\t1.7\n4\t|\tsteemed\t|\t80\t|\t3.64\t|\t44\t|\t6.43\n5\t|\titsascam\t|\t79\t|\t3.69\t|\t44\t|\t6.49\n6\t|\ttombstone\t|\t196\t|\t1.64\t|\t12.1\t|\t2.18\n7\t|\tdantheman\t|\t339\t|\t0.66\t|\t10.3\t|\t1.23\n8\t|\tsummon\t|\t220\t|\t1.65\t|\t14.4\t|\t1.99\n9\t|\tjamesc\t|\t135\t|\t1.1\t|\t12.8\t|\t1.81\n10\t|\tcomplexring\t|\t534\t|\t1.75\t|\t39\t|\t3.04\n11\t|\tsmooth.witness\t|\t324\t|\t2.4\t|\t65\t|\t7.61\n12\t|\twang\t|\t213\t|\t8.29\t|\t82\t|\t10.41\n13\t|\tnextgencrypto\t|\t755\t|\t1.4\t|\t14\t|\t1.51\n14\t|\trainman\t|\t170\t|\t1.18\t|\t9.7\t|\t1.3\n15\t|\trecursive\t|\t121\t|\t9.78\t|\t51\t|\t11.76\n16\t|\tsilversteem\t|\t760\t|\t1.82\t|\t15\t|\t2.08\n17\t|\triverhead\t|\t334\t|\t1.53\t|\t12.6\t|\t1.4\n18\t|\tpharesim\t|\t404\t|\t2.03\t|\t54\t|\t3.89\n19\t|\tned\t|\t238\t|\t0.18\t|\t2.6\t|\t0.35\n20\t|\tsteemit200\t|\t175\t|\t2.41\t|\t13\t|\t2.29\n21\t|\tsteempty\t|\t164\t|\t2.89\t|\t34\t|\t4.84\n22\t|\tkushed\t|\t250\t|\t2.61\t|\t84\t|\t7.36\n23\t|\txeldal\t|\t204\t|\t2.92\t|\t48\t|\t5.65\n24\t|\thr1\t|\t104\t|\t10.34\t|\t52\t|\t11.86\n25\t|\tsatoshifund\t|\t130\t|\t2.51\t|\t21\t|\t3.61\n26\t|\tenki\t|\t174\t|\t3.22\t|\t46\t|\t5.58\n27\t|\tval-a\t|\t75\t|\t0.36\t|\t1.5\t|\t0.42\n28\t|\tsilver\t|\t763\t|\t1.83\t|\t15\t|\t2.13\n29\t|\tau1nethyb1\t|\t205\t|\t1.97\t|\t11\t|\t1.79\n30\t|\tbadassmother\t|\t235\t|\t2.75\t|\t15\t|\t2.77\n\n\n\nAmong these statistics, max and stdev should be highlighted, since higher numbers imply that a whale's voting is very concentrated (possibily due to his/her preferences or favorable connection with authors?), and this can further create perception of inequality. (People recursively see high rewards on same author's posts). For comparison, while `blocktrades` and `berniesanders` have similar influences with `smooth`, they have much lower max and stdev, which implies that their votes are widely dispersed to many writers. But we can see very high max and stdev in `hr1`, `recursive`, `wang`, and `smooth`. In addition, we can find `smooth` and `smooth.witness`, and `recursive` and `hr1` have the similar patterns respectively, probably because each pair of accounts is using the same voting bot.\n\n\n## Wrap-up\n\nThe results show that influence is much higher than whales' actual steem power, especially by active whale bots. In my humble opinion, the fundamental cause is the squared rshares, which makes large voting power much greater. We need further discussion about this issue and have to address it for better Steem society.\n\n\n### P.S. Do you think that I have to post these stats everyday, weekly, or monthly? (Everyday data has influence and IPR only because the second table requires more samples)",
+    "body_length": 5929,
+    "cashout_time": "2016-10-10T16:54:48",
+    "category": "stats",
+    "children": 52,
+    "created": "2016-09-09T07:44:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"stats\",\"steemstats\",\"steem\",\"steemit\"],\"image\":[\"http:\\/\\/i.imgsafe.org\\/26684444a1.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T02:38:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 114295236077684,
+    "parent_author": "",
+    "parent_permlink": "stats",
+    "pending_payout_value": "774.706 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "how-much-do-whales-influences-on-rewards-introducing-new-statistics",
+    "post_id": 899944,
+    "promoted": "80.000 HBD",
+    "replies": [],
+    "root_title": "How Much Do Whales Influences on Rewards? Introducing New Statistics",
+    "title": "How Much Do Whales Influences on Rewards? Introducing New Statistics",
+    "total_payout_value": "0.000 HBD",
+    "url": "/stats/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "37958555221963",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3067363384383",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "478094018503",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1114412761220",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308797510253",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117668471628",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258704941582",
+        "voter": "pal"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "5881761534",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "5555",
+        "reputation": 0,
+        "rshares": "1061225057",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5619821999",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206055752764",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687457693253",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6893011543",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336007709477",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35382236445",
+        "voter": "clement"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "12150749927",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174834964660",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "1911143023",
+        "voter": "getssidetracked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2260320253",
+        "voter": "cloh76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106715514958",
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12031186934",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1454011802",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322883299010",
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116496190",
+        "voter": "bzeen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116147067",
+        "voter": "chugumoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7264246012",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10147926283",
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309088757",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5405936538",
+        "voter": "livetofly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7320667894",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8481809308",
+        "voter": "chloetaylor"
+      },
+      {
+        "percent": "1200",
+        "reputation": 0,
+        "rshares": "5022832456",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43547132598",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "2597513528",
+        "voter": "ace108"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "238512214",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3864529222",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71342284",
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55075582585",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10279076152",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2704342364",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6742131662",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1158727876",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3412724038",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "23315754846",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17657884574",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9139349966",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2340457693",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57599950",
+        "voter": "veronik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57487444",
+        "voter": "morega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2575797724",
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4654649325",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "33842169712",
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1067000528",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453412386",
+        "voter": "totosky"
+      },
+      {
+        "percent": "1600",
+        "reputation": 0,
+        "rshares": "1523069868",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57461594",
+        "voter": "mj6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860856358",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176586448",
+        "voter": "natord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196786352",
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156821466",
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158532208",
+        "voter": "landria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "645216982",
+        "voter": "reddust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185748745",
+        "voter": "mrlemmer11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155564281",
+        "voter": "ddh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152254165",
+        "voter": "royfft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154912101",
+        "voter": "diogo.jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151754313",
+        "voter": "dek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151380239",
+        "voter": "forever-gala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141937635",
+        "voter": "sawgunner13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150939275",
+        "voter": "xaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135751381",
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153386890",
+        "voter": "jvon"
+      }
+    ],
+    "author": "mrlemmer11",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><br>\n</p>\n<p>A simple and informative method to explain Steem Mining to new people:</p>\n<p>A few nights ago my girlfriend Trena asked me what I was doing. My response of 'mining' was quickly met with an elongated pause with 'huh?' immediately proceeding. It was in this moment which I was stuck with the daunting task of making my best attempt to explain exactly what the heck I was doing. Recalling my prior failed efforts to accurately explain this to others, I decided on a different approach. I'm not sure how this came about as I had not invested any time on this analogy prior, but I simply said, 'Mining Steem and crypto-currencies is like being a Taxi Driver.'</p>\n<p><center><img src=\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\"/></center></p>\n<p><center><a href=\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\">Image Credit</a></center></p>\n<h2>What does a Taxi Driver do?</h2>\n<blockquote>A taxi driver is a professional driver who transports passengers to their chosen destinations through the use of a taxi cab. By transporting their passengers, they earn a fare depending on the length of the taxi cab ride.</blockquote>\n<p>https://www.sokanu.com/careers/taxi-driver/</p>\n<p><br></p>\n<p>Why does one want to be a Taxi Driver?</p>\n<ol>\n  <li>They earn a fare</li>\n  <li>They enjoy driving</li>\n  <li>They are comforatable being in a vehicle</li>\n  <li>They like the company of others</li>\n</ol>\n<p>Why does one want to be Miner?</p>\n<ol>\n  <li>they earn a reward</li>\n  <li>they enjoy technology</li>\n  <li>they are comfortable being on a computer</li>\n  <li>they like crypto-currencies</li>\n</ol><center>\n<h2>Just for the Money?</h2>\n<p><img src=\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\"/></p>\n<p><a href=\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\">Image Credit</a></center></p>\n<p>Before venturing into the first desire above, it is important to realize that cumulative weight of secondary motivations and beyond are typically necessary to achieve the fare/reward. From my understanding (and definitely not from waking up in the morning hundreds of dollars short than when I started the night prior!) individuals who dance and take their clothes off can make a very large 'fare/reward' as well! Knowing this, doesn't that mean I should do that too?! For me, the answer is a hard NO. I personally do not have the confidence, dancing abilities or free-natured spirit those individuals have. In the same light, a person who despises driving, is scared in a vehicle and loathes the company of others, likely wouldn't make a very good Taxi Driver. Lastly, individuals who are scared of technology, frightened by computers and do not want to be around crypto-currencies would have a difficult time mining.</p>\n<p><br></p>\n<center><h2>Now that we understand how important the combined weight of secondary motivations are to one's decision to become either a Taxi Driver or a Miner, let's explore how exactly a fare/reward is made.&nbsp;</h2>\n<p><img src=\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\"/></p>\n<p><a href=\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\">Image Credit</a></center></p>\n<ul>\n  <li>The job of the Taxi Driver is to navigate geographic terrain to a specified location provided by the passenger. Payment of a fare from the passenger to the Taxi Driver is confirmation that the job was executed successfully.&nbsp;</li>\n  <li>In terms of mining, the job of the miner is to navigate digital data in an attempt to verify digital contracts and transfers from other users (passengers). Payment of a reward from other users to the miner is confirmation that the digital data was successfully verified. &nbsp;&nbsp;</li>\n</ul>\n<p><br></p>\n<ul>\n  <li>If the Taxi Driver is unsuccessful and drops the passenger off at a different location, or his vehicle breaks down, the passenger does not need to provide compensation regardless of how close they are. Even if the Taxi Driver arrives at the correct location but several hours later than originally required, compensation may and probably won't be provided.</li>\n  <li>If a miner is unsuccessful in verifying assigned transactions of digital data, no reward will be provided. If the miner confirms transactions hours or days later, no reward will be provided.</li>\n</ul>\n<p><br></p>\n<h2>Ok, so this seems broad enough for most individuals to understand. Let us explore what is required to make all this happen.&nbsp;</h2>\n<p><center><img src=\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\" width=\"736\" height=\"920\"/></center></p>\n<p><center><a href=\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\">Image Credit</a></center></p>\n<p>Taxi Drivers should have the following items in order to receive a fare:</p>\n<ol>\n  <li>A Vehicle --- The Taxi Driver does not need to own one. Some Taxi Drivers work for a company who provide one to them for a cost.</li>\n  <li>Gasoline</li>\n  <li>A Map/GPS</li>\n  <li>A pocket for cash payments or a Credit Card machine to take payments</li>\n</ol>\n<p>Miners should have the following items in order to receive a reward: &nbsp;</p>\n<ol>\n  <li>A Computer --- The Miner does not need to own one. Some Miners pay for a computer in the 'cloud.' If a miner chooses this option, a fee will be paid from the Miner to the company providing the computer.</li>\n  <li>Electricity</li>\n  <li>An interface which provides their computer with the information they need to verify</li>\n  <li>A digital wallet to receive payment of their rewards</li>\n</ol>\n<p><br></p><center>\n<h2>I have all of those items! So now I need to sit at my computer all day and actively mine?</h2>\n<p><img src=\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\" width=\"251\" height=\"205\"/></p>\n<p><a href=\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\">Image Credit</a></center></p>\n<p>Nope. When you first get in to a Taxi it is stationary and the driver is paying attention to you to find out where you want to go. From there,&nbsp;the driver typically has a conversation on his phone, chit-chats with you, drinks coffee, eats and obsessively blows his horn. The actual driving of the vehicle for the Taxi Driver is second nature to him and he has an amazing ability to multi-task. The Taxi Driver did all of those&nbsp;things for your entire trip but ultimately he got you to your destination... so you paid him.</p>\n<p>The same goes for mining. You turn on your computer and point the mining program to it's digital destination. From there you are able to&nbsp;minimize the program and do anything else you so choose to. The computer knows in the background what needs to be done and just does it for&nbsp;you.</p>\n<p><br></p><center>\n<h2>Are you telling me that I can Mine while streaming Netflix and building a huge customer database for my company at the same time?</h2>\n<p><img src=\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&amp;h=800&amp;crop=1\" width=\"1200\" height=\"800\"/></p>\n<p><a href=\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&amp;h=800&amp;crop=1\">Image Credit</a></center></p>\n<p>Everything has limitations. For the Taxi Driver who uses a Ford Focus for a vehicle, it would be quite difficult for him to pick of a family of 15&nbsp;Sumo Wrestlers. This is difficult for two reasons:&nbsp;</p>\n<ol>\n  <li>The Taxi Driver will likely not have the space in his Ford Focus for the family.&nbsp;</li>\n  <li>If&nbsp;he is Harry Houdini and somehow fits them all in, the weight of the car will be so tremendous it would take hours to arrive at the&nbsp;destination.</li>\n</ol>\n<p>The same is true for your computer. Mining requires you to have memory and processing power. The Memory is equivalent to the space inside of&nbsp;the Ford Focus. The Processing Power is equivalent to the speed of the Ford Focus. If your other activities take up a lot of memory, or slow down&nbsp;your computer's speed, then it is recommended to using the mining tool when you are not actively using your computer.</p>\n<center><p><img src=\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\" width=\"384\" height=\"352\"/></p>\n<p><a href=\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\">Image Credit</a></center></p>\n<p>Admittingly this analogy does not afford a person the resources to go and create CabCoin anytime soon. It was sufficient enough however for Trena who told me that she understood and appreciated the explanation. After which came another elongated pause and then she asked, 'So, we're going to become millionaires now?!'</p>\n<p><br></p>\n<p><br></p>\n<p><center><img src=\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\" width=\"156\" height=\"70\"/></p>\n</center><center><p>Please share, upvote and follow if you enjoyed this Original Content. Cheers!</p>\n</center></html>",
+    "body_length": 9064,
+    "cashout_time": "2016-10-15T15:40:12",
+    "category": "steemit",
+    "children": 16,
+    "created": "2016-09-14T03:07:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"mining\",\"crypto\",\"guide\",\"life\"],\"image\":[\"http:\\/\\/hireagreek.com\\/wp-content\\/uploads\\/2012\\/03\\/Cab.jpg\",\"http:\\/\\/media.nbcconnecticut.com\\/images\\/653*367\\/stripper+generic+black+white.jpg\",\"http:\\/\\/www.marilynomalley.com\\/wp-content\\/uploads\\/2015\\/04\\/MoneyMap.jpg\",\"https:\\/\\/s-media-cache-ak0.pinimg.com\\/736x\\/4d\\/21\\/3c\\/4d213c01fdfc017db9394ecd19a2dffc.jpg\",\"http:\\/\\/media.tumblr.com\\/tumblr_lxgdqeHIut1qcpel0.jpg\",\"https:\\/\\/lisasatomidotcom.files.wordpress.com\\/2014\\/08\\/dsc04533-e1406962297583.jpg?w=1200&h=800&crop=1\",\"http:\\/\\/i984.photobucket.com\\/albums\\/ae329\\/lzsleggs\\/currency\\/NYTransittokensideA.jpg\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i.imgsafe.org\\/dd8bd8753d.gif\"],\"links\":[\"http:\\/\\/hireagreek.com\\/wp-content\\/uploads\\/2012\\/03\\/Cab.jpg\",\"https:\\/\\/www.sokanu.com\\/careers\\/taxi-driver\\/\",\"http:\\/\\/media.nbcconnecticut.com\\/images\\/653*367\\/stripper+generic+black+white.jpg\",\"http:\\/\\/www.marilynomalley.com\\/wp-content\\/uploads\\/2015\\/04\\/MoneyMap.jpg\",\"https:\\/\\/s-media-cache-ak0.pinimg.com\\/736x\\/4d\\/21\\/3c\\/4d213c01fdfc017db9394ecd19a2dffc.jpg\",\"http:\\/\\/media.tumblr.com\\/tumblr_lxgdqeHIut1qcpel0.jpg\",\"https:\\/\\/lisasatomidotcom.files.wordpress.com\\/2014\\/08\\/dsc04533-e1406962297583.jpg?w=1200&h=800&crop=1\",\"http:\\/\\/i984.photobucket.com\\/albums\\/ae329\\/lzsleggs\\/currency\\/NYTransittokensideA.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T03:18:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 45496544001648,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "126.774 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "how-steem-mining-is-quite-similar-to-being-a-taxi-driver",
+    "post_id": 946325,
+    "promoted": "80.000 HBD",
+    "replies": [],
+    "root_title": "How Steem Mining is quite similar to being a Taxi Driver",
+    "title": "How Steem Mining is quite similar to being a Taxi Driver",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@mrlemmer11/how-steem-mining-is-quite-similar-to-being-a-taxi-driver"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29147120174026",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6833057755677",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5923364802528",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3489650620",
+        "voter": "mazi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331579148862",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6130058444",
+        "voter": "tad-auker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279342363450",
+        "voter": "pal"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1788305838",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47660657649",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43176960278",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10554741746",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4103670208",
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9215199356",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1161275060",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125488800966",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429359370177",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52226764896",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36041529055",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8872871556",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15304296909",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308550471",
+        "voter": "onthewayout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16413528877",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4206500024",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89059288467",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8838939591",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14367239940",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58397797",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88525673",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62923696",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111793370",
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39956231533",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78741972",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2621127096",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3719234621",
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7768702097",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843378883",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93173678605",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6431609320",
+        "voter": "comealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24075889262",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5228940799",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23335486471",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84546938",
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "698557363",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3210335542",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142419208",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "808472077",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3770091283",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18933467156",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1472797318",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30188896622",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7662198442",
+        "voter": "johnnyyash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114540011",
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3645882665",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3645428246",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68948761",
+        "voter": "mckeever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14100077577",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6205342073",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4208896605",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11806678596",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12153995383",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57337407",
+        "voter": "shurik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59131048",
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58065672",
+        "voter": "rhysday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11655869151",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99548341",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14193476029",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5291228070",
+        "voter": "brandonv111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3200609229",
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52620675",
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55272409",
+        "voter": "timmyg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568381891",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264146204",
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23182784473",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54551628",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70169318",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "564726175",
+        "voter": "funnyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69255373",
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52750948",
+        "voter": "modus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52223100",
+        "voter": "cathi-xx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51250382",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50572439",
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50049318",
+        "voter": "rhedrick32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595454998",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50291088",
+        "voter": "berwynbass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154251929",
+        "voter": "nathan777"
+      }
+    ],
+    "author": "krnel",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center><img src=\"https://www.steemimg.com/images/2016/08/30/empowerbreakshacklesc5334.jpg\" alt=\"empowerbreakshacklesc5334.jpg\" /></center>\n<br/>\n#### Why don't things change in our lives? Why don't things change in the world? \n\nMost people don't learn from their mistakes, and keep repeating them. Most people lack an accurate understanding of truth about the current condition of reality. \n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/makingmistakesconfucius1b411.jpg\" alt=\"makingmistakesconfucius1b411.jpg\" /></center>\n\nMost people don't seem to want to learn, as most people (in general) lack real Care for Truth, busy with work, surviving, having fun, etc., yet we dream and hope to do the **right thing** to fix our problems in our ignorant state. \n\nDreams can be fantasy unrealities and blind us to reality. This is wishful thinking, a \"positivity\" mask placed over reality with rosy colored glasses that prevents us from seeing things as they really are. Some of us are too fixated on the pleasure trap of \"feeling-food\" about ourselves because we fear, avoid, deny, reject and deflect most negatives in the world and ourselves from being acknowledged. We just want to believe \"it's all good\" and \"things are as they are supposed to be\", \"no need to do anything\", \"let it flow\", etc.\n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/denyingmistakesrepeatinglearn34678.jpg\" alt=\"denyingmistakesrepeatinglearn34678.jpg\" /></center>\n\nMany people are polarized against the negative and this hinders their accurate perception, conception, understanding and navigation of reality, leading them astray, wandering lost and fooling themselves into acting foolishly. \n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/mistakescorrectionfoolswisdom1c6a7.jpg\" alt=\"mistakescorrectionfoolswisdom1c6a7.jpg\" /></center>\n\n#### How do you empower yourself to change when a problem arises? How do you learn what the right and better thing to do is, that will fix and resolve the issue? You learn. You learn how to learn better, and you learn how to think better. Understanding of Knowledge is the Power to generate the Force of Will that can move you to Change.\n\n\n#### If you are not doing what needs to be done yet (or maybe you don't even know you are doing wrong), then maybe you *lack knowledge* and need to *learn more truth* in order to develop the *motivational power* to engage in the change that is required. Make mistakes, that's life, but learn from them.\n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/mistakesoncesecondtimeischoice3512e.jpg\" alt=\"mistakesoncesecondtimeischoice3512e.jpg\" /></center>\n\n#### Here are some methods of processing the issues, problems, situations and effects we encounter in reality in order to truly empower ourselves with knowledge and understanding, and finally to act wisely, instead of foolishly ignoring reality.\n\n----\n# Empowering Change - Break Free from the Shackles that Bind You from Progress\n\n### Free Will Choice to Care and be Empowered to Change Yourself and the World with Understanding *(why)* of Knowledge *(what)* to Act Wisely *(how)*\n\n1. Situation / Issue / Problem\n2. Empowered (Level I)\n3. Care, Courage, Choice & Will to Change\n4. Knowledge, Grammar, Input\n5. Understanding, Logic, Processing\n6. Empowered (Level II)\n7. More Will-Power & Wisdom, Rhetoric, Output\n8. Change in Your Life and the World!\n<br/>\n\n----\n<center><img src=\"https://www.steemimg.com/images/2016/08/27/head-1597546_128065558.jpg\" alt=\"head-1597546_128065558.jpg\" border=\"0\"></center>\n## #1. Situation / Issue / Problem\n\nAcknowledge the issue.\n\nSee the uncomfortable, undesirable, painful truth as it is, and don't avoid, ignore, deny, reject or deflect it.\n\nRealize and recognize reality in its current condition. Face both the positive and negative, light and dark, beauty and horror, good and evil, moral and immoral, the truth of truth and the truth of falsity. \n\nHave the courage and care to look into the mirror and see the darkness, negative, \"demon\", shadow and wrongs that you may be involved in that you previously ignored being a part of.\n\nYou can do it. We all have this ability in consciousness. We can all start to see reality for what it is if we choose to let go of our fears and face the truth as it is.\n<br/>\n\n-----\n<center><a href=\"https://www.steemimg.com/image/gjmbp\"><img src=\"https://www.steemimg.com/images/2016/08/27/fist-681848_1280a5789.md.jpg\" alt=\"fist-681848_1280a5789.jpg\" border=\"0\" /></a></center>\n## #2. Empowered (Level I)\n\nFeel the empowerment to do something now that you faced the problem. Now you know about it, and that you have the power within you to do something to change the conditions around you. \n\n<br/>\n\n----\n<center><img src=\"https://www.steemimg.com/images/2016/08/27/16332734480_81402c1818_zd14d0.jpg\" alt=\"16332734480_81402c1818_zd14d0.jpg\" border=\"0\"></center>\n## #3. Care, Courage, Choice & Will to Change\n\nChoosing to change and the drive to do it. \n\nYou know you can and need to learn more, and you can care more, and develop the courage to use your will-power to engage in deeper learning and thinking about yourself and reality.\n\nThe only way forward, is by overcoming the problem. You need to **Care** to do that. You need to have the **Courage** to want to do it. And then you need to engage in the **Will-Power** to do something about it.\n\nYou need **knowledge** and **understanding** to do the right change, and not the wrong change, or change ineffectively. Because that just means more mistakes, but you can always correct them too. The point is to take the time to learn properly so you can avoid making more mistakes.\n\nFeel the flame burning within, the care and courage feeding you. Time to collect some knowledge fuel and then ignite your potential to change the conditions in your life, and possibly, the world.\n\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gjKN3\"><img src=\"https://www.steemimg.com/images/2016/08/27/dementia-1528625_128009ee7.md.jpg\" alt=\"dementia-1528625_128009ee7.jpg\" border=\"0\" /></a></center>\n## #4. Knowledge, Grammar, Input\n\nCollect information and data on the situation. \n\nLearn about the problem in order to later understand the core foundational root causal factors that created it. You can only affect proper change of the problem, condition, situation or issue, when you deal with the root, not the leaves, when you deal with the actually cause, and not the effects that are symptoms of the cause. \n\n<center><img src=\"http://media.evolveconsciousness.org/2015/03/Causality-Base17-Wheel-of-Life-OG.png\" alt=\"Causality-Base17-Wheel-of-Life-OG\" /></center>\n\nCause and effect is a universal law that applies everywhere, even in human behavior and the human world and way of life we have created for ourselves.\n\n**What** is happening? Learn about the basics of the situation or problem. \n\nWhat, Who, When, Where. This is the basic **Knowledge** that needs to be gathered, collected and **Input**. This is also the **Grammar** phase in the [Trivium Methodology](http://triviummethod.org/).\n\nNow that you have figured out the basics of what's going on, you can progress to **Process** that information and **Understand** it.\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gjOPu\"><img src=\"https://www.steemimg.com/images/2016/08/27/Knowledge-sharingc795d.md.jpg\" alt=\"Knowledge-sharingc795d.jpg\" border=\"0\" /></a></center>\n## #5. Understanding, Logic, Processing\n\n**Process** the information to determine the root causal factors. This allows you to **Understand** with clarity of precision and higher definition detail. You now understand the meaning, purpose and value of the knowledge that will help to empower you to finally act to change the condition in reality.\n\n**Why** is this happening, really? Use *Logic* to remove contradiction, errors and filter the truth from the falsity.\n\nYou correspond and integrate all the information without contradiction. You validate it by filtering, discerning, judging , analyzing, diagnosing and evaluating the information. Take in quality truth as a foundation for making decisions.\n\n<center><img src=\"http://media.evolveconsciousness.org/2015/03/Causality-Base9.png\" alt=\"Logic\" /></center>\n\nGet down to the root of the issue, the real cause, and deal with it from the source. You now see and understand how the root causal core foundation is the reason for the secondary symptomatic effects to have manifested. There are thousands of effects that can be chased over and over, but until the common root is dealt with, it will continue to generate the same effects over and over. Stop applying band-aids and actually heal the wound.\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gtJyE\"><img src=\"https://www.steemimg.com/images/2016/08/27/love-1127710_1280d7f8d.md.jpg\" alt=\"love-1127710_1280d7f8d.jpg\" border=\"0\" /></a></center>\n## #6. Empowered (Level II)\n\nThe solution is understood from seeing the problem clearly, from gaining clarity. You're vision has been optimized.\n\nNow you're **REALLY** empowered to do something! You learned about the problem, got down to the root causal source of it, and now you understand what you need to do.\n\nFeel that **truth** flowing through you and giving you the energy to change. The fire and flame of **truth** is burning within and ignites you to **ACT**! Keep that care and courage going, and use the truth to ignite your actions.\n\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gjflL\"><img src=\"https://www.steemimg.com/images/2016/08/27/animal-483860_1280c5b94.md.jpg\" alt=\"animal-483860_1280c5b94.jpg\" border=\"0\" /></a></center>\n## #7. More Will-Power & Wisdom, Rhetoric, Output\n\nActualize, Realize, Generate and Manifest the Wisdom of Right-Action.\n\n**How** are you going to change what you do in order to resolve this situation, problem or issue?\n\nYou understand the root cause, and now you understand how to fix the problem. Target the **cause** that created the **effects** you don't want.\n\nThis can involved direct action, or speaking, teaching or preaching the truth of reality, or writing about it. These are all **Outputs** that are guided by the **Wisdom** of knowing what is the Right things to do. This is the 3rd phase in the Trivium Method, known as **Rhetoric**.\n\nUse the empowerment, care, courage and truth fuel to ignite your Will-Power and get things done. \n\nNow you are acting and doing something to get a change to occur. Even if it isn't instantaneous, you can act, and learn, and refine your understanding of what to do. This process can be applied over and over, and needs to be, continually.\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gjjYS\"><img src=\"https://www.steemimg.com/images/2016/08/27/Change-1080x67559547.md.jpg\" alt=\"Change-1080x67559547.jpg\" border=\"0\" /></a></center>\n## #8. Change in Your Life and the World!\n\nSee results manifest. \n\nMaybe there is more to do. We are always learning. That is life, to learn. If you stop learning, then you stop taking advantage of the power of your consciousness, and it goes to waste. Use that \"muscle\" and make it stronger as time goes by. \n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/corectmistakesmakenewversionofselfyangmingc44a9.jpg\" alt=\"corectmistakesmakenewversionofselfyangmingc44a9.jpg\" /></center>\n\nThis is the power we have. We can continually remake ourselves, continually self-renew and be reborn as a phoenix from the ashes. We can be malleable, highly adaptable, and wanting to change and evolve to higher heights. We can be the most fit for survival and optimizing our way of life. Become the change towards more moral truth, don't fight it.\n\n<center><img src=\"http://evolveconsciousness.org/wp-content/uploads/2014/02/ego-phoenix-reborn.jpg\" alt=\"phoenix\" /></center>\n\nWhew! Done! Not so hard was it?\n\nTake a break, lay back and **reap** the rewards that you **sowed**. You earned it!\n\n-----\n*The next time you have an issue, or the next moment in your day you need to think about something, use this process. This is how we optimally process reality around us, and within us. This is the Trivium Methodology. Truth is truly empowering and you can change yourself and change your life!*\n\n*Learning is life. Learn how to learn better, and learn how to think better.*\n\nWe are all in this together in the end. The world is the way it is because we **ALL** make it this way. It's time we all step up and own our personal responsibility to do something about it. What we do matters. We can create more freedom, peace, prosperity and live in an anarchic (no masters, no slaves) way of life.\n\n-----\nWasn't that straightforward? Maybe you want some more information to help you understand the specifics of how to go about that? Check out some of the older work: @krnel\n\n----\nIf you appreciate and value the content, please consider:\nUpvoting <img src=\"https://www.steemimg.com/images/2016/08/30/upvote91a69.png\" alt=\"upvote91a69.png\" /> Sharing <img src=\"https://www.steemimg.com/images/2016/08/30/share2195b.png\" alt=\"share2195b.png\" />  Promoting <img src=\"https://www.steemimg.com/images/2016/08/30/promote4d857.png\" alt=\"promote4d857.png\" /> below.\n\n[![Follow](https://www.steemimg.com/images/2016/08/30/follow2be5e.png)](https://steemit.com/@krnel) me for more great content to come!\n\n#### Thank you for reading! I appreciate the knowledge reaching more people. Take care. Peace.\n\n---\nAuthor: [Kris Nelson](http://evolveconsciousness.org/) / @krnel\nContact: steemit.quality@gmail.com\nDate: 2016-08-30",
+    "body_length": 13544,
+    "cashout_time": "2016-09-30T19:24:51",
+    "category": "empowerment",
+    "children": 18,
+    "created": "2016-08-30T12:56:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"empowerment\",\"life\",\"philosophy\",\"psychology\",\"anarchy\"],\"users\":[\"krnel\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/empowerbreakshacklesc5334.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/makingmistakesconfucius1b411.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/denyingmistakesrepeatinglearn34678.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/mistakescorrectionfoolswisdom1c6a7.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/mistakesoncesecondtimeischoice3512e.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/27\\/head-1597546_128065558.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/27\\/fist-681848_1280a5789.md.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/27\\/16332734480_81402c1818_zd14d0.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/27\\/dementia-1528625_128009ee7.md.jpg\",\"http:\\/\\/media.evolveconsciousness.org\\/2015\\/03\\/Causality-Base17-Wheel-of-Life-OG.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/27\\/Knowledge-sharingc795d.md.jpg\",\"http:\\/\\/media.evolveconsciousness.org\\/2015\\/03\\/Causality-Base9.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/27\\/love-1127710_1280d7f8d.md.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/27\\/animal-483860_1280c5b94.md.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/27\\/Change-1080x67559547.md.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/corectmistakesmakenewversionofselfyangmingc44a9.jpg\",\"http:\\/\\/evolveconsciousness.org\\/wp-content\\/uploads\\/2014\\/02\\/ego-phoenix-reborn.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/upvote91a69.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/share2195b.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/promote4d857.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/follow2be5e.png\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/gjmbp\",\"https:\\/\\/www.steemimg.com\\/image\\/gjKN3\",\"http:\\/\\/triviummethod.org\\/\",\"https:\\/\\/www.steemimg.com\\/image\\/gjOPu\",\"https:\\/\\/www.steemimg.com\\/image\\/gtJyE\",\"https:\\/\\/www.steemimg.com\\/image\\/gjflL\",\"https:\\/\\/www.steemimg.com\\/image\\/gjjYS\",\"https:\\/\\/steemit.com\\/@krnel\",\"http:\\/\\/evolveconsciousness.org\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T03:00:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 44833262695027,
+    "parent_author": "",
+    "parent_permlink": "empowerment",
+    "pending_payout_value": "233.249 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-power-of-consciousness-empower-yourself-with-truth",
+    "post_id": 800627,
+    "promoted": "78.030 HBD",
+    "replies": [],
+    "root_title": "The Power of Consciousness - Empower Yourself with Truth",
+    "title": "The Power of Consciousness - Empower Yourself with Truth",
+    "total_payout_value": "0.000 HBD",
+    "url": "/empowerment/@krnel/the-power-of-consciousness-empower-yourself-with-truth"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30850634397449",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098953009",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762157484",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697282365",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53957148226",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660795487",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213655207",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5449505206339",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622693401",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967137774",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63905396129",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288133732",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13735728064",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23053919574",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431534505",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12095791916",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40298671099",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67941059139",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125488800966",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "294364043",
+        "voter": "knopki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107998011885",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201234852498",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28278082847",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8809715045",
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42465200615",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59751474240",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251585044",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8532488200",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15304296909",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475569784927",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147173431399",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35921995525",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41358191073",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15085871795",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4411172842",
+        "voter": "konti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2792076049",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60570197",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2820120005",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3357881962",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19657188753",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90832113",
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36113947662",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2036507718",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4370747754",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7768702097",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1304825846",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27553485310",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31932954095",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "129594107",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26544745435",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2724770489",
+        "voter": "uuuhha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88063513040",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "426239526",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "559711438",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18503161084",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26778402701",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1227331098",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60326971",
+        "voter": "bitcoingiveaway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12149576930",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5840337697",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58701743",
+        "voter": "jimukgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24030850409",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12154041667",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8225043111",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "984374312",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14146616001",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243002660",
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66582630",
+        "voter": "expatlove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316019070",
+        "voter": "getonthetrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1159739581",
+        "voter": "maryfromsochi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56122965",
+        "voter": "kwsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24235309770",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70169318",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52837454",
+        "voter": "devilinlimbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60571568",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90207916",
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50192260",
+        "voter": "tikimizet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159194472",
+        "voter": "robyneggs"
+      }
+    ],
+    "author": "mikehere",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I was absolutely blown away when I got home and saw how well this picture I took while hiking at [Mt Rainier Paradise Park](https://www.google.com/maps/place/Mount+Rainier+National+Park/@46.7866113,-121.7360118,563m/data=!3m1!1e3!4m5!3m4!1s0x5490cde6eec94b87:0x5cf4a1fb4f91a418!8m2!3d46.8799663!4d-121.7269094) turned out. \n\nThis is the best picture I've ever taken.  It seems everything was perfect.  Mt Rainier is stunning.\n\n<a href=\"https://www.google.com/maps/@46.7914506,-121.7327133,3a,75y,299.46h,83.6t/data=!3m6!1e1!3m4!1s6o-B8xUzyc9zJyT4X1knSQ!2e0!7i13312!8i6656!6m1!1e1\" target=\"_blank\"><img src=\"http://mikepotterhere.com/wp-content/uploads/2016/08/mt-rainier-840.jpg\"></a>\n(This was taken by me with an iPhone 4S.  I was amazed!)\n\nI actually found the exact spot I took the picture on [Google 3D camera](https://www.google.com/maps/@46.7914506,-121.7327133,3a,75y,299.46h,83.6t/data=!3m6!1e1!3m4!1s6o-B8xUzyc9zJyT4X1knSQ!2e0!7i13312!8i6656!6m1!1e1).  Click that link.  It is so cool that google now has off road cameras and you can [even hike around Mt Rainier](https://www.google.com/maps/@46.8048848,-121.7330789,3a,75y,211.67h,81.6t/data=!3m6!1e1!3m4!1sjh6G_pbEJRZvVrKbtbBDVg!2e0!7i13312!8i6656).  You can click in a direction and move just like the road maps.\n\nThen [click here to see a 360 from the top](https://www.google.com/maps/@46.850956,-121.7556609,3a,75y,308.97h,92.74t/data=!3m8!1e1!3m6!1s-f9AqXWnTfds%2FV5ju1vVv7pI%2FAAAAAAAAHoE%2Fos26BSZWrrwgXvltMI0xoKrKz-4H_pdaQCLIB!2e4!3e11!6s%2F%2Flh5.googleusercontent.com%2F-f9AqXWnTfds%2FV5ju1vVv7pI%2FAAAAAAAAHoE%2Fos26BSZWrrwgXvltMI0xoKrKz-4H_pdaQCLIB%2Fw203-h101-n-k-no%2F!7i7168!8i3584).\n\n<h2>Here are some FAQ's about Mount Rainier:</h2>\n\n* Located in [Washington State, USA](https://www.google.com/maps/place/Mount+Rainier+National+Park/@46.627832,-122.1628134,613718m/data=!3m1!1e3!4m5!3m4!1s0x5490cde6eec94b87:0x5cf4a1fb4f91a418!8m2!3d46.8799663!4d-121.7269094)\n* The official height is 14,410 ft above sea level.\n* In 2015 - 10,025 people tried to climb Mount Rainier -  4,888 reached the summit.\n* Mount Rainier is considered an 'episodically active' volcano, which means it will erupt again some time.\n* Mount Rainier last erupted about 1,000 years ago.\n\n<h2>Taken from a distance showing the mountain</h2>\n\nhttp://mikepotterhere.com/wp-content/uploads/2016/08/mt-rainier2-840.jpg\n(This was taken awhile ago and I'm only including it here to show the view of the entire mountain)\n\n(These pictures were taken by me)\n\nI'm self promoting this post since it is well received, so there is no need for you to Promote it.  You can support me with your upvotes and comments.  Thanks Steemit community.\n\n<h1>Be sure to check out some of my other posts:</h1>\n\n* [My introduction - Long time Atari game designer saying hi! Going down memory lane](https://steemit.com/introduceyourself/@mikehere/hi-mike-potter-here-long-time-atari-game-designer-saying-hi-going-down-memory-lane)\n* [SteemWho.com - Help People Find You - Get Listed!](https://steemit.com/steemit/@mikehere/steemwho-find-people-and-help-people-find-you-get-listed)\n* [Moving to paradise - From creating QuickPay for Quicken to living on a sailboat in the Caribbean - Part 1](https://steemit.com/life/@mikehere/moving-to-paradise-from-creating-quickpay-for-quicken-to-living-on-a-sailboat-in-the-caribbean-part-1)\n* [Moving to paradise - Part 2 - Sint Maarten to Virgin Gorda and almost crashing on the rocks](https://steemit.com/life/@mikehere/moving-to-paradise-from-creating-quickpay-for-quicken-to-living-on-a-sailboat-in-the-caribbean-part-2-sint-maarten-to-virgin)\n* [At 42 I thought my life was over - My amazing transformation - It is never too late](https://steemit.com/life/@mikehere/at-42-i-thought-my-life-was-over-my-amazing-transformation-it-s-never-too-late)\n* [How to draw a Stick Figure - Complete full body tutorial - lol - just having fun :)](https://steemit.com/art/@mikehere/how-to-draw-a-stick-figure-this-is-for-the-99-99-that-think-they-have-no-talent)\n* [Tropical Paradise - Boracay Philippines - If you need to get away this is it!](https://steemit.com/travel/@mikehere/tropical-paradise-boracay-philippines)\n* [Promoting Steemit while onboard a cruise. Be sure to watch me dock](https://steemit.com/steemit/@mikehere/promoting-steemit-while-onboard-a-cruise-be-sure-to-watch-me-dock)\n* [Our Aqua Safari at Bora Bora - What a wonderful time](https://steemit.com/travel/@mikehere/our-aqua-safari-at-bora-bora-what-a-wonderful-time)\n\n<a href=\"https://steemit.com/@mikehere\"><img src=\"http://mikepotterhere.com/wp-content/uploads/2016/08/steemfollow.gif\"></a>\n\nBefore you click any links please upvote this post first.  Thank you.  I would love to make steemit my home.",
+    "body_length": 4723,
+    "cashout_time": "2016-10-01T00:09:33",
+    "category": "travel",
+    "children": 33,
+    "created": "2016-08-30T13:36:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"travel\",\"photography\",\"hiking\"],\"image\":[\"http:\\/\\/mikepotterhere.com\\/wp-content\\/uploads\\/2016\\/08\\/mt-rainier-840.jpg\",\"http:\\/\\/mikepotterhere.com\\/wp-content\\/uploads\\/2016\\/08\\/mt-rainier2-840.jpg\",\"http:\\/\\/mikepotterhere.com\\/wp-content\\/uploads\\/2016\\/08\\/steemfollow.gif\"],\"links\":[\"https:\\/\\/www.google.com\\/maps\\/place\\/Mount+Rainier+National+Park\\/@46.7866113,-121.7360118,563m\\/data=!3m1!1e3!4m5!3m4!1s0x5490cde6eec94b87:0x5cf4a1fb4f91a418!8m2!3d46.8799663!4d-121.7269094\",\"https:\\/\\/www.google.com\\/maps\\/@46.7914506,-121.7327133,3a,75y,299.46h,83.6t\\/data=!3m6!1e1!3m4!1s6o-B8xUzyc9zJyT4X1knSQ!2e0!7i13312!8i6656!6m1!1e1\",\"https:\\/\\/www.google.com\\/maps\\/@46.8048848,-121.7330789,3a,75y,211.67h,81.6t\\/data=!3m6!1e1!3m4!1sjh6G_pbEJRZvVrKbtbBDVg!2e0!7i13312!8i6656\",\"https:\\/\\/www.google.com\\/maps\\/@46.850956,-121.7556609,3a,75y,308.97h,92.74t\\/data=!3m8!1e1!3m6!1s-f9AqXWnTfds%2FV5ju1vVv7pI%2FAAAAAAAAHoE%2Fos26BSZWrrwgXvltMI0xoKrKz-4H_pdaQCLIB!2e4!3e11!6s%2F%2Flh5.googleusercontent.com%2F-f9AqXWnTfds%2FV5ju1vVv7pI%2FAAAAAAAAHoE%2Fos26BSZWrrwgXvltMI0xoKrKz-4H_pdaQCLIB%2Fw203-h101-n-k-no%2F!7i7168!8i3584\",\"https:\\/\\/www.google.com\\/maps\\/place\\/Mount+Rainier+National+Park\\/@46.627832,-122.1628134,613718m\\/data=!3m1!1e3!4m5!3m4!1s0x5490cde6eec94b87:0x5cf4a1fb4f91a418!8m2!3d46.8799663!4d-121.7269094\",\"https:\\/\\/steemit.com\\/introduceyourself\\/@mikehere\\/hi-mike-potter-here-long-time-atari-game-designer-saying-hi-going-down-memory-lane\",\"https:\\/\\/steemit.com\\/steemit\\/@mikehere\\/steemwho-find-people-and-help-people-find-you-get-listed\",\"https:\\/\\/steemit.com\\/life\\/@mikehere\\/moving-to-paradise-from-creating-quickpay-for-quicken-to-living-on-a-sailboat-in-the-caribbean-part-1\",\"https:\\/\\/steemit.com\\/life\\/@mikehere\\/moving-to-paradise-from-creating-quickpay-for-quicken-to-living-on-a-sailboat-in-the-caribbean-part-2-sint-maarten-to-virgin\",\"https:\\/\\/steemit.com\\/life\\/@mikehere\\/at-42-i-thought-my-life-was-over-my-amazing-transformation-it-s-never-too-late\",\"https:\\/\\/steemit.com\\/art\\/@mikehere\\/how-to-draw-a-stick-figure-this-is-for-the-99-99-that-think-they-have-no-talent\",\"https:\\/\\/steemit.com\\/travel\\/@mikehere\\/tropical-paradise-boracay-philippines\",\"https:\\/\\/steemit.com\\/steemit\\/@mikehere\\/promoting-steemit-while-onboard-a-cruise-be-sure-to-watch-me-dock\",\"https:\\/\\/steemit.com\\/travel\\/@mikehere\\/our-aqua-safari-at-bora-bora-what-a-wonderful-time\",\"https:\\/\\/steemit.com\\/@mikehere\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T14:02:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 38314876638905,
+    "parent_author": "",
+    "parent_permlink": "travel",
+    "pending_payout_value": "157.085 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "mt-rainier-washington-usa-the-most-stunning-picture-i-ve-ever-taken-links-and-maps",
+    "post_id": 800932,
+    "promoted": "78.020 HBD",
+    "replies": [],
+    "root_title": "Take a Virtural Hike around Volcano near Seattle - Mt Rainier - Washington, USA - So Cool!",
+    "title": "Take a Virtural Hike around Volcano near Seattle - Mt Rainier - Washington, USA - So Cool!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/travel/@mikehere/mt-rainier-washington-usa-the-most-stunning-picture-i-ve-ever-taken-links-and-maps"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3125880993338",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408289760599",
+        "voter": "lafona"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1488951561218",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042393900131",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314660513280",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3718242946",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204675696436",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513908950",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836654069",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64676583521",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992692418",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256370467",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "779706217649",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258831864092",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15405606665",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747149284",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160439161",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2661949408710",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "294379086507",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345736815",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411003001399",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5074340107",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37289186848",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "887821271",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787813756",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19203629337",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351472513122",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197868013655",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501194922",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310003040",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168786451071",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207639750909",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21377142974",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649863857",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125488800966",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20477012370",
+        "voter": "keithwillshine"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "81550066393",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5078101791",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1901149350",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8358099209",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7061836326",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398408180",
+        "voter": "artem-sokoloff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52093500846",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5517904010",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119597107511",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10102298181",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5825119560",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25445356820",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "295356843",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12165310382",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "455676704",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11263291480",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187927799041",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34393459049",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51605156715",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235543115",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10404996383",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2210167101",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18791650123",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61808290901",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39381536274",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1666843562",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14122971768",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60718837",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9947377892",
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3646489258",
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10898752497",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960761826",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36290453100",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "10226666674",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10955022647",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2388216457",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26544745435",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37382286273",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14354586582",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "400",
+        "reputation": 0,
+        "rshares": "61773284051",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "11256852364",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "95543829460",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3592062376",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "19797420121",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84546938",
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636463375",
+        "voter": "romancs"
+      },
+      {
+        "percent": "400",
+        "reputation": 0,
+        "rshares": "7006195248",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10158772596",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113446972",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238337441",
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "1313251435",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62218938",
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49201239700",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117591207",
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7679327381",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3302144579",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1718249749",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "220517413",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6147352384",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5956821758",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69848769518",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5475236782",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62279229",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7876761050",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87991131377",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228117853",
+        "voter": "psybin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941499119",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54834723",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17973584280",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1763904333",
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60077236",
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11731336511",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12066449411",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1573966103",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433968",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1345107090",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709360681",
+        "voter": "armenarmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421813426",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55020754",
+        "voter": "mightypenguin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269649250",
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25287187748",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878883968",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91630309",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357194723",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52324031",
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5186278337",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53222151",
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1699144311",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183928287",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75604322",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1028404751",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322790516",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245473",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147037069",
+        "voter": "steemitcharity"
+      }
+    ],
+    "author": "james-show",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "_Firstly, I must admit I have spent more time thinking about Steem(it) than I have been paid for by it. And to be honest (and disappointing to readers/whales and me as far as payouts go) I have found more than a few BIG Problems with Steem. Problems that if not addressed, will lead to its ultimate failure. Now, you might not agree with me (very likely) but they will.\nAnd I love Steem and I do think it is a few shorts changes short of being \u201cThe Game Changer\u201d!_\n#\n![steemit image](https://steemit.com/images/steemit-share.png)\n#\nOK that was the intro, now to the point\u2026\n#\n I consider [Why I Want to Short Steem  [Beyond Trading \u2013part2. 08/23/2016](https://steemit.com/steemit/@james-show/why-i-want-to-short-steem-beyond-trading-part2-08-23-2016) post of mine, the greatest insight in the Steem space, that I (and most writers that I have come across) ever got. \nI also totally understand why most of you will find the believes of mine expressed  there \u201cstupid\u201d \u201csilly\u201d \u201coutdated\u201d, but that take of yours does not makes them invalid or not true. Actually they are as true as when Adam Smith first thought of them\u2026.\n# Back to the present\u2026\nYes, I do __not__ believe; \u201cThe company\u2019s worth is what N million customers are worth to Facebook (or 100 times more in Steemit\u2019s case)\u201d,  especially when the company has NO CLUE how to monetize on those customers\u2026.\n#\n__And today this changed (maybe alittle, maybe alot [1]) by the introduction of \u201cpromoted posts\u201d__\nWith _promoted posts_ we can see how the system / all Steem power holders can benefit from someone trying to come to the system and pay his way in to all SP holders!\n#\nIt is a great new feature! The best in my humble opinion. The best I have seen from Steem really.\nAnd that\u2019s why I will _donate_ ( donate more or less really) a good sum of SD to put this (Badly written as far as English grammar and spelling go) post on that same list.\n-------\nOther (mostly less controversial posts of mine): \n1. [Beyond the STEEM Whitepaper \u2013 1. Blogging and Curation Rewards Fund; Steem Backed Dollars Creation](](https://steemit.com/steemit/@james-show/3gkvw3-beyond-the-steem-whitepaper-1-blogging-and-curation-rewards-fund-steem-backed-dollars-creation)\n2. [Are all post written for 5 year olds', so they have to be picture heavy????]() ..Uuups sorry, I have not written this one yet, but really???\n3. Ohh what TF just scroll the blog posts on my home page!\n\n#money #trading",
+    "body_length": 2423,
+    "cashout_time": "2016-09-30T06:05:39",
+    "category": "steemit",
+    "children": 19,
+    "created": "2016-08-30T03:10:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"money\",\"trading\"],\"image\":[\"https:\\/\\/steemit.com\\/images\\/steemit-share.png\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@james-show\\/why-i-want-to-short-steem-beyond-trading-part2-08-23-2016\",\"https:\\/\\/steemit.com\\/steemit\\/@james-show\\/3gkvw3-beyond-the-steem-whitepaper-1-blogging-and-curation-rewards-fund-steem-backed-dollars-creation\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T03:10:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 13743910298445,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "25.049 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "why-i-am-less-willing-to-short-steem-now",
+    "post_id": 797007,
+    "promoted": "77.000 HBD",
+    "replies": [],
+    "root_title": "Why I Am Less Willing To Short Steem Now?",
+    "title": "Why I Am Less Willing To Short Steem Now?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@james-show/why-i-am-less-willing-to-short-steem-now"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56552146057",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7407974462660",
+        "voter": "steempty"
+      },
+      {
+        "percent": "4600",
+        "reputation": 0,
+        "rshares": "7743922580184",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14423169571983",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40461646370697",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "9024654368742",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270934718663",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120823881116",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "903658154834",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "955547237819",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304707236256",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3717560623",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209125168098",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4512963560",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836545296",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6988007861700",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1648795625161",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "2590155272571",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64607818458",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64079611952",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992338387",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256356620",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39580133428",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452601473655",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1331198190646",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745373510191",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80690179844",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1135475906992",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17701813434",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747044457",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "414357548",
+        "voter": "grumlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160257208",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2607869395086",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399850120693",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20695739170",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91827078269",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67474894872",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345705172",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84752175156",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22534917345",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3560867980",
+        "voter": "mazi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8289316407",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8549093805",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13832117218",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "875162057",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554084160",
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50655692786",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3208539412",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78056810253",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90344487995",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15464522800",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170836582467",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241453016290",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24534315886",
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489114702",
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2516602969",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81946124349",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485266432",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9897310096",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5696495054",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056130698",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347538684630",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1985132858",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459952549",
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3342731574",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59223927709",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "603366563",
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20201603994",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57937290943",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23511967149",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1192571560",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223682916687",
+        "voter": "stino-san"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787431173",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371808665",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3085996565",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29602129325",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421703362290",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570783738",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45416460571",
+        "voter": "pixellated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18898061785",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254584445613",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12013107301",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40287404686",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365694018",
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11260827752",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309925863",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6799149594",
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379019004",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151933693977",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231631602196",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339982051793",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50737326005",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76218554853",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4356049611",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8770878211",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6250725075",
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1486037286",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4794047234",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21377142974",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135526440615",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696282704",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2108324979",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151313598203",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191362456407",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1487612496753",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23705317509",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112950429384",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240146584523",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46163941246",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356509174",
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8413352005",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12772401769",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59607501207",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24845976067",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59296970731",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234933448",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74131257427",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3124603257",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188239143185",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52093500846",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299499765807",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4237212015",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39865290374",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4804447101",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122032656334",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7756851652",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10101627148",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132655071824",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213390961525",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10295818487",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1285715500",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322495553",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149731266",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1926175201",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53506579516",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12408616589",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486652600963",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10584865103",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3610613523",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76946377242",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14091345831",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7725614667",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15305263755",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5124085338",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393022921",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516433597",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3320614763",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187770538787",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4876469889",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97667262071",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1509601460",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38214691392",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8479287635",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51605156715",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77914375364",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247320271",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9037187000",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10168306524",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2210167101",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74715503526",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240222938",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594203592",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17310974719",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270329604",
+        "voter": "astorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225794427",
+        "voter": "chris0502"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20755384335",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40253682612",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6775073251",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120620705591",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373524020",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5600683141",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12972669244",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13846050753",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2415655330",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1463600004",
+        "voter": "slocum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38295325599",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424094754",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196293057448",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322651547057",
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14306641323",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1462310422",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7167353076",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2324876192",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8983200296",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70427611427",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424409113",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25628695064",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4830973273",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266607399",
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695718",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207767589679",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960761826",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452064608",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10907428587",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156827413",
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20531175873",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702425502",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225878684",
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172444925",
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27072053846",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111147984",
+        "voter": "ryland.townsend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29014024080",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4491631626",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11220431469",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1201523852",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59673355",
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5637635502",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159797889",
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946313851",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23830043508",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8097262355",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2589493888",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011196107",
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "513266800508",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28746462244",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32699512403",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266924190",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823550089",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "698557363",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1291152324",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14436760417",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11737514005",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113446972",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61274515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8958644029",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2442169380",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63412334",
+        "voter": "bayern000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53662708495",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7679228543",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229421947",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-61439588",
+        "voter": "gost111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5328695539",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61400550",
+        "voter": "mrdsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1934306097",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54984896",
+        "voter": "decred"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-64218845",
+        "voter": "johnhtims"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54969817",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3733986684",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4916474731",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77430111",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537557601",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69848769518",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59723329",
+        "voter": "blubeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5475203821",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62279229",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120171572",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109008307",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2309373844",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87991131377",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3574312402",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53588479",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55945663",
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17973584280",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "925612937",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5448891234",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24215091196",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59008544",
+        "voter": "sterl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12403401241",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6718277898",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12002684748",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1499467547",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11478715301",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56443564",
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24537271972",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236422965",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57911021",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67699642",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2212272906",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58155541",
+        "voter": "federicofragola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115043900",
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11145697310",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3614336062",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56679654",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84754573",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55377253",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501310305",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59216026",
+        "voter": "coolty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12307778400",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688853443",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58818711",
+        "voter": "m12r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2125462805",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7076868967",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111770582",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4073388292",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1628427434",
+        "voter": "carlyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52320760",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58351459",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55620764",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2922171431",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59562278",
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19561952912",
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56042508",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2305186237",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1250725025",
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632649253",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143941",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3309390130",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666711159",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189407661696",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55416927",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91152561",
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25813907256",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685765533",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73380620",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41760420240",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52393318",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364794611",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71464098",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52597837",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85301011",
+        "voter": "johnygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54232595",
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52192153",
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51871529",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814320",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176715413",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52774418",
+        "voter": "walteraze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50592846",
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71251561",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2392485349",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8258021605",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577247264",
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807542498",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80106845",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54672126",
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2360647659",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008239952",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55523890",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66564537",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50996649",
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52763087",
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107344655",
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52291016",
+        "voter": "bkasante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398865101",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50827953",
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "583302856",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50238161",
+        "voter": "robertdpickett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155435909",
+        "voter": "duckfever"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "**Currently, there are two ways to get a STEEM Account.** The first is to sign up for Steemit with a Reddit or Facebook account, the second is to create an account using CLI_WALLET or Piston and have the account **permanently linked to your own account.**\n\nNeither option really allows you to be anonymous. Want to post controversial posts, or say something that would otherwise be illegal in your country? (e.g. poor free speech laws) Then Anonsteem is here to help.\n\n## Introducing: @anonsteem\n\n![](https://i.imgur.com/Y6QDDbD.png)\n\nPUBLIC INTERNET: [anon.steem.network](https://anon.steem.network/)\n----\n\nTOR: [steemlohs6air4h2.onion](http://steemlohs6air4h2.onion/)\n----\n\n----\n\n**So what actually is this?**\n\nAnonSteem allows you to purchase an account using either Bitcoin or Litecoin, and it will be created by the @anonsteem account within a minute of payment.\n\nTo protect your privacy, there are no IP logs, we have a TOR hidden service, and we allow you to remove your keys from our server as soon as you create the account.\n\n![](https://i.imgur.com/4aa6tR7.png)\n\nWe give you detailed instructions on changing your keys after creating the account, so you can be sure we're not just going to steal your account later on.\n\nHow long does it take to get an account?\n-----\n\nTransactions are scanned once a minute, and we accept 0 confirmation transactions. This means you'll most likely have your account within 1-2 minutes of sending the payment, regardless of which coin you paid with.\n\nCan I pay with STEEM?\n----\n\nWe don't accept STEEM directly, as that would ruin your privacy. However, if you REALLY want to pay with STEEM, you can send it via [ShapeShift (precise mode)](https://shapeshift.io/#/inputs/2) to the BTC or LTC address you get during payment.\n\nDoesn't this service mean more spambots?\n----\n\nWe don't have any plans to allow en-masse account creation. Every order has to be placed one at a time, with individual payments. Someone looking to create spam bots would most likely look elsewhere.\n\nAnonsteem is targeted at persons or groups looking for one, or a few accounts, with no social media link, and no third party tracking.\n\n**HELP - my transaction expired?** - The 15 minute limit is just to avoid us checking transactions for abandoned orders. If you've already paid, just PM me on SteemitChat, or send me an email (bottom of the anonsteem page) with your order ID and I'll reset the expiry.\n\nTry it out at [anon.steem.network](https://anon.steem.network)\n----\n\nDo you like what I'm doing? Follow me, and [vote for @someguy123 to be a witness](https://steemit.com/~witnesses)\n====",
+    "body_length": 2607,
+    "cashout_time": "2016-09-30T03:10:42",
+    "category": "steemit",
+    "children": 58,
+    "created": "2016-08-29T21:00:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"bitcoin\",\"litecoin\"],\"users\":[\"anonsteem\",\"someguy123\"],\"image\":[\"https:\\/\\/i.imgur.com\\/Y6QDDbD.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T22:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 119299865028571,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1520.911 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "anonsteem-create-anonymous-steem-accounts-without-social-media",
+    "post_id": 793668,
+    "promoted": "76.500 HBD",
+    "replies": [],
+    "root_title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "6177366490721",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5524453120959",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118459200229",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1111762764834",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104316216",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3769023210",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684026925",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54893564497",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663393709",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213796245",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "625012807",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973159239",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2426634324",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196852731768",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288356419",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "91974415110",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1676057243571",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42646084026",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426441594",
+        "voter": "murh"
+      },
+      {
+        "percent": "200",
+        "reputation": 0,
+        "rshares": "914730170",
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72459361708",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30768675850",
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170243742354",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187725199105",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14468332399",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6830334777",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207235087440",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45105528409",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55888461363",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2666424177",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6704878593",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127664642491",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84707219423",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10810017183",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6080328266",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "8200",
+        "reputation": 0,
+        "rshares": "2870180302",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11565154708",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "2466552028",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23482202368",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "33679033840",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12266525730",
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "22398900329",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9896085754",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266973901",
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8889605453",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "8646944150",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3386634890",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261504857808",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59202973",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "5750642945",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "2135038057",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7954827193",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1829620177",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201245802",
+        "voter": "ratidor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98655344",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59126442",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50326986",
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1226505302",
+        "voter": "asolopreneur"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "596047269",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1483350426",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244968251",
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158583251",
+        "voter": "tata.lucette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154595895",
+        "voter": "imtwoxic"
+      }
+    ],
+    "author": "peacekeeper",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://www.steem101.com/facebooktest.jpg\n# My Facebook and Steemit experiment:\n### Two days ago @ around 8:00 am EST I posted an article about my little sweetheart named Jalyn.  She made \"Fall off the bone ribs\" and we documented her work with a video.\n\n### I then posted it on Steemit and Facebook at the exact same time.  \n*  Steemit: I had 68 followers at the time of the post.\n*  Facebook: I had 224 friends, family, coworkers at the time of the post.\n\n---\n\n## Here is a snapshot of both posts:\n\nSteemit Post:            |  FaceBook Post:\n:-------------------------:|:-------------------------:\n![](http://www.steem101.com/Steemit.jpg )  |  ![](http://www.steem101.com/facebook.jpg )\n\n\n\n| Steemit:  |    FaceBook    |  \n|----------|:-------------:|\n| 44 Up Votes |  7 Likes |\n| 4 Comments |    5 Comments  |\n| No Shares | 1 Share |\n| $84.66 | Zero - Cheap Bastards |\n\n## Summary:\nI thought it would be compelling to see how many votes I received with both Social Media Sites.  I found it very interesting that the number of Up Votes from the Steemit Community was more than 6 times the number of Likes from my Facebook Friends.  The reason I found this interesting is because I have 224 Facebook friends and I have known them a lot longer than my new friends at Steemit.  \n\nAnother interesting point is the fact I have been on Facebook for over 6 years.  I have been on Steemit for 2 months.   Looks like my Steemit Friends are more interested in what I have to share..... \n\nIt will also be interesting when I show my Facebook friends this little experiment.\nEspecially the part about the $84.66\n\n## Action:\nStop going to Facebook!\n\n#steemit #facebook #life #craigrant",
+    "body_length": 1672,
+    "cashout_time": "2016-10-10T21:27:27",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-08T19:37:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"experiment\",\"facebook\",\"life\",\"craigrant\"],\"image\":[\"http:\\/\\/www.steem101.com\\/facebooktest.jpg\",\"http:\\/\\/www.steem101.com\\/Steemit.jpg\",\"http:\\/\\/www.steem101.com\\/facebook.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T20:03:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16467096056102,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "28.943 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "my-facebook-and-steemit-post-side-by-side-two-2-days-ago",
+    "post_id": 895392,
+    "promoted": "76.000 HBD",
+    "replies": [],
+    "root_title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@peacekeeper/my-facebook-and-steemit-post-side-by-side-two-2-days-ago"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6762422493146",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3722167102",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4518923636",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "828866269",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65291932795",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1994645292",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256490999",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747730879",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1161438487",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345929094",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38490752763",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31898709926",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120036771953",
+        "voter": "bbqbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15817278258",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1424916288",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64857927561",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39311342671",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1350953088",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4477107456",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322690670",
+        "voter": "garagebill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15739145316",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179192996861",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "75625947764",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6740313250",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6414920414",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49805947674",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55853813712",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9866111769",
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "480670817737",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638021117",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "429990873",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181322915378",
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "11531792247",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11034478037",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1410577112",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44336327098",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79349787046",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9970599025",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4486999201",
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473751099",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "11390928300",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5873252645",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117698021",
+        "voter": "cameron-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29635792745",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1793508440",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "1800",
+        "reputation": 0,
+        "rshares": "219911318479",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "8953837063",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3801791180",
+        "voter": "rich77"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "89872995878",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3363521648",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5475636756",
+        "voter": "k4r1nn"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "19862171480",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979617190",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8113950766",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "1800",
+        "reputation": 0,
+        "rshares": "24656414925",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435439128",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107084440",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18249960278",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2100417564",
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "1554626282",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6797668445",
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "20160515746",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "12012730878",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234067377",
+        "voter": "giftedgaia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631018835",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3130695206",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72131169",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "901114996",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61897843",
+        "voter": "geny"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "206134585",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3024339521",
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "69500880949",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58350694824",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59609546962",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1423723498",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1262855144",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1804085961",
+        "voter": "otisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4601312529",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2922107498",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2485484872",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316012583",
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1098554901",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58872767",
+        "voter": "powmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208026413",
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330609380",
+        "voter": "tfeldman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1088326615",
+        "voter": "geke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53968432",
+        "voter": "mooncat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77663073",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265151816",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289905346",
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51783834",
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50404082",
+        "voter": "koskl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77402677",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149994455",
+        "voter": "steemitcharity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50211933",
+        "voter": "powerup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122119181",
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76997226",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111910065",
+        "voter": "tygeade"
+      }
+    ],
+    "author": "steemitqa",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<h1 id=\"steemit-advertise\"><center> Uplift Minnows Initiative</center></h1>\n<p></p><center><hr></center><p></p>\n<center>https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_daf200df05a1435bb441b235515eace3~mv2_d_2941_2046_s_2.jpg?dn=minnow+mission+3.jpg</center>\n<h2>The Idea:</h2>\n \nThis idea is to maximize the \u2018promote post\u2019 feature and allow minnows to get more exposure to their stories, or services on SteemIt, but on a budget. If every day, or every week this account (we\u2019ll be shifting to a new account shortly @advertise) be in the top five on the promo tab and you pay $3-5 you will reap the rewards of being on the top of SteemIt! Promote Post as a minnow is turning out to be a problem for [some](https://steemit.com/steemit/@profitgenerator/analysis-promoted-content) so the power of many seems more logical. \n\nAlso, going forward we\u2019ll be throwing the same amount daily/weekly, or even more toward the post reaching the top. As it stands $100 can get us all on the front page of SteemIt Promote. If 40 of us minnows throw in $5 for the day we can sit our submissions on top. Not only that **ALL SBD** that are earned by this post will go into \u201cpromote post\u201d itself thus helping you get free future advertising for your submissions! We\u2019ll be building out this post as we go as you can see we have a \u201cServices\u201d Category.\n\nIf you wish to get our upvote, just tag us with a SteemIt tag of **#upliftminnows** and we\u2019ll find your post. All proceeds of the post will go back to you so essentially you could have a free advertisement.\n<h2>How to Participate: </h2>\n\n<li>Simply, comment below with your story submission, or service and we\u2019ll add it to the page. Hit \u2018promote post\u2019 and send whatever amount you can and 'pool' it together with all other minnows. Put the $ amount you posted in your comment also. <b>Example: @joesmith $5 ( your link here )</b>.\n<br><br>\n<li>We will post the link you provide via a comment below to the post.\n<br><br>\n<li>The highest paying post will lead the list first and roll off the page after 20 entries.\n<br><br>\n<li>This post will last forever and each day/week a new post will be put up and  your listing could be carried over.\n<br><br>\n</li>\n\n<blockquote>\n  <p><strong>Note</strong> <br>\nFor this very first launch we are adding $50 to the pool. You may add as much as you want to this post, or as little as you want to get listed on <b>Uplift Minnows Initiative</b>.</p>\n</blockquote>\n \n<p><center><hr></center></p>\n <h2 id=\"steemit-story-submissions\"><center><strong>SteemIt Story Submissions:</strong></center></h2>\n<p><center><hr></center></p> \n\n<p></p><center><img src=\"https://payscape.com/wp-content/uploads/icon-globe-blue.png\" alt=\"enter image description here\" title=\"\"></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemtools/@kurtrohlandt/steemit-image-tools-pimp-your-posts\">SD- $6 | @kurtrohlandt: Steemit Image Tools - Pimp your posts</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steem/@williambanks/do-you-feel-taler-gnu-foundation-launches-their-own-cryptocoin\">SD- $5 | @williambanks: Do You Feel Taler? - GNU Foundation Launches Their Own Cryptocoin!</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/life/@michelle.gent/i-went-to-the-beach-and-i-cried\">SD- $5 | @michelle.gent: I went to the beach and I cried</a></b></center><p></p>\n\n\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemit/@me-tarzan/win-500-steempower-enter-steemit-daily-sweepstakes-100-winners-everyday\">SD- $2 | @me-tarzan: WIN !!!!! 500 !!!!!STEEMPOWER !!!!!..... ENTER STEEMIT DAILY SWEEPSTAKES ..... 100 WINNERS EVERYDAY</a></b></center><p></p>\n\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/life/@tfeldman/original-song-for-the-minnows-talkin-usd-01-cent-steemit-post-blues#comments\">SD- $1.50 | @tfeldman: Original Song for the Minnows: Talkin' $.01 Cent Steemit Post Blues</a></b></center><p></p>\n\n<center><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/Zdam6Uc03vc\" frameborder=\"0\" allowfullscreen></iframe></center>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemit/@geke/was-that-make-up-tutorial-really-worth-thousands-of-dollars\">SD -$1 | @geke: Was that make-up tutorial really worth thousands of dollars?</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/philosophy/@steemswede/philosophy-the-value-of-wonder\">SD -$1 | @steemswede: [PHILOSOPHY] The Value of Wonder</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/promoted/steemit\">Place Your Story Submission HERE! for $1 SBD!</a></b></center><p></p>\n  \n<p><center><hr></center></p>\n<h2 id=\"steemit-services\"><center><strong>SteemIt Services:</strong></center></h2>\n <center><hr><br></center>\n\n<center><img src=\"http://www.amesto.global/globalassets/fellesbilder-2015/ikoner/handshake-icon-200px.png\" alt=\"enter image description here\" title=\"\"></center></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"http://randomsteemit.com/\">SD -$2| @tyler-fletcher: RandomSteemit Promotion Article/ RandomSteemit.com (Steem Service)</a></b></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/promoted/steemit\">Place your SteemIt Service HERE!</a></b></center><p></p>\n \n<p></p><center><hr></center><p></p>\n<center><b>Follow us if you love what we are doing!</b> \u2764</center>\n<center><a href=\"https://steemit.com/@steemitqa\"><img src=\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\"></a>http://reneenouveau.com/Steem/100humansmall.jpg</center>\n\n<br><br>",
+    "body_length": 6870,
+    "cashout_time": "2016-10-05T08:27:06",
+    "category": "steemit",
+    "children": 50,
+    "created": "2016-09-03T16:49:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"upliftminnows\",\"steemsquad\"],\"users\":[\"advertise\",\"joesmith\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/static.wixstatic.com\\/media\\/5c9236_daf200df05a1435bb441b235515eace3~mv2_d_2941_2046_s_2.jpg?dn=minnow+mission+3.jpg\",\"https:\\/\\/payscape.com\\/wp-content\\/uploads\\/icon-globe-blue.png\",\"https:\\/\\/cdn4.iconfinder.com\\/data\\/icons\\/ionicons\\/512\\/icon-arrow-right-b-128.png\",\"http:\\/\\/www.amesto.global\\/globalassets\\/fellesbilder-2015\\/ikoner\\/handshake-icon-200px.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i.imgsafe.org\\/dd8bd8753d.gif\",\"http:\\/\\/reneenouveau.com\\/Steem\\/100humansmall.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@profitgenerator\\/analysis-promoted-content\",\"https:\\/\\/steemit.com\\/steemtools\\/@kurtrohlandt\\/steemit-image-tools-pimp-your-posts\",\"https:\\/\\/steemit.com\\/steem\\/@williambanks\\/do-you-feel-taler-gnu-foundation-launches-their-own-cryptocoin\",\"https:\\/\\/steemit.com\\/life\\/@michelle.gent\\/i-went-to-the-beach-and-i-cried\",\"https:\\/\\/steemit.com\\/steemit\\/@me-tarzan\\/win-500-steempower-enter-steemit-daily-sweepstakes-100-winners-everyday\",\"https:\\/\\/steemit.com\\/life\\/@tfeldman\\/original-song-for-the-minnows-talkin-usd-01-cent-steemit-post-blues#comments\",\"https:\\/\\/steemit.com\\/steemit\\/@geke\\/was-that-make-up-tutorial-really-worth-thousands-of-dollars\",\"https:\\/\\/steemit.com\\/philosophy\\/@steemswede\\/philosophy-the-value-of-wonder\",\"https:\\/\\/steemit.com\\/promoted\\/steemit\",\"http:\\/\\/randomsteemit.com\\/\",\"https:\\/\\/steemit.com\\/@steemitqa\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T16:38:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9097095205888,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "11.997 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "uplift-your-story-submission-to-the-top-of-post-promote-uplift-minnows-initiative",
+    "post_id": 845913,
+    "promoted": "75.915 HBD",
+    "replies": [],
+    "root_title": "Uplift Your Story Submission to the Top of Post Promote:  Uplift Minnows Initiative",
+    "title": "Uplift Your Story Submission to the Top of Post Promote:  Uplift Minnows Initiative",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitqa/uplift-your-story-submission-to-the-top-of-post-promote-uplift-minnows-initiative"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "2596225299320",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3097790600",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3760583473",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697086423",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6115157538047",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53831554412",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660189571",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213623916",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2006740845230",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79076376247",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15405606665",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622507341",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "903900865326",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "966828196",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "411277150263",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "294379086507",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34985094686",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288076091",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14127289494",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839441156",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82496308215",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25975393213",
+        "voter": "blackjincrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236718643421",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1842337468",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19679147025",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12079683339",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "590065836619",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787404766",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7451914321",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244193243751",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14603958905",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40287404686",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10738934951",
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10545091507",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2020624703659",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105369851838",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207590047173",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500195019030",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48469146637",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557026163",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2108282088",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457950444352",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "76084362284",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92401710310",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6591597330",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1901149350",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1324938374",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1862753166",
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3587533664",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188239143185",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52093500846",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4237212015",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41597869493",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117152284266",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5825119560",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6137063530",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "422975045",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "466928201309",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1926175201",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55078181896",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140754777765",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1618767968",
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1096870387",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836507931",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5232796338",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486055151",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19120015185",
+        "voter": "cryptobarry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4413329976",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3546316992",
+        "voter": "jvper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13671594233",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10147166470",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9667892270",
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235543115",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10168519193",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2210167101",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2931200535",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "699063050",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40253682612",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6628055919",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71100605693",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2368091479",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8243851217",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30950356865",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13761168642",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26560909561",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68491878116",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156154164",
+        "voter": "valenttina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7146187677",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10651053577",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452064608",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411247289",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23441529121",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1304783473",
+        "voter": "ace108"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "10157957204",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29902474986",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5821731189",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9299251828",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112644541",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5054170210",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25927425773",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30549845433",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5220399529",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1347913567",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714300968",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5765407212",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2007103472",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14055532695",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "216054529851",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019068038",
+        "voter": "handmade"
+      },
+      {
+        "percent": "2800",
+        "reputation": 0,
+        "rshares": "10004215062",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "95506108335",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3590805824",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "18377003276",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1499733461",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5773490194",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2830076827",
+        "voter": "tommycoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636463375",
+        "voter": "romancs"
+      },
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "28004872672",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "366041435",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130305092",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1872155844",
+        "voter": "alitas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111083493",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "1203603415",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621878548",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6640645622",
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10934414249",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10300574691",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28675814875",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3300942483",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5210280082",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5588333756",
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60368611",
+        "voter": "lennon15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1611921747",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "220497628",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5408158479",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7059588652",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9787724736",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69848769518",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20106804198",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4989336305",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290489475",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10018253562",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4146710249",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1897374139",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12403195264",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13336237230",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24537256126",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67890337",
+        "voter": "nailsbykara01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1729317973",
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75387763",
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117822170",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "578578273",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "875994720",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69382211",
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4799836023",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14145117683",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57706367",
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12066449411",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18868871215",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1299872756",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632649253",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421813426",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15432445921",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193616327346",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2253580090",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "851123456",
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25287092822",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176536848",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4586847136",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91627009",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357194723",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53783795",
+        "voter": "jod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55496395",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2341581405",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2339901466",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50066904",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80106845",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008239952",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52225804",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309265057",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288960679",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155759348",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55168341",
+        "voter": "alyssasanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50467991",
+        "voter": "cupang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153506082",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "506553224",
+        "voter": "judithgpordon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50922340",
+        "voter": "benberger"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>3 Fantastic Months on Steemit</h1>\n<p><img src=\"https://i.imgsafe.org/45bfed3c9b.jpg\" width=\"811\" height=\"591\"/></p>\n<p>I joined Steemit nearly 3 months ago on the 4th of June 2016. &nbsp;</p>\n<p>I had a brief break after my first \"introduceyourself\" post due to dealing with the aftermath of the DAO hack which I was heavily involved in to my (now) regret.</p>\n<p>I returned a few weeks later to the shock that people actually liked my first post and that it had earned an amazing $600! &nbsp;To say it was a surprise is an understatement. &nbsp;I didn't think anyone would look at it or even appreciate it.</p>\n<p>Since then I have been steadily posting and though I have never reached the same level of earnings as my first post I really enjoy using Steemit.</p>\n<p>I have been gradually powering up through posting rewards and (mainly) through buying Steem and SBD on exchanges. &nbsp;</p>\n<p>I really believe in the platform potential of Steemit and the proof is in my wallet.</p>\n<h3>Over the last few weeks I've gone from just over 1000SP to just over 4000SP - which was one of my major milestone targets! &nbsp;</h3>\n<p>Now I have a new goal to try to double it to 8000SP. &nbsp;So I will continue to keep buying Steem/SBD on the exchanges and powering up gradually over time to reach my new goal.</p>\n<h1><br></h1>\n<h1>My Philosophy - He(or she) Who Dares Wins</h1>\n<p><img src=\"https://i.imgsafe.org/47eb94f996.jpg\" width=\"850\" height=\"564\"/></p>\n<p><em>Whilst others have been expressing fear and doubt over the falling Steem price - I see it as an opportunity to increase my Steem Power and influence in the community.</em></p>\n<p>As I have said before there are no guarantees in cryptocurrency. &nbsp;Investing in cryptocurrency is definitely risky and one should never put all one's eggs in a single cryptocurrency basket. &nbsp;Steemit and Steem have their problems and issues but they are both in their infancy.</p>\n<p>I personally believe the risk of failure in this case is outweighed by the massive potential if Steemit succeeds and I've been backing my opinion with my own money.</p>\n<h3>There is no reward without risk.</h3>\n<p><br></p>\n<p><br></p>\n<h1>Community is Key</h1>\n<p><img src=\"https://i.imgsafe.org/48086f3c2f.jpg\" width=\"848\" height=\"565\"/></p>\n<p>Throughout my experiences on Steemit the most rewarding ones have been in my interaction with other members of the community. &nbsp;</p>\n<p>I get a lot of pleasure from commenting on other people's posts and curating content. &nbsp;</p>\n<p>I think going forward the community is Steemit's greatest asset. &nbsp;I feel I have made many great friends on here and have learned a great deal from the other posters.</p>\n<p>There are too many great posters and community members to really list in full but I would like to give a special mention to @stellabelle and @tuck-fheman for posting great material and being very supportive to me here. &nbsp;@craig-grant also did a lot to help build the community in the first few weeks by creating the \"craigrant\" tag.</p>\n<p>There are many others I could list but I am sure to miss someone out - so I will leave it at that. &nbsp;</p>\n<p>Thank you all for making this such a fantastic community.</p>\n<p><br></p>\n<h1>My Forthcoming (Reluctant) Break from Steemit</h1>\n<p><img src=\"https://i.imgsafe.org/481e88b0b6.jpg\" width=\"848\" height=\"565\"/></p>\n<p>Unfortunately due to having surgery on my left eye (on 1st September - this Thursday) I will likely be unable to post, comment and curate for several days in the first week of September. &nbsp;I would just like to apologise in advance for the break. &nbsp;</p>\n<p>Don't worry I will continue posting over the next few days (up to Thursday) and will be back to posting normally after I have recovered.</p>\n<p>It will probably be tough being away though!</p>\n<p><br></p>\n<h1>A Selection of Photos from My Early Posts</h1>\n<p>I thought I'd post a few photos from those early posts as many of my current followers were probably not even on Steemit at the time and didn't get to see them. &nbsp;I have linked to the original posts so you can see the bigger versions if you want to.</p>\n<p><center><img src=\"https://i.imgsafe.org/487e18fc55.jpg\" width=\"524\" height=\"350\"/></p></center>\n<p>This is \"Venus\" from my <a href=\"https://steemit.com/photo/@thecryptofiend/sometimes-the-best-way-to-get-to-know-someone-is-through-what-they-create\">introductory post</a>. &nbsp;It was one of the finalists in this year's <a href=\"http://www.digitalphotopro.com/photo-contests/the-face-2015/finalists\">\"The Face\" International Photography Competition</a>. Model is Rachelle Summers.</p>\n<p><img src=\"https://i.imgsafe.org/487e1d3949.jpeg\" width=\"350\" height=\"525\"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"https://i.imgsafe.org/48875807ad.jpeg\" width=\"350\" height=\"525\"/></p>\n<p>This is \"Daydream\" from my <a href=\"https://steemit.com/art/@thecryptofiend/daydream-another-photo-post\">2nd post</a> (w. Rachelle Summers) and \"Oh the Horror!\" from <a href=\"https://steemit.com/photography/@thecryptofiend/oh-the-horror-the-nostalgia-of-1980s-horror-movies-and-my-homage-to-them\">a post </a>a few days later (w. Axel Von Rosencroft).</p>\n<p><br></p>\n<h1>Conclusion and Your Own Milestones</h1>\n<p><img src=\"https://i.imgsafe.org/483b026c25.jpg\" width=\"860\" height=\"557\"/></p>\n<p>It has been a great 3 months and hopefully Steemit will continue to get even better.</p>\n<p>So enough about me and my experiences so far. &nbsp;</p>\n<p>Please feel free to share your experiences and milestones in the comments below or in your own post. &nbsp;</p>\n<p>Let's continue to make Steemit a great place:)</p>\n<p><br></p>\n<p><br></p>\n<p><em>You can see more of my posts and photography work by following me @thecryptofiend</em></p>\n<p><em>(Note images not taken by me were from Istockphoto, Verification for me here: </em><a href=\"http://www.aapicture.com/about-me\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n</html>",
+    "body_length": 5992,
+    "cashout_time": "2016-09-30T04:07:18",
+    "category": "steemit",
+    "children": 104,
+    "created": "2016-08-29T19:41:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"life\",\"money\",\"cryptocurrency\"],\"users\":[\"stellabelle\",\"tuck-fheman\",\"craig-grant\",\"thecryptofiend\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/45bfed3c9b.jpg\",\"https:\\/\\/i.imgsafe.org\\/47eb94f996.jpg\",\"https:\\/\\/i.imgsafe.org\\/48086f3c2f.jpg\",\"https:\\/\\/i.imgsafe.org\\/481e88b0b6.jpg\",\"https:\\/\\/i.imgsafe.org\\/487e18fc55.jpg\",\"https:\\/\\/i.imgsafe.org\\/487e1d3949.jpeg\",\"https:\\/\\/i.imgsafe.org\\/48875807ad.jpeg\",\"https:\\/\\/i.imgsafe.org\\/483b026c25.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/photo\\/@thecryptofiend\\/sometimes-the-best-way-to-get-to-know-someone-is-through-what-they-create\",\"http:\\/\\/www.digitalphotopro.com\\/photo-contests\\/the-face-2015\\/finalists\",\"https:\\/\\/steemit.com\\/art\\/@thecryptofiend\\/daydream-another-photo-post\",\"https:\\/\\/steemit.com\\/photography\\/@thecryptofiend\\/oh-the-horror-the-nostalgia-of-1980s-horror-movies-and-my-homage-to-them\",\"http:\\/\\/www.aapicture.com\\/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T19:41:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 20946122760977,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "51.893 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "after-3-amazing-months-on-steemit-i-ve-finally-reached-my-4000-sp-target",
+    "post_id": 792793,
+    "promoted": "75.000 HBD",
+    "replies": [],
+    "root_title": "After 3 Amazing Months on Steemit I've Finally Reached My 4000 SP target",
+    "title": "After 3 Amazing Months on Steemit I've Finally Reached My 4000 SP target",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@thecryptofiend/after-3-amazing-months-on-steemit-i-ve-finally-reached-my-4000-sp-target"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "8985284348056",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347182498336",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6807494375194",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393144360640",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2483640452",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1744463573774",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3015449503",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "547246371",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43943051043",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330803118",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171039480",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207056953028",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2180060279637",
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709998844557",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500032593",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "778573329",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "813852185290",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230690102",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13456874958",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9981315272",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5264976509",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29703642476",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335151732396",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147551184319",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1412786230",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39924520204",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29997646492",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19754123181",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53304441666",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1380318227",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457511112",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32136652184",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8926706341",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2690420179",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497410679",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56702480478",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68355526825",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207235087440",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55888461363",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61723804140",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87194099793",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14456007797",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967430836",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259566753",
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2916783620",
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203941619651",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4913418737",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1255391771",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14499214780",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8217543952",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35654305271",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6496036600",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91926117",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127811996983",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12391003580",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3404137327",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "540910155",
+        "voter": "qonq99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35423115509",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231302899",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "428847572",
+        "voter": "leonaugus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614745323",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5727995375",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2814833271",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5361340393",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128430788791",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76539963151",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4650376230",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22883800785",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23396082320",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23404647118",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17330365160",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25983916825",
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327484786",
+        "voter": "nessacute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267296640",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12539115191",
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23400604417",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23398899328",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23396297524",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23393304596",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23389513666",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23387910642",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1404956543",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19546273639",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1368553119",
+        "voter": "paynode"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "22398900329",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283251416",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64621792",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53638070",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56598010",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56591855",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83234176",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "663686280832",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6695859153",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "728479455",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13247318328",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1550433833",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8720302896",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23381814238",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "765546853",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2636453193",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78863230555",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22918561757",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7674991389",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3838175665",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58561038",
+        "voter": "drsamkhan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565688",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1947405265",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2761833688",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "669878419",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10692755421",
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23036045614",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168510966",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7954827193",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "397589256",
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115585338",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360867793495",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57674266103",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1445562934",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996188997",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95081132",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51257071",
+        "voter": "sinsinclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161225748",
+        "voter": "iliyaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154056498",
+        "voter": "cruise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1390524760",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158081936",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160057403",
+        "voter": "alvinng77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156392532",
+        "voter": "mcwhackery"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159089330",
+        "voter": "tundercat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158189020",
+        "voter": "rhp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154958886",
+        "voter": "jovic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142547773",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154396126",
+        "voter": "lovesickchris"
+      }
+    ],
+    "author": "val-a",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](http://ap.mnocdn.no/images/268d5cb1-673e-4231-a1ef-c9767d3494f1?fit=crop&h=1152&q=80&w=2048)\n\n> I think it's worth to repost here this [open letter to Mark Zuckerberg by Aftenposten's Editor-in-chief Espen Egil Hansen](http://www.aftenposten.no/meninger/kommentar/Dear-Mark-I-am-writing-this-to-inform-you-that-I-shall-not-comply-with-your-requirement-to-remove-this-picture-604156b.html)\n> If this post will earn any significant amount of SD/STEEM I'll try to get it to the author otherwise I will just burn it by sending to @null account.\n\nDear Mark Zuckerberg.\n\nI follow you on Facebook, but you don\u2019t know me. I am editor-in-chief of the Norwegian daily newspaper Aftenposten. I am writing this letter to inform you that I shall not comply with your requirement to remove a documentary photography from the Vietnam war made by Nick Ut.\n\nNot today, and not in the future.\n\nThe demand that we remove the picture came in an e-mail from Facebook\u2019s office in Hamburg this Wednesday morning. Less than 24 hours after the e-mail was sent, and before I had time to give my response, you intervened yourselves and deleted the article as well as the image from Aftenposten\u2019s Facebook page.\n\nTo be honest, I have no illusions that you will read this letter. The reason why I will still make this attempt, is that I am upset, disappointed \u2013 well, in fact even afraid - of what you are about to do to a mainstay of our democratic society.\n\nFirst some background. A few weeks ago the Norwegian author Tom Egeland posted an entry on Facebook about, and including, seven photographs that changed the history of warfare. You in turn removed the picture of a naked Kim Phuc, fleeing from the napalm bombs \u2013 one of the world\u2019s most famous war photographs.\n\nTom then rendered Kim Phuc\u2019s criticism against Facebook for banning her picture. Facebook reacted by excluding Tom and prevented him from posting a new entry.\n\n\n\n<div class=\"pull-right\">\n\n![](http://ap.mnocdn.no/images/fab84404-efd8-4651-97fb-23fc195b5abb?fit=crop&q=80&w=2048)\n<center><sup>Aftenposten's Editor-in-chief Espen Egil Hansen.</sup></center>\n</div>\nListen, Mark, this is serious. First you create rules that don\u2019t distinguish between child pornography and famous war photographs. Then you practice these rules without allowing space for good judgement. Finally you even censor criticism against and a discussion about the decision \u2013 and you punish the person who dares to voice criticism.\n\nFacebook is for the pleasure and benefit of the whole world, myself included, on a number of levels. I myself, for instance, keep in touch with my brothers via a closed group centered on our 89 year old father. Day by day we share joys and concerns.\n\nFacebook has become a world-leading platform for spreading information, for debate and for social contact between persons. You have gained this position because you deserve it.\n\nBut, dear Mark, you are the world\u2019s most powerful editor. Even for a major player like Aftenposten, Facebook is hard to avoid. In fact we don\u2019t really wish to avoid you, because you are offering us a great channel for distributing our content. We want to reach out with our journalism.\n\n<div class=\"pull-left\">\n\n![](http://ap.mnocdn.no/images/32183194-b955-4167-98b9-a598c510e45e?fit=crop&q=80&w=2048)\n<center><sup>Aftenposten's print front page Friday.</sup></center>\n</div>\n\nHowever, even though I am editor-in-chief of Norway\u2019s largest newspaper, I have to realize that you are restricting my room for exercising my editorial responsibility. This is what you and your subordinates are doing in this case.\n\nI think you are abusing your power, and I find it hard to believe that you have thought it through thoroughly.\n\nLet me return to the picture I mentioned by Nick Ut. The napalm-girl is by far the most iconic documentary photography from the Vietnam war. The media played a decisive role in reporting different stories about the war than the men in charge wanted them to publish. They brought about a change of attitude which played a role in ending the war. They contributed to a more open, more critical debate. This is how a democracy must function.\n\nThe free and independent media have an important task in bringing information, even including pictures, which sometimes may be unpleasant, and which the ruling elite and maybe even ordinary citizens cannot bear to see or hear, but which might be important precisely for that reason.\n\n\u00abIf liberty means anything at all, British George Orwell wrote in the preface to Animal Farm, \u00abit means the right to tell people what they do not want to hear.\u00bb\n\nThe media have a responsibility to consider publication in every single case. This may be a heavy responsibility. Each editor must weigh the pros and cons.\n\nThis right and duty, which all editors in the world have, should not be undermined by algorithms encoded in your office in California.\n\n<div class=\"pull-left\">\n\n![](http://ap.mnocdn.no/images/bf0bf779-a539-44ca-922f-939dc7b5e183?fit=crop&q=80&w=780)\n<center><sup>The original post on Aftenposten's Facebook page.</sup></center>\n</div>\n\nMark, please try to envision a new war where children will be the victims of barrel bombs or nerve gas. Would you once again intercept the documentation of cruelties, just because a tiny minority might possibly be offended by images of naked children, or because a paedophile person somewhere might see the picture as pornography?\n\nFacebook\u2019s Mission Statement states that your objective is to \u201cmake the world more open and connected\u201d.\n\nIn reality you are doing this in a totally superficial sense.\n\nIf you will not distinguish between child pornography and documentary photographs from a war, this will simply promote stupidity and fail to bring human beings closer to each other.\n\nTo pretend that it is possible to create common, global rules for what may and what may not be published, only throws dust into peoples\u2019 eyes.\n\nThe last decade has shown the extent to which unpredicatable and destructive things can happen when publication refuses to take into account the context.\n\nThe controversy over the Mohammad-caricatures, which flared in late 2005 and still remains a heated debate, had unknown consequences simply because the context and the original justification for publication were ignored.\n\nThe drawings were put into entirely new contexts, censured and condemned based on allegedly universal religious rules. This resulted in large demonstrations, violence and killings \u2013 and a remaining, potent threat against the freedom of speech. Some of the persons involved must still live with police protection.\n\nFacebook did not go global until this controversy had passed its peak. Your approach, Mark, might possibly have been to ban publication of Mohammad-drawings? If so, Facebook would in a stereotype way have stood on the side of the extreme religious forces, in opposition to the freedom of speech. You would have overruled the individual editor\u2019s assessment. Those of us who were in the centre of events at the time had to weigh the pros and cons day by day \u2013 and make decisions based on the reality we were in.\n\n![](http://ap.mnocdn.no/images/7c28467a-625c-4487-be16-a70f64e68247?fit=crop&q=80&w=2048)\n<sup>This is the message Aftenposten received from Facebook.</sup>\n\nIt was \u2013 and remains \u2013 different in Oslo and Karachi.\n\nThe controversy over the caricatures demonstrates just how impossible and illogical it is, trying to live with universal rules for publication in a time which is multi-religious, muli-cultural and multi-everything. Every human practice differs a lot as to geography, politics, social and economic conditions.\n\nThe least Facebook should do in order to be in harmony with its time is introduce geographically differentiated guidelines and rules for publication. Furthermore, Facebook should distinguish between editors and other Facebook-users. Editors cannot live with you, Mark, as a master editor.\n\nThese measures would still only soften the problems. If Facebook has other objectives than just being as big as possible and earn as much money as possible \u2013 and this I am still convinced that you have, Mark \u2013 you should undertake a comprehensive review of the way you operate.\n\nYou are a nice channel for persons who wish to share music videos, family dinners and other experiences. On this level you are bringing people closer to each other. But if you wish to increase the real understanding between human beings, you have to offer more liberty in order to meet the entire width of cultural expressions and discuss substantial matters.\n\nAnd then you have to be more accessible. Today, if it is possible at all to get in touch with a Facebook representative, the best one may hope for are brief, formalistic answers, with rigid references to universal rules and guidelines. If you take the liberty to challenge Facebook\u2019s rules, you will be met \u2013 as we have seen \u2013 with censorship. And if someone will protest against the censorship, he will be punished, as Tom Egeland was.\n\nI could have continued, Mark, but I have to stop at this point. I have written this letter to you because I am worried that the world\u2019s most important medium is limiting freedom in stead of trying to extend it, and that this occasionally happens in an authoritarian way. But I am also writing \u2013 and I hope you will understand this \u2013 because I take a positive attitude to the possibilities that Facebook has opened up. I only hope that you will utilize the possibilities in a better way.\n\nSincerely yours Espen Egil Hansen Editor-in-chief and CEO Aftenposten\n\nPS. I enclose a commentary from Aftenposten\u2019s 73 year old cartoonist Inge Gr\u00f8dum to the censorship practiced by Facebook. What does the algorithm say? Would it pass?",
+    "body_length": 9722,
+    "cashout_time": "2016-10-10T22:26:15",
+    "category": "steemit",
+    "children": 17,
+    "created": "2016-09-09T21:02:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"facebook\",\"censorship\",\"liberty\",\"aftenposten\"],\"users\":[\"null\"],\"image\":[\"http:\\/\\/ap.mnocdn.no\\/images\\/268d5cb1-673e-4231-a1ef-c9767d3494f1?fit=crop&h=1152&q=80&w=2048\",\"http:\\/\\/ap.mnocdn.no\\/images\\/fab84404-efd8-4651-97fb-23fc195b5abb?fit=crop&q=80&w=2048\",\"http:\\/\\/ap.mnocdn.no\\/images\\/32183194-b955-4167-98b9-a598c510e45e?fit=crop&q=80&w=2048\",\"http:\\/\\/ap.mnocdn.no\\/images\\/bf0bf779-a539-44ca-922f-939dc7b5e183?fit=crop&q=80&w=780\",\"http:\\/\\/ap.mnocdn.no\\/images\\/7c28467a-625c-4487-be16-a70f64e68247?fit=crop&q=80&w=2048\"],\"links\":[\"http:\\/\\/www.aftenposten.no\\/meninger\\/kommentar\\/Dear-Mark-I-am-writing-this-to-inform-you-that-I-shall-not-comply-with-your-requirement-to-remove-this-picture-604156b.html\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T21:02:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 29831113552269,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "87.690 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "dear-mark-i-am-writing-this-to-inform-you-that-i-shall-not-comply-with-your-requirement-to-remove-this-picture",
+    "post_id": 905672,
+    "promoted": "75.000 HBD",
+    "replies": [],
+    "root_title": "Dear Mark. I am writing this to inform you that I shall not comply with your requirement to remove this picture.",
+    "title": "Dear Mark. I am writing this to inform you that I shall not comply with your requirement to remove this picture.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@val-a/dear-mark-i-am-writing-this-to-inform-you-that-i-shall-not-comply-with-your-requirement-to-remove-this-picture"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5693654803574",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2482446812",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013918996",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552719781",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43716931512",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330246238",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171021933",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "693780599618",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499896176",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "922756808845",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "775799277",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230662564",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11800403945",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401158116398",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80531803932",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "16616708694",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487241289",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5490844166",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "22519906749",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14733368028",
+        "voter": "richman"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "3389092891",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490418874",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425753319",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79064374030",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48087436852",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380406839",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50900746650",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2994428251",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94229031182",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3016404662",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1901377462",
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3658130970",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243464927250",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42957562242",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3155578623",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "414194892812",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2707813985",
+        "voter": "wintrop"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "52313345975",
+        "voter": "furion"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "402939077",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "452032357",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "414391534",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151746469577",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10474968800",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1526055392",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136135148",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55440603400",
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11466738878",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "597215961",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230802431",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1568201378",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9616420958",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234932677",
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71118468142",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64025280742",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10805882232",
+        "voter": "pcste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4245035026",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13833357665",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3173709669",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37872555985",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88371145550",
+        "voter": "rea"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "13870101426",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32452676226",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764587130",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11213216542",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2912684246",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23709263345",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "7397086673",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7836492516",
+        "voter": "logic"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "457213628",
+        "voter": "fnait"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "417170364",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5554163551",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7658802979",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150384482",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1307922822",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91099389",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "855277905",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312126448",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214569242",
+        "voter": "xcepta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12262145072",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210424160",
+        "voter": "lordemau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20776446447",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73635017",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5284635480",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37990828184",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "1200",
+        "reputation": 0,
+        "rshares": "2400732723",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20128820963",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7688258688",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58180110",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2441922074",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4156798201",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60228370",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77993323",
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2204914049",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4540164825",
+        "voter": "englishtchrivy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4783829606",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75779499",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136197250",
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2381484794",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "450438581",
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55683468",
+        "voter": "lindasteel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1419563979",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1697265193",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231870711",
+        "voter": "tsudohnimh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75564175954",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183539658",
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "7375208923",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "558411810",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "678822499",
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2631047372",
+        "voter": "funnyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56746345",
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323425237",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157770453",
+        "voter": "james1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151344494",
+        "voter": "oliver.smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141873513",
+        "voter": "jack.johnson"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>In the city of Newcastle upon Tyne in the UK there is an architectural oddity in the form of a large statue perched on one of the walls of the civic centre building. &nbsp;I have yet to find out what it represents but have heard people referring to it as \"Spiderman\" due to the way the figure is \"sitting\" on the wall. &nbsp;I suspect it probably represents some character from classical (Greco-Roman) mythology.</p>\n<p>These photos show a lot of detail and were taken using my IR converted Canon EOS 450D with EFS 18-200mm lens. &nbsp;In this case the IR shows certain details that would otherwise not be apparent in regular wavelengths of light.</p>\n<p>It gives it a a very high contrast \"graphic novel\" feel to the images which I feel is fitting. &nbsp;Unfortunately due to the position of the statue relative to the building I was limited in the different views and angles I could get of it.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_013of5941bd.jpg\" width=\"800\" height=\"533\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_012of504160.jpg\" width=\"800\" height=\"1200\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_01b1of1be4f1.jpg\" width=\"800\" height=\"1200\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_014of5f221b.jpg\" width=\"800\" height=\"1200\"/></p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_015of500c4b.jpg\" width=\"800\" height=\"1200\"/></p>\n<p>On some of the closer images you can see that the statue has no face. &nbsp;There is hair but the front part of the head &nbsp;is missing. &nbsp;Perhaps this is a clue to the identity?</p>\n<p>If you have any ideas please let me know. &nbsp;I hope you like the photos.</p>\n<p>If you like my work please follow me and check out my previous photography work and tutorials &nbsp;@thecryptofiend - hope you enjoy.</p>\n<p><br></p>\n<h1>Technical Information:</h1>\n<p>Canon EOS 450D with IR conversion</p>\n<p>Canon EF-S 18-200mm lens</p>\n<p>Adobe Lightroom CC and Nik Silver Effex Pro for processing.</p>\n<p>(Verification for me here: <a href=\"http://www.aapicture.com/about-me\">http://www.aapicture.com/about-me</a>)</p>\n</html>",
+    "body_length": 2303,
+    "cashout_time": "2016-10-07T23:04:00",
+    "category": "photography",
+    "children": 36,
+    "created": "2016-09-06T20:51:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"art\",\"steemit\",\"steemsquad\",\"life\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/Arif_Akhtar_Statue_CC_013of5941bd.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/Arif_Akhtar_Statue_CC_012of504160.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/Arif_Akhtar_Statue_CC_01b1of1be4f1.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/Arif_Akhtar_Statue_CC_014of5f221b.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/Arif_Akhtar_Statue_CC_015of500c4b.jpg\"],\"links\":[\"http:\\/\\/www.aapicture.com\\/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T20:51:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9842974759914,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "11.087 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-mysterious-statue-ir-photography",
+    "post_id": 875960,
+    "promoted": "70.000 HBD",
+    "replies": [],
+    "root_title": "The Mysterious Statue : IR Photography",
+    "title": "The Mysterious Statue : IR Photography",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/the-mysterious-statue-ir-photography"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297041068093",
+        "voter": "chitty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "11588539441",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12946410197",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198782719642",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8552168479",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77645335392",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38212240821",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2039977412",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28666886006",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4451502359",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4025001582",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6587080784",
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "984913874",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145773793",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15561961452",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238560086",
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141596712",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164607675",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50659116",
+        "voter": "pakganern"
+      }
+    ],
+    "author": "mikehere",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "As one that has gone through many hurricanes in the Caribbean and actually has lived through a [category 3](https://en.wikipedia.org/wiki/Hurricane_Marilyn) going [right over us](https://www.youtube.com/watch?v=jNe2tTY-mZY).  I have some resources and tips I would like to share.\n\n<a href=\"https://earth.nullschool.net/#current/wind/surface/level/orthographic=-98.70,26.75,671\"><img src=\"http://mikepotterhere.com/wp-content/uploads/2016/08/hurricanes2.png\"></a>\n\n<h1>Weather Forecasting and Information</h1>\n\nForemost is having the tools so you can see if there is anything coming or about to come close.\n\n* [Best earth weather modeling](https://earth.nullschool.net/#current/wind/surface/level/orthographic=-98.70,26.75,671) - Absolutely incredible - Click on the word earth for a menu.\n   - [Surface Winds](https://earth.nullschool.net/#current/wind/surface/level/orthographic=-96.99,28.40,671)\n   - [Currents](https://earth.nullschool.net/#current/ocean/surface/currents/orthographic=-87.06,26.08,671)\n   - [Waves](https://earth.nullschool.net/#current/ocean/primary/waves/overlay=significant_wave_height/orthographic=-96.99,28.40,671)\n    - [Temperature](https://earth.nullschool.net/#current/wind/surface/level/overlay=temp/orthographic=-96.99,28.40,671)\n* [National Hurricane Center](http://www.nhc.noaa.gov/)\n* [AccuWeather](http://www.accuweather.com/en/hurricane)\n* [Intellicast](http://www.intellicast.com/Storm/Hurricane/Track.aspx)\n\n<h1>Resources</h1>\n\n* [Hurricane prepare, plan, stay informed - Ready.gov](https://www.ready.gov/hurricanes)\n* [National Hurricane Center - Hurricane Preparedness - Be Ready](http://www.nhc.noaa.gov/prepare/ready.php)\n\n<h1>Personal Tips</h1>\n\nThis is not exhaustive and what happens in a hurricane is unpredictable.  Just like with a tornado one house could be just fine while another is completely destroyed.  Same if you have a boat.  You could find what you think is the safest place and the waves and winds from a certain direction could still destroy it.\n\n* If you're living on a boat and can't get out of the way:\n   - Ask the locals the best place.  If there are other boat residents that have experience then ask them.  On St. John there were mangroves people would go into and tie on.  We didn't have time to get to the mangroves so we actually just anchored off our [Honeymoon beach](https://www.google.com/maps/place/Honeymoon+Beach/@18.3410287,-64.7928527,1049m/data=!3m1!1e3!4m5!3m4!1s0x8c0512650a0b6081:0x519a3aaf84902550!8m2!3d18.3400308!4d-64.7914364) with 4 anchors with duct tape to help prevent chaffing.  While boats in the harbors and other places were damaged ours just had just the wind vane blown off.\n  - Don't stay on board.  That was a crazy night that night and we took our marine radio with us and stayed in a cement building that night.  We heard constant calls for help from people on their boats saying that it broke lose and the Coast guard saying there was nothing they could do and to put on their life vests.  So scary.\n* If you're in a home:\n   - Board things up even if it is cat 1 because conditions can change fast.\n   - Make sure the roof is secure.\n   - If you're uncertain about your home then leave before the storm is close.\n   - If you happen to stay and as the storm is going over you can take some pressure out of the house by opening the opposite window.  The wind might change directions so be ready.\n   - If it gets really bad then go into the bathroom or another part of the house like a basement as long as there is no chance of flooding and protect yourself.\n* For everyone:\n   - Be sure to get money out.  With electricity out there are no services like ATM's or people taking credit cards or checks but stores might still be able to open for those with cash only.\n   - Of course lamps, battery operated radio and batteries.\n   - Food supplies, fresh water, propane tank with camp stovetop.  (While living in Puerto Rico we didn't have power for 2 months after [Hurricane George](https://en.wikipedia.org/wiki/Hurricane_Georges) which was a category 4).\n\nIf anyone else has any personal experience or you have added resources please leave a comment.",
+    "body_length": 4150,
+    "cashout_time": "2016-10-02T14:28:39",
+    "category": "life",
+    "children": 5,
+    "created": "2016-09-01T02:28:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"weather\",\"sailing\",\"hurricane\",\"travel\"],\"image\":[\"http:\\/\\/mikepotterhere.com\\/wp-content\\/uploads\\/2016\\/08\\/hurricanes2.png\"],\"links\":[\"https:\\/\\/en.wikipedia.org\\/wiki\\/Hurricane_Marilyn\",\"https:\\/\\/www.youtube.com\\/watch?v=jNe2tTY-mZY\",\"https:\\/\\/earth.nullschool.net\\/#current\\/wind\\/surface\\/level\\/orthographic=-98.70,26.75,671\",\"https:\\/\\/earth.nullschool.net\\/#current\\/wind\\/surface\\/level\\/orthographic=-96.99,28.40,671\",\"https:\\/\\/earth.nullschool.net\\/#current\\/ocean\\/surface\\/currents\\/orthographic=-87.06,26.08,671\",\"https:\\/\\/earth.nullschool.net\\/#current\\/ocean\\/primary\\/waves\\/overlay=significant_wave_height\\/orthographic=-96.99,28.40,671\",\"https:\\/\\/earth.nullschool.net\\/#current\\/wind\\/surface\\/level\\/overlay=temp\\/orthographic=-96.99,28.40,671\",\"http:\\/\\/www.nhc.noaa.gov\\/\",\"http:\\/\\/www.accuweather.com\\/en\\/hurricane\",\"http:\\/\\/www.intellicast.com\\/Storm\\/Hurricane\\/Track.aspx\",\"https:\\/\\/www.ready.gov\\/hurricanes\",\"http:\\/\\/www.nhc.noaa.gov\\/prepare\\/ready.php\",\"https:\\/\\/www.google.com\\/maps\\/place\\/Honeymoon+Beach\\/@18.3410287,-64.7928527,1049m\\/data=!3m1!1e3!4m5!3m4!1s0x8c0512650a0b6081:0x519a3aaf84902550!8m2!3d18.3400308!4d-64.7914364\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Hurricane_Georges\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T20:05:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 708827002916,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "0.317 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "psa-hurricane-weather-sites-and-tools-best-resources-and-tips",
+    "post_id": 819474,
+    "promoted": "61.000 HBD",
+    "replies": [],
+    "root_title": "Hurricane Weather Sites and Tools - Best Resources & Tips",
+    "title": "Hurricane Weather Sites and Tools - Best Resources & Tips",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@mikehere/psa-hurricane-weather-sites-and-tools-best-resources-and-tips"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633086819262",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "404679283930",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169841744248",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7033751692061",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5875183084341",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2103557751171",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5662110027040",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103025387",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1689648756721",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767352996",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54637174184",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662793601",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200612864643",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4014919200371",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61592851076",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "458015222778",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2861850289935",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1496731087",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897788473738",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118160004239",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63015601906",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969744364",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14604131391",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "71561501024",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78952260790",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11524172076",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552252210969",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19636082604",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28968508635",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41768621861",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2062724006",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25829159688",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "2300",
+        "reputation": 0,
+        "rshares": "3389028539",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148362085964",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7288007971",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534991050",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67844161338",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425733126",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15588807020",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42080331973",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941559463750",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96338840182",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24888277048",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4451341567",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3838337146630",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53176603192",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823427901",
+        "voter": "marc-e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261304389463",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3441451815",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34628287751",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5708942608",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111654368045",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45184784006",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2439419704",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536461338",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39857257953",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50781480951",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238284822415",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4671817628",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92848831566",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17199527987",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3286871738",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1107967509",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60745552796",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474020730",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531777531",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487494209",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1525982196",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2915999793",
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4897981024",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16130329347",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3758210109",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24926432348",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346587932",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38296391484",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12640454898",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12628860553",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3281897331",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15107785138",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98997356",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12833880509",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298428280403",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64250708271",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2691561605",
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4244719515",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2330848941",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97802609",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182751859318",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15908296316",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4831857977",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130642761",
+        "voter": "bigb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748983311",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15574904567",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638993066",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1750139335",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2291189222",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537873144",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490763421",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518235137",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1458929155",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7324558839",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5608453750",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125165611580",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7870635679",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "850939740",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24961864826",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24937582428",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24947055712",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63747178",
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14586896134",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174815500",
+        "voter": "amanarchymartin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4344894980",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24942736238",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24941237771",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24938781846",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24935966669",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24932342801",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24931131173",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100860038",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93238695352",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12780436995",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232882820",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "468157500",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62907097",
+        "voter": "joeschurr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1986846966",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73061236",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12022940635",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62176964",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1720770559",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52467942",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53624183",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61533396",
+        "voter": "intothewild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19605922079",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56598010",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56591855",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "572779978",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "640484648802",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1371874570",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18633638662",
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2460367072",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "428345351",
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4276803918",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8469619200",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1768041266",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24925297237",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2925431818",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23085206501",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "532839920",
+        "voter": "jelloducky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1908971109",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71216801175",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1772183617",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44387786980",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43624669451",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72966189",
+        "voter": "anarchylifter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58977056",
+        "voter": "jacobberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8001441651",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58931893",
+        "voter": "anarchojoe1986"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18578593063",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58933081",
+        "voter": "layl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59263960",
+        "voter": "stevenlytle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429311683",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3113414400",
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250942364773",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109672624128",
+        "voter": "larkenrose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58509581",
+        "voter": "volunterri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58484155",
+        "voter": "shurik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037909150",
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57971616",
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58343541",
+        "voter": "jimjr58"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58330329",
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58309524",
+        "voter": "waldencall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62040384",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "682489302",
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57027057",
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4217936436",
+        "voter": "daniel030"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565688",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130575875",
+        "voter": "tom1gorman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1611307490",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57956267",
+        "voter": "anarchophiliac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57949890",
+        "voter": "tigerlily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57917120",
+        "voter": "anarchyroolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6057644028",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59542406",
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56680590",
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "492121597",
+        "voter": "matthewmencel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75779499",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57685838",
+        "voter": "otis147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2433107936",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24556201833",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57390301",
+        "voter": "joseywales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6881062319",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362203207",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1616398910",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "10675056395",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56782516",
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15150286001",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2032675263",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5529454886",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5150706093",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "620115088",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1617611765",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3064424390",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85546636",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54584395",
+        "voter": "klaartje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56233744",
+        "voter": "melody24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2605659713",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1479963704",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52705614",
+        "voter": "danbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334006927574",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59386558781",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464013274",
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "479604473",
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54293577",
+        "voter": "ultiphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4750752870",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53591687",
+        "voter": "petrius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993716356",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1420402273",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8712372395",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1491668193",
+        "voter": "dakini-dion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1060158413",
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4689084926",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50235850",
+        "voter": "billkappa442"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51215236",
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412042416",
+        "voter": "emsenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50538694",
+        "voter": "fenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2918150892",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158885864",
+        "voter": "cebymaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162925257",
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162904624",
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161828383",
+        "voter": "kjsxj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161814063",
+        "voter": "jimmyhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158018960",
+        "voter": "bethesda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157931180",
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160986765",
+        "voter": "getro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157816798",
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160854446",
+        "voter": "michal-franc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110355360",
+        "voter": "oliver.smith"
+      }
+    ],
+    "author": "dragonanarchist",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://s4.postimg.org/ool3c9ust/868cba34acee867680df4de12db011cc.jpg</center>\n\n## <center>The Usual Approaches That Work</center>\n\nThere are two most common ways for a person who values freedom to articulate to others the philosophy of true liberty.  \n\n### <center>#1 What Is NOT Wanted</center> \n\n<center>Anarchism: *without* rulers.  A freedom advocate simply wants to be left alone to live his life in peace, without someone else trying to rule his actions with deadly force.</center>\n\n### <center>#2 What IS Wanted</center>\n\n<center>Voluntaryism: the belief that all human interactions should be based on mutual consent, entered into on a *voluntary basis.*</center>\n\n---\n\n## <center>Do What Works For You</center>\n\nHaving been among the community of amazing people who are advocates of self-ownership and true liberty for some time now, I have been exposed to all or most of the varied *conversational* approaches/techniques that are taken with people who are brand new to the discussion. \n\nThere are those that focus on the word **Voluntaryism (aka \"What do we WANT? Voluntary interaction!\")**. \nThere are those that focus on the word **Anarchy (aka \"What DON'T we want? A ruling class!\")**. \n\nThere are even those that try to ***avoid either term*** in conversation, and just stick to a slow and disarming **Socratic method**, taking the approach of curiosity towards the statist in conversation, aiming to understand why they believe what they believe (knowing that if the statist tries to describe it or defend it, they may see inconsistencies in themselves). \n\nAll of these ways of broaching the topic are truly valuable, because *each approach wins a certain kind of mind* that the other approaches might not have won.  \n\n---\n\n<center>https://s4.postimg.org/a97rr4759/static1_squarespace.jpg</center>\n\n## <center>The Consistent Human</center>\n\nI will mention another thought approach to the philosophy of liberty that I recently found myself considering, **though I'm sure it isn't *new*.**  It is too easy *not* to have been considered, but since I don't often see many people directing conversation in this manner, I will go ahead and throw up the idea for those who may make use of it.  \n\n{Note: I think some major liberty-minded philosophers have already put it rather similarly, a few Lysander Spooner quotes come to mind, but I can't remember more at the moment..}\n\nLet's say you're in a conversation that inevitably leads to someone asking you \"which way\" you lean, politically.  Some anarchists/voluntaryists *hate* when a conversation reaches this moment, some are *filled with glee!*\n\nHowever it's said, however the conversation gets there, you've now plunged into the realm of **politics** (every freedom lover *hates* politics), so you've got an opportunity to now to say something that will get their gears moving.\n\n<center>https://s4.postimg.org/713ae2kvh/images_1.jpg</center>\n\n### <center>Try this perhaps...</center> \n\nAvoiding the usual political circus jargon, and avoiding the false dichotomy of left vs. right, say something like: \n\n##### <center>\"I wouldn't align myself with anything political, but that's because I consider myself to be ***a consistent human being***.\"</center>\n\nBrows furrow, and you're likely to hear a \"What do you mean?\" sort of response.  \n\n##### <center>\"I believe it's wrong for me to steal, threaten people with deadly force, murder, or otherwise bully people who have a different life style than me.  And so I believe it's wrong for *any* human to do that: titles, election rituals, badges and costumes don't grant superhuman rights.  I apply the same rules of what I believe are right and wrong *to everyone.* I'm consistent.\"</center>\n\nOr, put another way, you could say: \n\n##### <center>\"If it's wrong for me to go put a gun to my neighbor's head and tell him to give me all his money or else, then it is wrong for me to *vote for someone else* to do that for me.  I recognize that no amount of voting or layers of hired government employees working to enforce the will of some humans on others, can ever make theft into something moral or good. I'm *consistent*.\"</center> \n\nAnd still another: \n\n##### <center>\"I don't want *my free will* violated, I will defend myself if someone tries to attack me or use the threat of force to steal from me, and so I am a *consistent human* by recognizing that same desire to live free exists in all individuals. It's 'doing unto others as I would have done to me', on the most basic level.\"</center>\n\n###### <center>Left, Right, Anarchy, Libertarian, Moderate... all the usual feels-inducing trigger words were side-stepped.</center>\n\n# <center>~*~</center>\n\n---\n\n<center>https://s4.postimg.org/9h53rx2y5/debate.jpg</center>\n\n# <center>Some Ideas Work Better Than Others, It Varies Person To Person</center> \n\nI encourage no one to get too caught up in the \"right way\" to go about spreading the message of true freedom-- so long as the principles are intact, and uncompromising.  Once you grasp the logic, there's many approaches to the discussion style, and what will work to wake up some will not work on others.  I'm not here to show you any one correct way, I would say to be flexible in your approach and style, and adjust when it seems there's a better approach to be taken.  \n\n### <center>Whether you're socratic, pedantic, abrasive, blunt, charismatic, diplomatic and gentle, or otherwise... some of that is going to work to reach people.  Part of your success in getting people to think is tied to how well you grasp human psychology.  A clue: It starts with \"know thyself\"..</center>\n\n## <center>~*~</center>\n\n<center>**Take from this article what you will, use what you can, discard the rest**.</center>",
+    "body_length": 5726,
+    "cashout_time": "2016-10-07T18:43:06",
+    "category": "anarchism",
+    "children": 16,
+    "created": "2016-09-06T18:01:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"anarchism\",\"politics\",\"psychology\",\"anarchy\",\"philosophy\"],\"image\":[\"https:\\/\\/s4.postimg.org\\/ool3c9ust\\/868cba34acee867680df4de12db011cc.jpg\",\"https:\\/\\/s4.postimg.org\\/a97rr4759\\/static1_squarespace.jpg\",\"https:\\/\\/s4.postimg.org\\/713ae2kvh\\/images_1.jpg\",\"https:\\/\\/s4.postimg.org\\/9h53rx2y5\\/debate.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T23:38:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 42502310405685,
+    "parent_author": "",
+    "parent_permlink": "anarchism",
+    "pending_payout_value": "165.619 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-consistent-human",
+    "post_id": 874222,
+    "promoted": "60.226 HBD",
+    "replies": [],
+    "root_title": "The Consistent Human",
+    "title": "The Consistent Human",
+    "total_payout_value": "0.000 HBD",
+    "url": "/anarchism/@dragonanarchist/the-consistent-human"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290979005478",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35527177082",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36068796273",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198782719642",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12378453737",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7262323231",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38550496952",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237985094",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3826447878",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1812767730",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1913344238",
+        "voter": "earnest"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13397353064",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3475085906",
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19368188223",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62500297",
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4581182987",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6078750587",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1864520703",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154961508",
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3397993185",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50196187",
+        "voter": "post-successful"
+      }
+    ],
+    "author": "anarcho-andrei",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "When we last saw our fearless captain and his android co-pilot, [they had reluctantly taken on a contract](https://steemit.com/fiction/@anarcho-andrei/the-stellar-wild-chapter-2) from a less-than-reputable contact in the government.  Read on and find out what happens to them next!\n\nUpvotes are appreciated, and let me know what you thought of the story so far in the comments!\n\n---------------\n\n<center>http://i.imgur.com/a0xXr4e.jpg</center>\n\n**She disliked wearing United Terran Systems Naval utility uniforms.**  She very rarely ever had to wear them - generally only when she was travelling with Marines as part of a military-intel joint operation - and she was thankful for that, so why she'd been told to put one on today was beyond her.  Functionally, they were serviceable; they had two chest pockets, a shoulder pocket on each upper arm, and a stay-flat collar that never popped up from the seam along the back of the collar.  The cargo pockets on the trousers were also lay-flat pockets, with a fair amount of expansion room.  The muted olive color reinforced the fact that these were utility uniforms.  Thankfully the female variants were cut closer at the waist; she'd only had to make due with a male variant once, and, despite being the proper size, it looked like she was wearing a green trash bag.\n\nTo take her mind off of it, she was reviewing her mission brief over and over again in her head.  It seemed simple enough: intercept the transport that they'd lost contact with, board it, and ascertain the state of its cargo.  If it was simply a communications issue, the crew would thank her and be on their way.  However, given the length of time they'd been in radio silence, it was likely the second scenario that she'd be dealing with: figure out what happened to the crew.  The internal surveillance logs would provide her that information.  Once the cargo was secured and transferred to the contractor ship the UTS had hired, they'd bring it back to Naval Intelligence Division's black site on the edge of the Nether, near to wear they had planned to deploy it in the first place.  Simple, straightforward, and a perfect assignment to spruce up her lieutenant commander's jacket for promotion, her commander had told her.\n\nAll of which made her wonder why in the hell they had opted for the cloak-and-dagger routine in the first place.  It wouldn't be the first time the UTSN had sent a detachment after a transport vessel broke contact.  Pirates were a constant problem in that part of the galaxy, so it was assumed that it would happen from time to time.  Granted, it happened near Kirauthi space, but she didn't see how that made a difference.  All the Monarchy ever did was rattle their saber at the Galactic Union about seceding because of this perceived slight or that aggressive action by the UTS.  If she could draw a historical parallel, North Korea's foreign relations with the United States in Earth's 21st century history was as perfect as any.  They complained, often and loudly, but they were quick to let it go once concessions were made.  They still controlled some of the most resource-rich mining planets in the Union, so the rest of the member organizations had to just grin and bear it.\n\n\"I'm sure these no-name contractors are going to be _consummate_ professionals, too,\" she muttered, staring out at the rain from under the covered loading area adjacent the landing pads.  She checked the holographic data assistant on her wrist.  They should be landing any minute, assuming they were on time.  Sure enough, as soon as she turned her eyes back to the cloud-covered skies above Krixus, the _Hound_ began to make its descent toward the landing pad she was standing nearest to.  _Curb-side service_, she mused, reaching down to grab her pack as the oblong, vaguely bullet-shaped cargo freighter landed on the slick asphalt.\n\nThe _Hound_ lurched forward as Cole cut the maneuvering thrusters, depositing the ship on its landing feet.  As was his custom, he gave it about five seconds before he unbuckled his harness and slid out of the captain's chair.  Edward shook his head and hit the switch to lower the boarding ramp behind them.  The way the ramp was set up made it exceptionally easy to run at full sprint into the ship from outside and land in the pilot's seat within two strides.  It was something both he and Edward had taken advantage of when bounties were less than willing to cooperate and happened to be heavily defended, too.\n\n\"You realize that, statistically speaking, if the landing arms were to fail, they would fail the moment that a load was placed on them,\" he remarked to Cole, unbuckling himself from his chair and standing up.  Cole scoffed.\n\n\"It never hurts to be safe about it; the _Hound's_ almost as old as you are, and it isn't nearly in as good a shape.  Now c'mon,\" he said, zipping up his worn leather jacket as he made his way down the ramp, \"we have a hefty payday just waiting to be collected.\"  Edward let out a sound approximating a sigh as he fell into step behind Cole, earning a look over the fearless captain's shoulder. \"I heard that, you.\"\n\nLieutenant Commander Miranda Rackham ducked her head down as she left the shelter of the extended awning, jogging briskly across the open ground that separated the UTSN forward post facility from the landing pad.  As she neared the _Hound_, she realized that it wasn't actually a cargo freighter; that's what those two that were making their way down the ramp used it for, no doubt, but really it was a decommissioned Chieftan-class corvette.  It had been modified, but the flight deck on the top and the underslung command deck were unmistakable.  _They took the last one out of service nearly a century ago,_ she mused, narrowing her eyes against the rain.  If she had some free time she'd have to find out what the original designation of this particular vessel was back when it was in service.\n\nCole came to a stop under the protective bulk of his ship, looking out at the figure hustling toward them across the asphalt.  He'd expected some pencil-necked, bespectacled kid who was barely strong enough to carry a daypack behind him.  Instead, he was presented with a fairly tall woman, her hair cut in a short bob, and a determined look on her face.  She had no name tape on her uniform, nor any rank insignia, so he had no idea how to address her, but he decided that this was going to be significantly more enjoyable than transporting some snot-nosed teenager.  Edward fell in beside him as he donned a smile.\n\n\"Good evening, ma'am.  My name is Joshua Cole and this is my co-pilot Edward.  We're going to be your ri-\" he started, before she abruptly cut him off, cutting her stride to a confident march.\n\n\"We need to be gear up in five minutes.  I'll stow my things in a spare bunk while you get underway,\" she replied curtly, walking past both of them and heading up the ramp with nothing less than utter disdain.  Cole just stood there for a second, blinking.  _Never been shot down that quick before,_ he thought.  Edward looked back over his shoulder to the ramp, then back to Cole.\n\n\"I like her,\" he remarked, his tone chipper and excited.  \"She's going to be great company on this trip.\"  He turned and walked back up the ramp before Cole could retort.  With a resigned sigh, he turned and made his way back up the ramp, punching the button to raise it as he settled back into the pilot chair, prepping the ship for take off.",
+    "body_length": 7463,
+    "cashout_time": "2016-10-02T12:03:36",
+    "category": "fiction",
+    "children": 6,
+    "created": "2016-08-31T23:35:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"fiction\",\"scifi\",\"writing\",\"life\",\"payitforward\"],\"image\":[\"http:\\/\\/i.imgur.com\\/a0xXr4e.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/fiction\\/@anarcho-andrei\\/the-stellar-wild-chapter-2\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T05:00:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 696935115547,
+    "parent_author": "",
+    "parent_permlink": "fiction",
+    "pending_payout_value": "0.323 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-stellar-wild-chapter-3",
+    "post_id": 818276,
+    "promoted": "60.000 HBD",
+    "replies": [],
+    "root_title": "The Stellar Wild - Chapter 3",
+    "title": "The Stellar Wild - Chapter 3",
+    "total_payout_value": "0.000 HBD",
+    "url": "/fiction/@anarcho-andrei/the-stellar-wild-chapter-3"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5133129010650",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1031882916236",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39106143461",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80546321239",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "1010687333",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447134537",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "886894315803",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5013415689",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24334244672",
+        "voter": "james-show"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "1329518504",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11744107970",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42646084026",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446314863",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426345715",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86505600736",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48131196667",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138228131452",
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349023596",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105805199373",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "551808872924",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102266459252",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "10737933696",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "5700",
+        "reputation": 0,
+        "rshares": "25048306642",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2861774262",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3524497863",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207235087440",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51028352883",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53200787105",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254702299",
+        "voter": "ivp"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "128613923108",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11653999586",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12246967483",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "824450668",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "1693848216",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10475719848",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1211734909",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17410903984",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2147843650",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16642046880",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26778525771",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10851638564",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11041385098",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79624786257",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2811366993",
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10600135570",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67912511407",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "321731489",
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "14081055736",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3517786621",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33672189304",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80649600564",
+        "voter": "rea"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "818880609",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15978503091",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41103939733",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166570104",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "863414182",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24449858053",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12739729316",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8339031252",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1681456071",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7378295271",
+        "voter": "beanz"
+      },
+      {
+        "percent": "6100",
+        "reputation": 0,
+        "rshares": "1822108820",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23482202368",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6840849470",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "31661497810",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20675507089",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "1302419977",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "12892722681",
+        "voter": "somebody"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "482292129",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "2848720408",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "3549675644",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3071824587",
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "222851194",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "4600",
+        "reputation": 0,
+        "rshares": "424857353",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13140162501",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3996693884",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "449065266",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5502390183",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "1451684469",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503143724",
+        "voter": "eagleboy"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4246677071",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5638092469",
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190823664",
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "735931525",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "8568009585",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2761345091",
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2402641666",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1999636620",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2939011273",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27270217180",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138921195",
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2365271575",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2025702455",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9403875149",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "6405114173",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55893569",
+        "voter": "damascusvg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10867499123",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4584980140",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54659026",
+        "voter": "lewd-conduct"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "2165334759",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53833088",
+        "voter": "viking-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1542240432",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83727122442",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98655344",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "861709729",
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1322523997",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87226644",
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416157082",
+        "voter": "iontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3789871092",
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339045960",
+        "voter": "julia26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165335582",
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158344401",
+        "voter": "kolin.evans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146428143",
+        "voter": "anysound.studio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136854832",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146022781",
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155127016",
+        "voter": "pac3mak3r"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>The War on Open Science</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/640px-AaronSwartzPIPAbc599.jpg\" width=\"640\" height=\"424\"/></p>\n<p>1</p>\n<p><em><strong>On the 11th of January 2013, </strong></em><a href=\"https://en.wikipedia.org/wiki/Aaron_Swartz\"><em><strong>Aaron Swartz</strong></em></a><em><strong>, a 26 year old internet activist was found dead in his Brooklyn apartment. &nbsp;He had been arrested 2 years earlier and was facing a variety of charges relating to downloading a large number of academic journal articles from an MIT server with the aim of making them available online for free.</strong></em></p>\n<p>Swartz was facing up to 50 years in prison on what seemed to be an extreme over-reaction to the actions of a young man who was trying to further the cause of the open access movement. &nbsp;It seems the stress of the situation and the aggression of the prosecution of this case caused the young man to take his own life.</p>\n<h3>This was all for the idealism of wanting open access to academic information much of which is publicly funded. &nbsp;He wanted a better world where scientific progress would not be hindered by the vested interests of publishing companies and unfortunately he payed for this \"great crime\" with his life.</h3>\n<p>Similar to what Swartz was attempting, Sci-Hub is an online archive in Russia that shares research articles from many journals freely. &nbsp;It currently hosts over 48 million articles and is being sued by publishing giant Elsevier for copyright infringement. &nbsp;Due to it's location it has been sheltered from the kind of legal sanctions it would face if it were located in the west. &nbsp;</p>\n<p>The final outcome of the legal action against them is anyone's guess but it is likely that the full force of the US government will be used to try to stop them, much in the way it was used against Swartz.</p>\n<p><em><strong>Anyone who dares to challenge the vested interests in this case is likely to have war declared against them by nation states who are more concerned about protecting these interests than their own public or indeed the use of their own funds.</strong></em></p>\n<p>In this case it was the US government but most other Western governments would do exactly the same.</p>\n<h3>Copyright infringement is seemingly one of the worst crimes you can commit. &nbsp;The fact that much of this material was created using public money doesn't seem to matter to those that pursue the infringers.</h3>\n<p>In the rest of this article I hope to briefly cover why I feel that this is basically a form of war on Science and scientific progress itself.</p>\n<hr />\n<h1>The Current Situation is a \"Racket\"</h1>\n<h1><img src=\"https://www.steemimg.com/images/2016/09/08/33-1243179569caiVd09e6.jpg\" width=\"800\" height=\"533\"/></h1>\n<p>2</p>\n<h1><em><strong>Three and a half years after Swartz' death we are still in a situation where the vast majority of scientific research is held captive behind pay walls. &nbsp;This is doubly scandalous given that a significant quantity of this research is publicly funded. &nbsp;</strong></em></h1>\n<p>The US alone spent about $158 billion on publicly funded research in 2013. &nbsp;The vast majority of this research was published in journals that require payment to be viewed.</p>\n<h3>Even if one doesn't believe that all research should be freely available why should research that is funded by the public be closed and require payment to be reviewed? &nbsp;</h3>\n<h3>This is equivalent to making the public pay twice for the same research. &nbsp;</h3>\n<h3><em>All the funds from payment go entirely to the journals. &nbsp;</em></h3>\n<p>None of it goes towards the researchers, authors or back to the public to fund further research. &nbsp;</p>\n<p>The journals are effectively being given free material to publish which they then monetise purely for their own gain. &nbsp;</p>\n<p>They hold the copyright to all their published articles despite not being the original authors of them.</p>\n<h3>In what other situation can someone profit from selling and copyrighting a product which is made and tested almost entirely by others including the public itself?</h3>\n<p>It is complete insanity and it must stop.</p>\n<hr />\n<h1>Journals Have Costs But The Costs Are Inflated</h1>\n<p>Nobody is denying that the journals have costs but there are some misconceptions that relate to this. &nbsp;</p>\n<h3>Firstly the actual peer review process is carried out for free by academics (usually affiliated with Universities).&nbsp;</h3>\n<p>The journals themselves are only responsible for the costs of filtering submissions and the actual publication itself. &nbsp;These are known as APCs (Article Processing Charges). &nbsp;&nbsp;</p>\n<h3>When paid journals have been compared in price to open journals the APCs an be as much as 3 times higher. &nbsp;</h3>\n<p>Further a large chunk of these costs comes from the physical publication process something which does not apply to online publication.</p>\n<hr />\n<h1>The Scientific Method Depends on Openness</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/The_Scientific_Method_as_an_Ongoing_Process.svg8b9c6.png\" width=\"728\" height=\"600\"/></p>\n<p>3</p>\n<h3>I won't bore you all by going into the details of the scientific method. &nbsp;The <a href=\"https://en.wikipedia.org/wiki/Scientific_method\">wikipedia article </a>here covers it quite well and the image above (by <a href=\"https://commons.wikimedia.org/wiki/User:ArchonMagnus\">ArchonMagnus</a>) taken from it provides a nice summary of the basics. &nbsp;</h3>\n<p>The \"other components section\" in the second part of the article is important here and I have summarised the headings here as they are pretty self-explanatory:</p>\n<p><em><strong>\"The scientific method also includes other components required even when all the iterations of the steps above have been completed:</strong></em></p>\n<ol>\n  <li><em><strong>Replication</strong></em></li>\n  <li><em><strong>External review</strong></em></li>\n  <li><em><strong>Data recording and sharing\"</strong></em></li>\n</ol>\n<p>All of the above components are necessary for real scientific progress. &nbsp;</p>\n<p>We need replication to show that research findings are not spurious. &nbsp;External review is necessary to look for and exclude sources of error or poor research technique that the authors may have missed. &nbsp;Data recording and sharing is necessary for the same reason so that others can look at the raw data and perform their own analysis, looking for statistical anomalies etc.</p>\n<h3>This is all vital for the sustained and healthy progress of all scientific fields. &nbsp;Information must be open for true scientific progress to occur.</h3>\n<p>This lack of openness also leads to a slowing down of the scientific process. &nbsp;Papers are often delayed for months due to errors and rewrites. &nbsp;Many of these could be more quickly identified if papers are published in preliminary form online as pioneered by ArXiv.</p>\n<h3>The TLDR is that fighting open research is akin to declaring war on the scientific method itself. &nbsp;</h3>\n<h3>The result is a system which is slower, has more flaws and potentially even shuts down certain potential avenues of advancement.</h3>\n<h3><em>Whatever the journal publishers may say : &nbsp;</em><em><strong>paywalls = censorship</strong></em><em>.</em></h3>\n<hr />\n<h1>Grey Research and Another Type of Censorship</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/iStock_64854985_SMALL46da6.jpg\" width=\"759\" height=\"632\"/></p>\n<p>4</p>\n<h3>Further there is a lot of unpublished \"grey research\" - these are papers that have no findings or have negative findings. &nbsp;</h3>\n<p>This kind of research is not considered \"sexy\" enough to be published by the major journals but from a purely scientific perspective it is just as important as the kind of studies that make headlines.&nbsp;</p>\n<h3>This is a kind of soft censorship.&nbsp;</h3>\n<p>At University I was shocked to see quite how much medical research in particular was consigned to archives where it would not see the light of day because it was not considered to be publishable. &nbsp;Not due to being improper research but because of just this sort of issue. &nbsp;</p>\n<h3>The failure to consider these kinds of studies leads to a significant skewing effect on the positive findings of those studies that do get published. &nbsp;The ultimate effect is that we do not get the big picture. &nbsp;This is particularly of concern in medical research where we only really see overtly positive studies.</h3>\n<p>Some research is also deliberately \"shelved\" if it doesn't agree with the agenda of one or more of the funding organisations. &nbsp;We have seen multiple scandals in relation to drug companies trying to hide certain research related to lucrative drugs as and side effects or adverse outcomes in the last couple of decades. &nbsp;Antidepressants and suicide risk is <a href=\"http://www.telegraph.co.uk/science/2016/03/14/antidepressants-can-raise-the-risk-of-suicide-biggest-ever-revie/\">just one recent example</a>.</p>\n<p>It is impossible to say how many people may have died or been seriously harmed as a result of these kind of actions.</p>\n<p><em><strong>This is not a new thing and is more akin to a deliberate hard censorship. </strong></em>&nbsp;</p>\n<h3>This is one of the reasons why I believe all research particularly that with public safety/health implications should be made public.</h3>\n<hr />\n<h1>Even Large Universities Can't Afford Access</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/Widener_Library_Harvard_University_Cambridge_MA6978c.jpg\" width=\"640\" height=\"408\"/></p>\n<p>5</p>\n<h3>In 2012 Havard University which is one of the worlds largest and wealthiest Universities announced that it could no longer continue affording to subscribe to all the journals which it had previously. &nbsp;</h3>\n<p>They cited multiple increases in journal prices in the preceeding years as the reason. &nbsp;The vast majority of journals are owned by 3 major publishers who offer them in bundles - much like cable TV packages. &nbsp;Universities must negotiate prices for bundles and there is no set price. &nbsp;</p>\n<h3>The vast monopolies created by these companies mean that there is little competition to lower prices.</h3>\n<p>Prices have continued to increase despite the fact that the internet has substantially lowered the costs of publishing and disseminating information. &nbsp;From 1984 to 2002 alone the cost increased by 600%.</p>\n<h3>This is particularly ridiculous when some of the research that the Universities must pay for is research they themselves conducted!</h3>\n<p>If large Universities can't afford this then there is no way that smaller institutions or indeed individual scientists or members of the public can afford to.</p>\n<hr />\n<h1>What is Open Access?</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/open-book-1378562978Vki3650a.jpg\" width=\"800\" height=\"531\"/></p>\n<p>6</p>\n<p>There are a number of slightly <a href=\"https://en.wikipedia.org/wiki/Open_access\">different definitions</a> but the basic thrust of it is contained in this excerpt from the Budapest Open Access Initiative in February 2002 relating to online access to academic journal articles:</p>\n<h3><em>\"There are many degrees and kinds of wider and easier access to this literature. By 'open access' to this literature, we mean its free availability on the public internet, permitting any users to read, download, copy, distribute, print, search, or link to the full texts of these articles, crawl them for indexing, pass them as data to software, or use them for any other lawful purpose, without financial, legal, or technical barriers other than those inseparable from gaining access to the internet itself. The only constraint on reproduction and distribution, and the only role for copyright in this domain, should be to give authors control over the integrity of their work and the right to be properly acknowledged and cited.\"</em></h3>\n<p>This is what Swartz and many others in the open access community have been trying to achieve. &nbsp;</p>\n<p><strong>Sadly it seems the main thing holding open access back is&nbsp;</strong></p>\n<ul>\n  <li><strong>The \"culture\" within the scientific community which falsely believes that paid journals are a necessity.&nbsp;</strong></li>\n  <li><strong>The vast lobbying power that the large consolidated multi-billion dollar publishing companies that own the big journals have which allows them to manipulate governments.</strong></li>\n</ul>\n<hr />\n<h1>Can Blockchains Help?</h1>\n<p>I am not a programmer or coder so I must apologise if I am incorrect in my understanding here. &nbsp;</p>\n<h3>If a platform like Steemit can place large amounts of articles on a blockchain then I don't see why something similar could not be done for scientific research.</h3>\n<h3>The decentralised nature of a blockchain would prevent censorship by vested interests (publishers, drug companies etc.). &nbsp;</h3>\n<p>If a culture could be created where all research was placed on an academic blockchain like this as a basic prerequisite then both issues of access and lost research could be substantially reduced.</p>\n<p>As long as the blockchain remained in existence so would the research and all the associated data. &nbsp;Grey or hidden research could potentially be made a thing of the past.</p>\n<p>Anyone could access any research data anywhere in the world. &nbsp;It would require a lot of work and a lot of cultural change but I believe it to be feasible.</p>\n<hr />\n<h1>Some Signs of Hope</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_76511897_SMALL42a71.jpg\" width=\"848\" height=\"565\"/></p>\n<p>7</p>\n<p>There do appear to be some signs of change. &nbsp;Organisations such as PLoS (<a href=\"https://www.google.co.uk/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;cad=rja&amp;uact=8&amp;ved=0ahUKEwjmlq-bpYDPAhWFCMAKHdbbD8oQFggeMAA&amp;url=https%3A%2F%2Fwww.plos.org%2F&amp;usg=AFQjCNHD3YE-emOnoKJ8zjKDZ7ANvWFlIw&amp;sig2=a7_T5eyYCS8dC4UNNabgSw\">Public Library of Science</a>), <a href=\"https://en.wikipedia.org/wiki/PubMed_Central\">PubMed Central</a> and <a href=\"https://www.google.co.uk/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=4&amp;sqi=2&amp;ved=0ahUKEwignZCEqIDPAhVlLMAKHV7ZB8gQFggzMAM&amp;url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FArXiv&amp;usg=AFQjCNFtJ0miuq3iMwen_obEMJQsE-4XUw&amp;sig2=MMLyMay5noGlB6c7w6BbYA&amp;bvm=bv.131783435,d.ZGg\">ArXiv</a> have embraced the open access ethos. &nbsp;</p>\n<p>PLOS has a \"no questions asked\" waver for APCs to remove any financial barriers to publication. &nbsp;Some open access journals don't charge any fees at all.</p>\n<p>Governments have also tried to embrace change to some degree. &nbsp;For example the US National Institute for Health (NIH) which accounts for 50% of government funding aims to make all research which it funds publicly available within a year. &nbsp;</p>\n<h3>The major publishers had asked for a longer embargo so whilst the delay is not ideal it can be seen as a victory of sorts if a mixed one at that.</h3>\n<p><em><strong>Edit: @lemouth has also made me aware of the following iniative in the comments (his words):</strong></em></p>\n<p>\"First, about the <a href=\"https://scoap3.org/\">SCOAP3 initiative</a>. It is a particle physics initiative where a fee is paid to all publishers. In exchange, all particle physics research articles are freely available to anyone. It is not really open access, but it is already a progress.</p>\n<p>An interesting other example in particle physics is the <a href=\"http://jhep.sissa.it/jhep/\">JHEP journal</a> which is a peer-reviewed journals that is entirely online and free.</p>\n<p>You may also want to check the <a href=\"https://pevo.science/\">pevo project</a>.\"</p>\n<hr />\n<h1>Conclusions</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/Aaron_Swartz_at_Boston_Wikipedia_Meetup_2009-08-188dad3.jpg\" width=\"600\" height=\"480\"/></p>\n<p>8</p>\n<h3>The lack of open access to scientific research is something that affects us all and not just individuals like the late Aaron Swartz.</h3>\n<p>A slow cultural change seems to be occurring within the scientific community however this change is not occurring quickly enough and there is significant resistance from the publishing companies whose profits depend on keeping the status quo.&nbsp;</p>\n<h3>Raising awareness of this issue through discussions and articles such as this is an important part of assisting this change.</h3>\n<h3>My hope is that that we can have unfettered access to all publicly funded research at the very least within the next decade.</h3>\n<p>How many more lives could be saved and enhanced by the accleration of progress that could be accomplished by the adoption by Open Access and publicly available research?</p>\n<h3>Let us hope that Aaron Swartz did not die in vain and that the madness of the current system will be abolished. &nbsp;</h3>\n<h3><em>That would be a fitting tribute to a young man whose only real crime was idealism.</em></h3>\n<h3><em>THE END</em></h3>\n<hr />\n<p><em>I hope you found this article stimulating and easy to read. &nbsp;Please feel free to add your comments and continue the discussion below.</em></p>\n<p><em><strong>(Apologies in advance for any mistakes I may have missed.)</strong></em></p>\n<p><em><strong>If you like my work please follow me and check out my previous work, photography and tutorials &nbsp;@thecryptofiend .</strong></em></p>\n<hr />\n<h2><em>Credits:</em></h2>\n<p><em>Although I used a lot of my own personal experience and knowledge in writing this I also found a number of sources to be invaluable. &nbsp;The following articles are great sources of information and well worth reading for further information:</em></p>\n<ol>\n  <li><a href=\"http://www.wired.com/2016/04/stealing-publicly-funded-research-isnt-stealing/\"><em>Merkley, Ryan (2016) \"You Pay to Read Research You Fund. That\u2019s Ludicrous\" &nbsp;: Wired Magazine 18th April 2016: Accessed 7th September 2016</em></a></li>\n  <li><em>&nbsp;</em><a href=\"http://gizmodo.com/why-is-science-behind-a-paywall-504647165\"><em>Mayyasi, Alex (2013).\"Why Is Science Behind a Paywall?\": Gizmodo. &nbsp;13th May 2013: Accessed 7th September 2016</em></a></li>\n  <li><a href=\"https://www.theguardian.com/science/blog/2013/jan/17/open-access-publishing-science-paywall-immoral\"><em>Taylor, Mike (2016) \"Hiding your research behind a paywall is immoral\": The Guardian. &nbsp;17th January 2013: Accessed 7th September 2016</em></a></li>\n</ol>\n<p><em>I have also linked to relevant Wikipedia articles which I found useful in the actual body of the post.&nbsp;</em></p>\n<ul>\n  <li><a href=\"https://en.wikipedia.org/wiki/File:AaronSwartzPIPA.jpg\"><em>Photograph 1 of Aaron Swartz is CC by Daniel J. Sieradski and taken from Wikepedia</em></a><em>. &nbsp;</em></li>\n  <li><em>Photo 5 is Widener Library, Harvard University, Cambridge Massachusetts by John Phelan.&nbsp;</em></li>\n  <li><a href=\"https://en.wikipedia.org/wiki/File:Aaron_Swartz_at_Boston_Wikipedia_Meetup,_2009-08-18.jpg\"><em>Photo 8 is Aaron Swartz at Boston Wikipedia Meetup, 2009 08 18 - by Sage Ross.</em></a></li>\n  <li><em>All other photographs are either licensed from IstockPhoto(4,7) or are public domain (2).&nbsp;</em></li>\n</ul>\n</html>",
+    "body_length": 19426,
+    "cashout_time": "2016-10-10T01:03:36",
+    "category": "science",
+    "children": 41,
+    "created": "2016-09-08T20:45:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"science\",\"politics\",\"life\",\"steemit\",\"steemsquad\"],\"users\":[\"lemouth\",\"thecryptofiend\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/08\\/640px-AaronSwartzPIPAbc599.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/08\\/33-1243179569caiVd09e6.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/08\\/The_Scientific_Method_as_an_Ongoing_Process.svg8b9c6.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/08\\/iStock_64854985_SMALL46da6.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/08\\/Widener_Library_Harvard_University_Cambridge_MA6978c.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/08\\/open-book-1378562978Vki3650a.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/31\\/iStock_76511897_SMALL42a71.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/08\\/Aaron_Swartz_at_Boston_Wikipedia_Meetup_2009-08-188dad3.jpg\"],\"links\":[\"https:\\/\\/en.wikipedia.org\\/wiki\\/Aaron_Swartz\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Scientific_method\",\"https:\\/\\/commons.wikimedia.org\\/wiki\\/User:ArchonMagnus\",\"http:\\/\\/www.telegraph.co.uk\\/science\\/2016\\/03\\/14\\/antidepressants-can-raise-the-risk-of-suicide-biggest-ever-revie\\/\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Open_access\",\"https:\\/\\/www.google.co.uk\\/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwjmlq-bpYDPAhWFCMAKHdbbD8oQFggeMAA&url=https%3A%2F%2Fwww.plos.org%2F&usg=AFQjCNHD3YE-emOnoKJ8zjKDZ7ANvWFlIw&sig2=a7_T5eyYCS8dC4UNNabgSw\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/PubMed_Central\",\"https:\\/\\/www.google.co.uk\\/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&sqi=2&ved=0ahUKEwignZCEqIDPAhVlLMAKHV7ZB8gQFggzMAM&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FArXiv&usg=AFQjCNFtJ0miuq3iMwen_obEMJQsE-4XUw&sig2=MMLyMay5noGlB6c7w6BbYA&bvm=bv.131783435,d.ZGg\",\"https:\\/\\/scoap3.org\\/\",\"http:\\/\\/jhep.sissa.it\\/jhep\\/\",\"https:\\/\\/pevo.science\\/\",\"http:\\/\\/www.wired.com\\/2016\\/04\\/stealing-publicly-funded-research-isnt-stealing\\/\",\"http:\\/\\/gizmodo.com\\/why-is-science-behind-a-paywall-504647165\",\"https:\\/\\/www.theguardian.com\\/science\\/blog\\/2013\\/jan\\/17\\/open-access-publishing-science-paywall-immoral\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/File:AaronSwartzPIPA.jpg\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/File:Aaron_Swartz_at_Boston_Wikipedia_Meetup,_2009-08-18.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T16:02:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9629533121706,
+    "parent_author": "",
+    "parent_permlink": "science",
+    "pending_payout_value": "11.712 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-war-on-open-science-scientific-journals-and-the-research-racket",
+    "post_id": 896028,
+    "promoted": "60.000 HBD",
+    "replies": [],
+    "root_title": "The War on Open Science: Scientific Journals and the Research Racket",
+    "title": "The War on Open Science: Scientific Journals and the Research Racket",
+    "total_payout_value": "0.000 HBD",
+    "url": "/science/@thecryptofiend/the-war-on-open-science-scientific-journals-and-the-research-racket"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56552011596",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511469118897",
+        "voter": "panadacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7555713528500",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30843061442454",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27395041579722",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14710620152586",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7285545853827",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639017949223",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120823881116",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1361006942848",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3087717611170",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "903644666773",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4773090322616",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304707236256",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3717261539",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204675696436",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4512589209",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836491819",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6994301163857",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1681576142026",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64585928477",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26807960299",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52040947652",
+        "voter": "simba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992183894",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256346717",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16137456259",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2461162230926",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17227720501",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1481653503129",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79076376247",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1158072809579",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19379068574",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746998903",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160170058",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21226399148",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79849633278",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7072408018",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345687346",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61971937067",
+        "voter": "jbrukh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14120286327",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11764194990",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "857301606",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50653316655",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331445397660",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146338907129",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3904328205",
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15120895778",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9393268741",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2886728165",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236718643421",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19760502492",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5175826909",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3991057200",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594411779965",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83585046836",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "194066877",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24100152340",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46956093933",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253328229625",
+        "voter": "streemian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333917831941",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3433964636",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60408406263",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19678749446",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76885823202",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17150857868",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55570611575",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71029480563",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602274816695",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219296977144",
+        "voter": "stino-san"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787378347",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79323081826",
+        "voter": "kennyrowe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7451914321",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348076197",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328466573548",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13341936959",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184099934656",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29602012033",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5975309259",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41365731817",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421645670832",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "600824988",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244193243751",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12012664886",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12656777577",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63730888119",
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40287404686",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4385951167",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35520505469",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10882055117",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90474123932",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11980312580",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128358585351",
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361800166976",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333724711",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7993852323",
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8884312004",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14102203767",
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52891144095",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251773480648",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51864731391",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98645191189",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47923726610",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76218554853",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120980236742",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4356049611",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9210929839",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489781497415",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50447479153",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4794047234",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13619007326",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72772268054",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1021214632",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1987820492",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5519713990",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2108350694",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177093906602",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35389878923",
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7127732569",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193323965629",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5587050400",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23705317509",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5005078083",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115459710020",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "76100049533",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245355474944",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281681849",
+        "voter": "mark-larkento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5144476703",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58484100128",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6591597330",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1998200922",
+        "voter": "uniwhisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7741509209",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1057565128",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1901149350",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36625674455",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43717579213",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58427909109",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14008729067",
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25188580874",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "825830940409",
+        "voter": "coinfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4062959194",
+        "voter": "azaan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59296970731",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17542635624",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5647458531",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5826412643",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250579833",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49960466722",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230286299005",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3124603257",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188239143185",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "294757358",
+        "voter": "sonyanka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4237212015",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39864624930",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254327145",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1049350171",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30857263588",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5007128291",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27485211482",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5071655236",
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2762148097",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29657229926",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46620076246",
+        "voter": "krypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12009755121",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464246337",
+        "voter": "paliboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10571066240",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310534090",
+        "voter": "freemanit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248004578",
+        "voter": "daskalov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220027099642",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14365696774",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10295818487",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68899170977",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1260505392",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "626349713189",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24946428255",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "774112662",
+        "voter": "instancex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6834470355",
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149731266",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1926175201",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56651802574",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263387483",
+        "voter": "devnull"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67378517201",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497898464578",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1678609165",
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10584865103",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105794058385",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2470800174",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1307280568",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92285211197",
+        "voter": "alexbeyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4888687973",
+        "voter": "anasya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42566323881",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1074932980",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7880126960",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365864974",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27985896579",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "724161745",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46654773154",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173088114185",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5455209595",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "561842584",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3401605367",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2790641567",
+        "voter": "dogguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13515182413",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170107519020",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191671368237",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34302508750",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100539828602",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1752183397",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8744167389",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473559669",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4620424754",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7188408038",
+        "voter": "matrioshka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33815172651",
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14475805658",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25437260334",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8122847828",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26602862663",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74435622434",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10147166470",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14003146160",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3592262846",
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270874583",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33027429562",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9538122829",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9932083483",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "271185119",
+        "voter": "gobbahfett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1989150391",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78451278702",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582581401",
+        "voter": "damiancraymond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8790939342",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240222938",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1196844666",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646633321",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17908735056",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16956772233",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270836448791",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64497895581",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46173705636",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230498477",
+        "voter": "chris0502"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40253682612",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14477210934",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239794058",
+        "voter": "bertrandlarsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4286053540",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2546024388",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3802303915",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452681946",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5599726368",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001372367",
+        "voter": "jsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1639905382",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2867879894",
+        "voter": "algimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7018155550",
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13520823020",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12199815886",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2423471098",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200207618991",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4211356469",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10586787745",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4480541057",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1306432008",
+        "voter": "iamwne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5695265896",
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252892414867",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1312097787",
+        "voter": "dkpl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322651547057",
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1523240023",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265576474",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31443934085",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8079416854",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6880658953",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19139615934",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2324876192",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118833099",
+        "voter": "kattokassinen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2876522405",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25069699585",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119153378",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4435851942",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9162864301",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40718816585",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70427611427",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2850893413",
+        "voter": "mookosoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116921735",
+        "voter": "armen7777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116065815",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1303549017",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3583759645",
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1526851146",
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107117143",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214143937384",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383182964",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "804229760",
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27456682950",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3441729150",
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3356845875",
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124907433",
+        "voter": "biternator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9224124607",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10651053577",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216424572582",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "795632907",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1124482896",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960761826",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4457136555",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "461208353",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18590977273",
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116415503",
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9971862369",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "877304786",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20107215646",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447867199",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702710547",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23919927675",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7331110558",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19352042538",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "548923337",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1365471076",
+        "voter": "ace108"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10225419274",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33224823611",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225878684",
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5820030787",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9501409477",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291479339",
+        "voter": "nickjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "498982439",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3551218245",
+        "voter": "mpa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172444925",
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12210513842",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364684943",
+        "voter": "angielb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3261041090",
+        "voter": "talyvale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238898910625",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110860946",
+        "voter": "enkaptor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8543772043",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1213863676",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112697881",
+        "voter": "quantum5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25927425773",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30549845433",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1717244666",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2712088097",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4272386107",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5119555899",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103731938872",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11449419866",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1227088189",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1448774124",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49271789490",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9674452329",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "728878539",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5765763582",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2007092576",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34409024043",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1505062449",
+        "voter": "shaheer001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67661904",
+        "voter": "elec365"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3776140615",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1142487188749",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2551337745",
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24326163087",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18971432280",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2695153877",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27001013725",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27030190153",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27041373157",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "11256068901",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "89157742160",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "503001464498",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1674465751",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4298529631",
+        "voter": "darknet"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3352051439",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118825691",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3663741566",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5716725347",
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32699512403",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66620085",
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "18380455246",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5749922769",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1577306627",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7630701393",
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26032801888",
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27037187449",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27036106589",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27033478003",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27030667482",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27027905937",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714080860",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62499680897",
+        "voter": "poteshnik83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27026422775",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83194809457",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2003393404",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115810450",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59999750",
+        "voter": "dedushkadiesel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62525016",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "443999506",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "1203705002",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2491516344",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62218938",
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621878548",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1981322769",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773487823",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11196260325",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66841036",
+        "voter": "rdigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282476312",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1176471216",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219820935",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1581151357",
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3081456880",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21084547386",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "774463286",
+        "voter": "digitalhound"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61400550",
+        "voter": "mrdsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2286794384",
+        "voter": "kiddarko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67378137",
+        "voter": "sakkievw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3296276802",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368346483",
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29016292156",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61150408",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1934306097",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87933277074",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51172913",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8603025524",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30790641567",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61094329",
+        "voter": "decred"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "205797786",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5489423513",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64006701",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57412920",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6721098212",
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2132924628",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1009987028",
+        "voter": "shinji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5408158479",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6751064659",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78032233",
+        "voter": "aleksrav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38169102709",
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10302828511",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61941561",
+        "voter": "robertm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77430111",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4314960490",
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588978698",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "596175316539",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39706426221",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5584825445",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57137328867",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62279229",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419866589",
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "178000640",
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120171572",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310778341",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60816781",
+        "voter": "gmskov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60326971",
+        "voter": "bitcoingiveaway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2459985182",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86222282088",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59989087",
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2058848510",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8517078800",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2205820361",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63325102",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6052199234",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61414192",
+        "voter": "tltran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3625170549",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "661355116",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27020719955",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62312186",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17238251931",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "925612937",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3561429993",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23281645867",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64500879503",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12403860648",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182816069",
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "65639915",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1670127515",
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6563374439",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390240189",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7269979111",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11805399986",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1808675047",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57595473",
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4751073341",
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25046976482",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12412591029",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58823974",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57186597",
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236254009",
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105341723",
+        "voter": "jusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1768694119",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57911021",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5897105214",
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59160726",
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151511582",
+        "voter": "elemenya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677034093",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56814493",
+        "voter": "voluntaryelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765065044",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326859258",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57813247",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641422439",
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70753066",
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4901960194",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4397439641",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56574870",
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501310305",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12307727942",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10669669552",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26619749642",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2346590146",
+        "voter": "liquidrainbowx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17521798409",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4058298817",
+        "voter": "jaytaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63486894",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1698145451",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1581743436",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111770582",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4073388292",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55892382",
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86890350",
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4326090147",
+        "voter": "dangis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433968",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12983438771",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54536747",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565305",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11813727828",
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60753524",
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56042508",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5459503279",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1659124232",
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8937897868",
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "645560462",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55020754",
+        "voter": "mightypenguin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72261653",
+        "voter": "readwriteshare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37145604020",
+        "voter": "natureofbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13824417965",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55982050",
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55960386",
+        "voter": "ramonphillips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666711159",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64313705",
+        "voter": "soddenguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210444900261",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266281705",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56349749",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2205631577",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95892869",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25287092822",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95195985",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878868143",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2574202274",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685749074",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218583799",
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4495110193",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73301607",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53724029",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372394498",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216178911754",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74968074",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53671263",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3524973426",
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5290003904",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438649068",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1192974984",
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59538285",
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158058475",
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53103516",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54408230",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10536396534",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1811724100",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53257299",
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52930132",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56067023",
+        "voter": "sic-savidicus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52871755",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183928287",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52834077",
+        "voter": "brazine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52818992",
+        "voter": "cryptvs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52815493",
+        "voter": "dilmacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52812458",
+        "voter": "goldenage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52809020",
+        "voter": "martexcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53862086",
+        "voter": "rogercript"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52802225",
+        "voter": "gnumix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52799734",
+        "voter": "neolus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52791079",
+        "voter": "julivs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52788300",
+        "voter": "dogeconha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52784773",
+        "voter": "faberium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52780229",
+        "voter": "aritanas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206212756",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53829906",
+        "voter": "walteraze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52768593",
+        "voter": "cryptonovas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6085877784",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52700881",
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2341581405",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51234642",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2538790355",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52544177",
+        "voter": "neosteem"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "621745669",
+        "voter": "steemcleaners"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713530224",
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57317168",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47243001315",
+        "voter": "robinhoodwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324296672",
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52710031",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67291773",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807542498",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58144446",
+        "voter": "timothylyrics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453401802",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224325449",
+        "voter": "dedi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565619",
+        "voter": "scotty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126484492",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6901812621",
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2409827818",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066883733",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51565073",
+        "voter": "mattmclester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52553508",
+        "voter": "akaskew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988075153",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54101961",
+        "voter": "iuliuspro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55523890",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651302553",
+        "voter": "antifragile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52098977",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52032356",
+        "voter": "stir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4613621559",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107344655",
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "866184453",
+        "voter": "carlitashaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148269828",
+        "voter": "jimcropper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314429739",
+        "voter": "mattmacreadie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50398372",
+        "voter": "madikantia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51359698",
+        "voter": "dex-san"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51185859",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51155635",
+        "voter": "btc125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50147782",
+        "voter": "disha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53070760",
+        "voter": "neophonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51081240",
+        "voter": "juliecolby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464502884",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50827953",
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "619759284",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50397860",
+        "voter": "imitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50369022",
+        "voter": "borderlinepro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50273081",
+        "voter": "j373my"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3905901072",
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159333932",
+        "voter": "sourdough"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1383492866",
+        "voter": "evalynn25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329629477",
+        "voter": "aldentan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188217107",
+        "voter": "techslut"
+      }
+    ],
+    "author": "robinhoodwhale",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>http://i.imgur.com/8fIQCqX.png</p>\n<p><br></p>\n<p>Robin Hood Whale (RHW) is the community's solution to an essential problem that plagues Steemit: how to get noticed and upvoted before you have a big enough following. Right now, if you are not upvoted by a \u201cwhale\u201d account, it is very difficult to get exposure and any substantial rewards, which leads to many great authors leaving Steemit.</p>\n<p>Robin Hood wants to be the \u201cwhale\u201d that finds and helps a diverse set of talented, yet unrecognized authors. The proposed way of doing this is to cycle between different authors, upvoting ~10-20 quality posts daily. RHW won't upvote the same authors twice in any 10-day period in an effort to support more people and discourage any kind of abuse or ulterior motives.</p>\n<p>For RHW to have any meaningful impact, it must reach whale-status of SP and/or many bot followers. Yet, this is just the tip of the iceberg for this initiative. As featured authors and posts will be publicly announced periodically, we hope to inspire a movement that will lead &nbsp;to authors gaining fans, following and eventually to be able to self-sustain a blog on SteemIT without the RHW help at all.</p>\n<p>In a way, RHW's ultimate goal would be to not be needed at all. But as new enthusiastic authors join, RHW will be here to find them, help them and upvote them, growing the community and the overall quality of what you can find on Steemit.</p>\n<p><br></p>\n<p>http://i.imgur.com/iu8Uf8b.png</p>\n<h2>Curators</h2>\n<p>There\u2019s a total of 10 official curators with a waiting list of other fellow Steemians. Curators are well known SteemIT individuals that dig through the vast amount of content to find hidden gems and undervalued authors.&nbsp;</p>\n<p>We would like to keep the curators list private for the time being, so they can continue working without interruptions.&nbsp;</p>\n<p>*Curators can publicly state they are part of Robin Hood at their sole discretion.*</p>\n<h2>Curation Process</h2>\n<p>Each curator discovers interesting content, including, but not limited to, the new section, steemviz, steemd, promotional channels on Steemit.chat and robinhood-links channel.</p>\n<ol>\n  <li>The author name is checked to ensure it\u2019s out of the 10-day cycle&nbsp;&nbsp;</li>\n  <li>The post is digested</li>\n  <li>The post is checked for plagiarism (with online tools and google)</li>\n  <li>The post is checked for Image sources and/or mention of own work</li>\n  <li>The images are run through online tools for reverse image search (if own work is mentioned)</li>\n  <li>If everything stated above is in check the link is submitted to the curator private chat</li>\n  <li>Other curators chime in if they agree or disagree and why</li>\n  <li>If agreed upon the post is upvoted by RHW, mentioned in general chat and listed in the official spreadsheet</li>\n</ol>\n<p>What's In It For Me?</p>\n<p>The more we elevate varied authors the larger the economy of Steemit gets. This benefits everyone since more members will have incentive to stick around. Satisfied members invite more friends if they themselves are successful. As an investor you get a percentage of your total contribution back as Steem each month.</p>\n<p><br></p>\n<p>http://i.imgur.com/HGkOE5P.png</p>\n<p><br></p>\n<h2>Who Will Control The Keys?</h2>\n<p>A multi-signature system is currently being developed to add security and reassure investors that their funds are safe. The system will require two curators to sign off on an upvote, and more team members to agree on more sensitive actions.</p>\n<p>Currently the master key is held by @repholder, the backup master key by @kyriacos and the active key has been added to Streemian (owner - @xeroc).</p>\n<h2>Alpha Testing Results</h2>\n<p>Sample Dates : 20/08-28/08</p>\n<p>Sample Size : 78 Unique Authors&nbsp;</p>\n<p>Average payout : $134.48</p>\n<p>Issues Found: 2 - ID Theft/Plagiarism (which was unvoted) and a manual upvote mistake</p>\n<p><a href=\"https://docs.google.com/spreadsheets/d/11UkN21t27uG9Fo_vRjX8lKasXOU0xIEL4AviCvlMMNw/edit#gid=0\">Spreadsheet of Alpha Testing Featured Authors</a>&nbsp;</p>\n<p><a href=\"https://steemit.com/@laonie\">Updates for users that are censored from Google services</a></p>\n<h2>How Can I Take Part ?</h2>\n<ul>\n  <li>Help find great authors and provide a link to their posts in #robinhood-links.</li>\n  <li>Connect to <a href=\"https://streemian.com/\">Streemian</a> and join the robinhoodwhale trail ( for invite codes contact @instructor2121 on steemit.chat). <em>Note:</em> Streemian uses the active key.</li>\n  <li>Use @lukestokes <a href=\"https://steemit.com/robinhoodwhale/@lukestokes/trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale\">advanced bot guide</a>&nbsp;</li>\n  <li>Provide your posting key to @laonie to add to his own RHW bot follower or use his <a href=\"https://steemit.com/robinhoodwhale/@laonie/how-to-set-up-your-own-voting-bot-for-robinhoodwhale\">setup voting bot guide</a></li>\n  <li>Invest in RHW by sending Steem, SD or Steem power to @robinhoodwhale</li>\n</ul>\n<h2>Steemit.chat Channels</h2>\n<p><a href=\"https://steemit.chat/channel/robinhood\">robinhood</a> - General discussion about the Robin Hood Whale initiative&nbsp;</p>\n<p><a href=\"https://steemit.chat/channel/robinhood-links\">robinhood-links</a> - These are posts to be considered by curators of the Robin Hood Whale initiative. Post other people's work ONLY and please be sure to check if the author has already been featured in the previous 10-day cycle.</p>\n<p><br></p>\n<p>http://i.imgur.com/8TjoV8Y.png</p>\n<p><br></p>\n<h2>Investment in RHW</h2>\n<p>The Robin Hood Whale is accepting investments directly to @robinhoodwhale in the form of Steem, SD or direct Steem powerup.</p>\n<p><strong>Investor Payout</strong> \u2013 A percentage based off total investor contributions (90% for all investors)</p>\n<p><strong>Curator Payout</strong> - 10% of total monthly power down</p>\n<p><strong>Liquid Asset Funds</strong> - Liquid assets from RHW post rewards might be held back by the curator team at their sole discretion.</p>\n<p><strong>Cut-Off for Investments</strong> : 29 September 2016 18:00 UTC</p>\n<p><strong>First Investor Payout</strong> : 7 October 2016&nbsp;</p>\n<p><a href=\"https://docs.google.com/spreadsheets/d/1gkxfeYcKAlJXfa0h7PX0wmHbYf2IjZx3MhJwOsyRsME/edit?ts=57b9723b#gid=0\">Investor List Spreadsheet</a></p>\n<h2>The Team</h2>\n<p>Chief Executive Officer / Curator &nbsp;- @repholder</p>\n<p>Chief Operations Officer / Curator - @instructor2121</p>\n<p>Creative director / Curator - @kyriacos</p>\n<p>Curators - An additional 7 Anonymous SteemIT Users</p>\n<h2>Sister Projects</h2>\n<p><a href=\"https://steemit.com/@steemcleaners\">Steemcleaners</a></p>\n<p><a href=\"https://steemit.com/@steemdrive\">Steemdrive</a></p>\n<h2>Disclaimer</h2>\n<p>Investing in robinhoodwhale (RHW) involves significant risk and can result in the loss of your invested capital. You should not invest more than you can afford to lose and should ensure that you fully understand the risks involved. The bulk of investments will be held as Steem Power.</p>\n<p>&nbsp;[Special thanks to <a href=\"https://steemit.com/@kyriacos\">@kyriacos</a> for the awesome <a href=\"https://steemit.com/introduceyourself/@robinhoodwhale/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore\">poem</a>,logo and graphics]&nbsp;</p>\n</html>",
+    "body_length": 7352,
+    "cashout_time": "2016-09-29T22:26:18",
+    "category": "robinhoodwhale",
+    "children": 134,
+    "created": "2016-08-29T18:20:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"robinhoodwhale\",\"rhw\",\"steem\",\"steemit\",\"robinhood-links\"],\"users\":[\"repholder\",\"kyriacos\",\"xeroc\",\"instructor2121\",\"lukestokes\",\"laonie\",\"robinhoodwhale\"],\"image\":[\"http:\\/\\/i.imgur.com\\/8fIQCqX.png\",\"http:\\/\\/i.imgur.com\\/iu8Uf8b.png\",\"http:\\/\\/i.imgur.com\\/HGkOE5P.png\",\"http:\\/\\/i.imgur.com\\/8TjoV8Y.png\"],\"links\":[\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/11UkN21t27uG9Fo_vRjX8lKasXOU0xIEL4AviCvlMMNw\\/edit#gid=0\",\"https:\\/\\/steemit.com\\/@laonie\",\"https:\\/\\/streemian.com\\/\",\"https:\\/\\/steemit.com\\/robinhoodwhale\\/@lukestokes\\/trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale\",\"https:\\/\\/steemit.com\\/robinhoodwhale\\/@laonie\\/how-to-set-up-your-own-voting-bot-for-robinhoodwhale\",\"https:\\/\\/steemit.chat\\/channel\\/robinhood\",\"https:\\/\\/steemit.chat\\/channel\\/robinhood-links\",\"https:\\/\\/docs.google.com\\/spreadsheets\\/d\\/1gkxfeYcKAlJXfa0h7PX0wmHbYf2IjZx3MhJwOsyRsME\\/edit?ts=57b9723b#gid=0\",\"https:\\/\\/steemit.com\\/@steemcleaners\",\"https:\\/\\/steemit.com\\/@steemdrive\",\"https:\\/\\/steemit.com\\/@kyriacos\",\"https:\\/\\/steemit.com\\/introduceyourself\\/@robinhoodwhale\\/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T12:37:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 133805889100534,
+    "parent_author": "",
+    "parent_permlink": "robinhoodwhale",
+    "pending_payout_value": "1987.239 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "announcing-robinhoodwhale-the-steemit-deep-sea-savior",
+    "post_id": 792036,
+    "promoted": "58.148 HBD",
+    "replies": [],
+    "root_title": "Announcing RobinHoodWhale, the Steemit Deep Sea Savior",
+    "title": "Announcing RobinHoodWhale, the Steemit Deep Sea Savior",
+    "total_payout_value": "0.000 HBD",
+    "url": "/robinhoodwhale/@robinhoodwhale/announcing-robinhoodwhale-the-steemit-deep-sea-savior"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "936485500020",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3718242946",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513908950",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836654069",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64676583521",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992692418",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256370467",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "779706217649",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451819636",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747149284",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160439161",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6821654706",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345736815",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11533590302",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177816889458",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "542833790",
+        "voter": "pinnpe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "861550113201",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787980118",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12095791916",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501242325",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413536128",
+        "voter": "lyubovnam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649863857",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1293405725",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59751474240",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39504015264",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140706312966",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1074932980",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16192083951",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34393459049",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235543115",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6039610222",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1722523564",
+        "voter": "cats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70060197",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128178174",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26803377685",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9224124607",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8183954680",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2245256363",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68374322397",
+        "voter": "malaiandrueth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25927425773",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28503380534",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6457378869",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65123045108",
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562498382",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270786218",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12664228330",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25564668758",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1269737381",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87000119",
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109956371",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54408230",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56130433",
+        "voter": "jessica.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322790516",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50387100",
+        "voter": "lockon"
+      }
+    ],
+    "author": "knircky",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "A little while ago I wrote a [story](https://steemit.com/photography/@knircky/lion-hunting-zebras-and-being-chased-by-buffalo-in-the-masai-mara-afrika) of how the marsh pride of roughly 17 lions had killed a zebra. At the end Scarface showed up and feasted with the rest of the pride. He is the dominant male of a coalition of 3 males that rule several prides in the Masai Mara. He is also a bit of a celebrity. \n\nMe and my wife have been in the Mara for 3 nights now and today is our last day here. We have looked for the pride every day but could not find them again. We have seen one of the other males the day before. He was beautiful but his mane was not as dark as that of Scar. After our drive yesterday, we decided to get up and do one last game drive in the morning before catching our plane at 11 am which will take us to the Serengeti.\n\nWe will be rewarded for waking up early today by getting to see the king of the land one last time.\n\n<a target='_BLANK' href='https://ipfs.pics/QmYfPVJdAcuizxjj6ya3BZmiSSudpFriQ4Tkrq8tV1SuAc'><img src='https://ipfs.pics/ipfs/QmYfPVJdAcuizxjj6ya3BZmiSSudpFriQ4Tkrq8tV1SuAc'/></a>\n\nIt is rainy season in east Africa right now, as it is April. We have experienced quite a bit of rain the last few days. The clouds and rains are different here from what I have ever seen. I think it is truly magnificent. My wife is not as enthusiastic and it was not always best for pictures. \n\nWe have also gotten stuck a few times, but our driver always managed to get unstuck without us having to shovel or call other rangers. His name is Benson and he is a true Masai that lives in a Masai village a short travel away from our camp. He is amazing and he loves this place. It is clearly his home and he has a deep connection with the land and many of the animals, such as Scar.\n\nHere is a view over the Mara with the rainy clouds from when we stopped for picnic the day before.\n\n<a target='_BLANK' href='https://ipfs.pics/QmSVsmBmQf7DrEzssrnA6y4G5DGcgdg8qPDLMtJQS3B7Zr'><img src='https://ipfs.pics/ipfs/QmSVsmBmQf7DrEzssrnA6y4G5DGcgdg8qPDLMtJQS3B7Zr'/></a>\n\nThis morning we have been on the road for only a short time. All of a sudden Benson stops the car. He is speaking Masai on the walkie talkie and suddenly is turning around. We are going towards the edge of the Masai game park, where he is allowed to drive the range rover on the gras and off roads.\n\nWe have been here before, it is a huge wide open grassland with almost no trees that stretches towards the Mara river. At the river the landscape changes dramatically. It is bushy there and also forms the end of the game reserve. Our camp is on the other side of the river and it is outside the park. \n\nWe see some cars at a distance gathered around something. And there are hyenas everywhere. We have seen many hyenas the days before as they are truly the most successful predator and certainly the most abundant here. But I have never seen this many together. They are scattered over a large area and some are fighting and quarreling like they always seem to do.\n\n<a target='_BLANK' href='https://ipfs.pics/Qmc51FkjyrzktSrrJg1JqgDAX3TTon1XDHwGadMQhLMf2q'><img src='https://ipfs.pics/ipfs/Qmc51FkjyrzktSrrJg1JqgDAX3TTon1XDHwGadMQhLMf2q'/></a>\n\nIt must be a very successful clan as usually hyenas live in groups around thirty. Today there are certainly more than 30 hyenas here. It looks more like the numbers are in the hundreds, although the biggest clans usually comprise around 80 members. They are scattered in a half-circle around where all the cars are parked and are running around anxiously.\n\n<a target='_BLANK' href='https://ipfs.pics/QmP7WoZkGZptyEkoosqyugxgeZjErfRYnAAxpKBZ14MhMF'><img src='https://ipfs.pics/ipfs/QmP7WoZkGZptyEkoosqyugxgeZjErfRYnAAxpKBZ14MhMF'/></a>\n\nWe get to the where the other cars are and now see what the fuss is all about.\n\n<a target='_BLANK' href='https://ipfs.pics/QmfE8EM7REGqvTEe4sSu9qehQtb2TttYSWhnGGz3ktyCCt'><img src='https://ipfs.pics/ipfs/QmfE8EM7REGqvTEe4sSu9qehQtb2TttYSWhnGGz3ktyCCt'/></a>\n\nIt is Scareface and what appears to be a dead hippo. Because Scarface is part of a coalition that control at least two prides, they often split up and travel back and forth between the two territories. Lions are known to patrol their lands while females tend to stay together forever and do not move quite as much.\n\nWhen we saw the females kill the zebra a few days before some people in the cars were talking about how male lions are lazy and rarely kill anything. \n\nBenson laughed at them. Clearly that is not the case. Around the dead hippo there is mud everywhere. A small circle of mud is around the carcass but there is a much bigger area where the grass has been replaced by wet black dirt. The struggle must have been enormous, quite different from the practical instant kill the lionesses have performed on the zebra. A hippo is probably quite a difficult animal to kill. I did not even know that these animals were on the lions menu.\n\n<a target='_BLANK' href='https://ipfs.pics/QmReNuJjduduswRJYwsmEwL9kF11gEScgJcgNK2V9NLHGv'><img src='https://ipfs.pics/ipfs/QmReNuJjduduswRJYwsmEwL9kF11gEScgJcgNK2V9NLHGv'/></a>\n \nScarface is eating the intestines and the belly flesh of the hippo. He is clearly enjoying it. \nI ask Benson to move around to get different views of him. At one point we get a sniff of what was inside that belly. It stinks horribly bad. Benson quickly moves the car again so he does not have to smell it, while holding his nose closed. Quite a wuss for a former Masai warrior.\n\nWe are not the only ones watching the spectacle. There are many other photographers, tourists in range rovers and of course the hyenas are still lurking and quarreling. Either there are members of different clans around the kill or they are pre-negotiating the access to the hippos when Scar moves on. For a big lion this animal might appear huge but for all these hyenas it won't be enough.  \n\n<a target='_BLANK' href='https://ipfs.pics/QmdLpkhx9P4eG32CWyGDjUobVmutAnwuqNoxSj5xLyeDn1'><img src='https://ipfs.pics/ipfs/QmdLpkhx9P4eG32CWyGDjUobVmutAnwuqNoxSj5xLyeDn1'/></a>\n\nThey still keep their distance. \n\n<a target='_BLANK' href='https://ipfs.pics/QmTchpqWxG4NqoMegWY6RAvxMxQARfKSTRH4kziqeKhuMr'><img src='https://ipfs.pics/ipfs/QmTchpqWxG4NqoMegWY6RAvxMxQARfKSTRH4kziqeKhuMr'/></a>\n\nScar is not the least bit worried. He guards his kill and shows some minor sings of territorial behavior here and there, but mostly he just enjoys his kill and ignores everything else, like a true king would.\n\n<a target='_BLANK' href='https://ipfs.pics/QmbXJtziTZUY8fsVYFWJRBuBFwe11pVGwD6K1x7Q43VNs6'><img src='https://ipfs.pics/ipfs/QmbXJtziTZUY8fsVYFWJRBuBFwe11pVGwD6K1x7Q43VNs6'/></a>\n\nHe must have been eating for a while as he seems to be getting full. There is only one feisty little jackal that comes very close. Scar seems not happy about it, but also too lazy to do much about it. Further back we see two other jackal fight for access to the scene.\n\n<a target='_BLANK' href='https://ipfs.pics/QmYmJ8xBavR6qTz18ww9LYrSvHbTdSKJPXcg5iqbmhTgVe'><img src='https://ipfs.pics/ipfs/QmYmJ8xBavR6qTz18ww9LYrSvHbTdSKJPXcg5iqbmhTgVe'/></a>\n\nAfter a while Scar seems to have a full belly, as all he does now is look around. I wonder if he is looking for other members of his pride.\n\n<a target='_BLANK' href='https://ipfs.pics/QmcE8PUJtv3tUA7hFLwNrSsb7qc9MphYroSZDQ5U15niee'><img src='https://ipfs.pics/ipfs/QmcE8PUJtv3tUA7hFLwNrSsb7qc9MphYroSZDQ5U15niee'/></a>\n\nShortly thereafter even that is too much work and he just lays sleepy in the mud. You can see on the edge of the picture there is a camp. That camp is outside of the park, that is how close we are to the edge of the park. This is also why the hyenas are not on the pictures with Scar. They are behind the cars coming from inside the park.\n\n<a target='_BLANK' href='https://ipfs.pics/QmZSRV6CYNEbLc4JEi2MaL7uuCphpSKkdGmVwDK1N5TACk'><img src='https://ipfs.pics/ipfs/QmZSRV6CYNEbLc4JEi2MaL7uuCphpSKkdGmVwDK1N5TACk'/></a>\n\nEven though Scarface is laying flat on the ground now, the hyenas are still not coming closer. I cannot believe the respect this huge clan is showing to this one lion.\n\nWe do not stick around to the end and I do not know when Scarface will leave and if the hyenas get to finish off the hippo or if the rest of the marsh pride will show up after all.\n\nBenson wants to show us one other places and we drive on.\n\n\nBelow is also a video that tells the same story. I have made it particularly for steem and used an intro from @blockcore. I have tried something new by narrating over it in one take. Let me know if you like it.\n\nThe video is 5 minutes long.\n\nhttps://www.youtube.com/watch?v=4f0h8E2QYrs\n\nAlso check out the other story of the march pride that features Scar as well https://steemit.com/photography/@knircky/lion-hunting-zebras-and-being-chased-by-buffalo-in-the-masai-mara-afrika\n\nIt also comes with a video of the whole event.\n\n\n\n### Pleas make sure to upvote and follow me [@knircky](http://steemit.com/photography/@knircky) if you like this story.\n\n## Thank you for your time and attention. \n\nI hope you enjoyed the story, the pictures and my video.\n\nThe pictures and video footage is all taken by me and my wife. She took the first picture of this set, where Scar looks directly at us. This is my favorite picture out of all the roughly 6000 pictures we took over the entire trip.\n\n#### ps. I am reposting this to see if there is an issue with this post or if it just wasn't noticed the first time. I also want to test the new promotion feature and see if that makes a difference.",
+    "body_length": 9590,
+    "cashout_time": "2016-09-30T11:00:24",
+    "category": "lion",
+    "children": 3,
+    "created": "2016-08-30T06:37:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"lion\",\"photography\",\"africa\",\"masai\",\"travel\"],\"users\":[\"blockcore\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/QmYfPVJdAcuizxjj6ya3BZmiSSudpFriQ4Tkrq8tV1SuAc\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmSVsmBmQf7DrEzssrnA6y4G5DGcgdg8qPDLMtJQS3B7Zr\",\"https:\\/\\/ipfs.pics\\/ipfs\\/Qmc51FkjyrzktSrrJg1JqgDAX3TTon1XDHwGadMQhLMf2q\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmP7WoZkGZptyEkoosqyugxgeZjErfRYnAAxpKBZ14MhMF\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmfE8EM7REGqvTEe4sSu9qehQtb2TttYSWhnGGz3ktyCCt\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmReNuJjduduswRJYwsmEwL9kF11gEScgJcgNK2V9NLHGv\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmdLpkhx9P4eG32CWyGDjUobVmutAnwuqNoxSj5xLyeDn1\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmTchpqWxG4NqoMegWY6RAvxMxQARfKSTRH4kziqeKhuMr\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmbXJtziTZUY8fsVYFWJRBuBFwe11pVGwD6K1x7Q43VNs6\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmYmJ8xBavR6qTz18ww9LYrSvHbTdSKJPXcg5iqbmhTgVe\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmcE8PUJtv3tUA7hFLwNrSsb7qc9MphYroSZDQ5U15niee\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmZSRV6CYNEbLc4JEi2MaL7uuCphpSKkdGmVwDK1N5TACk\",\"https:\\/\\/img.youtube.com\\/vi\\/4f0h8E2QYrs\\/0.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/photography\\/@knircky\\/lion-hunting-zebras-and-being-chased-by-buffalo-in-the-masai-mara-afrika\",\"https:\\/\\/ipfs.pics\\/QmYfPVJdAcuizxjj6ya3BZmiSSudpFriQ4Tkrq8tV1SuAc\",\"https:\\/\\/ipfs.pics\\/QmSVsmBmQf7DrEzssrnA6y4G5DGcgdg8qPDLMtJQS3B7Zr\",\"https:\\/\\/ipfs.pics\\/Qmc51FkjyrzktSrrJg1JqgDAX3TTon1XDHwGadMQhLMf2q\",\"https:\\/\\/ipfs.pics\\/QmP7WoZkGZptyEkoosqyugxgeZjErfRYnAAxpKBZ14MhMF\",\"https:\\/\\/ipfs.pics\\/QmfE8EM7REGqvTEe4sSu9qehQtb2TttYSWhnGGz3ktyCCt\",\"https:\\/\\/ipfs.pics\\/QmReNuJjduduswRJYwsmEwL9kF11gEScgJcgNK2V9NLHGv\",\"https:\\/\\/ipfs.pics\\/QmdLpkhx9P4eG32CWyGDjUobVmutAnwuqNoxSj5xLyeDn1\",\"https:\\/\\/ipfs.pics\\/QmTchpqWxG4NqoMegWY6RAvxMxQARfKSTRH4kziqeKhuMr\",\"https:\\/\\/ipfs.pics\\/QmbXJtziTZUY8fsVYFWJRBuBFwe11pVGwD6K1x7Q43VNs6\",\"https:\\/\\/ipfs.pics\\/QmYmJ8xBavR6qTz18ww9LYrSvHbTdSKJPXcg5iqbmhTgVe\",\"https:\\/\\/ipfs.pics\\/QmcE8PUJtv3tUA7hFLwNrSsb7qc9MphYroSZDQ5U15niee\",\"https:\\/\\/ipfs.pics\\/QmZSRV6CYNEbLc4JEi2MaL7uuCphpSKkdGmVwDK1N5TACk\",\"https:\\/\\/www.youtube.com\\/watch?v=4f0h8E2QYrs\",\"http:\\/\\/steemit.com\\/photography\\/@knircky\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T06:37:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 3481571268038,
+    "parent_author": "",
+    "parent_permlink": "lion",
+    "pending_payout_value": "2.884 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "scarface-the-lion-king-of-the-masai-mara-having-breakfast",
+    "post_id": 798178,
+    "promoted": "56.500 HBD",
+    "replies": [],
+    "root_title": "Scarface, the lion King of the Masai Mara having breakfast",
+    "title": "Scarface, the lion King of the Masai Mara having breakfast",
+    "total_payout_value": "0.000 HBD",
+    "url": "/lion/@knircky/scarface-the-lion-king-of-the-masai-mara-having-breakfast"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103012759",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767337211",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54630385693",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662788865",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969741207",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7854212531",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196172883822",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42614571388",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36843514345",
+        "voter": "james-show"
+      },
+      {
+        "percent": "4200",
+        "reputation": 0,
+        "rshares": "4969366608",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425719235",
+        "voter": "murh"
+      },
+      {
+        "percent": "4600",
+        "reputation": 0,
+        "rshares": "7317086245",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1952410101",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "772232700742",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "81263693100",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90260645656",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70211465386",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12270078085",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21814595794",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5036496063",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82825665707",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281411321206",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7349035006",
+        "voter": "dasha"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6902979677",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3123302265",
+        "voter": "shemthepenman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26082666611",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199604454",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241777638",
+        "voter": "joseph.kalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10804582219",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5207653127",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1915822410",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3786490978",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12724748758",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "698553562",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500969295",
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "11746757675",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5708364182",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28391457290",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6816768480",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "158049175233",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2800",
+        "reputation": 0,
+        "rshares": "10368282090",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "96582809483",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3613605686",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "21342093177",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "592163663",
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1413423437",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "1600",
+        "reputation": 0,
+        "rshares": "17722631016",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90362837190",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97359072",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17630450937",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18707660801",
+        "voter": "velourex"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "1558601458",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "492521414",
+        "voter": "future24"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6163744743",
+        "voter": "cristi"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3364592382",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "983179914",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11791793035",
+        "voter": "mione"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "221063150",
+        "voter": "microluck"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "9602930892",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5633302818",
+        "voter": "pjheinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95348313569",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1443290254",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3176016038",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7388942832",
+        "voter": "onetree"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4502523550",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95263797323",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354657306",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64424885",
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1529842033",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54504938",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71766021",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57334634",
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90080404",
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128214991",
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152826693",
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152373326",
+        "voter": "elgatow10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155201147",
+        "voter": "rarcntv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91692568",
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107496727",
+        "voter": "elsi"
+      }
+    ],
+    "author": "micheletrainer",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/hands-600497_1920.jpg</p>\n<p><strong>Where are YOU from?</strong>&nbsp;</p>\n<p>While I\u2019m sitting in LA&nbsp;</p>\n<p>I\u2019m just wondering today&nbsp;</p>\n<p>Are you in a nice caf\u00e9?</p>\n<p>With a view of a nice bay?</p>\n<p>Or maybe in a barn with hay?</p>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/netherlands-97830_1920.jpg</p>\n<p>&nbsp;Is your weather today grey?&nbsp;</p>\n<p>Or perhaps it\u2019s super sunny&nbsp;</p>\n<p>Are you looking at a bunny?&nbsp;</p>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/rabbit-1422882_1920.jpg</p>\n<p>I\u2019m not trying to be funny&nbsp;</p>\n<p>Are you drinking tea with honey?&nbsp;</p>\n<p>We\u2019re all here from different places&nbsp;</p>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/new-york-city-78181_1920.jpg</p>\n<p>Writers, artists with unique faces&nbsp;</p>\n<p>If you wanna share the name of your city&nbsp;</p>\n<p>In the comments or reply&nbsp;</p>\n<p>Maybe someday we\u2019ll eat a pizza pie&nbsp;</p>\n<p>http://i.giphy.com/u98zWbe3jgJoI.gif</p>\n<p>With our Steem dollars we will fly!</p>\n<p>&nbsp;___&nbsp;</p>\n<p>Also share links to your writing or art&nbsp;</p>\n<p>So we won\u2019t feel so far apart!&nbsp;</p>\n<p>__</p>\n<p>If you\u2019re not a robot, why not? &nbsp;</p>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/robot-1214536_1280.png</p>\n<p>__</p>\n<p>&nbsp;<a href=\"https://steemit.com/@micheletrainer\"><strong>For more Michele the Trainer follow me on Steemit&nbsp;</strong></a><a href=\"https://twitter.com/MicheleTrainer\"><strong>and at @MicheleTrainer</strong></a><a href=\"https://twitter.com/MicheleTrainer\"><strong> &nbsp;</strong></a> <strong>Email is my favorite for questions or requests, thanks! &nbsp;&nbsp;</strong>&nbsp;</p>\n<p>Poem is my own, images from Pixabay and gifs from Giphy.</p>\n<p>__</p>\n<p><img src=\"https://robohash.org/stellabelle.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@stellabelle</p>\n<p><img src=\"https://robohash.org/ericvancewalton.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@ericvancewalton</p>\n<p><img src=\"https://robohash.org/cristi.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@cristi</p>\n<p><img src=\"https://robohash.org/micheletrainer.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@micheletrainer</p>\n<p><img src=\"https://robohash.org/mctiller.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@mctiller</p>\n<p><img src=\"https://robohash.org/lukeofkondor.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@lukeofkondor</p>\n<p><img src=\"https://robohash.org/soulsistashakti.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@soulsistashakti</p>\n<p><img src=\"https://robohash.org/mindover.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@mindover</p>\n<p><img src=\"https://robohash.org/mars-eve.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@mars-eve</p>\n<p><img src=\"https://robohash.org/patrick-g.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@patrick-g</p>\n<p><img src=\"https://robohash.org/kaylinart.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@kaylinart</p>\n<p><img src=\"https://robohash.org/romanskv.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@romanskv</p>\n<p><img src=\"https://robohash.org/the-alien.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@the-alien</p>\n<p><img src=\"https://robohash.org/razvanelulmarin.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@razvanelulmarin</p>\n<p><img src=\"https://robohash.org/strangerarray.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@strangerarray</p>\n<p><img src=\"https://robohash.org/lat-nayar.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@lat-nayar</p>\n<p><img src=\"https://robohash.org/ann-hoy.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@ann-hoy</p>\n<p><img src=\"https://robohash.org/future24.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@future24</p>\n</html>",
+    "body_length": 3816,
+    "cashout_time": "2016-10-07T05:58:21",
+    "category": "introduceyourself",
+    "children": 31,
+    "created": "2016-09-05T14:39:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemit\",\"steem\",\"travel\",\"life\"],\"users\":[\"stellabelle\",\"ericvancewalton\",\"cristi\",\"micheletrainer\",\"mctiller\",\"lukeofkondor\",\"soulsistashakti\",\"mindover\",\"mars-eve\",\"patrick-g\",\"kaylinart\",\"romanskv\",\"the-alien\",\"razvanelulmarin\",\"strangerarray\",\"lat-nayar\",\"ann-hoy\",\"future24\"],\"image\":[\"http:\\/\\/www.engineeringwellness.com\\/wp-content\\/uploads\\/2016\\/09\\/hands-600497_1920.jpg\",\"http:\\/\\/www.engineeringwellness.com\\/wp-content\\/uploads\\/2016\\/09\\/netherlands-97830_1920.jpg\",\"http:\\/\\/www.engineeringwellness.com\\/wp-content\\/uploads\\/2016\\/09\\/rabbit-1422882_1920.jpg\",\"http:\\/\\/www.engineeringwellness.com\\/wp-content\\/uploads\\/2016\\/09\\/new-york-city-78181_1920.jpg\",\"http:\\/\\/i.giphy.com\\/u98zWbe3jgJoI.gif\",\"http:\\/\\/www.engineeringwellness.com\\/wp-content\\/uploads\\/2016\\/09\\/robot-1214536_1280.png\",\"https:\\/\\/robohash.org\\/stellabelle.png?size=48x48\",\"https:\\/\\/robohash.org\\/ericvancewalton.png?size=48x48\",\"https:\\/\\/robohash.org\\/cristi.png?size=48x48\",\"https:\\/\\/robohash.org\\/micheletrainer.png?size=48x48\",\"https:\\/\\/robohash.org\\/mctiller.png?size=48x48\",\"https:\\/\\/robohash.org\\/lukeofkondor.png?size=48x48\",\"https:\\/\\/robohash.org\\/soulsistashakti.png?size=48x48\",\"https:\\/\\/robohash.org\\/mindover.png?size=48x48\",\"https:\\/\\/robohash.org\\/mars-eve.png?size=48x48\",\"https:\\/\\/robohash.org\\/patrick-g.png?size=48x48\",\"https:\\/\\/robohash.org\\/kaylinart.png?size=48x48\",\"https:\\/\\/robohash.org\\/romanskv.png?size=48x48\",\"https:\\/\\/robohash.org\\/the-alien.png?size=48x48\",\"https:\\/\\/robohash.org\\/razvanelulmarin.png?size=48x48\",\"https:\\/\\/robohash.org\\/strangerarray.png?size=48x48\",\"https:\\/\\/robohash.org\\/lat-nayar.png?size=48x48\",\"https:\\/\\/robohash.org\\/ann-hoy.png?size=48x48\",\"https:\\/\\/robohash.org\\/future24.png?size=48x48\"],\"links\":[\"https:\\/\\/steemit.com\\/@micheletrainer\",\"https:\\/\\/twitter.com\\/MicheleTrainer\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T14:47:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 2601056621774,
+    "parent_author": "",
+    "parent_permlink": "introduceyourself",
+    "pending_payout_value": "1.549 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "where-are-you-from-an-original-interactive-poem",
+    "post_id": 863117,
+    "promoted": "56.500 HBD",
+    "replies": [],
+    "root_title": "Where are YOU from?  an original interactive poem",
+    "title": "Where are YOU from?  an original interactive poem",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduceyourself/@micheletrainer/where-are-you-from-an-original-interactive-poem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289672111903",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14163917784755",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63264215903793",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7008652489816",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5561457497398",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2168262535121",
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88420265451",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168173562906",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137139646097",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47633356096",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "3218",
+        "reputation": 0,
+        "rshares": "224671051401",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "508881476",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6128985263",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47419915237",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "268813336",
+        "voter": "coar"
+      },
+      {
+        "percent": "5555",
+        "reputation": 0,
+        "rshares": "1414262212",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "414873886403",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5502742374",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10900407436",
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6499415173",
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3552258858",
+        "voter": "aizen03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1167892678",
+        "voter": "aizen04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494011890",
+        "voter": "aizen05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4792503154",
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2866396620",
+        "voter": "aizen08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1018758155",
+        "voter": "aizen09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "440815198",
+        "voter": "aizen10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7251352623",
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3046246145",
+        "voter": "aizen11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2093766327",
+        "voter": "aizen14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2461979195",
+        "voter": "aizen19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "648934214",
+        "voter": "aizen15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6424687447",
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "645100690",
+        "voter": "aizen20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4217308295",
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1120984313",
+        "voter": "aizen23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2204835021",
+        "voter": "aizen17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3470343919",
+        "voter": "aizen24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490553110",
+        "voter": "aizen18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1314165947",
+        "voter": "aizen25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2232368724",
+        "voter": "aizen28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3435213218",
+        "voter": "aizen26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1127650669",
+        "voter": "aizen27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3875576479",
+        "voter": "aizen32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2120310130",
+        "voter": "aizen30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3922031715",
+        "voter": "aizen31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1290987596",
+        "voter": "aizen33"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "7897522470",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1553035109",
+        "voter": "aizen34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311774459",
+        "voter": "aizen35"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5849292526",
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1459315560",
+        "voter": "aizen37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408290923",
+        "voter": "aizen29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2872459339",
+        "voter": "aizen21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4407402890",
+        "voter": "aizen12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1876568717",
+        "voter": "aizen38"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "523210618",
+        "voter": "aizen39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "397051543",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "33767375079",
+        "voter": "ratel"
+      },
+      {
+        "percent": "2200",
+        "reputation": 0,
+        "rshares": "17023109715",
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6744340925",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11724844430",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58921570387",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245172817",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389458625",
+        "voter": "aizen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3344834193",
+        "voter": "aizen41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "950518795",
+        "voter": "aizen42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3238155527",
+        "voter": "aizen46"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "886279462",
+        "voter": "aizen47"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217253386",
+        "voter": "aizen48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113259366",
+        "voter": "aizen49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941000373",
+        "voter": "aizen51"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1267671657295",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "455780965",
+        "voter": "aizen43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67659539",
+        "voter": "aizen44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "763269188",
+        "voter": "aizen54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1422705803",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2328013953",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312801577458",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4709498423",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4338003613",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20362567901",
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24478695193",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109932408114",
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233569693",
+        "voter": "aizen52"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399177345",
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1682066491",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4295922141",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190269483",
+        "voter": "aizen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6881734510",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11121059561",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256616601778",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9502194625",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5244790636",
+        "voter": "sharker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141429957",
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7837739118",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231816568",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19395686276",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3306119556",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3627578747",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83707323",
+        "voter": "aizen53"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26794677003",
+        "voter": "fabien"
+      },
+      {
+        "percent": "1100",
+        "reputation": 0,
+        "rshares": "467096193",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108721833",
+        "voter": "cryptoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921882750",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "449108428",
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "753110728",
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1534315395",
+        "voter": "aizen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239545179",
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "551525219",
+        "voter": "bento01"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "6519151447",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1651089101",
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248311264506",
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5102245996",
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65300521",
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24365622803",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65308725",
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24019810112",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24534454832",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24543057596",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81826244",
+        "voter": "bento06"
+      },
+      {
+        "percent": "3286",
+        "reputation": 0,
+        "rshares": "6664176466",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74378126",
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79900402938",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1018522724",
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101572397",
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24538538513",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24536039997",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24533093295",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4336505805",
+        "voter": "armen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24529111489",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24525562069",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24522807346",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104692799",
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11496127617",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "9800",
+        "reputation": 0,
+        "rshares": "7525884432",
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4098512589",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179351183",
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59618782",
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1046033907",
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "831573857",
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232896636",
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "740811240",
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55704135",
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3933588893",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1178231206",
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1223550869",
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437783005",
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44282381365",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106860965",
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "896976221",
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8968836569",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30570344850",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6745075226",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "699530791",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489129872",
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61520687",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13443129420",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64732326",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2205240368",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24516526583",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362426778",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194739083",
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9504908244",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1669616654",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2600508548",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1183314250",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83925616",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4592499069",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23655969247",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1687924866",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77004567",
+        "voter": "chrisaiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56705725699",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "504619233",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51939094",
+        "voter": "freesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177656553",
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122884931",
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2142141248",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53613334",
+        "voter": "paxmagnus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574180710",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51415300",
+        "voter": "timothy.sykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454340855",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55848311",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "810369666",
+        "voter": "bapparabi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3066838916",
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "538039419",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80674477",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213762437",
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "426281596",
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202251096",
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156261069",
+        "voter": "ibm1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158187618",
+        "voter": "mirelasto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106367912",
+        "voter": "paulocouto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4781575087",
+        "voter": "exploretraveler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138977944",
+        "voter": "newsfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141784776",
+        "voter": "dirlei.sdias"
+      }
+    ],
+    "author": "pkattera",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![Group34d0c4.jpg](https://www.steemimg.com/images/2016/09/14/Group34d0c4.jpg)\n\n<br>\nThis is my partial* application for @ned's inaugural bounty, [for design and implementation of a Steemit bounty system](https://steemit.com/bounties/@ned/it-s-time-for-a-steem-bounty-system). \n\n*It's a partial application because designing a bounty system for Steemit is very complex (at least for a blockchain n00b like me). There are many different ways to implement this system. I feel like I need more collaboration with developers and the business to fully understand the technical constraints and business objectives. As @jesta said in his [post](https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal) yesterday:\n> TLDR: This project, done right, really isn't as simple as it sounds.\n\nAnyway, for now, the most valuable thing I can do to contribute is to post some lower fidelity (not polished) mobile web designs that outline my proposed Information Architecture (IA) and User Experience (UX). Once we can agree on the right content and feature set for the MVP version of Bounties, I'd like to polish the visual design and create desktop designs.\n\n## Assumptions and mechanics\nI agree with most of the mechanics outlined by @jesta in his [Steemit Bounty System proposal](https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal). If you haven't read it, please check it out. There are a few things that I want to challenge though:\n\n1. I think that the Bounty system should live within steemit.com (and not on a separate domain). There are pros and cons of this approach but I think keeping bounties native to the steemit.com ecosystem will create the most long term value due to it's ease of use for most non-advanced users. \n  \u2013 I propose that it lives at: http://steemit.com/bounties\n  \u2013 In case bounties are required to live on a separate domain for technical or legal reasons, perhaps it could live on the http://bounties.steemit.com subdomain. \n\n2. I'm leaning towards requiring bounty creators to be registered and logged into Steemit.com to post a new bounty.     \n\u2013 This would make posting a new bounty very similar to posting a new blog post. \n\u2013 It would also enable people to fund bounties using a similar mechanism to 'Promote a post' (instead of transferring funds to @bounty via steempay.io/shapeshift/cli_wallet commands as proposed by @jesta.\n\u2013 Requiring registration for bounty creators should increase the overall quality and reduce the potential for bounty abuse and misuse by increasing accountability and Steemit reputation transparency (like that outlined by @mrosenquist [here](https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal#@mrosenquist/re-jesta-steem-bounty-system-milestone-1-proposal-20160913t041449326z)) \n\n## Design ethos\n\nSince these designs are intended to live on Steemit.com, I've tried to adhere to Steemit's visual styles and retain it's interaction patterns for similar tasks. For example:\n  \u2013 Creating a bounty should be as easy and as similar as posting a blog post. \n  \u2013 Funding a bounty should be as easy and as similar as promoting a blog post. \n\n# Competitor analysis\n\nTo kick off the design process, I reviewed several comparable website earlier this week. Check it out here: \n\n[https://steemit.com/bounties/@pkattera/competitor-analysis-for-ned-s-proposed-bounty-management-system](https://steemit.com/bounties/@pkattera/competitor-analysis-for-ned-s-proposed-bounty-management-system)\n\n# Information Architecture \n\nHere's my proposed structure for the Bounties website:\n\n![Information-ArchitectureCopy2f439.jpg](https://www.steemimg.com/images/2016/09/14/Information-ArchitectureCopy2f439.jpg)\n\nAlthough I'd love to include a Bounty Hunter leaderboard and user profiles, I think we should keep the MVP as simple as possible for now and include it in a future version. \n\n# Content and features\n\nNow that I've outline the page templates and structure above, the Content Hierarchy diagram below shows a high level view of content and features to be included on each page. \n\n![Content77511.jpg](https://www.steemimg.com/images/2016/09/14/Content77511.jpg)\n\n# Mobile UX designs\n\nBelow are the mobile designs. Note: All copy, images and icons are placeholder for now.\n\n<br>\n## Bounties home / landing page\n\n![1.Bounty-home-page3de51.jpg](https://www.steemimg.com/images/2016/09/14/1.Bounty-home-page3de51.jpg)\n\n<br>\n## Post a bounty (excluding milestones)\n\nAs per my previous post, adding milestones to bounties increases the complexity of the whole bounty system. \n> My gut feeling is to keep it super simple for version 1 and exclude milestones. People could still create individual bounties for separate tasks and link related bounties within the description.\n\nThis design excludes the concept of milestones. \n\n![2.Post-a-bounty4b820.jpg](https://www.steemimg.com/images/2016/09/14/2.Post-a-bounty4b820.jpg)\n\n<br>\n## Post a bounty (including milestones)\n\nBut if people feel strongly about keeping milestones, here is a design. \n\n![Milestones78f61.jpg](https://www.steemimg.com/images/2016/09/14/Milestones78f61.jpg)\n\n<br>\n## Bounty template\n\n![3a.Bounty-template-brief1aec2.jpg](https://www.steemimg.com/images/2016/09/14/3a.Bounty-template-brief1aec2.jpg)\n\n![3b.Bounty-template-submissions05700.jpg](https://www.steemimg.com/images/2016/09/14/3b.Bounty-template-submissions05700.jpg)\n\n<br>\n## Submission template\n\n![4a-Submission6c0f1.jpg](https://www.steemimg.com/images/2016/09/14/4a-Submission6c0f1.jpg)\n\n<br>\n## Submit work\n\n![4b.Submit-a-post81120.jpg](https://www.steemimg.com/images/2016/09/14/4b.Submit-a-post81120.jpg)\n\n<br>\n## My bounties\n\nA place to keep track of all the bounties that you've posted, entered, or watched.\n\n![5.My-bountiesf7ffb.jpg](https://www.steemimg.com/images/2016/09/14/5.My-bountiesf7ffb.jpg)\n\n<br>\n## Filters on the bounty home / landing page\n\n![1a.filtersf0c90.jpg](https://www.steemimg.com/images/2016/09/14/1a.filtersf0c90.jpg)\n\n\n<br>\n---\n#### Questions or concerns?\n\nMessage me on steemit.chat (pkattera)\n\n<br>\n#### Thank you\n\nA few people to thank for inspiring me to design the Bounty System:\n\n\u2013 @ned for kicking off this initiative \n\u2013 @jesta for [this post](https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal)\n\u2013 @steve-walschot for [this post](https://steemit.com/bounty/@steve-walschot/application-for-bounty-system-by-ned)\n\u2013 @blueorgy for image hosting ([SteemIMG](https://www.steemimg.com/) gets better and better!) \n\n<br>\n#### Acknowledgements \n\nI used a few icons from The [Noun Project](https://thenounproject.com/). Credit to:\n\u2013  Ryo Sato (filter icon)\n\u2013 Kid A (calendar icon)\n\nSome photos are from [unsplash.com](http://unsplash.com) \u2013 a free image site.",
+    "body_length": 6729,
+    "cashout_time": "2016-10-15T13:26:27",
+    "category": "bounties",
+    "children": 17,
+    "created": "2016-09-14T10:30:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"bounties\",\"bounty\",\"steemit\",\"steemian\",\"design\"],\"users\":[\"ned\",\"jesta\",\"bounty\",\"mrosenquist\",\"steve-walschot\",\"blueorgy\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/Group34d0c4.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/Information-ArchitectureCopy2f439.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/Content77511.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/1.Bounty-home-page3de51.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/2.Post-a-bounty4b820.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/Milestones78f61.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/3a.Bounty-template-brief1aec2.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/3b.Bounty-template-submissions05700.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/4a-Submission6c0f1.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/4b.Submit-a-post81120.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/5.My-bountiesf7ffb.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/14\\/1a.filtersf0c90.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/bounties\\/@ned\\/it-s-time-for-a-steem-bounty-system\",\"https:\\/\\/steemit.com\\/bounty\\/@jesta\\/steem-bounty-system-milestone-1-proposal\",\"http:\\/\\/steemit.com\\/bounties\",\"https:\\/\\/steemit.com\\/bounty\\/@jesta\\/steem-bounty-system-milestone-1-proposal#@mrosenquist\\/re-jesta-steem-bounty-system-milestone-1-proposal-20160913t041449326z\",\"https:\\/\\/steemit.com\\/bounties\\/@pkattera\\/competitor-analysis-for-ned-s-proposed-bounty-management-system\",\"https:\\/\\/steemit.com\\/bounty\\/@steve-walschot\\/application-for-bounty-system-by-ned\",\"https:\\/\\/www.steemimg.com\\/\",\"https:\\/\\/thenounproject.com\\/\",\"http:\\/\\/unsplash.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T10:30:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 97843608402227,
+    "parent_author": "",
+    "parent_permlink": "bounties",
+    "pending_payout_value": "560.001 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "my-application-for-ned-s-steemit-bounty-management-forum-milestone-1-design-phase",
+    "post_id": 948224,
+    "promoted": "56.001 HBD",
+    "replies": [],
+    "root_title": "My application for @ned's Steemit Bounty Management Forum: Milestone 1: Design Phase",
+    "title": "My application for @ned's Steemit Bounty Management Forum: Milestone 1: Design Phase",
+    "total_payout_value": "0.000 HBD",
+    "url": "/bounties/@pkattera/my-application-for-ned-s-steemit-bounty-management-forum-milestone-1-design-phase"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688300389712",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32496623460377",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173136963840",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159918861664",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2005390105155",
+        "voter": "hr1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "289360051453",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101900144",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765915056",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690731471",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54440008673",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29743986876",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "358100743277",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23660560627",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662255525",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213742499",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2085987925412",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11623788462",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444535034035",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2789462741052",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1713240173",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134364046875",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5906126324652",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11952912096",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624719426",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969479298",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288275841",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25812388884",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856861244",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83748417354",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1032897136819",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "9600",
+        "reputation": 0,
+        "rshares": "20550877396",
+        "voter": "fkn"
+      },
+      {
+        "percent": "9600",
+        "reputation": 0,
+        "rshares": "27953788939",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89407523441",
+        "voter": "hossary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "667610657",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79823816109",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1424990406",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2686093987",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "752459162917",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "409864476",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "5500",
+        "reputation": 0,
+        "rshares": "30166315569",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376661423303",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6072969766",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113581323847",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3813615376",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2756685682",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4916142248",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3143039437",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5979417458",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4167036688",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272228330",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20522473005",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9656416508",
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4059619633",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105627974515",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122116899729",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4284633003",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4515466234",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516176839",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13423595459",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1629124913",
+        "voter": "sergei"
+      },
+      {
+        "percent": "9600",
+        "reputation": 0,
+        "rshares": "61535157339",
+        "voter": "furion"
+      },
+      {
+        "percent": "9600",
+        "reputation": 0,
+        "rshares": "496081464",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "9600",
+        "reputation": 0,
+        "rshares": "556512758",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "9600",
+        "reputation": 0,
+        "rshares": "510162053",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386493228",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227600854",
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3975122477",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242542379761",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17179512142",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9002241723",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3940960554",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5932840499",
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8305436807",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26713896525",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684274715",
+        "voter": "reilag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102459876",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193368396334",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408181962",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "9600",
+        "reputation": 0,
+        "rshares": "17052738387",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91303944644",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14426656380",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1135212709",
+        "voter": "viktorrabec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16480329840",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152480033",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2904531568",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "9600",
+        "reputation": 0,
+        "rshares": "562846622",
+        "voter": "fnait"
+      },
+      {
+        "percent": "9600",
+        "reputation": 0,
+        "rshares": "513581347",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330141710",
+        "voter": "esqil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170287271",
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1994890816",
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123410225",
+        "voter": "ap2002"
+      },
+      {
+        "percent": "4100",
+        "reputation": 0,
+        "rshares": "29050892521",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3551081489",
+        "voter": "litrbooh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8325460600",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25710756547",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3058183535",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10194363319",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1351652050",
+        "voter": "littleboo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2300718527",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25787605683",
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683118671",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78019119466",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "14582509984",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93029388808",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5011545711",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108992985",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308376087",
+        "voter": "steemnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8163134605",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61277568",
+        "voter": "xcepta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4722575225",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62485067",
+        "voter": "denxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62482118",
+        "voter": "markcarlos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62478934",
+        "voter": "frdm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62469352",
+        "voter": "glory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62463281",
+        "voter": "crack777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1556647371",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62151104",
+        "voter": "garryod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62147052",
+        "voter": "jhonny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62143955",
+        "voter": "eddy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62140797",
+        "voter": "evilone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170625312",
+        "voter": "njall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60427814",
+        "voter": "photo00"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "604151974",
+        "voter": "tagira"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1447489205",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63080486",
+        "voter": "makaka777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215058263",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60679524",
+        "voter": "wildkids"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6591414005",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187650986",
+        "voter": "vivalavida"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6195256861",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8402961472",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1020526308",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58188307",
+        "voter": "upvoteman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55750195",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1332554034",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "955109745",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122167193",
+        "voter": "godo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1720181032",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123427432",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692727252",
+        "voter": "ksena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34366449613",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15936701702",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5071716072",
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5882340031",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60003778949",
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2772237230",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25109370708",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54477900",
+        "voter": "annet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1098123949",
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065275299",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1621372058",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1581938185",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8163222158",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4988399339",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53267563",
+        "voter": "cathi-xx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56874844",
+        "voter": "aksinya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104875897",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57640928",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67814291",
+        "voter": "brainup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161180081",
+        "voter": "dikanevroman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108712635",
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159092709",
+        "voter": "chanceskain"
+      }
+    ],
+    "author": "terrycraft",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<br />\n\n---\n\n\nToday I would like to talk with you about one of the most important, I believe, the problem of humanity.  In our days this problem is urgent as never before. And what's more, because of it generates a lot of evil in the world today. So what kind of problem is it? Let's find out.\n\nNo matter who you are - believer or atheist, you've probably heard about the seven deadly sins:\n\n* Lust\n* Greed\n* Gluttony\n* Envy \n* Wrath\n* Pride\n* Sloth\n\nAnd you know, someone will agree with me, someone will judge and that's fine, because people are different, but I do not see much of a problem, and really deadly sins. I see human emotions, which is likely was felt by every person in his life.\n\n>\u0421\u0435\u0433\u043e\u0434\u043d\u044f \u044f \u0431\u044b \u0445\u043e\u0442\u0435\u043b \u043f\u043e\u0433\u043e\u0432\u043e\u0440\u0438\u0442\u044c \u0441 \u0432\u0430\u043c\u0438 \u043e\u0431 \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0433\u043b\u0430\u0432\u043d\u0435\u0439\u0448\u0438\u0445, \u043a\u0430\u043a \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0448\u0438 \u0434\u043d\u0438 \u0434\u0430\u043d\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0441\u0442\u043e\u0438\u0442 \u043a\u0430\u043a \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043e\u0441\u0442\u0440\u043e. \u0418 \u0431\u043e\u043b\u0435\u0435 \u0442\u043e\u0433\u043e, \u043e\u043d\u0430 \u043f\u043e\u0440\u043e\u0436\u0434\u0430\u0435\u0442 \u043c\u043d\u043e\u0433\u043e \u0437\u043b\u0430, \u0442\u0432\u043e\u0440\u044f\u0449\u0435\u0433\u043e\u0441\u044f \u0432 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043c\u0438\u0440\u0435. \u0427\u0442\u043e \u0436\u0435 \u044d\u0442\u043e \u0437\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430? \u0414\u0430\u0432\u0430\u0439\u0442\u0435 \u0432\u044b\u044f\u0441\u043d\u0438\u043c.\n\n>\u041d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u0442\u043e\u0433\u043e, \u0432\u0435\u0440\u0443\u044e\u0449\u0438\u0439 \u0432\u044b \u0438\u043b\u0438 \u0430\u0442\u0435\u0438\u0441\u0442, \u0432\u044b \u043d\u0430\u0432\u0435\u0440\u043d\u044f\u043a\u0430 \u0441\u043b\u044b\u0448\u0430\u043b\u0438 \u043e \u0441\u0435\u043c\u0438 \u0441\u043c\u0435\u0440\u0442\u043d\u044b\u0445 \u0433\u0440\u0435\u0445\u0430\u0445:\n\n>* \u043f\u043e\u0445\u043e\u0442\u044c\n>* \u0430\u043b\u0447\u043d\u043e\u0441\u0442\u044c\n>* \u0447\u0440\u0435\u0432\u043e\u0443\u0433\u043e\u0434\u0438\u0435\n>* \u0417\u0430\u0432\u0438\u0441\u0442\u044c\n>* \u0433\u043d\u0435\u0432\n>* \u0433\u043e\u0440\u0434\u044b\u043d\u044f\n>* \u043b\u0435\u043d\u044c (\u0443\u043d\u044b\u043d\u0438\u0435)\n\n>\u0418 \u0432\u044b \u0437\u043d\u0430\u0435\u0442\u0435, \u043a\u0442\u043e-\u0442\u043e \u0441\u043e \u043c\u043d\u043e\u0439 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0442\u0441\u044f, \u043a\u0442\u043e-\u0442\u043e \u043e\u0441\u0443\u0434\u0438\u0442 \u0438 \u044d\u0442\u043e \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043b\u044e\u0434\u0438 \u0440\u0430\u0437\u043d\u044b\u0435, \u043d\u043e \u044f \u043d\u0435 \u0432\u0438\u0436\u0443 \u0437\u0434\u0435\u0441\u044c \u043e\u0441\u043e\u0431\u043e\u0439 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0441\u043c\u0435\u0440\u0442\u043d\u044b\u0445 \u0433\u0440\u0435\u0445\u043e\u0432. \u042f \u0432\u0438\u0436\u0443 \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u044d\u043c\u043e\u0446\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0438\u0441\u043f\u044b\u0442\u044b\u0432\u0430\u043b \u0432 \u0441\u0432\u043e\u0435\u0439 \u0436\u0438\u0437\u043d\u0438 \u043a\u0430\u0436\u0434\u044b\u0439 \u0447\u0435\u043b\u043e\u0432\u0435\u043a.\n\n<br />\n\nhttp://eleveneight.co.uk/wp-content/uploads/2015/09/The-7-Deadly-Sins-Of-Social-Media-New-Blog.png\n<a href=\"http://eleveneight.co.uk/7-deadly-sins-of-social-media/\">image credit</a>\n\n<br />\n\n---\n\nHaving gone through many extreme situations, I am hold the opinion that the main problem of mankind - indifference.\n\nOne such situation:\n\nWalked past the tram station on which stood about 20 people. I saw a man lying on the rails... but all of these 20 people just stood and waited for the tram. Of course I went up to this man. Very strong smell of alcohol was from he and he was sleeping. I examined him for signs of damage (anything can happen), in appearance all was well with him. So, i tried to wake him up, i did not succeed. He certainly showed signs of life and even tried to open his eyes, but alcohol in blood was very much, he could not even say anything. So I just pulled him of the tram paths and put it in a safe place. And no one helped me. But when i finished, i heard that in the crowd began to talk about what I did right thing and what would happen if I did not. That is, all these people are not even thinking about it before, they're like a zombie, just doing something for which came to a stop - waiting for the tram.\n\nAs Mother Teresa said:\n> The greatest sin of a man is not the hatred, but indifference to his brothers.\n\nI added this saying, by my thoughts. Indifference - sin, vice, bad character trait, bad parenting... call it what you want. Indifference is the problem! And problem is not only in indifference to people, like Mother Teresa said. Anyone who watches calm, although he could help as the animal dies, just as calmly pass by a person who needs help.\n\nAnd if people were not be indifferent, then didn't happen many terrible things. Just ask yourself how many times you have seen something strange, wrong. Maybe girl in a side street, to which molested drunk guys, or an old man who could not cross the road, because no one was stops... maybe worth to come and help?! But perhaps it is not my business! Maybe girl familiar with them, and maybe they're just fooling around. Maybe this old man does not want to cross the road, and just waiting for someone. It would be nice if everything in life came to good end, but life is cruel! Not helped the old man, thought it was not your business, and in the morning saw on the news that he was hit by a car or read about a girl who was raped in nearby alley.\n\n>\u041f\u0435\u0440\u0435\u0436\u0438\u0432 \u043c\u043d\u043e\u0433\u0438\u0435 \u044d\u043a\u0441\u0442\u0440\u0435\u043c\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0438, \u044f \u043f\u0440\u0438\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0441\u044c \u043c\u043d\u0435\u043d\u0438\u044f, \u0447\u0442\u043e \u0433\u043b\u0430\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u0442\u0432\u0430 - \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435.\n\n>\u041e\u0434\u043d\u0430 \u0438\u0437 \u0442\u0430\u043a\u0438\u0445 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0439:\n\n>\u042f \u043f\u0440\u043e\u0445\u043e\u0434\u0438\u043b \u043c\u0438\u043c\u043e \u0442\u0440\u0430\u043c\u0432\u0430\u0439\u043d\u043e\u0439 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0432 \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u0438 \u0441\u0442\u043e\u044f\u043b\u043e \u043e\u043a\u043e\u043b\u043e 20 \u0447\u0435\u043b\u043e\u0432\u0435\u043a. \u0410 \u043d\u0430 \u0440\u0435\u043b\u044c\u0441\u0430\u0445 \u043b\u0435\u0436\u0430\u043b \u043c\u0443\u0436\u0447\u0438\u043d\u0430. \u0418 \u0432\u0441\u0435 \u044d\u0442\u0438 20 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u043f\u0440\u043e\u0441\u0442\u043e \u0441\u0442\u043e\u044f\u043b\u0438 \u0438 \u0436\u0434\u0430\u043b\u0438 \u0442\u0440\u0430\u043c\u0432\u0430\u0439... \u0415\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e, \u044f \u043f\u043e\u0434\u043e\u0448\u0451\u043b \u043a \u044d\u0442\u043e\u043c\u0443 \u043c\u0443\u0436\u0447\u0438\u043d\u0435. \u041e\u0442 \u043d\u0435\u0433\u043e \u043e\u0447\u0435\u043d\u044c \u0441\u0438\u043b\u044c\u043d\u043e \u043f\u0430\u0445\u043b\u043e \u0430\u043b\u043a\u043e\u0433\u043e\u043b\u0435\u043c, \u043e\u043d \u0441\u043f\u0430\u043b. \u042f \u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043b \u0435\u0433\u043e \u043d\u0430 \u043f\u0440\u0435\u0434\u043c\u0435\u0442 \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0439 (\u0432\u0441\u044f\u043a\u043e\u0435 \u0431\u044b\u0432\u0430\u0435\u0442), \u043d\u0430 \u0432\u0438\u0434, \u0441 \u043d\u0438\u043c \u0432\u0441\u0451 \u0431\u044b\u043b\u043e \u0445\u043e\u0440\u043e\u0448\u043e. \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u044f \u043f\u043e\u043f\u044b\u0442\u0430\u043b\u0441\u044f \u0435\u0433\u043e \u0440\u0430\u0437\u0431\u0443\u0434\u0438\u0442\u044c, \u043c\u043d\u0435 \u044d\u0442\u043e \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c. \u041e\u043d, \u043a\u043e\u043d\u0435\u0447\u043d\u043e, \u043f\u043e\u0434\u0430\u0432\u0430\u043b \u043f\u0440\u0438\u0437\u043d\u0430\u043a\u0438 \u0436\u0438\u0437\u043d\u0438 \u0438 \u0434\u0430\u0436\u0435 \u043f\u044b\u0442\u0430\u043b\u0441\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0433\u043b\u0430\u0437\u0430, \u043d\u043e \u0432\u0438\u0434\u043d\u043e \u0430\u043b\u043a\u043e\u0433\u043e\u043b\u044f \u0432 \u043a\u0440\u043e\u0432\u0438 \u0431\u044b\u043b\u043e \u043e\u0447\u0435\u043d\u044c \u043c\u043d\u043e\u0433\u043e, \u043e\u043d \u0434\u0430\u0436\u0435 \u043d\u0435 \u0441\u043c\u043e\u0433 \u043d\u0438\u0447\u0435\u0433\u043e \u0441\u043a\u0430\u0437\u0430\u0442\u044c. \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u044f \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u0442\u0430\u0449\u0438\u043b \u0435\u0433\u043e \u0441 \u043f\u0443\u0442\u0435\u0439 \u0438 \u043f\u043e\u043b\u043e\u0436\u0438\u043b \u0432 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e. \u041c\u043d\u0435 \u0442\u0430\u043a \u043d\u0438\u043a\u0442\u043e \u0438 \u043d\u0435 \u043f\u043e\u043c\u043e\u0433. \u0417\u0430\u0442\u043e, \u043a\u043e\u0433\u0434\u0430 \u044f \u043f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u043b \u0435\u0433\u043e, \u0443\u0441\u043b\u044b\u0448\u0430\u043b, \u0447\u0442\u043e \u0432 \u0442\u043e\u043b\u043f\u0435 \u043d\u0430\u0447\u0430\u043b\u0438\u0441\u044c \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440\u044b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u044f \u043f\u043e\u0441\u0442\u0443\u043f\u0438\u043b \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u0438 \u0447\u0442\u043e \u0431\u044b \u0441\u043b\u0443\u0447\u0438\u043b\u043e\u0441\u044c, \u0435\u0441\u043b\u0438 \u0431\u044b \u044f \u044d\u0442\u043e\u0433\u043e \u043d\u0435 \u0441\u0434\u0435\u043b\u0430\u043b. \u0422\u043e \u0435\u0441\u0442\u044c \u0432\u0441\u0435 \u044d\u0442\u0438 \u043b\u044e\u0434\u0438, \u0434\u0430\u0436\u0435 \u043d\u0435 \u0437\u0430\u0434\u0443\u043c\u0430\u043b\u0438\u0441\u044c \u043e\u0431 \u044d\u0442\u043e\u043c \u0440\u0430\u043d\u044c\u0448\u0435, \u043e\u043d\u0438 \u043a\u0430\u043a \u0437\u043e\u043c\u0431\u0438, \u043f\u0440\u043e\u0441\u0442\u043e \u0434\u0435\u043b\u0430\u043b\u0438 \u0442\u043e, \u0434\u043b\u044f \u0447\u0435\u0433\u043e \u043f\u0440\u0438\u0448\u043b\u0438 \u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 - \u0436\u0434\u0430\u043b\u0438 \u0442\u0440\u0430\u043c\u0432\u0430\u0439.\n\n>\u0415\u0449\u0451 \u041c\u0430\u0442\u044c \u0422\u0435\u0440\u0435\u0437\u0430 \u0433\u043e\u0432\u043e\u0440\u0438\u043b\u0430: \u0412\u0435\u043b\u0438\u0447\u0430\u0439\u0448\u0438\u0439 \u0433\u0440\u0435\u0445 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u2014 \u044d\u0442\u043e \u043d\u0435 \u043d\u0435\u043d\u0430\u0432\u0438\u0441\u0442\u044c, \u0430 \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435 \u043a \u0441\u0432\u043e\u0438\u043c \u0431\u0440\u0430\u0442\u044c\u044f\u043c. \n\n>\u042f \u0434\u043e\u043f\u043e\u043b\u043d\u044e \u044d\u0442\u043e \u0438\u0437\u0440\u0435\u0447\u0435\u043d\u0438\u0435, \u0441\u0432\u043e\u0438\u043c\u0438 \u043c\u044b\u0441\u043b\u044f\u043c\u0438. \u0420\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435 - \u0433\u0440\u0435\u0445, \u043f\u043e\u0440\u043e\u043a, \u0434\u0443\u0440\u043d\u0430\u044f \u0447\u0435\u0440\u0442\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0430, \u043f\u043b\u043e\u0445\u043e\u0435 \u0432\u043e\u0441\u043f\u0438\u0442\u0430\u043d\u0438\u0435... \u043d\u0430\u0437\u044b\u0432\u0430\u0439\u0442\u0435 \u043a\u0430\u043a \u0445\u043e\u0442\u0438\u0442\u0435. \u0420\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435 \u044d\u0442\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430! \u0418 \u0434\u0435\u043b\u043e \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0438 \u043a \u043b\u044e\u0434\u044f\u043c, \u0441\u0432\u043e\u0438\u043c \u0431\u0440\u0430\u0442\u044c\u044f\u043c, \u043a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u043b\u0430 \u041c\u0430\u0442\u044c \u0422\u0435\u0440\u0435\u0437\u0430. \u0422\u043e\u0442 \u043a\u0442\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u0441\u043c\u043e\u0442\u0440\u0438\u0442, \u0445\u043e\u0442\u044f \u043c\u043e\u0433 \u0431\u044b \u043f\u043e\u043c\u043e\u0447\u044c, \u043a\u0430\u043a \u0433\u0438\u0431\u043d\u0435\u0442 \u0436\u0438\u0432\u043e\u0442\u043d\u043e\u0435, \u0442\u0430\u043a \u0436\u0435 \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043f\u0440\u043e\u0439\u0434\u0451\u0442 \u043c\u0438\u043c\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043d\u0443\u0436\u043d\u0430 \u043f\u043e\u043c\u043e\u0449\u044c.\n\n>\u0418 \u0435\u0441\u043b\u0438 \u0431\u044b \u043b\u044e\u0434\u0438 \u043d\u0435 \u0431\u044b\u043b\u0438 \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u043d\u044b, \u043d\u0435 \u0441\u043b\u0443\u0447\u0430\u043b\u043e\u0441\u044c \u0431\u044b \u043c\u043d\u043e\u0433\u0438\u0445 \u0443\u0436\u0430\u0441\u043d\u044b\u0445 \u0432\u0435\u0449\u0435\u0439. \u041f\u0440\u043e\u0441\u0442\u043e \u0437\u0430\u0434\u0430\u0439\u0442\u0435 \u0441\u0435\u0431\u0435 \u0432\u043e\u043f\u0440\u043e\u0441, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0440\u0430\u0437 \u044f \u0432\u0438\u0434\u0435\u043b \u0447\u0442\u043e-\u0442\u043e \u0441\u0442\u0440\u0430\u043d\u043d\u043e\u0435, \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435. \u041c\u043e\u0436\u0435\u0442 \u0434\u0435\u0432\u0443\u0448\u043a\u0443 \u0432 \u043f\u0435\u0440\u0435\u0443\u043b\u043a\u0435, \u043a \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u0430\u043b\u0438 \u043f\u044c\u044f\u043d\u044b\u0435 \u043f\u0430\u0440\u043d\u0438 \u0438\u043b\u0438 \u0441\u0442\u0430\u0440\u0438\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043d\u0435 \u043c\u043e\u0433 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e\u0440\u043e\u0433\u0443, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0435\u0433\u043e \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u043b... \u043c\u043e\u0436\u0435\u0442 \u0441\u0442\u043e\u0438\u043b\u043e \u043f\u043e\u0434\u043e\u0439\u0442\u0438 \u0438 \u043f\u043e\u043c\u043e\u0447\u044c?! \u041d\u043e \u0432\u0435\u0434\u044c, \u043d\u0430\u0432\u0435\u0440\u043d\u043e\u0435 \u044d\u0442\u043e \u043d\u0435 \u043c\u043e\u0451 \u0434\u0435\u043b\u043e, \u043c\u043e\u0436\u0435\u0442 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 \u0437\u043d\u0430\u043a\u043e\u043c\u0430 \u0441 \u043d\u0438\u043c\u0438, \u0430 \u043c\u043e\u0436\u0435\u0442 \u043e\u043d\u0438 \u043f\u0440\u043e\u0441\u0442\u043e \u0434\u0443\u0440\u0430\u0447\u0438\u043b\u0438\u0441\u044c. \u041c\u043e\u0436\u0435\u0442 \u044d\u0442\u043e\u0442 \u0441\u0442\u0430\u0440\u0438\u043a \u0432\u043e\u0432\u0441\u0435 \u0438 \u043d\u0435 \u0445\u043e\u0447\u0435\u0442 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e\u0440\u043e\u0433\u0443, \u0430 \u043f\u0440\u043e\u0441\u0442\u043e \u0436\u0434\u0451\u0442 \u043a\u043e\u0433\u043e-\u0442\u043e. \u0425\u043e\u0440\u043e\u0448\u043e \u0431\u044b, \u0435\u0441\u043b\u0438 \u0431\u044b \u0432 \u0436\u0438\u0437\u043d\u0438 \u0432\u0441\u0451 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u043b\u043e\u0441\u044c \u0434\u043e\u0431\u0440\u043e\u043c, \u043d\u043e \u0436\u0438\u0437\u043d\u044c \u0436\u0435\u0441\u0442\u043e\u043a\u0430! \u041d\u0435 \u043f\u043e\u043c\u043e\u0433 \u0441\u0442\u0430\u0440\u0438\u043a\u0443, \u043f\u043e\u0434\u0443\u043c\u0430\u043b, \u0447\u0442\u043e \u044d\u0442\u043e \u043d\u0435 \u0442\u0432\u043e\u0451 \u0434\u0435\u043b\u043e, \u0430 \u0441 \u0443\u0442\u0440\u0430 \u0443\u0432\u0438\u0434\u0435\u043b \u0432 \u043d\u043e\u0432\u043e\u0441\u0442\u044f\u0445, \u0447\u0442\u043e \u0435\u0433\u043e \u0441\u0431\u0438\u043b\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0438\u043b\u0438 \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043b \u043e \u0434\u0435\u0432\u0443\u0448\u043a\u0435, \u0438\u0437\u043d\u0430\u0441\u0438\u043b\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0432 \u043f\u0435\u0440\u0435\u0443\u043b\u043a\u0435 \u043d\u0435\u043f\u043e\u0434\u0430\u043b\u0451\u043a\u0443.\n\n<br />\n\nhttp://rampages.us/washingtonstuniv112/wp-content/uploads/sites/9900/2015/09/Screen-Shot-2015-09-29-at-9.54.01-PM.png\n<a href=\"http://rampages.us/washingtonstuniv112/2015/09/30/visual-literacy-response/\">image credit</a>\n\n<br />\n\n---\n\nOne of the most famous cases of indifference occurred with Kitty Genovese, 13 March 1964. She was murdered and raped and several neighbors heard her cry but no one helped her. After this incident, for the study of this issue were took psychologists and studies have been conducted. The result was revealed the so-called \"bystander effect\", proving that the greater the number of people present at the crime, the less likely that someone will help.\n\nFrom wikipedia:\n* The bystander effect, or bystander apathy, is a social psychological phenomenon that refers to cases in which individuals do not offer any means of help to a victim when other people are present. The probability of help is inversely related to the number of bystanders. In other words, the greater the number of bystanders, the less likely it is that any one of them will help. Several variables help to explain why the bystander effect occurs.\n\n\n\n>\u041e\u0434\u0438\u043d \u0438\u0437 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0445 \u0441\u043b\u0443\u0447\u0430\u0435\u0432 \u043f\u0440\u043e\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u044f \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0451\u043b \u0441 \u041a\u0438\u0442\u0442\u0438 \u0414\u0436\u0435\u043d\u043e\u0432\u0435\u0437\u0435 13 \u043c\u0430\u0440\u0442\u0430 1964\u0433. \u041e\u043d\u0430 \u0431\u044b\u043b\u0430 \u0443\u0431\u0438\u0442\u0430 \u0438 \u0438\u0437\u043d\u0430\u0441\u0438\u043b\u043e\u0432\u0430\u043d\u0430, \u043f\u0440\u0438 \u0447\u0451\u043c \u043c\u043d\u043e\u0433\u0438\u0435 \u0441\u043e\u0441\u0435\u0434\u0438 \u0441\u043b\u044b\u0448\u0430\u043b\u0438 \u0435\u0451 \u043a\u0440\u0438\u043a\u0438, \u043d\u043e \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043f\u043e\u043c\u043e\u0433. \u041f\u043e\u0441\u043b\u0435 \u044d\u0442\u043e\u0433\u043e \u0441\u043b\u0443\u0447\u0430\u044f \u0437\u0430 \u0438\u0437\u0443\u0447\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430 \u0432\u0437\u044f\u043b\u0438\u0441\u044c \u043f\u0441\u0438\u0445\u043e\u043b\u043e\u0433\u0438 \u0438 \u0431\u044b\u043b\u0438 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u044b \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f. \u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0431\u044b\u043b \u0432\u044b\u044f\u0432\u043b\u0435\u043d \u0442\u0430\u043a \u043d\u0430\u0437\u044b\u0432\u0430\u0435\u043c\u044b\u0439 \"\u044d\u0444\u0444\u0435\u043a\u0442 \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u044f\", \u0434\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0449\u0438\u0439, \u0447\u0442\u043e \u0447\u0435\u043c \u0431\u043e\u043b\u044c\u0448\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u043b\u044e\u0434\u0435\u0439 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043f\u0440\u0438 \u043f\u0440\u0435\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438, \u0442\u0435\u043c \u043c\u0435\u043d\u044c\u0448\u0435 \u0448\u0430\u043d\u0441\u043e\u0432 \u0447\u0442\u043e \u043a\u0442\u043e-\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0449\u044c.\n\n>\u0412\u044b\u0434\u0435\u0440\u0436\u043a\u0430 \u0441 \u0432\u0438\u043a\u0438\u043f\u0435\u0434\u0438\u0438:\n> * \u042d\u0444\u0444\u0435\u043a\u0442 \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u044f, \u044d\u0444\u0444\u0435\u043a\u0442 \u043f\u043e\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0435\u0433\u043e, \u0441\u0438\u043d\u0434\u0440\u043e\u043c \u0414\u0436\u0435\u043d\u043e\u0432\u0435\u0437\u0435 \u2014 \u043f\u0441\u0438\u0445\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u044d\u0444\u0444\u0435\u043a\u0442, \u043f\u0440\u043e\u044f\u0432\u043b\u044f\u044e\u0449\u0438\u0439\u0441\u044f \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043b\u044e\u0434\u0438, \u043e\u043a\u0430\u0437\u0430\u0432\u0448\u0438\u0435\u0441\u044f \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u044f\u043c\u0438 \u0447\u0440\u0435\u0437\u0432\u044b\u0447\u0430\u0439\u043d\u043e\u0439 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0438 (\u0414\u0422\u041f, \u043f\u0440\u0435\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438\u0445), \u043d\u0435 \u043f\u044b\u0442\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0447\u044c \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0438\u043c. \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e, \u0447\u0442\u043e \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u044c \u0442\u043e\u0433\u043e, \u0447\u0442\u043e \u043a\u0442\u043e-\u043d\u0438\u0431\u0443\u0434\u044c \u0438\u0437 \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u0435\u0439 \u043d\u0430\u0447\u043d\u0451\u0442 \u043f\u043e\u043c\u043e\u0433\u0430\u0442\u044c \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0438\u043c, \u0442\u0435\u043c \u043c\u0435\u043d\u044c\u0448\u0435, \u0447\u0435\u043c \u0431\u043e\u043b\u044c\u0448\u0435 \u043b\u044e\u0434\u0435\u0439 \u0441\u0442\u0430\u043d\u0443\u0442 \u043f\u0440\u043e\u0441\u0442\u043e \u0441\u0442\u043e\u044f\u0442\u044c \u0438 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c. \u0414\u0440\u0443\u0433\u0438\u043c\u0438 \u0441\u043b\u043e\u0432\u0430\u043c\u0438, \u043a\u0430\u0436\u0434\u044b\u0439 \u0438\u0437 \u043e\u0447\u0435\u0432\u0438\u0434\u0446\u0435\u0432 \u0441\u0447\u0438\u0442\u0430\u0435\u0442, \u0447\u0442\u043e \u043f\u043e\u043c\u043e\u0447\u044c \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0438\u043c \u0434\u043e\u043b\u0436\u0435\u043d \u043d\u0435 \u043e\u043d, \u0430 \u043a\u0442\u043e-\u0442\u043e \u0434\u0440\u0443\u0433\u043e\u0439. \u041d\u0430\u043e\u0431\u043e\u0440\u043e\u0442, \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043e\u0447\u0435\u0432\u0438\u0434\u0435\u0446 \u043f\u043e\u043d\u0438\u043c\u0430\u0435\u0442, \u0447\u0442\u043e \u043a\u0440\u043e\u043c\u0435 \u043d\u0435\u0433\u043e \u043f\u043e\u043c\u043e\u0447\u044c \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0438\u043c \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435\u043a\u043e\u043c\u0443, \u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u0433\u043e\u0440\u0430\u0437\u0434\u043e \u0440\u0435\u0448\u0438\u0442\u0435\u043b\u044c\u043d\u0435\u0435\n\n<br />\n\nhttps://upload.wikimedia.org/wikipedia/en/5/51/KittyGenovese.JPG\n<a href=\"https://en.wikipedia.org/wiki/Murder_of_Kitty_Genovese#/media/File:KittyGenovese.JPG\">image credit</a>\n\n<br />\n\n---\n\nAs a result, apart from the fact that many people are indifferent in themselves, so still and gathering together many people lose the ability to respond to situation adequately.\n\nQuote from \"man in black\" film:\n* A person is smart. People are dumb, panicky dangerous animals and you know it.\n\nThat is why I think that indifference - main problem, evil, generating even more evil.\n\n\n>\u0412 \u0438\u0442\u043e\u0433\u0435, \u043f\u043e\u043c\u0438\u043c\u043e \u0442\u043e\u0433\u043e, \u0447\u0442\u043e \u043c\u043d\u043e\u0433\u0438\u0435 \u043b\u044e\u0434\u0438 \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u043d\u044b \u0441\u0430\u043c\u0438 \u043f\u043e \u0441\u0435\u0431\u0435, \u0442\u0430\u043a \u0435\u0449\u0451 \u0438 \u0441\u043e\u0431\u0438\u0440\u0430\u044f\u0441\u044c \u0432\u043c\u0435\u0441\u0442\u0435 \u043c\u043d\u043e\u0433\u0438\u0435 \u0442\u0435\u0440\u044f\u044e\u0442 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c \u0440\u0435\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u043e.\n\n>\u0426\u0438\u0442\u0430\u0442\u0430 \u0438\u0437 \u0444\u0438\u043b\u044c\u043c\u0430 \"\u041b\u044e\u0434\u0438 \u0432 \u0447\u0451\u0440\u043d\u043e\u043c\":\n> * \u0427\u0435\u043b\u043e\u0432\u0435\u043a \u0440\u0430\u0437\u0443\u043c\u0435\u043d. \u0410 \u0442\u043e\u043b\u043f\u0430 \u2014 \u044d\u0442\u043e \u0442\u0443\u043f\u043e\u0439, \u0441\u043a\u043b\u043e\u043d\u043d\u044b\u0439 \u043a \u043f\u0430\u043d\u0438\u043a\u0435 \u043e\u043f\u0430\u0441\u043d\u044b\u0439 \u0437\u0432\u0435\u0440\u044c.\n\n>\u0418\u043c\u0435\u043d\u043d\u043e \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435 / \u0431\u0435\u0437\u0440\u0430\u0437\u043b\u0438\u0447\u0438\u0435 - \u043e\u0434\u043d\u0430 \u0438\u0437 \u0433\u043b\u0430\u0432\u043d\u0435\u0439\u0448\u0438\u0445 \u043f\u0440\u043e\u0431\u043b\u0435\u043c, \u0437\u043b\u043e, \u043f\u043e\u0440\u043e\u0436\u0434\u0430\u044e\u0449\u0435\u0435 \u0435\u0449\u0451 \u0431\u043e\u043b\u044c\u0448\u0435 \u0437\u043b\u0430.\n\n<br />\n\n---\n\n<br />\n\nAs usual, I'm interested in your opinion. And gladly I will discuss this issue.\n\n>\u041a\u0430\u043a \u043e\u0431\u044b\u0447\u043d\u043e, \u043c\u043d\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e \u0432\u0430\u0448\u0435 \u043c\u043d\u0435\u043d\u0438\u0435. \u0418 \u0441 \u0443\u0434\u043e\u0432\u043e\u043b\u044c\u0441\u0442\u0432\u0438\u0435\u043c \u043e\u0431\u0441\u0443\u0436\u0443 \u0434\u0430\u043d\u043d\u044b\u0439 \u0432\u043e\u043f\u0440\u043e\u0441.\n\n<br />\n\n---\n\n<br />\n\nSincerely, TerryCraft.",
+    "body_length": 9534,
+    "cashout_time": "2016-10-05T17:26:12",
+    "category": "life",
+    "children": 19,
+    "created": "2016-09-04T16:52:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"ru\",\"psychology\",\"society\",\"thoughts\"],\"image\":[\"http:\\/\\/eleveneight.co.uk\\/wp-content\\/uploads\\/2015\\/09\\/The-7-Deadly-Sins-Of-Social-Media-New-Blog.png\",\"http:\\/\\/rampages.us\\/washingtonstuniv112\\/wp-content\\/uploads\\/sites\\/9900\\/2015\\/09\\/Screen-Shot-2015-09-29-at-9.54.01-PM.png\",\"https:\\/\\/upload.wikimedia.org\\/wikipedia\\/en\\/5\\/51\\/KittyGenovese.JPG\"],\"links\":[\"http:\\/\\/eleveneight.co.uk\\/7-deadly-sins-of-social-media\\/\",\"http:\\/\\/rampages.us\\/washingtonstuniv112\\/2015\\/09\\/30\\/visual-literacy-response\\/\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Murder_of_Kitty_Genovese#\\/media\\/File:KittyGenovese.JPG\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T16:52:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 51874060688418,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "283.023 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "most-evil-thing-of-humanity-samoe-bolshoe-zlo-chelovechestva",
+    "post_id": 854799,
+    "promoted": "56.000 HBD",
+    "replies": [],
+    "root_title": "Most evil thing of humanity / \u0421\u0430\u043c\u043e\u0435 \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0437\u043b\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u0442\u0432\u0430",
+    "title": "Most evil thing of humanity / \u0421\u0430\u043c\u043e\u0435 \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0437\u043b\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u0442\u0432\u0430",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@terrycraft/most-evil-thing-of-humanity-samoe-bolshoe-zlo-chelovechestva"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494391642947",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31610662290478",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289529505831",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16854949545468",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14163917784755",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39155848943904",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35326666852152",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7059606189796",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3128476167880",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2096256423767",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487651405903",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120843729141",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1135004981085",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1119990128446",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1122770847303",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314958306539",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3959838555687",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6378059750943",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75962203474",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4806113946001",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62376610768",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14534235538",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1208243538",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108230094933",
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "729564542117",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6951530929",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1766385155",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5899599110744",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "990796481001",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "449991408466",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85657413997",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1192013839700",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2801441900430",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137137151597",
+        "voter": "team"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "31544281136",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117668471628",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48494829719",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3109630138",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52359143205",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16821575841",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1249553519798",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "4140",
+        "reputation": 0,
+        "rshares": "254434812899",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24664809533",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "993850916624",
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6128545979",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40660963309",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2111077828",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336296162518",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33078614731",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1679913286804",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6908648654",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607350582205",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "7318111876",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438906687",
+        "voter": "btbrokersm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49788861896",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187619295851",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "268562243",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "642644074896",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "5555",
+        "reputation": 0,
+        "rshares": "1766943395",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6513117311",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12100632650",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31247944841",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10685141101",
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6371125766",
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3482166581",
+        "voter": "aizen03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1144871387",
+        "voter": "aizen04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484279852",
+        "voter": "aizen05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4697910260",
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2809843705",
+        "voter": "aizen08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "998676247",
+        "voter": "aizen09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "432141410",
+        "voter": "aizen10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7108197911",
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2986136394",
+        "voter": "aizen11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2052469222",
+        "voter": "aizen14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2413401557",
+        "voter": "aizen19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63404356848",
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636164483",
+        "voter": "aizen15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6297863286",
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52068817069",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632406127",
+        "voter": "aizen20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4134069580",
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1098897970",
+        "voter": "aizen23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2161329779",
+        "voter": "aizen17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3401857817",
+        "voter": "aizen24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "480904068",
+        "voter": "aizen18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1288276552",
+        "voter": "aizen25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2188323605",
+        "voter": "aizen28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3367431130",
+        "voter": "aizen26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1105433613",
+        "voter": "aizen27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3799083911",
+        "voter": "aizen32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2078492559",
+        "voter": "aizen30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3844628260",
+        "voter": "aizen31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265552678",
+        "voter": "aizen33"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1522416482",
+        "voter": "aizen34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305646057",
+        "voter": "aizen35"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5733902324",
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1430549748",
+        "voter": "aizen37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400254865",
+        "voter": "aizen29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2815787548",
+        "voter": "aizen21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65442064945",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4320391334",
+        "voter": "aizen12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1839575941",
+        "voter": "aizen38"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10902354441",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13255149623",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512906056",
+        "voter": "aizen39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410265352",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55570956452",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112713628663",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394735060526",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13621999256",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177272136",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173921081175",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6071598234",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231594690436",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273577264647",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2806302424",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4089836867",
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64046822402",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35372396884",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362176333",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280810708",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184760362426",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38200160741",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73762609484",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "18189030328",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158039253094",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30778616845",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381791828",
+        "voter": "aizen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3278869761",
+        "voter": "aizen41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "931805289",
+        "voter": "aizen42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3174298011",
+        "voter": "aizen46"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "868825550",
+        "voter": "aizen47"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212978339",
+        "voter": "aizen48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111038594",
+        "voter": "aizen49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93226714854",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760726433",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "589691172",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "661803442",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "606579517",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "922473502",
+        "voter": "aizen51"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30493392653",
+        "voter": "etherdesign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446813730",
+        "voter": "aizen43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66332881",
+        "voter": "aizen44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748242419",
+        "voter": "aizen54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109306599844",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18352072104",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1422705803",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17991991431",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "21616460291",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277673518969",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137726541",
+        "voter": "snowden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4705279583",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3712452505",
+        "voter": "bitland"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "886111341",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19960858318",
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24967411073",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9956318457",
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237453951",
+        "voter": "hankrearden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243649644994",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10130788801",
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6260649223",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4121277460",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228974719",
+        "voter": "aizen52"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91537541765",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2493530595",
+        "voter": "jza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1425501767",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95629552818",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3870393694",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570455242",
+        "voter": "chrishronic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1942913778",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186523532",
+        "voter": "aizen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179094095267",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1760131389",
+        "voter": "rockymtnbarkeep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7311842917",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144764547",
+        "voter": "bsgomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5994171994",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116496190",
+        "voter": "bzeen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3412494832",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250932332076",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138656821",
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118470008",
+        "voter": "chugumoto"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "43069591066",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20001018371",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24291698019",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59822924",
+        "voter": "steemchain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59822924",
+        "voter": "whalepool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9804149992",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102875990",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1007768722",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20688732028",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376683720",
+        "voter": "pump"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3634707952",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658167005",
+        "voter": "curator"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "1806888364",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36939521968",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1404116436",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687422157",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "610698043",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82066003",
+        "voter": "aizen53"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11340560412",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146197966",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "810978006",
+        "voter": "candy49"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "348925355",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "947311657",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "440272027",
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "738283145",
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1504063821",
+        "voter": "aizen"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1838470192",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234833038",
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "540665469",
+        "voter": "bento01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41501523047",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1618547851",
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57873464",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240147448",
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5969959739",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58971492",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1304888347445",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240068982327",
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5001534185",
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64020118",
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24852103427",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64028162",
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24020626157",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24535386306",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24544058590",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80221808",
+        "voter": "bento06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43704576634",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265158148559",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10399345553",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5477690509",
+        "voter": "brendio"
+      },
+      {
+        "percent": "4140",
+        "reputation": 0,
+        "rshares": "7070364590",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6276503481",
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61435217888",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81519384165",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "998445432",
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4274854743",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99580782",
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58150459",
+        "voter": "michellek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24539525603",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24537013181",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24534080382",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4337200195",
+        "voter": "armen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24530098576",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6143207897",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24526507450",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24523766631",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3299212767",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102639999",
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146258198190",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11508002267",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144762864",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95622288000",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60024015",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4804440310",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2403604526",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59424313",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54654502",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14027961743",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52985539",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001983645",
+        "voter": "fooblic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175834493",
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278291283",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9684009449",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52848854",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58449787",
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1025417180",
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "815207781",
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228314859",
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61313637",
+        "voter": "jfelton5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111955254",
+        "voter": "sandziro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "726224822",
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3745978172",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54611897",
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69649131",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11789352705",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4015538661",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1155022375",
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1199438241",
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "429168672",
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42612416132",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56563243",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104765652",
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53661976",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "634792077",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221431500",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "879312568",
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77220767",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6669342810",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12152847854",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9301205100",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118588335255",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7822130251",
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59750246",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "699530791",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "479508737",
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786029062",
+        "voter": "cryptomental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14992200918",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12236504108",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50698107",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50691211",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3657683169",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310097833",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71768449",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8994081971",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2307010202",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24517458061",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63610163",
+        "voter": "steempipe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14514190599",
+        "voter": "nastik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190905492",
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55543445",
+        "voter": "bitchplease"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77396528139",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16095463618",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3708243581",
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80071335",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "7100",
+        "reputation": 0,
+        "rshares": "6041489948",
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258844947",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62828027",
+        "voter": "uri-bruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57881328",
+        "voter": "landas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91390518",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4437105078",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23656839672",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759632380",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64527759",
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58930836",
+        "voter": "cryptohazard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1692418493",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98163194",
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13529851827",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "9962881029",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4987124277",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15886429679",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5796897349",
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474964783",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3867093626",
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53093296",
+        "voter": "freesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83379327",
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2477345340",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5805155009",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148331179950",
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633563845",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59219559",
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50370757",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9325126978",
+        "voter": "masterline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174157915",
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10060752182",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55271378",
+        "voter": "negre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2730258409",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7301936139",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120475423",
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51830988",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51729228",
+        "voter": "jeff-kubitz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2021693984",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50377764",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "9951069551",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50210467",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50933404",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4971665568",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219004308",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2451682766",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50852949",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50407156",
+        "voter": "timothy.sykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215238581",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5641974804",
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11966203508",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4915054987",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50602980",
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463846689",
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61035542",
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3147545204",
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4541294541",
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765176609",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69576474",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158001233",
+        "voter": "iliyaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141653069",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158649039",
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158641883",
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157805871",
+        "voter": "serena199"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157774885",
+        "voter": "gia7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157303076",
+        "voter": "richie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157241455",
+        "voter": "coraline88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156977663",
+        "voter": "harlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156939548",
+        "voter": "yanuel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156889267",
+        "voter": "daritza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160719976",
+        "voter": "jasonxg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159386290",
+        "voter": "ibm1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159106214",
+        "voter": "chocolatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96638506",
+        "voter": "dealzgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155548144",
+        "voter": "crowkeep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158504837",
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148942803",
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133720923",
+        "voter": "bromejs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115485161",
+        "voter": "paulocouto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151875752",
+        "voter": "oniondog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154693792",
+        "voter": "kindle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151525581",
+        "voter": "kevinfoesenek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148041723",
+        "voter": "newsfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154017434",
+        "voter": "sawgunner13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150939275",
+        "voter": "xaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147818170",
+        "voter": "dirlei.sdias"
+      }
+    ],
+    "author": "furion",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](http://i.imgur.com/jVLWgAY.png)\n*graphics by @etherdesign*\n\n## Why steemtools\nI have been pretty busy in the past month, working on several Steem related projects:\n- SteemQ, a video platform on top of STEEM\n- steem.li, real-time voting and curation tools\n- IM market-maker, running 24/7\n- a set of curation bots\n- weekly reports on various topics\n\nI had spent a fair amount of time writing code and looking for solutions that would enable me to in part do these things.\n\nThe need for the library emerged, as I realized I had scattered code over all of my projects, in many cases, implementing the same functionalities.\n\nI have also been contacted by half a dozen people on https://steemit.chat, asking for advice on certain problems - problems I had already solved myself.\n\nI think that different people solving the same problems makes no sense - when all we really want is to achieve a higher level goal.\n\nThe purpose of this library is to enable others to do what I do, and avoid the colossal waste of time.\n\n\n## Acknowledgments\nsteemtools is built on top of [piston](https://github.com/xeroc/piston) and [python-steemlib](https://github.com/xeroc/python-steemlib), the awesome Python libraries made by @xeroc.\n\n@jesta has been very helpful in #piston channel on https://steemit.chat, and **steem.ws**, a fast and reliable node cluster has saved me a lot of time, and allowed me to keep working while my local node was re-compiling/replaying.\n\nAnd lastly, @burnin, a guy that [reverse-engineered the voting mechanisms](https://steemit.com/steemit/@burnin/reward-shares-understanding-how-your-votes-affect-a-post), and saved me so much time with the Converter module. \n\nThank you guys, I could not have done this without you.\n\n# Installation\nI highly recommend starting off with [Anaconda distribution of Python 3.5](https://www.continuum.io/downloads).\n\nAfter that, we only need to run one command:\n```\npip install steemtools\n```\n\n\n# Modules\nsteemtools is currently comprised of 4 modules:\n- `blockchain`: all utilities for blockchain traversal/parsing\n- `base`: contains our `Post`, `Account` and `Converter` classes\n- `helpers`: static helper functions\n- `node`: a convenient way to connect to local RPC, with automatic failover to steem.ws\n\n## Blockchain\n-----------------\n\n**Replaying History:**\n```\nfrom steemtools.blockchain import Blockchain\n\nfor event in Blockchain().replay():\n    print(\"Event: %s\" % event['op_type'])\n    print(\"Time: %s\" % event['timestamp'])\n    print(\"Body: %s\\n\" % event['op'])\n```\n\nThis function allows us to go back in time, and replay the entire STEEM blockchain from start to finish. Once it reaches the present moment, it will keep going, printing events with every new block (every 3 seconds or so).\n\nThe output will look a little bit like this:\n![](http://i.imgur.com/HPhjgyp.png)\n\n**Operation Types:**\nPerhaps we aren't interested in all the events, but just specific ones.\nWe can ask `replay` to only give us **votes**:\n```\nfor event in Blockchain().replay(filter_by=\"vote\")\n```\nOr a set of events, such as **votes and comments**:\n```\nfor event in Blockchain().replay(filter_by=[\"vote\", \"comment\"])\n```\n\nFor the reference, the full list of currently available operations is:\n```\nblockchain_operations = [\n    'vote', 'comment', 'delete_comment', 'account_create', 'account_update',\n    'limit_order_create', 'limit_order_cancel',\n    'transfer',  'transfer_to_vesting', 'withdraw_vesting', 'convert', 'set_withdraw_vesting_route',\n    'pow', 'pow2', 'feed_publish',  'witness_update',\n    'account_witness_vote', 'account_witness_proxy',\n    'recover_account', 'request_account_recovery', 'change_recovery_account',\n    'custom', 'custom_json'\n]\n```\n\n**Time Constraints:**\nParsing the ENTIRE blockchain is often unnecessary. We can specify a desired range:\n```\nstart_block = 3598980\nend_block = 4260042\nfor event in Blockchain().replay(start_block, end_block=end_block, filter_by=[\"vote\", \"comment\"]):\n\tpprint(event)\n```\n\nWorking with block numbers is painful, and this is why `blockchain` module comes with 2 helpers:\n```\nget_current_block()\nget_block_from_time(\"2016-09-01T00:00:00\")\n```\n\n**Putting it all together...**\n```\nb = Blockchain()\nhistory = b.replay(\n    start_block=b.get_block_from_time(\"2016-09-01T00:00:00\"),\n    end_block=b.get_current_block(),\n    filter_by=['transfer']\n)\nfor event in history:\n    payment = event['op']\n    print(\"@%s sent %s to @%s\" % (payment['from'], payment['amount'], payment['to']))\n```\nThe above code will fetch all the transfers from September 9th going forward, up until present.\n```\n...\n@victoriart sent 1.000 SBD to @null\n@dude sent 5.095 STEEM to @bittrex\n@devil sent 5.107 STEEM to @poloniex\n@pinoytravel sent 0.010 SBD to @null\n@aladdin sent 5.013 STEEM to @poloniex\n@mrwang sent 31.211 STEEM to @blocktrades\n@kodi sent 0.030 SBD to @steembingo\n...\n```\n\n## Account History\n-----------------\nAccount module allows us to lookup virtual operations, as well as some of the common operations for an individual account.\nUsually it is more efficient to query the account history over parsing the blockchain block-by-block.\n\n\n**Looking up the account history:**\nAccounts module gives us 2 generators for the task, **history**, which gives us account history from inception forward and **history2** which gives us account history newest to oldest. The interface should look familiar, as it is similar to the **replay** from the *blockchain* module.\n```\nfrom steemtools.base import Account\nfrom steemtools.helpers import parse_payout\n\nfor event in Account(\"furion\").history(filter_by=[\"transfer\"]):\n    transfer = event['op']\n    if transfer['to'] == \"null\":\n        print(\"$%.1f :: %s\" % (parse_payout(transfer['amount']), transfer['memo']))\n```\nThe code above will pull the transfer history for my account, find promoted posts by looking for transfers to @null, and finally print the $ amount spent as well as the permlink to the post.\n\n```\n$11.1 :: @furion/steem-analysis-ownership-distribution-and-the-whale-selling-pressure\n$11.0 :: @furion/using-machine-learning-to-fight-plagiarism\n$41.0 :: @furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts\n```\n\n**Virtual Operations:**\nAs mentioned above, there are several operations that are *virtual*, and we cannot obtain these by parsing the blockchain itself. We can however lookup the history of virtual operations on a specific account with the **history** method.\n```\nAccount(\"furion\").history(filter_by=[\"curate_reward\", \"fill_order\"])\n```\nCurrently, the following types are available for the lookup (both virtual and not):\n```\naccount_operations = {\n    'account_create',\n    'account_update',\n    'account_witness_vote',\n    'comment',\n    'comment_reward',\n    'convert',\n    'curate_reward',\n    'fill_order',\n    'fill_vesting_withdraw',\n    'fill_convert_request',\n    'interest',\n    'limit_order_cancel',\n    'limit_order_create',\n    'transfer',\n    'transfer_to_vesting',\n    'vote',\n    'witness_update',\n    'account_witness_proxy',\n    'feed_publish',\n    'pow', 'pow2',\n    'withdraw_vesting',\n}\n```\n\n## Account Methods\n-----------------\nAccount has several helper methods. Here are a few:\n```\nfrom steemtools.base import Account\n\naccount = Account(\"furion\")\n\naccount.get_sp()\n#> 6211.590278675119\n\naccount.reputation()\n#> 62.76\n\naccount.voting_power()\n#> 80.75\n\naccount.avg_payout_per_post()\n#> 142.7166\n```\n\nWe can also easily obtain the latest blog posts. Lets get the titles of most recent 3:\n```\nblog = account.get_blog()\nfor post in blog[:3]:\n\tprint(post['title'])\n\n# outputs:\n# A quick look at @null, and the profitability of Promoted Posts\n# A quick look at the top curators and their rewards\n# Homepage Payout Distribution, Power Law and Project Curie\n\n```\nHow about a list of followers:\n```\nfollowers = account.get_followers()\n#> ['anns', 'benjy33', 'negoshi', ...]\n\n```\n\nLets obtain the curation stats:\n```\naccount.curation_stats()\n# outputs\n# {'24hr': 9.627790750805277, '7d': 57.82547153222017, 'avg': 8.260781647460025}\n```\n\nOr get a basket of features:\n```\naccount.get_features(max_posts, payout_requirement)\n```\n\nOutputs:\n```\n{'author': {'followers': 281,\n  'post_count': 10,\n  'ppp': 142,\n  'rep': 62.76,\n  'sp': 6211,\n  'ttw': 281.0,\n  'winners': 2},\n 'name': 'furion',\n 'settings': {'max_posts': 10, 'payout_requirement': 300}}\n ```\n Check out the `base.py` module for all the methods.\n\n## Posts\n-----------------\nPost is a superset of `piston.steem.Post`. This means that, it behaves the same way, and has all the niceties and helpers that piston's Post object has.\n\nWe can initialize it in any of these ways:\na) using the identifier string\n```\nPost(\"@furion/homepage-payout-distribution-power-law-and-project-curie\")\n```\n\nb) using a piston.steem.Post object\n```\nlast_post = Account(\"furion\").get_blog()[0]\nPost(last_post)\n```\n\nc) using a author+permlink containing dictionary, such as vote\n```\nfor vote in s.rpc.stream(\"vote\"):\n        print(vote)\n        print(Post(vote))\n        \n# {'voter': 'ats-david', 'author': 'whatsup', 'weight': 10000, 'permlink': 're-steve-walschot-investigating-the-wale-scam-assumptions-above-knowledge-20160912t020220232z'}\n# <Steem.Post-@whatsup/re-steve-walschot-investigating-the-wale-scam-assumptions-above-knowledge-20160912t020220232z>\n```\n\n----------\nNow that our Post is initialized, we have access to extra methods. Here are a few:\n```\np = Post(\"@furion/homepage-payout-distribution-power-law-and-project-curie\")\n\np.payout()\n#> 456.003\n\n# if the post was 10 minutes old, this would output 33.33\np.calc_reward_pct()\n#> 100\n\np.is_comment()\n#> False\n\n# not a spam tagged post\np.contains_tags(filter_by=[\"spam\"])\n#> False\n\np.get_votes()\n#> [list of active votes]\n\n```\nCheck out the `base.py` module for all the methods.\n\n\n## Converter\n-----------------\nConverter is a class that tries to convert/calculate different units. I won't go into details in this post, aside from listing the available methods:\n```\nfrom steemtools.base import Converter\n\nc = Converter()\n\nc.sbd_median_price()\nc.steem_per_mvests()\n\nc.vests_to_sp(vests)\nc.sp_to_vests(sp)\nc.sp_to_rshares(sp)\nc.steem_to_sbd(steem)\nc.sbd_to_steem(sbd)\nc.sbd_to_shares(sbd)\nc.rshares_to_weight(rshares)\n```\n\n## Helpers\n-----------------\nHelpers is a set of static methods that are generally useful when dealing with Steem objects.\n```\nfrom steemtools import helpers\n\n# get just the digit part of any asset (STEEM, VESTS, SBD)\nhelpers.parse_payout(\"12.3456 SBD\") \n#> 12.3456\n\n# break down our asset\nhelpers.read_asset(\"12.3456 SBD\")\n#> {'symbol': 'SBD', 'value': 12.3456}\n\n# get time difference in seconds between lets say 2 posts\nhelpers.time_diff(time1, time2)\n#> 1337\n\n# determine if our object is a post or a comment\nhelpers.is_comment(object)\n#> False\n\n# time elapsed in seconds \nhelpers.time_elapsed(post)\n#> 9001\n```\n\n\n## Going forward\nI wanted to be as minimal as possible with the first version, and only include the most essential components.\n\nThere are many new features, and areas in which steemtools can be expanded upon. For instance, an exchange module, that would allow for quick bootstrapping of a market-maker or arbitrage bot. These features may be added later on.\n\nFor now, I am looking for feedback and new ideas on how to improve whats already there, and make the library stable, so people can depend on it.\n\nGithub: [Netherdrake/steemtools](https://github.com/Netherdrake/steemtools)\n\n-------------------\n\n<center>![](http://i.imgur.com/5MaAhy7.png)  Don't miss out on the next post. [Follow me.](https://steemit.com/@furion)</center>\n\n-------------------",
+    "body_length": 11558,
+    "cashout_time": "2016-10-15T04:22:03",
+    "category": "steemtools",
+    "children": 36,
+    "created": "2016-09-13T11:25:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemtools\",\"steem\",\"programming\",\"python\",\"piston\"],\"users\":[\"etherdesign\",\"xeroc\",\"jesta\",\"burnin\",\"null\"],\"image\":[\"http:\\/\\/i.imgur.com\\/jVLWgAY.png\",\"http:\\/\\/i.imgur.com\\/HPhjgyp.png\",\"http:\\/\\/i.imgur.com\\/5MaAhy7.png\"],\"links\":[\"https:\\/\\/steemit.chat\",\"https:\\/\\/github.com\\/xeroc\\/piston\",\"https:\\/\\/github.com\\/xeroc\\/python-steemlib\",\"https:\\/\\/steemit.com\\/steemit\\/@burnin\\/reward-shares-understanding-how-your-votes-affect-a-post\",\"https:\\/\\/www.continuum.io\\/downloads\",\"https:\\/\\/github.com\\/Netherdrake\\/steemtools\",\"https:\\/\\/steemit.com\\/@furion\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T11:25:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 195934837419741,
+    "parent_author": "",
+    "parent_permlink": "steemtools",
+    "pending_payout_value": "1963.324 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "ann-steemtools-a-high-level-python-library-for-steem",
+    "post_id": 939262,
+    "promoted": "56.000 HBD",
+    "replies": [],
+    "root_title": "[ANN] steemtools - A High-Level Python library for Steem",
+    "title": "[ANN] steemtools - A High-Level Python library for Steem",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemtools/@furion/ann-steemtools-a-high-level-python-library-for-steem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2429032704",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34637775323",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394735060526",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173921081175",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1425501767",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116496190",
+        "voter": "bzeen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230027365",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53903761679",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118592809668",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9511629517",
+        "voter": "masterline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7402178350",
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165621540",
+        "voter": "zerozone"
+      }
+    ],
+    "author": "zerozone",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hey steemit,</p>\n<p>Ths is the start of my novel Zero Zone, which takes place in a world where the ozone layer is shrinking every year. But as it is shrinking at a different rate each year, no one knows how much longer they have. The story starts when plane travel is coming to an end, and people have decided where they want to spend their last years. I'm hoping to release the novel here exclusively for six months and start a kickstarter campaign, but that will depend on interest.</p>\n<p>Thank you to everyone who is checking it out.</p>\n<p><img src=\"https://s14.postimg.org/6mw4j2fap/cloud_cover_1005177_640.jpg\" width=\"640\" height=\"425\"/>t</p>\n<p>Chapter 1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Sandra jolted forward as the plane skid across the landing. &nbsp;All that kept her in was her seat belt, which twisted and dug into her skin.. &nbsp;It would hurt later, after the fear had subsided. &nbsp;Beside her a large gentleman grabbed the breathing apparatus that dangled before him. &nbsp;Deep breaths. &nbsp;Sandra closed her eyes as the plane came to a complete spot. &nbsp;She chuckled to herself as a thought came to her. &nbsp;To die on the last plane that would ever leave the ground. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cAre you alright?\u201d Sandra asked the man beside her. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>He took another deep breath with closed eyes. &nbsp;Then, opening them, nodded. &nbsp;Sandra returned the nod with a smile before placing a comforting hand on his shoulder. His breathing slowed. &nbsp;He nodded again, slower. &nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>The speaker crackled above her, \u201cThis is pilot Edward Tarp. &nbsp;You have safely landed in Toronto, Canada. &nbsp;Thank you for flying with us. &nbsp;I have been flying planes for my whole life and wanted to say it has been an honour. &nbsp;Thank you.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>A person in the back started to clap. &nbsp;Then another. &nbsp;Before long, everyone started to cheer. &nbsp;A burst of emotion flooded the plane. &nbsp;Some people couldn\u2019t stop crying. &nbsp;Sandra politely clapped her hands a few times before getting up to grab her luggage. &nbsp;She had already shed her tears. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>With her luggage in hand, Sandra entered the airport. &nbsp;Everything looked normal still. &nbsp;Take a snapshot of a random group of people anywhere in the planet and it was like it was before things started to change. &nbsp;But then talk to those people. &nbsp;One quit his job and is following his dream. &nbsp;A couple can't muster the strength to get out of bed. &nbsp;While a woman is trading up on her addictions, looking to avoid any shred of reality. &nbsp;Everyone grieves differently. &nbsp;Sandra just didn't want to be alone. &nbsp;Now that air travel was no longer an option, people had to quickly decide who it was the wanted to spend their last couple of years with. &nbsp;Sandra chose Greg. &nbsp;She wasn't stuck. &nbsp;There was boats. &nbsp;Ways to return home. &nbsp;Back to Ryan. &nbsp;No. &nbsp;She made her decision. &nbsp;&nbsp;&nbsp;</p>\n<p>\"Sandra!\u201d &nbsp;A bearded man in his late twenties waved his hands in the air. &nbsp;He had on a muscle shirt and long shorts. &nbsp;He rushed towards Sandra. &nbsp;Without warning, &nbsp;he picked her up and spun her around the airport for all to see. &nbsp;Then he put her down to admire her. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cHow have you been?\u201d she asked &nbsp;Greg fixed his glasses. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cGood, you know for the world ending and everything.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cYou were never one to let just trivial things ruin your mood.\u201d &nbsp;&nbsp;&nbsp;</p>\n<p>Greg smiled and winked. &nbsp;He took out a rolled joint and placed it in his mouth. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cI know Canada is relaxed Greg, but we are still in an airport.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Greg finished lighting. &nbsp;He took a drag. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cAirport security isn't what it used to be. &nbsp;They still give a shit in England?\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Greg started to walk to his car. &nbsp;Sandra followed behind him, carrying her own luggage. &nbsp;&nbsp;&nbsp;</p>\n<p>\u201cOh yeah, it's worse. &nbsp;They are cracking down. &nbsp;Trying to keep things civil. &nbsp;Normal. &nbsp;I even got a ticket &nbsp;for littering the other day.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Greg laughed. &nbsp;\u201cWhat a joke. &nbsp;Always so fucking proper. &nbsp;Even doomsday can wait until tea time is finished. &nbsp;&nbsp;&nbsp;</p>\n<p>Greg started to sing a brit punk song about anarchy. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cStill signing I see.\u201d &nbsp;Sandra placed her bags in the back seat of a convertible. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cYeah the band has been booked non-stop. &nbsp;Nobody wants quiet anymore.\u201d &nbsp;&nbsp;&nbsp;</p>\n<p>Greg took another dragged. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cOr sobriety.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cHey I was stoned way before I found out we were all going to die. &nbsp;Everyone else is a poser.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Before Greg could take another hit, Sandra took the blunt from his mouth and placed it in hers. &nbsp;</p>\n<p>\u201cCan at you at least get us home before you get fucked up?\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cHome... I like that.\u201d &nbsp;Greg revved up the engine. &nbsp;Music blasted from the speakers. &nbsp;Sandra let it hit her as she sunk in the seat. &nbsp;With a deep breath she let the smoke fill her lungs.</p>\n<p>Chapter 2</p>\n<p>Sandra woke up with a headache. &nbsp;She hasn't partied like this in years. &nbsp;Around here empty bottles of vodka and gin decorated the loft. &nbsp;A full ashtray. &nbsp;Getting up, slowly, she stretched her body. &nbsp;Draping her body with an over-sized robe, Sandra grabbed her cell phone. &nbsp;She double checked to make sure Greg was still passed out before sneaking out the sliding door that lead to the beach. &nbsp;A slight breeze rushed against her face. &nbsp;It was warm out for a January night. &nbsp;But that was normal now. &nbsp;Winters were like summers. &nbsp;And the summers... &nbsp;&nbsp;</p>\n<p>Sandra waited as the phone rang. &nbsp;Thomas answered on the third ring. &nbsp;</p>\n<p>\u201cHello.\u201d &nbsp;</p>\n<p>\u201cHey stranger.\u201d &nbsp;</p>\n<p>\u201cSandra, is that you? &nbsp;It's four in the morning.\u201d &nbsp;\u201c</p>\n<p>We both knew you would be up.\u201d &nbsp;</p>\n<p>Thomas laughed. &nbsp;\u201cTrue... but what about you?\u201d &nbsp;</p>\n<p>\u201cCan't sleep.\u201d &nbsp;</p>\n<p>A beat. &nbsp;</p>\n<p>\u201cHow was the flight?\u201d &nbsp;</p>\n<p>\u201cGood, until we almost crashed on landing.\u201d &nbsp;</p>\n<p>\u201cAre you okay?\u201d Thomas asked. &nbsp;</p>\n<p>\"Yeah.\u201d &nbsp;</p>\n<p>\u201cTo die on the last plane ride.\u201d &nbsp;</p>\n<p>Sandra smiled, \u201cI thought the same thing... so... how goes the research? &nbsp;Have you saved the world yet?\u201d &nbsp;</p>\n<p>\u201cYou probably would have heard something if I did.\u201d &nbsp;</p>\n<p>\u201cHas there been any progress?\u201d &nbsp;</p>\n<p>Thomas let out a sigh. &nbsp;</p>\n<p>\u201cThomas?\u201d &nbsp;</p>\n<p>\u201cNo Sandra. &nbsp;Nothing. &nbsp;We can't even figure out at what rate the ozone layer is shrinking, let alone what is causing it. &nbsp;Some months it's a lot, some months it's barely noticeable.\u201d &nbsp;</p>\n<p>\u201cHow long do we have?\u201d &nbsp;</p>\n<p>\u201cSome people saw five, some say ten. &nbsp;No one knows.\u201d&nbsp;</p>\n<p>&nbsp;\u201cAnd you're still determined to spend them in a lab?\u201d &nbsp;</p>\n<p>Yep, I will die with a beaker in my hand.\u201d &nbsp;</p>\n<p>Sandra smiled. &nbsp;</p>\n<p>Silence. &nbsp;&nbsp;</p>\n<p>\u201cI miss you,\u201d said Thomas. &nbsp;</p>\n<p>\u201cDon't... please don't.\u201d &nbsp;</p>\n<p>\u201cWhy, you didn't give me a chance to say it before you left.\u201d &nbsp;</p>\n<p>\u201cI gave you plenty of chances, maybe if you looked at me once, you would have seen that I was tired of &nbsp;waiting.\u201d &nbsp;</p>\n<p>\u201cAm I suppose to apologize because of what is happening?\u201d &nbsp;</p>\n<p>\u201cI was waiting for you long before this happened.\u201d &nbsp;</p>\n<p>\u201cYou still blame me. &nbsp;You were with Greg.\u201d &nbsp;</p>\n<p>\u201cYeah and you were with Linda... and they were out of the picture for six months. &nbsp;One of them wasn't even in the country.\u201d &nbsp;</p>\n<p>\u201cWe were BOTH busy then Sandra. &nbsp;Remember, you didn't want to get involved, to mess up our friendship while things were hectic. &nbsp;You just started your job at the hospital. &nbsp;Or did you forget about all that?\u201d &nbsp;</p>\n<p>\u201cAt least I still made time to see you. &nbsp;And no I didn't forget. &nbsp;Don't shove that in my face\u201d &nbsp;</p>\n<p>\u201cSo you're practising medicine out there in Toronto? &nbsp;Making a difference.\u201d &nbsp;</p>\n<p>\u201cOh fuck you Thomas. &nbsp;On your high horse. &nbsp;You work for one person, you, to keep your mind busy, not all of us can find escape like that, so don't make us feel like shit.\u201d &nbsp;</p>\n<p>\u201cI didn't mean to...\u201d Thomas swallowed hard, \u201cI'm just mad Sandra. &nbsp;You left so suddenly. &nbsp;So permanently. &nbsp;And to Greg. &nbsp;Of all people. &nbsp;This isn't the worse part of it I know. &nbsp;It would have been just as bad if you were alone. &nbsp;But still...\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cIf you it makes you feel better, he didn't win, you lost.\u201d &nbsp;</p>\n<p>\u201cThanks, I feel so much better now.\u201d &nbsp;</p>\n<p>Sandra. &nbsp;\u201cAnd I miss you too.\u201d &nbsp;</p>\n<p>\u201cLet's try to keep in touch. &nbsp;I don't know how much longer our phones will work.\u201d &nbsp;</p>\n<p>\u201cWhat do you mean?\u201d &nbsp;</p>\n<p>\u201cThe satellites, didn't you hear?\u201d &nbsp;</p>\n<p>\u201cNo.\u201d &nbsp;</p>\n<p>\u201cYeah we are heading back to the stone age... you don't know about the boats either?\u201d &nbsp;</p>\n<p>Sandra stared off into the distant sea. &nbsp;\u201cBoats?\u201d &nbsp;</p>\n<p>\u201cCommercial ships are stopping at the end of February. &nbsp;Too dangerous with the weather.\u201d &nbsp;</p>\n<p>\u201cOh.\u201d &nbsp;</p>\n<p>\u201cIt's not too late you know... you can come home.\u201d &nbsp;&nbsp;</p>\n<p>\u201cI can't do that to Greg.\u201d &nbsp;</p>\n<p>\u201cHe would probably be too high to remember it.\u201d &nbsp;&nbsp;</p>\n<p>\u201cI'm sorry Thomas.\u201d &nbsp;</p>\n<p>\u201cWas worth a shoot.\u201d &nbsp;</p>\n<p>\u201cI should go...\u201d &nbsp;</p>\n<p>\u201cI understand. &nbsp;We will talk soon.\u201d &nbsp;</p>\n<p>\u201cYeah... we will... bye Thomas.\u201d &nbsp;</p>\n<p>A tear started to slide down Sandra's cheek. &nbsp;She let herself feel the wind brush against it before wiping it off. &nbsp;Then she turned around to go back to bed. &nbsp;But before she left the beach something caught her eye. &nbsp;There was a man with a camera pointed towards the sky, over the water. &nbsp;Sandra wandered over to get closer. &nbsp;When she was a couple of feet away she looked up to see what he was looking at. &nbsp;Nothing. &nbsp;It was pitch black. &nbsp;But then the sun started to rise. &nbsp;Magnificent shades of red and orange illuminated the air. &nbsp;It was like being under a blanket of fire. &nbsp;Sandra watched on in awe as the sound of a clicking camera went off beside her. &nbsp;</p>\n<p>\u201cIs this the first sunset you have seen since it started.\u201d &nbsp;</p>\n<p>\u201cYeah,\u201d she said, still looking at the sky. &nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cThey get more beautiful each day. &nbsp;As the sun gets closer.\u201d &nbsp;&nbsp;</p>\n<p>\u201cThe sun isn't getting closer.\u201d &nbsp;</p>\n<p>\u201cI know, but it's easier to say that. &nbsp;People spend too much time trying to explain things.\u201d &nbsp;He took another couple of shots. &nbsp;\u201cI've been getting a lot of great shots. &nbsp;Of people too. &nbsp;It's like a magnifying glass. &nbsp;We are still who we are, just now exposed. &nbsp;Maybe intensified is the better word. &nbsp;So much emotion.\u201d &nbsp;</p>\n<p>\u201cIt's too bad...\u201d &nbsp;Sandra stopped what she was saying. &nbsp;It didn't need to be said: too bad no one will see them. &nbsp;</p>\n<p>The photographer looked at Sandra. &nbsp;He gave her a slight nod and went back to taking photos. &nbsp;\u201cIt won't hurt.\u201d &nbsp;</p>\n<p>\u201cSorry.\u201d &nbsp;</p>\n<p>\u201cThe sun... when the ozone layer can't protect us anymore and the sun engulfs us. &nbsp;It won't hurt.\u201d &nbsp;</p>\n<p>Sandra just stared back. &nbsp;Her hands started to shake. &nbsp;Light at first, but then. &nbsp;She rushed back into the house and flung open the cabinet doors. &nbsp;With force she moved things around and through pots out of her way. &nbsp;The sound echoed through the loft. &nbsp;Greg woke up. &nbsp;He walked up behind Sandra who was rustling through the entire kitchen. &nbsp;</p>\n<p>\u201cSandra?\u201d &nbsp;</p>\n<p>\u201cI need a drink.\u201d &nbsp;</p>\n<p>\u201cCome back to bed.\u201d &nbsp;</p>\n<p>Sandra turned and looked at Greg. &nbsp;&nbsp;\u201cI need a fucking drink.\u201d &nbsp;</p>\n<p>Greg moved over to his closet and pulled out a half empty bottle of vodka. &nbsp;Sandra took it and chugged it back. &nbsp;She almost finished it before gasping for air. &nbsp;Then she shrunk to the floor, balling up as tight as she could. &nbsp;Greg wrapped his arms around her. &nbsp;Tears. &nbsp;It was going to be a long night.</p>\n</html>",
+    "body_length": 13002,
+    "cashout_time": "2016-10-14T23:36:33",
+    "category": "story",
+    "children": 2,
+    "created": "2016-09-13T18:25:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"story\",\"scifi\",\"novel\",\"writing\",\"fiction\"],\"image\":[\"https:\\/\\/s14.postimg.org\\/6mw4j2fap\\/cloud_cover_1005177_640.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T18:25:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 797070975804,
+    "parent_author": "",
+    "parent_permlink": "story",
+    "pending_payout_value": "0.199 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "welcome-to-zero-zone-what-would-you-do-if-the-ozone-layer-started-shrinking-every-year-chapter-1-and-2-sci-fi",
+    "post_id": 942470,
+    "promoted": "56.000 HBD",
+    "replies": [],
+    "root_title": "Welcome To Zero Zone: What Would You Do If The Ozone Layer Started Shrinking Every Year? (Chapter 1 and 2, sci fi)",
+    "title": "Welcome To Zero Zone: What Would You Do If The Ozone Layer Started Shrinking Every Year? (Chapter 1 and 2, sci fi)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/story/@zerozone/welcome-to-zero-zone-what-would-you-do-if-the-ozone-layer-started-shrinking-every-year-chapter-1-and-2-sci-fi"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "12704385632203",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "105034260744",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "304436054466",
+        "voter": "justin"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "680873179904",
+        "voter": "silver"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "1559039534729",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2265252921483",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3820217513376",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099190450",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762481721",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697315118",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54008589524",
+        "voter": "bue"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "212539266004",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660921578",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213661759",
+        "voter": "moon"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "7747691597",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622724514",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1096208710228",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967195088",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288140285",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24444650979",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46091338521",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15462863713",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7731203787",
+        "voter": "nate-atkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14461373144",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431846323",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195623493637",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38891594263",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40582077328",
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49459902417",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17904315172",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58324369537",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269921024",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8820348623",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198782719642",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32000322278",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1754810863",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1416077654",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15137777269",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4405562279",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10494607724",
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44055891876",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1981014395",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62388024554",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222541650110",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4301982638",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35137895022",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214413449699",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "373770800",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156827413",
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7093464346",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18452890042",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4018940869",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6589126730",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27754280909",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9225263659",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34806924023",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20214947680",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7204798505",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2724786905",
+        "voter": "uuuhha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343630735",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "749461135",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1051682203",
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11737919032",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85929715216",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29985095390",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "18497505764",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89949939",
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7757965105",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4371892494",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709202486",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14193476029",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61025286",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112625060",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "477969572",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267639325",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3377536592",
+        "voter": "steemokto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54321981",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5550288535",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51575887",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454788",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51519509",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1493629031",
+        "voter": "meerkat"
+      }
+    ],
+    "author": "hitmeasap",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "# Life is unfair.. and it's okay.\n\nSome people will have better luck and fortune than others. Nothing will ever stop that. Life is unfair. - **We all know it**. However, people also tend to discuss the fairness of steemit. - I've done it myself too so I know what I'm talking about.\n\n<center>http://cdn.h3sean.com/wp-content/uploads/2011/10/Unfair.png</center>\n<center>[Source](http://h3sean.com/god-unfair/)</center>\n\n> *\"Steemit is unfair.\"*\n\nBut.. Is it really unfair? - **I don't know. Perhaps. Probably.**\n\nHave you ever gambled on a casino? In real life or online doesn't matter.\n\n**- I bet some of you've done that.**\n\nHave you ever played a computer game, a card game or have you ever played monopoly with your family, friends or against other people?\n\n**- I bet most of you have done that.**\n\n<center>http://blogs.lasprovincias.es/elsindromededarrin/files/2016/07/o-MONOPOLY-facebook-1.jpg</center>\n<center>[Source](http://blogs.lasprovincias.es/elsindromededarrin/)</center>\n\n### The follow-up questions are..\n- Did you win? - Did you win every single time you played? - Are you the best there is at the game?\n\nI bet most of you would love to answer **yes** on these questions but in reality, most of you would lie if you did that. - You didn't win everytime and you're probably not the best player ever at these games. - **Is that unfair?**\n\n- It's life. It's bound to happen. You'll never be able to win everytime you play a game against others. At some point you'll meet someone who's better than you. A person with more skills. A person with more knowledge, experience or a person who've trained more than you. A person with more luck.\n\nYou will lose that game.. **And that's okay.**\n\n---\n\n<center>http://i.imgur.com/bYmdHcX.gif</center>\n<center>[Source](https://www.reddit.com/r/gifs/comments/1ubutj/the_power_of_mike_tyson_in_his_prime/)</center>\n\n### With that being said..\nIf I tried to fight Mike Tyson or Muhammad Ali, in the past, during their glory days.. I would probably end up dead. I don't have the fighting skills it takes to bring down such monstrous beasts.\n\nSo.. **How can I expect to get a ton of rewards on Steemit with every single post of mine?** - It's impossible.. Or is it..?\n\nWhat you count as *\"a ton of reward\"* would obviously play a major role in this so let's say anything between $100 and $300+. That would be 1 or 2 whales. On each post. **Roughly estimated.**\n\nI've told you this before. I had never owned a bitcoin before I joined steemit. I don't consider myself to be *\"the lucky guy\"*, but I'm not unlucky either. **I believe I deserve what I've made so far.**\n\nI share content, I try to promote steemit and I try to help others and all that.. I contribute. More on that later in this post.\n\n---\n\n<center>http://www.worldmomsblog.com/wp-content/uploads/2013/10/ID-10086141.jpg</center>\n<center>[source](http://www.worldmomsnetwork.com/2013/10/30/egypt-can-life/)</center>\n\nAnyhow, I never owned a bitcoin before I joined steemit... **So I wouldn't call myself a bitcoin expert would I?** - Especially since there's thousands of other people here with more knowledge than me. People who are true experts. I leave that subject where it is. **In the hands of the real experts**. In the hands of people who understand what it's all about. People who know every single detail about it.\n\n### So, what can I do? - And what should I post?\n\nFirst of all, I would give myself some time and think about this entire community we have here. What can I do for steemit? - What can I do for you? - **What can I bring to the table?**\n\nDo I have something that others lack? - Am I better at something than others..?\n\n- **In my case I would say no**. I never compare myself with others like that. I find it stupid.. And I would probably only hurt myself if I did.\n\n## Why do I even mention this then..?\n\n<center>http://2.bp.blogspot.com/-y0CGvDsBGMI/UszG2RE2SkI/AAAAAAAACWk/_5DP51zVdwM/s1600/standinginyourway.png</center>\n<center>[Source](http://quotesgram.com/your-own-worst-enemy-quotes/)</center>\n\n- Because **time** and **thoughts** is what will give you an upper hand. **An upper hand against yourself.**\n\nYou are your biggest hinder. On steemit and in life. You are the one standing in front of the treasure but you lack the courage to grab it. I've been there too and it's okay. - **As long as you are aware of it.**\n\nYou are your own enemy so don't spend time comparing yourself with others.. **Don't get more enemies.**\n\n---\n\n## Moving on..\n\nYou should always publish content you want to share. Things you believe in, things you like. What you truly want to share. Not what you think others would like. That's a pretty common sentence these days. I've said it myself too a bunch of times already.. **So why do I bring it up once more?**\n\nI don't know you in person. I don't know what type of person you are or what you can or cannot do.. But I do know that there's an endless ocean of people out there (perhaps not on steemit alone) who doesn't know what to write.. Even though they know that they should publish content they like to share!\n\n**And why is that?**\n\n- The main reason for this is that some people aren't aware of the things they are good at.\n\nThey know but they would never answer a question with that.\n\n---\n\n### I'll give you an example of this:\n\nImagine a job interview. Some people are nervous so they shake and others are filled with confidence.\n\n<center>http://i.huffpost.com/gen/1937498/original.jpg</center>\n<center>[Source](http://www.huffingtonpost.com/2014/07/30/hunger-entitlement-study_n_5631594.html)</center>\n\nSuddenly the question comes..\n\n- **What are your qualities as a person?**\n\nor\n\n- **Why should we hire you instead of someone else?**\n\nAny of these two questions means instant death to some people. **They don't know how to answer that.**\n\nThey know that they are a great parent, amazing artists or very skilled football players.. But they don't mention that during the interview or as answers for these questions because it doesn't *\"fit\"*.\n\nThe job is for a grocery store or as a salesperson, literally anything that doesn't *\"fit\"* your category.. So to be a great football player or a good artist doesn't count.. Right? - **Wrong.**\n\n<center>http://cyrusevanado.s3.amazonaws.com/ai/selfmarketing/images/shoppingdude.jpg</center>\n<center>[Source](http://cyrusevanado.s3.amazonaws.com/ai/selfmarketing/index.html)</center>\n\n## A great answer is more important than \"the answer\".\n\nWhat do I mean by that? - **Take a look at this:**\n\n- **What are your qualities as a person?**\n\n> *\"I am a humble person with a burning desire to build a family, raising two beautiful kids, driving a SUV and take my kids to Disneyland. I would love to see my kids with that super-smile on their face when they hug Mickey Mouse. That's who I am. Do you have kids?\"*\n\n- **Why should we hire you instead of someone else?**\n\n> *\"I've always loved to share my creations as an artist with the people around me. I'm hardworking and I've been freelancing full time for 5 years now.\"*\n\n**Now your face probably looks like this:**\n\n<center>https://static4.fjcdn.com/comments/What+face+_78d9aaf81a6f9b7902ca1ee371b90428.png</center>\n<center>[Source](https://funnyjunk.com/channel/feels/We+all+know+that+feel/XsvvGKf/6)</center>\n\nAnd yeah, I can understand why.. This was confusing for me too when I first encountered this.. But let me break this down for you even further..\n\n**What did I accomplish with these answers? - None of them are actually *\"related\"* to the questions, right?**\n\n- **In the first answer I actually tell them this:**\n\n> I am humble person, a good listener and I'm willing to help others.. I am a dreamer and I will work hard to get there. I will bring my A game at all times.\n\n- That's not at all the things I said, but that's how most people will interpret it. Having a family, raising kids and having dreams about vacations, smiles and a SUV. **That speaks for itself.** That means you're willing to push yourself to get there. You also touch their hearts with this. You go deep. You go to a personal level.\n\n**In my second answer, I tell them this:**\n\n> I care about others. I help others and I feel good about it. I work hard no matter what's at stake and I always deliver. I've delivered for 5 years already and I won't stop now.\n\n- Again, this isn't near the things I said.. But between the lines, this is a perfect match of what I gave as an answer. You share your creations which basically means that you care about others and that's important no matter what you'll work with. You've also been working full time for the past 5 years, so you are filled with confidence, know-how and you're still alive.. **So that means that you know what you're doing.**\n\n---\n\n### Most people would answer these questions like this:\n\n> My name is ______ and I'm ___ years old. I live ______ and I'm interested in this job. I previously worked at ________. I am honest, loyal and trustworthy. I am a nice person if you asked my friends.\n\nAnd sure, this isn't bad.. But it's the same type of answer they got a billion times before.. - Hopefully, you understand my point with this. - Use your talents. Think about it. **You have much more than you are able to see!**\n\n<center>http://img12.deviantart.net/62ed/i/2011/140/d/6/be_you_wallpaper__grey_by_lileviljess-d3gs5ts.jpg</center>\n<center>[Source](http://lileviljess.deviantart.com/art/Be-You-Wallpaper-Grey-209586304)</center>\n\n---\n\nShare what you are. Share the things you are good at. Share things you've done and things you do.. **Be you.** - That's what will bring you the most rewards in the long run. Especially on a personal level.\n\n<center>**Be the best you can be.**</center>\n\n---\n\n### What do I do..?\n\nI share things I care about. I share things from my personal life. I share things I feel good about.\n\nI also share *\"Hidden Photography Gems\"*. - None of them have reached high rewards.. I've also just recently launched a special contest. A \"secret contest\" and I've even sent the winner the prize money. I earned 1.8 STEEM POWER and lost $27 SBD in total doing that.. - **And I'm truly glad I did what I did.**\n\nI do this to help others. I do this to bring value, faith and happiness to steemit. It's not much but it's something. Hopefully I can encourage people. I can't change a person's life with my votes or with $27 SBD but I can make a huge difference with my words. I can spread the word as much as possible and hopefully, at some point, someone will pick that up.. **And that's the chance we're looking for!** \n\n<center>**That's the chance I want to give to all of us.**</center>\n\nWhen I feature people's posts I always wish that they will receive comments and upvotes, I would love to see that. On each and everyone of the posts I feature.. I will continue to spread my word and publish authors from the photography section because I feel that the photography section deserves much more attention.\n\nIt doesn't matter if it will get more attention in a month or a year automatically when more users have joined steemit.. I want to be part of this. I want to spread the word. I want to help. - **And I will continue to do that.**\n\n<center>**I do this because I feel good about it .. And in return, I help you. In one way or another.**</center>\n\n<center>http://www.sirenconsultingfirm.com/wp-content/uploads/2015/04/something-better-than-nothing.jpg</center>\n<center>[Source](http://www.sirenconsultingfirm.com/in-marketing-something-is-better-than-nothing/)</center>\n\n---\n\n<center>[**Feel Free To Follow Me**](https://steemit.com/@hitmeasap)</center>\n\n---",
+    "body_length": 11587,
+    "cashout_time": "2016-10-01T15:20:27",
+    "category": "steemit",
+    "children": 19,
+    "created": "2016-08-31T12:07:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"writing\",\"life\",\"blog\",\"steem-help\"],\"image\":[\"http:\\/\\/cdn.h3sean.com\\/wp-content\\/uploads\\/2011\\/10\\/Unfair.png\",\"http:\\/\\/blogs.lasprovincias.es\\/elsindromededarrin\\/files\\/2016\\/07\\/o-MONOPOLY-facebook-1.jpg\",\"http:\\/\\/i.imgur.com\\/bYmdHcX.gif\",\"http:\\/\\/www.worldmomsblog.com\\/wp-content\\/uploads\\/2013\\/10\\/ID-10086141.jpg\",\"http:\\/\\/2.bp.blogspot.com\\/-y0CGvDsBGMI\\/UszG2RE2SkI\\/AAAAAAAACWk\\/_5DP51zVdwM\\/s1600\\/standinginyourway.png\",\"http:\\/\\/i.huffpost.com\\/gen\\/1937498\\/original.jpg\",\"http:\\/\\/cyrusevanado.s3.amazonaws.com\\/ai\\/selfmarketing\\/images\\/shoppingdude.jpg\",\"https:\\/\\/static4.fjcdn.com\\/comments\\/What+face+_78d9aaf81a6f9b7902ca1ee371b90428.png\",\"http:\\/\\/img12.deviantart.net\\/62ed\\/i\\/2011\\/140\\/d\\/6\\/be_you_wallpaper__grey_by_lileviljess-d3gs5ts.jpg\",\"http:\\/\\/www.sirenconsultingfirm.com\\/wp-content\\/uploads\\/2015\\/04\\/something-better-than-nothing.jpg\"],\"links\":[\"http:\\/\\/h3sean.com\\/god-unfair\\/\",\"http:\\/\\/blogs.lasprovincias.es\\/elsindromededarrin\\/\",\"https:\\/\\/www.reddit.com\\/r\\/gifs\\/comments\\/1ubutj\\/the_power_of_mike_tyson_in_his_prime\\/\",\"http:\\/\\/www.worldmomsnetwork.com\\/2013\\/10\\/30\\/egypt-can-life\\/\",\"http:\\/\\/quotesgram.com\\/your-own-worst-enemy-quotes\\/\",\"http:\\/\\/www.huffingtonpost.com\\/2014\\/07\\/30\\/hunger-entitlement-study_n_5631594.html\",\"http:\\/\\/cyrusevanado.s3.amazonaws.com\\/ai\\/selfmarketing\\/index.html\",\"https:\\/\\/funnyjunk.com\\/channel\\/feels\\/We+all+know+that+feel\\/XsvvGKf\\/6\",\"http:\\/\\/lileviljess.deviantart.com\\/art\\/Be-You-Wallpaper-Grey-209586304\",\"http:\\/\\/www.sirenconsultingfirm.com\\/in-marketing-something-is-better-than-nothing\\/\",\"https:\\/\\/steemit.com\\/@hitmeasap\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T12:07:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 24514948172217,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "73.494 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "be-you-and-do-what-you-can-something-is-better-than-nothing-and-i-will-prove-it",
+    "post_id": 811989,
+    "promoted": "55.593 HBD",
+    "replies": [],
+    "root_title": "Be You And Do What You Can. Something is better than nothing.. And I will prove it!",
+    "title": "Be You And Do What You Can. Something is better than nothing.. And I will prove it!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@hitmeasap/be-you-and-do-what-you-can-something-is-better-than-nothing-and-i-will-prove-it"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3524228779652",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6477125435976",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098742961",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3761875241",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697251186",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53918968411",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660692110",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213653566",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4790525555711",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451819636",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622663865",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967093470",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120064536876",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6963772512",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288128811",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174336102579",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9897393976",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267941793269",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19711517082",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1788305838",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12103154713",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10305797835",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12933012144",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557026163",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29863829277",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16091694977",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13785536342",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38979119618",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4403600439",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10677362107",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43992127824",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6300860897",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81756916",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88525673",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65254203",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20050332528",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102477256",
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3584463911",
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214295992700",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78741972",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26224201592",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4072989135",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9927906746",
+        "voter": "crypto.owl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18443477896",
+        "voter": "proto"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "129594107",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25927425773",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9220847952",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65123045108",
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87343265",
+        "voter": "steemit-inga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1130098597",
+        "voter": "grinderman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73035596",
+        "voter": "themagus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84546938",
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4846062340",
+        "voter": "lianbing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299755454",
+        "voter": "coloured-content"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1390975245",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85835245422",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235147262",
+        "voter": "remington-art"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1247707985",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51304758",
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2427002800",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1159739581",
+        "voter": "maryfromsochi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70169318",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5820808435",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67870265",
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54495464",
+        "voter": "lexikon082"
+      }
+    ],
+    "author": "mranderson",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Okay folks, just to spark your interest. When I am done with this SteemAway campaign for Ted I have plans to do something exciting with a car of mine (Very nice car) that will result in someone getting it delivered by me for free. &nbsp;So show your support for this amazing artist and then find out how you can get one of my cars for FREE (For Freedom).</p>\n<p>When \"<strong>Promote</strong>\" came on the scene and combining that with my previous attempts at pay it now has led me to this new iteration of STEEMAWAY. &nbsp;I have no doubt that once this algorithm is figured out correctly people are going to be filling up the site with steemaways. I hope with the geniuses behind SteemIt.com they will be able to filter these into their own category. Based on my newest change I think we are going to get there sooner rather than later @steemit</p>\n<h3><br>\nOkay biggest change: <strong>10 SBD = 1 Entry into the active</strong> <strong>SteemAway</strong>.</h3>\n<h3>There are <strong>two ways you can increase your odds</strong> by powering up your vote (Every Voter receives at least one entry):</h3>\n<p>1) Heavy Weighted Steem Power: We all know folks (Whales) with one vote can bring a lot of SBD to any post. Same as before the top ten voters with the highest cumulative weight q score will get 10 entries per their 1 upvote for that steemaway; so the top 10 usernames still get x10 for this steemaway's vote.</p>\n<p>2) I read the recommendations in the promote post of allowing us smaller fish in the sea to have ability to temporarily be whales. Well this is your chance. Every 10 SBD (No Limit!) you send @remington-art you will get 1 entry into the steemaway; so with 100 SBD you can get as many entries as the top ten whales.</p>\n<pre><code><em>Instructions on how to increase your odds: </em><em><strong>send SBD</strong></em><em> in increments of 10 (10SD/1Entry) to </em><em><strong>@remington-art with /world-famous-american-pastel-artist-gives-his-original-art-away-to-one-lucky-steemit-voter-and-you-can-also-vote-like-a-whale --in the memo</strong></em><em>.</em></code></pre>\n<h3><a href=\"http://steemaway.win/\">http://SteemAway.Win</a> to easily see who is steemawaying on STEEMIT</h3>\n<h1>Today's Painting:</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/AutumnBlossoms85dc1.jpg\" alt=\"AutumnBlossoms85dc1.jpg\" width=\"686\" height=\"904\"/></p>\n<p><strong>Autumn Blossoms</strong></p>\n<blockquote>I have always loved creating variations on Autumn scenes, the golden season, providing an Artist with stunning colors, the o most effulgent time of the year; affording an Artist an opportunity to turn inward as well as observe outwardly, letting the eyes and imagination to roam freely.</blockquote>\n<h2>Product Description</h2>\n<p>Dimensions: Image Size: 25\" x 20\"</p>\n<p>Medium: Soft Pastel</p>\n<p><br></p>\n<p>The winner is welcome to pick any of Ted's previous SteemAway's (Except the $3,500 and any other sold already)<br>\n</p>\n<p>Throw your Steem Dollars (vote and/or donate) in for a chance to receive free an Original Painting with a personal message written on the back from the artist, Ted F. Remington.</p>\n<h3>Shipped to your home at <strong>NO COST</strong>. We have shipped all over the world.</h3>\n<p><br></p>\n<h2>The Terms for this STEEMAWAY:</h2>\n<p>Minimum Steem Dollars for the Give Away (SteemAway): 2,000 SBD</p>\n<p>We will add up total SBD @remington-art receives (10SBD for 1Entry; unlimited on how much you donate); Votes received from all previous SteemAways. So keep voting to increase your chances of winning the current active SteemAway.</p>\n<p>Current SteemAway SD for Ted Remington: 501.944 SBD (Goal needed to be reached for this SteemAway is 2,000 SBD) so we are already getting there.</p>\n<p>One Randomly selected Upvoter/Donation-username will chose one of the equal value paintings Ted has posted thus far and comment below their selection. We will keep private information private and have several options for the winner to share their shipping address and personal note from Ted Remington written on the back of the painting (Optional); Steemit makes it easy to verify winner:) We will attempt to ship anywhere there is postal services -- FREE of Charge. Of course these paintings will need to be signed for and they will be insured. Once the painting is received we ask you please comment here confirming the fact (Pictures and/or blog post would be great!).</p>\n<p>The winner for this round will be announced here and also using random.org premium service to pick a name that is a independent third party publicly verified results. Ted and I plan to post one painting every day or two for the next 30 days, so follow me and you can also bookmark <a href=\"http://steemaway.win/\">http://steemaway.win</a> to see all current and past SteemAways.</p>\n<p>-------------------------------------------------------------------------------</p>\n<p>Current Top Ten Heavy Weight Leader Board (Get x10 for this steemaway vote)</p>\n<p>SteemStats.com (I will be adding up sum of all previous steemaways vote weights for ted until the minimum for that giveaway is reached)</p>\n<p>(1)<strong>9,776.6q Weight @au1nethyb1</strong></p>\n<p>(2)<strong>9,366.8q Weight @nextgencrypto</strong></p>\n<p>(3)<strong>8,646.4q Weight @berniesanders</strong></p>\n<p>(4)<strong>8,547.1q Weight @silversteem</strong></p>\n<p>(5)<strong>6,675.9q Weight @complexring</strong></p>\n<p>(6)<strong>5,940.7q Weight @wang</strong></p>\n<p>(7)<strong>4,164.7q Weight @laonie</strong></p>\n<p>(8)<strong>3,034.1q Weight @roadscape</strong></p>\n<p>(9)<strong>2,951.4q Weight @silver</strong></p>\n<p>(10)<strong>1,312.5q Weight @riverhead</strong><br>\n</p>\n</html>",
+    "body_length": 5690,
+    "cashout_time": "2016-09-30T14:30:21",
+    "category": "steemaway",
+    "children": 3,
+    "created": "2016-08-30T12:47:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemaway\",\"art\",\"promote\",\"giveaway\",\"marketplace\"],\"users\":[\"steemit\",\"remington-art\",\"au1nethyb1\",\"nextgencrypto\",\"berniesanders\",\"silversteem\",\"complexring\",\"wang\",\"laonie\",\"roadscape\",\"silver\",\"riverhead\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/AutumnBlossoms85dc1.jpg\"],\"links\":[\"http:\\/\\/steemaway.win\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T22:24:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16179555547257,
+    "parent_author": "",
+    "parent_permlink": "steemaway",
+    "pending_payout_value": "36.770 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "world-famous-american-pastel-artist-gives-his-original-art-away-to-one-lucky-steemit-voter-and-you-can-also-vote-like-a-whale",
+    "post_id": 800533,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "World Famous American Pastel Artist Gives His Original Art Away To One Lucky SteemIt Voter & You Can Also Vote Like a Whale",
+    "title": "World Famous American Pastel Artist Gives His Original Art Away To One Lucky SteemIt Voter & You Can Also Vote Like a Whale",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemaway/@mranderson/world-famous-american-pastel-artist-gives-his-original-art-away-to-one-lucky-steemit-voter-and-you-can-also-vote-like-a-whale"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33250846024",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290979005478",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200086864853",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14756348450",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38472977395",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331726253139",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33891443561",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9248653425",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3934271770",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17801450353",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13348811873",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259753743155",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "753502879",
+        "voter": "christoph3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205139978",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3374026415",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193551595441",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54492837940",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8135417710",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30669376448",
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16250564070",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108945051515",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315110283",
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2768225332",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6875953091",
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "332453178",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2085357345",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3784339280",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25045323080",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202731558",
+        "voter": "jasen.g1311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16644718123",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8404566484",
+        "voter": "youngkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59017018",
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54969517",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23050926868",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136485074",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3410342216",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151302584",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145609627",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61296223",
+        "voter": "strangedays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1157113501",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7241046641",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "801075067",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499905278",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54679571",
+        "voter": "cnmtz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10280181725",
+        "voter": "stiant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1580324483",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444410694",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53451619",
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "783048637",
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94346928",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2921775535",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89309975",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78281569",
+        "voter": "benberger"
+      }
+    ],
+    "author": "craig-grant",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "### Good food is happy freedom\nhttps://www.youtube.com/watch?v=7CbwrsfB5-g\n\n### Every day is the same day repeating itself, just as 1 second of now.\n\n### Inequality is having to get permission or give apology.\n\n### JOY is my force field.\n\n---\n\nOn the way to the sushi restaurant...\nhttps://www.youtube.com/watch?v=V2gmGK3ftOY\n\n---\n\n## Craig Grant in 1999\nI no longer had the financial support of my girlfriend, and things slowed down for me with music. I had now admitted to myself that I had failed at becoming famous hip hop star and was ready to go back to school. I moved back to my mothers house and cut myself off from most of my music friends. I started night classes at Palm Beach Community college. I hated it. I continued to work with my rap group ACU to complete their album, but stopped with everything after that. Julie was working in a salon and would occasionally come to visit me. We talked allot on the phone at night while I worked delivering pizza. She had some cute girlfriends and I always asked her to hook me up. Our long phone conversations would often venture into sexual subjects. Julie(Yuliana's nick name) had a girlfriend that was bisexual, she often spent the night at Julie\u2019s house and they would pretend to be messing with each other while I was on the phone. One night me and a friend named Mr. Menace picked up Julie and her bisexual friend to hang out. We went to my mothers house and all got drunk. They were scared to have sex with us, but we convinced them to let us watch them. They did a little bit, not much. I was pleased to see Julie in just her panties for the first time. I was so drunk and started talking about my childhood for a long time.\n\nI was desperate to find a way out of my mothers house and out of school. I started thinking maybe now it\u2019s time to find a rich old woman, my last resort to wealth. Early in the year I found a flier advertising Unlimited long distance for a flat rate of $59 per month. I could tell this was a new company and new technology, and I wanted to get involved. The company was International Communications Corporation from Boca Raton, Fl. I called them and asked if there was a away I could make $$ promoting their service. They signed me up as a reseller making $25 per new customer plus 10% of the recurring phone bill. I made fliers and advertised the service in the local news paper. I made a web site called LongDistanceFlat.com that was programmed to sign up new customers online. At first my web site collected the customer information, then I would print and fax the order. When I started the service was only available locally, but the company grew fast and then it was available nationwide. I started learning how to promote my web site online to get more customers. I started getting checks in the mail. I was happy to be making $$ this way. It took allot of work but I was working for myself without a boss on my back and making my own hours, I liked it. I spent all the $$ I made delivering pizza on promoting LongDistanceFlat.com.\n\nIn August my daily routine was to deliver pizza and get on the Internet, I quit school. My mother was concerned. One Saturday night she yelled at me to get out the house and go party, she was all dressed up to go out. She said I was spending too much time on that dam computer. I told her \u201cThis is going to pay off\u201d. My only friends in this time was Lesmes and Julie. Me and Lesmes were doing music, and Julie would visit about 3 times per week. I started showing her all the cool stuff I am doing online and how I am making $$ with it. I also showed her a personal ad I had on excite.com to find a girlfriend. I had a few responses and went on a couple dates, but nothing good. Julie put a personal ad in excite.com just for the fun of it, she got hundreds of responses in just 2 days, it was overwhelming. She read the messages and laughed. She brought a very sexy friend to my house once, her name was Sophie. Julie started looking better now that she had been working in the salon, she also had a nice car, a red convertible Mustang.\n\nWhile promoting LongDistanceFlat.com I started a promotion offering a free cordless phone to new customers. Free stuff offers got allot of attention online, and it was easy to get links on free stuff sites for my offer. I started surfing the Internet to find free stuff sites to place my offer. I noticed how well built these sites were and everything was free. I knew there was $$ being made and I wanted to know how to make it too. I dug deeper and after a month I figured out what affiliate programs were. Many of the free offers were companies collecting information and would pay me up to $1.00 for a name and address and send a free product to that customer.\n\nIn three months I taught myself how to use Front Page and launched my first free stuff site free4women.com in late 1999. I made the free4wmaon.com site with 2 pages, 1 page with the TOP 100 FREE STUFF offers online, all these offers I get paid $$. The other page was a collection of legitimate FREE beauty product offers for women. These offers were REAL free offers that I did not get paid for, but was a GREAT way to market the site to get traffic. I worked VERY HARD loooong hours to market my site with every tool available to me. I created a personality called \u201cJanet\u201d for posting in forums..ect, because free stuff surfers respond more to women online than men. I had spent about $500 of my own $$ and I made that $500 back before I was able to spend more, so the site was paying for itself and then some. One of my biggest offers was an online bank called x.com (now PayPal). They offered $20 free to open a bank account online, and $20 for very person your refer, deposited to your x.com online bank account. X.com also sent a visa debit card for the account. The online form to open the account was one page, and short. You would see the $20 instantly in your new online bank account. I promoted that offer and made $2000 per week. I spent most of the $$ I made on promoting the web site. My web site was making $5,000 per month. I had an account with LinkShare.com and made about $10,000 for my first big check, it was scheduled to arrive in January 2000. I was worried about Y2K.\n\nlongdistanceflat.com @ https://web.archive.org/web/19991128041952/http://www.longdistanceflat.com/\n\nfree4women.com @ https://web.archive.org/web/20000816005758/http://www.free4women.com/beauty.htm\n\n---\nSteem City - Politics, Security, Tax, Trade, Police, and Social Services\nhttps://www.youtube.com/watch?v=pDdxihuCXMk\n\n---\n\nFollow @craig-grant\n\nhave fun : )",
+    "body_length": 6583,
+    "cashout_time": "2016-10-02T04:14:33",
+    "category": "freedom",
+    "children": 6,
+    "created": "2016-08-31T18:08:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"freedom\",\"food\",\"introduceyourself\"],\"users\":[\"craig-grant\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/7CbwrsfB5-g\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/V2gmGK3ftOY\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/pDdxihuCXMk\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=7CbwrsfB5-g\",\"https:\\/\\/www.youtube.com\\/watch?v=V2gmGK3ftOY\",\"https:\\/\\/web.archive.org\\/web\\/19991128041952\\/http:\\/\\/www.longdistanceflat.com\\/\",\"https:\\/\\/web.archive.org\\/web\\/20000816005758\\/http:\\/\\/www.free4women.com\\/beauty.htm\",\"https:\\/\\/www.youtube.com\\/watch?v=pDdxihuCXMk\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T19:40:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 1784235859976,
+    "parent_author": "",
+    "parent_permlink": "freedom",
+    "pending_payout_value": "0.986 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "hot-saki-and-tuna-tataki-for-lunch-with-yuliana-wednesday-august-31-2016",
+    "post_id": 815221,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "Hot Saki and Tuna Tataki for lunch with Yuliana - Wednesday, August 31, 2016",
+    "title": "Hot Saki and Tuna Tataki for lunch with Yuliana - Wednesday, August 31, 2016",
+    "total_payout_value": "0.000 HBD",
+    "url": "/freedom/@craig-grant/hot-saki-and-tuna-tataki-for-lunch-with-yuliana-wednesday-august-31-2016"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687927480502",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1125797750526",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "12675771238280",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14716755413855",
+        "voter": "summon"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "10215229972277",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5979783617948",
+        "voter": "freedom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7027643085984",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9729206209895",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3095797559053",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1909967245886",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438953140136",
+        "voter": "lafona"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "414026826146",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1049209595233",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "963067321029",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314699645432",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101239322",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646318723440",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229926510732",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765078220",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690619464",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54343547981",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661932309",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213718493",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2042749976061",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60985849882",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418288473653",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2651243328828",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1784795277",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1045404344798",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134283650613",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9580939663",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1307178472534",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7628389412",
+        "voter": "ass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7697170818",
+        "voter": "daftpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7468804309",
+        "voter": "jaws"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7467122178",
+        "voter": "kingkong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8131084771",
+        "voter": "morpheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7457329195",
+        "voter": "chef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7457263770",
+        "voter": "catwoman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8121515563",
+        "voter": "harrypotter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7468490405",
+        "voter": "tron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7444669084",
+        "voter": "beavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9625203353",
+        "voter": "steemjesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8628123900",
+        "voter": "sara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8457870600",
+        "voter": "starbucks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1130716083518",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8315335800",
+        "voter": "soccer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11712977391",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623025846",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7582112243",
+        "voter": "rap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7501012150",
+        "voter": "cinema"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "7873444778",
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967711760",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7851901285",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "832744796187",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664452002",
+        "voter": "maxkeiser"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "3642760385",
+        "voter": "fusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299060776997",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288235837",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141090052837",
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13880531955",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1803979740",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1579018170",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "774836319",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21728469163",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "496331651",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5595432304",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26384601601",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2062708806",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331130366436",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29903838745",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "742481510504",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14828727252",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134325670238",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57965547486",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234685997034",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55119276585",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666851926",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74098286425",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1419659881",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2632215590",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64526080312",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24382234821",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37856084701",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11009212383",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372762911375",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400699491",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "387552370",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56402334767",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105652838636",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49383341547",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4477107456",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "5341000925",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201445269428",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2076078248",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265794063853",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786982187",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32893244268",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182849996797",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110959403268",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5495252511",
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32557478181",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13820475127",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1052188679",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "509943734",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49140208479",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272212638",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47322393466",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105564708828",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18644817812",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125467733607",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15480910118",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24970935785",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6917937631",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1908562777",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133323313264",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64418549797",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "523677225523",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "530911560",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595616216",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "545983534",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236699236",
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1467336120",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40458404980",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1649863673",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26363447152",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15526993858",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "880403645",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202014054940",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33640995047",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "828629042",
+        "voter": "bmmmmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14818183448",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1870744093",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4193943830",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24948544169",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10730068002",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3575697079",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38785156768",
+        "voter": "condra"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "5485605141",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2138956517",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2904872111",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84060380413",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453995527",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20008737165",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "3023523774",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94244751",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5531768448",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12991972635",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201176042966",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259628018962",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7831421142",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5572644736",
+        "voter": "sharker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8134046284",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204041320243",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016566875787",
+        "voter": "james212"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "19495977070",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18416219648",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4831508419",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2553528319",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897758945",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18858765110",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17558316880",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594907055",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221401214",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225852101",
+        "voter": "dubraman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941806075",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602388131",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "549647063",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6351454293",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1548603448",
+        "voter": "jillstein2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1353528110",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1858242719",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27744624566",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34328972158",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1850996140",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2938041239",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116018039597",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254010823",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "48887462921",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8783443865",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23608715787",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19976972801",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1368387313",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10192425561",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2348650163",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4338106663",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979617190",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8279541598",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1965200089",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6164810854",
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107084440",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17892117920",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18439853853",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92922845131",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1072419639",
+        "voter": "paynode"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "21851097144",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2058409213",
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "825877945",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3509559363",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62528131",
+        "voter": "xcepta"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "12012730878",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36863064220",
+        "voter": "dowha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76170225",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61269912",
+        "voter": "svetanyk"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "5776599727",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60717532",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "901114996",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75676352",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1010019521",
+        "voter": "shinji"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "243771797",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7833422368",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54189584",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54183691",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "589622381758",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61595666714",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1394667916",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11202143454",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1237582343",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2359854110",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8234924133",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1854373937",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "18108534499",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61502725136",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10320663417",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51286297",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8641078629",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232211618",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "754019861",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54272735",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2381725865",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62245792",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81876495",
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55669133",
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34325741440",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53238597",
+        "voter": "gumer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666711159",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25835980056",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226876451",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343458881",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1139389514",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280985935123",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56306822468",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23579608214",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5290020548",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3276071690",
+        "voter": "steemokto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1198017550",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51817146",
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62359614",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "894167573",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63543002",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51109965",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1896168752",
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73947493",
+        "voter": "steemrocket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1721773629",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27408100635",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53579928",
+        "voter": "luup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385752375",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52610096",
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302995626",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70448698",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162979078",
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72444138",
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1692916388",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1137952293",
+        "voter": "ayim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82470147",
+        "voter": "robermulima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160683133",
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125120492",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108712635",
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156488587",
+        "voter": "tanemahuta"
+      }
+    ],
+    "author": "steve-walschot",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "# Last week i wrote a post on getting a consensus on how to handle new user registrations. \n## For those who missed it, the post can be found [here](https://steemit.com/steempay/@steve-walschot/developer-preview-steempay-mobile-wallet-or-qr-to-upvote-or-consensus-needed).\n\nAfter long debating on chats, interacting with users and listening to their feedback here's what i've decided;\n\n### SteemPay.io pays the account creation fee during startup.\nAfter the startup phase, i'll start playing around with having **paid ads** in the app.\n\n## Paid ads? I don't want to see some viagra commercial in my app!\n### Touch\u00e9. But here's the businessmodel behind it:\n\n- Only ads linking to a **steemit post** will be allowed.\n- Only a small text banner on the top will be allowed. No images, only text.\n- No forced clicks or upvotes; The user will only **see** the ad.\n- Every ad needs to have **approval** before being listed.\n- First come, first served system.\n- Visibility and duration will be announced later.\n\n----\n## Note that ads will only be visible for users who create an account trough our app. Existing users will be completely ad-free.\n----\n# General progress\n\nhttps://img1.steemit.com/0x0/http://i.imgur.com/819S9aW.jpg\n\nThe overall developement is inline with our expectations., the first public android version will be online by the end of next week.\n\nCurrently the code is about 90% completed, so is the UI design ([see this showcase](https://steemit.com/steempay/@cass/steempay-io-mobile-payment-solution-ui-ux-playground) ) by @cass.\n\nMake sure to [follow me](https://steemit.com/@steve-walschot) to stay updated.\n\nIf you want to support Steempay.io, consider giving me a [witness vote](https://steemit.com/witness-category/@steve-walschot/witness-application-post-steve-walschot-creator-of-steempay).\n\n# Steem on!",
+    "body_length": 1822,
+    "cashout_time": "2016-10-04T23:09:54",
+    "category": "steempay",
+    "children": 14,
+    "created": "2016-09-03T19:10:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steempay\",\"mobile\",\"wallets\",\"developer\",\"update\"],\"users\":[\"cass\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i.imgur.com\\/819S9aW.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/steempay\\/@steve-walschot\\/developer-preview-steempay-mobile-wallet-or-qr-to-upvote-or-consensus-needed\",\"https:\\/\\/steemit.com\\/steempay\\/@cass\\/steempay-io-mobile-payment-solution-ui-ux-playground\",\"https:\\/\\/steemit.com\\/@steve-walschot\",\"https:\\/\\/steemit.com\\/witness-category\\/@steve-walschot\\/witness-application-post-steve-walschot-creator-of-steempay\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T19:10:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 91134703917103,
+    "parent_author": "",
+    "parent_permlink": "steempay",
+    "pending_payout_value": "858.774 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steempay-mobile-wallet-developer-update-consensus-reached",
+    "post_id": 847118,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "STEEMPAY mobile wallet developer update - Consensus reached",
+    "title": "STEEMPAY mobile wallet developer update - Consensus reached",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steempay/@steve-walschot/steempay-mobile-wallet-developer-update-consensus-reached"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "10614103331311",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "59458642275",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "228718504444",
+        "voter": "justin"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "1926094932850",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "134423167163",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2426353149",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89459145905",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13273883907",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280970691743",
+        "voter": "pal"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426202100",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28284373008",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49836148737",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "569217189",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501570496",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386077786",
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23482202368",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10940508683",
+        "voter": "mione"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "13686287140",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6038280485",
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1305322446",
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4006599711",
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "627733468",
+        "voter": "nathanjtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161727291",
+        "voter": "crimson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164522103",
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156621194",
+        "voter": "my-art"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144014259",
+        "voter": "fer32p"
+      }
+    ],
+    "author": "jonnyrevolution",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "If you *choose*...the next images you will see were created at the peaks of spiritual awareness from within. **LOVE**, **LIFE**, **DEATH**, and **UNDERSTANDING** are the themes that I gather after atmospheric introspection of the experiences that I had while creating. \n\n<center>[![SomethingSacredce779.jpg](https://www.steemimg.com/images/2016/09/07/SomethingSacredce779.jpg)](https://www.steemimg.com/image/u0XSs)\n**Something Sacred?** *[click to enlarge]*</center>\n\n<center>[![SunraysFromPaper66100.jpg](https://www.steemimg.com/images/2016/09/07/SunraysFromPaper66100.jpg)](https://www.steemimg.com/image/u0hf1)\n**Spiral Sunrays Arise On Tabbed Sheet** *[click to enlarge]*</center>\n\nAs I have said before:\n> What may still be a controversy in some circles....and yet a paradigm shifting universe with much left to discover for others.\n\n<center>[![SkeletalShockee040.jpg](https://www.steemimg.com/images/2016/09/07/SkeletalShockee040.jpg)](https://www.steemimg.com/image/u0ax8)\n**Skeletal Shock Protoplasm** *[click to enlarge]*</center>\n\n<center>[![ShapeshiftingSnakeskin55785.jpg](https://www.steemimg.com/images/2016/09/07/ShapeshiftingSnakeskin55785.jpg)](https://www.steemimg.com/image/u0Bza)\n**Shapeshifting Snakeskin** *[click to enlarge]*</center>\n\nA daytrip creation...\n\n<center>[![PsychedelicSunseta559b.jpg](https://www.steemimg.com/images/2016/09/07/PsychedelicSunseta559b.jpg)](https://www.steemimg.com/image/u05Ue)\n**Psychedelic Sunset** *[click to enlarge]*</center>",
+    "body_length": 1485,
+    "cashout_time": "2016-10-09T11:20:21",
+    "category": "art",
+    "children": 7,
+    "created": "2016-09-08T01:58:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"art\",\"life\",\"lifestyle\",\"craigrant\",\"truecrypto\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/SomethingSacredce779.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/SunraysFromPaper66100.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/SkeletalShockee040.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/ShapeshiftingSnakeskin55785.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/PsychedelicSunseta559b.jpg\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/u0XSs\",\"https:\\/\\/www.steemimg.com\\/image\\/u0hf1\",\"https:\\/\\/www.steemimg.com\\/image\\/u0ax8\",\"https:\\/\\/www.steemimg.com\\/image\\/u0Bza\",\"https:\\/\\/www.steemimg.com\\/image\\/u05Ue\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T01:58:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 13494290558026,
+    "parent_author": "",
+    "parent_permlink": "art",
+    "pending_payout_value": "24.641 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "venerated-visionary-vibrations-or-or-or-artwork-evoked-during-enlightening-hallucinations",
+    "post_id": 888327,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "Venerated Visionary Vibrations  |||  Artwork Evoked During Enlightening Hallucinations",
+    "title": "Venerated Visionary Vibrations  |||  Artwork Evoked During Enlightening Hallucinations",
+    "total_payout_value": "0.000 HBD",
+    "url": "/art/@jonnyrevolution/venerated-visionary-vibrations-or-or-or-artwork-evoked-during-enlightening-hallucinations"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "98923186797",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7555040626678",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260689951378",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170434439410",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2331336777611",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1445386678882",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3067363384383",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "478094018503",
+        "voter": "lafona"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "428577128724",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1120609046294",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1114483148331",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308797510253",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6368563416960",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1828303912855",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1780689138136",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1773112285575",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4728021694081",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "256455387",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1390921990",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "450781632550",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37842725376",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10604863428",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5146683930",
+        "voter": "sakr"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "31546083620",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1825706210",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11068501198",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74263607249",
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182177994109",
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "898",
+        "reputation": 0,
+        "rshares": "74889124791",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83797997544",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "519059105",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6128985263",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30442733029",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336358998413",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160495569982",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39839920604",
+        "voter": "klye"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "268806071",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109399697896",
+        "voter": "asch"
+      },
+      {
+        "percent": "5555",
+        "reputation": 0,
+        "rshares": "1413666370",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2380117566",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39098174016",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71077636927",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69227137467",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31562570480",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "404992574",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145991259402",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17036466670",
+        "voter": "samether"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "33767337247",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53446026484",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26481261248",
+        "voter": "vladislav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388023535378",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4489216732",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30490397432",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5946322288",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108679378818",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43188957880",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8018982007",
+        "voter": "svamiva"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "2190228775",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33966901180",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11724343347",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "458398081",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38013683029",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44994193660",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67181381625",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69428388695",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174502281215",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38574415785",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62650245884",
+        "voter": "lehard"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "15194332212",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245172817",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46278606394",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12297660066",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2564759836",
+        "voter": "razorwave8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150601945044",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32022215321",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "540619706561",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167274467203",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19332722377",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2226795955",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40728115733",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2214191268",
+        "voter": "cloh76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "303442287792",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114002438",
+        "voter": "snowden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4709458476",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15580284917",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40368331645",
+        "voter": "biophil"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1107671033",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28215193752",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24973952155",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11321267800",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5718121463",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1425501767",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "798945222",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "458089722672",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2224388314",
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38834491135",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84865861",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129238783594",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1721184731",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44807585729",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183071361701",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "4211214665",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4922477300",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3755219518",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34500248130",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116147067",
+        "voter": "chugumoto"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "53839922255",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29212975976",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "818966646",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23815723291",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6972519497",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206056754",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7164728215",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201571130",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42693267253",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "4543553357",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658363526",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3525252375",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45789163018",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1736279223",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "583870241",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3392010133",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6406856963",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125291181970",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075365048",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55154162145",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2298187874",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93149833",
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10429146358",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3192662723",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141850846085",
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4038742528",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25085423770",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25599123033",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25608099829",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6513732761",
+        "voter": "brendio"
+      },
+      {
+        "percent": "899",
+        "reputation": 0,
+        "rshares": "2082524882",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71342284",
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4277108961",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5551174113",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2128821752",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58150459",
+        "voter": "michellek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25603442348",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25600704557",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25597687811",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25593532882",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5813008317",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25589829152",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25586983681",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3300399043",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21109148575",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11496127617",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121314249",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2033278442",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13507419666",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2555223700",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1434064827",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65792487895",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25208068509",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67627457",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2704342364",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50027573",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51199976",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9423604529",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9233804145",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "15596955812",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57816760",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57810474",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86712034",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7981765563",
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "706168759118",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "18699439170",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6742538723",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "27315404640",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4974768209",
+        "voter": "almerri"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "728677907",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3497401523",
+        "voter": "cryptomental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "284256346",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3341359657",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4717567649",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25580444366",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2982102775",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55543445",
+        "voter": "bitchplease"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77719182822",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86699261626",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18011042265",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27999285274",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "3803431159",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54719920",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5031873993",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1698796327",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117344778",
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3367402144",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1418049412",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77846143",
+        "voter": "arandu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24705440619",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660563580",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1536187649",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55687591",
+        "voter": "broadperspective"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4545264668",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15559178946",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3789038184",
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53093296",
+        "voter": "freesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6826783194",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1357013119",
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "994238100",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1072423575",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207196967560",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63060920",
+        "voter": "klaartje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2673786276",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6023904178",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644566982",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379814419137",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60084414328",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54232595",
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60333104",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2042093794",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574180710",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2399818471",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54951573",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "597816915",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11700961387",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56908444",
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65261900",
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4813604877",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51215236",
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62256253",
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50871059",
+        "voter": "motion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50796122",
+        "voter": "factom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50572441",
+        "voter": "unilever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50568084",
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50484452",
+        "voter": "connect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3687368618",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2339122417",
+        "voter": "senseye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162917785",
+        "voter": "ctu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1319293556",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161822020",
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161814721",
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161212160",
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161089804",
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160973134",
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157799009",
+        "voter": "photorealistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160961988",
+        "voter": "serena199"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160930383",
+        "voter": "gia7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196786352",
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160449137",
+        "voter": "richie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160386285",
+        "voter": "coraline88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160117216",
+        "voter": "harlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160078339",
+        "voter": "yanuel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160027052",
+        "voter": "daritza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159984914",
+        "voter": "correct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159164412",
+        "voter": "disneypixar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159025535",
+        "voter": "xtreme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158732321",
+        "voter": "steemwallet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158541985",
+        "voter": "citigroup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77949421",
+        "voter": "dealzgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86562486",
+        "voter": "storage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191907698",
+        "voter": "antaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152969555",
+        "voter": "mrlemmer11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70767496",
+        "voter": "blackmarket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76913589",
+        "voter": "gifts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82837073",
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151515793",
+        "voter": "techslut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132153069",
+        "voter": "steemtrail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149761866",
+        "voter": "gramion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151754313",
+        "voter": "dek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151416253",
+        "voter": "dukeofasia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148244276",
+        "voter": "jahtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135751381",
+        "voter": "dirlei.sdias"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Some people are still confused as to what a witness is. There's a lot of mixed information on Steemit as to what a witness does, and how much they earn.\n\nI'm here to clear this up with a thorough post, with simple explanations where possible.\n\n## What is a witness?\n\n**A witness plays a crucial part in how the STEEM network functions. Some people might not be aware of this, but Steemit is just a fancy web interface on top of a large network called STEEM, which operates remotely similar to Bitcoin.**\n\nSimple Definition:\n\n>A STEEM witness is a person whom operates a **witness server** (which produces blocks), and publishes a price feed of STEEM/USD to the network.\n\nWitnesses have many tasks. **The first and foremost is to produce blocks (thus process transactions)**, the second most important is to produce a price feed, which is how STEEM Dollars are always worth 1 US Dollar in STEEM (using the 7 day exchange).\n\nYou may have heard of the term **51% attack** before. Unlike Bitcoin, miners don't matter much to the STEEM network, instead, that is a witnesses job: \n\n**A hard fork happens when 67% of the top witnesses are all running a certain version of STEEM**, which means the top 19 witnesses can pick and choose whether to agree with a fork or not. (e.g. Hard Fork 13 and 14 were both postponed for a week, and re-designed because witnesses refused to update)\n\nTl;Dr\n\n - They're the main producer of blocks (not miners)\n - They maintain a price feed, which is how SBD functions\n - They play the role of consensus (decide whether to hard fork or not)\n - Many witnesses, such as myself, @riverhead, @roadscape @jesta and @arhag work on important things to help the STEEM network function and grow\n - Some witnesses don't produce any content, or work on anything STEEM related, e.g. @gtg - however, they are sometimes highly focused witnesses, who are very reliable (gtg has only missed 2 blocks after running for months)\n\n## Why should I care?\n\nA witness is paid proportionally to how high they are in the witness ranks, excluding the top 19 witnesses (who get 1 block every ~63 seconds).\n\nBut how do they get to those ranks? **They get voted in, by people like YOU**. It's just like an election, **if you don't vote, other people may vote in witnesses who are malicious or simply unreliable.**\n\n@thecryptofiend has came up with a questionnaire for witnesses, which may help people decide on who to vote for: https://steemit.com/steemit/@thecryptofiend/witness-questionnaire-a-solution-for-voter-confusion\n\n![](https://i.imgur.com/Ldf0VnV.png)\n<center>Witness voting page</center>\n\nYou can see the witness ranks, and vote for witnesses at https://steemit.com/~witnesses\n\n## How are blocks created/scheduled?\n\nIt's not a very even mixture as you would hope. Blocks are produced in \"rounds\", which are 21 blocks long, and blocks are created every 3 seconds.\n\nDuring each 21 block round, the blocks are distributed as such:\n\n - 19 blocks go to the top 19 voted witnesses (who are slightly shuffled to avoid witnesses purposely skipping blocks)\n - 1 block goes to a Proof-of-Work miner, who becomes a witness for just 1 block.\n - 1 semi-random witness outside of the top 19, which is influenced by their ranking\n\nYou can read more about the witness scheduling (it's very complicated!) in this article by Steemit CTO @dantheman :\n\nhttps://steemit.com/steem/@dantheman/steem-witness-scheduling-algorithm\n\n## How often do they get blocks (how much do they earn)?\n\nAs mentioned in the previous section, witnesses are paid proportional to their rank in the system. A witness at rank 30 can produce as many as 4 blocks/hour, compared to a witness at rank 50, which may produce less than 1 block/hour.\n\n**A STEEM block is worth 1 STEEM Power (not STEEM, or SBD), which means all rewards for miners/witnesses are trickle-paid for 2 years.**\n\n![](https://i.imgur.com/OaOiNlf.png)\n<center>[@someguy123 on SteemDB](https://steemdb.com/@someguy123)</center>\n\nIn my current position, 39, I create between 2 to 3 blocks per hour. `(2 * 24) * 31 = 1488` - that's approximately 1,500 STEEM Power per month at rank 39.\n\n### But what about the top 19? What do they get?\n\nThe top 19 witnesses get 1 block each, per 21 block round. This means they get approximately 1 block per 63 seconds.\n\nPer day they get roughly 1400 SP\n\n```(60 * 60 * 24) / 63 = 1,371.42```\n\nPer month they get roughly 42,500 SP\n\n```(60 * 60 * 24 * 31) / 63 = 42,514.28```\n\nAnd per year they get roughly 510,000 SP\n\n```(60 * 60 * 24 * 31 * 12) / 63 = 510,171.42```\n\n## Can anyone become a witness?\n\nThe short answer is: Yes.\n\nBecoming a witness requires several things:\n\n - A powerful (and reliable) server to run a witness server on\n - A second powerful server, with good bandwidth - to operate a Steem Seed (similar to a Bitcoin full node, distributes blocks)\n - Creating a **signing key**, and then broadcasting your intent to become a witness from `cli_wallet`\n - An accurate price feed of STEEM/USD which is updated *at least* once per day\n - Technical capabilities - you should understand most STEEM concepts, and be able to deal with server problems quickly\n - Trust from the community that you would be a good candidate for a witness\n\nSome of these steps are optional (e.g. the seed), while others might not matter until you approach the top 19 (the price feed) however, they're all very strongly recommended if you want to succeed as a witness.\n\n------\n\nI will be posting an in-depth tutorial on setting up a witness soon, as many of the existing articles lack important details. Until then, if you want to set up a witness, I recommend joining `#witness` on [STEEMIT.CHAT](https://steemit.chat) and asking for up to date guidance.\n\n------\n\n\n---\n\nDo you like what I'm doing for STEEM/Steemit?\n----\n[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. \n----\nDon't forget to follow me for more like this.\n----",
+    "body_length": 5906,
+    "cashout_time": "2016-10-15T12:32:00",
+    "category": "witness-category",
+    "children": 27,
+    "created": "2016-09-14T07:07:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"witness-category\",\"steem\",\"steem-help\",\"steemit\"],\"users\":[\"riverhead\",\"roadscape\",\"jesta\",\"arhag\",\"gtg\",\"thecryptofiend\",\"dantheman\"],\"image\":[\"https:\\/\\/i.imgur.com\\/Ldf0VnV.png\",\"https:\\/\\/i.imgur.com\\/OaOiNlf.png\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@thecryptofiend\\/witness-questionnaire-a-solution-for-voter-confusion\",\"https:\\/\\/steemit.com\\/~witnesses\",\"https:\\/\\/steemit.com\\/steem\\/@dantheman\\/steem-witness-scheduling-algorithm\",\"https:\\/\\/steemdb.com\\/@someguy123\",\"https:\\/\\/steemit.chat\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T07:23:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 43314926686863,
+    "parent_author": "",
+    "parent_permlink": "witness-category",
+    "pending_payout_value": "115.893 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer",
+    "post_id": 947397,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "Seriously, what is a STEEM witness? Why should I care? How do I become one? (Answer)",
+    "title": "Seriously, what is a STEEM witness? Why should I care? How do I become one? (Answer)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/witness-category/@someguy123/seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484901235657",
+        "voter": "panadacoin"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "2087539816353",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299917820362",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103025387",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767352996",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54637182074",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662793601",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969744364",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2731909066647",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308816806541",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40484384632",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21861003206",
+        "voter": "teatree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639548657",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37994042628",
+        "voter": "klye"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425733126",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55942426104",
+        "voter": "aenor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77690187245",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8983016326",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "14077045233",
+        "voter": "lindee-hamner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "518132808761",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1461277721254",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "75806022693",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73402547085",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "465405174131",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5352858265",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20170428904",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243464927250",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525219461966",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19288999540",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43292776156",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13278882511",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230802431",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5702723613",
+        "voter": "krystle"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1814856827",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225813886252",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29012717347",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84769136894",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24460059681",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "10902438772",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384092099",
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22568372246",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "814606016",
+        "voter": "candy49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42180606091",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111067211132",
+        "voter": "shaka"
+      },
+      {
+        "percent": "1600",
+        "reputation": 0,
+        "rshares": "157843508356",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14562499786",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2963111990",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "2800",
+        "reputation": 0,
+        "rshares": "10365332825",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "90096160267",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3370934025",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581906854",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51344068474",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "19908969014",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103523281457",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "1600",
+        "reputation": 0,
+        "rshares": "21238872163",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1348324437",
+        "voter": "dolov"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "1557858482",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312108786",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3509986623",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12517158549",
+        "voter": "cristi"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "15981225498",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3138632175",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20776446447",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198225056",
+        "voter": "chinesetalkeze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501206246",
+        "voter": "sc-steemit"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "206268122",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1279285824",
+        "voter": "nextgen622"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8285594241",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61439317",
+        "voter": "tammyyin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60613963",
+        "voter": "ffcrossculture"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3376192744",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11975172762",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58830557",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3389417054",
+        "voter": "victoryang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369749107",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4182946770",
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "715921724",
+        "voter": "masonmiler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59448552",
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57759302",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91692568",
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160649364",
+        "voter": "trevorlyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154109909",
+        "voter": "jameshowarrd"
+      }
+    ],
+    "author": "nextgen622",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "After writing my first introduction post without pics and receiving $0.03, and then reposting my intro with picks which earned $18.29, it quickly cemented in my mind the importance of having pics in my posts on Steemit. But you see, for me to include images in my posts is many times more difficult than the average Steemian. \n\n## Because I\u2019m vision impaired and can\u2019t see any of the images!\n\nHowever, somehow it seemed to me that to have any kind of success on Steemit, there was a commonly accepted rule that your posts need to contain images; whether you\u2019re writing a novel, or a philosophical piece, *almost all the trending posts have images!*\n\n### So, for the past few weeks of my Steemit life, I\u2019ve been asking my wife to help me find suitable pics for my posts. \nBut this has become an extremely stressful process, because we have a two year old son, and my wife rarely has any time to rest during the day. Therefore she looks forward to the small amounts of time that she gets to rest and relax in the evening. You can imagine how annoying it is for her when I\u2019m constantly interrupting her relaxation time, requesting her to find pics for me on Steemit. Thankfully, I\u2019m blessed with a kind and generous wife. She loves me very much, and often tells me that she is happy to help me with whatever I need, especially with what I love doing. But I don\u2019t want to be relying on her all the time. \n\nLast night however, when like previous nights, I asked my wife for her help.  But this time around, it was following a very exhausting week for her when my son and I had both been sick, and she had just recently become pregnant with our second child. So she blew up at me and became upset when I had taken up more than 40 minutes of her chill time. \n\n## And by the way, that post we worked so hard on all day earned us less than $1. \nSo this morning, I resolved to start writing about the topics I truly care about. No more stressing out about posts, no more fussing over optimum times to post my articles, and no more needing to find images for each post. \n\n# I\u2019m going to start enjoying my time on Steemit.\n\n## O yes, again, do we really need images on each post?\n\nFor more posts without images, follow me @nextgen622\n\nJimmy\n\nPS. Thanks @deanliu for the recommendation to post more Chinese articles. I will definitely do more of them in the future.",
+    "body_length": 2352,
+    "cashout_time": "2016-10-07T23:03:48",
+    "category": "steemit",
+    "children": 28,
+    "created": "2016-09-06T07:25:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"life\",\"content\",\"images\",\"cn\"],\"users\":[\"nextgen622\",\"deanliu\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T13:01:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 10910071755402,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "13.235 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "why-this-post-doesn-t-have-images",
+    "post_id": 870269,
+    "promoted": "54.520 HBD",
+    "replies": [],
+    "root_title": "Why this post doesn't have images",
+    "title": "Why this post doesn't have images",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@nextgen622/why-this-post-doesn-t-have-images"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "13468729518250",
+        "voter": "rainman"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "1118849774900",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "144758293075",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878769686330",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099089014",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762354107",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97789176845",
+        "voter": "testz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697302029",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481270665604",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53983143453",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660870860",
+        "voter": "mini"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "4614169027056",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213660123",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14594785261",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622713062",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967170547",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6821654706",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288138648",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25455885349",
+        "voter": "blackjincrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4061680519",
+        "voter": "atomrigs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167616779494",
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1013421916583",
+        "voter": "hipster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431628926",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343484501460",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13439762220",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71610085231",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21383864845",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1907309700",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287289557872",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5411588369",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125488800966",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193343156138",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "81560035813",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269617629291",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27723610634",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1261911904",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48542520862",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53588462318",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4450692887",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9855428224",
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132655580031",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13525449189",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13582023290",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453924439",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27806701251",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "295356843",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74915596398",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12190374285",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140754777765",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133875725706",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32959549825",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2785576986",
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18468714196",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15107890721",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6480896113",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115918736753",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3003762640",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7174158649",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86428740",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93413596",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69870856",
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "600604713",
+        "voter": "greengo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128178174",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960761826",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7768702097",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "10231831964",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346788997",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8435443756",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24075889262",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "790694845",
+        "voter": "candy49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6467611782",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11454886978",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37076083195",
+        "voter": "rampant"
+      },
+      {
+        "percent": "2700",
+        "reputation": 0,
+        "rshares": "308890261959",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70132247628",
+        "voter": "twinner"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "302555627",
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "2800",
+        "reputation": 0,
+        "rshares": "10046231191",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "95556619222",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20697547646",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63815316",
+        "voter": "rpo"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3592462541",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8835620792",
+        "voter": "jokerpravis"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "18385480850",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "450506348376",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "2800",
+        "reputation": 0,
+        "rshares": "35033436510",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95473831357",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "1326242361",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562498382",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001806596",
+        "voter": "fooblic"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3302524983",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1390975245",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "220537174",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6918396879",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73285438325",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184908815",
+        "voter": "cryptomental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "295411047",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22550906103",
+        "voter": "jimmco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24542082008",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56590327",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84476446789",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58837441",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13864037687",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19562413660",
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193616720845",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91725775",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54576373",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55663899",
+        "voter": "jan-p-joenland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51109965",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62573030",
+        "voter": "firebat"
+      }
+    ],
+    "author": "knircky",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<a target='_BLANK' href='https://ipfs.pics/QmZjmgpCGzWEMdgR9fK3VyN6eRNzwaK5UCyA3KPznD7Xc6'><img src='https://ipfs.pics/ipfs/QmZjmgpCGzWEMdgR9fK3VyN6eRNzwaK5UCyA3KPznD7Xc6'/></a>\n\nDuring the last couple of days, there has been lots of movement in the market. Synereo has skyrocket, while Steem has lost 3/4 of its value.\n\nThis has also caused some movement and discussion here on Steemit itself. For instance @stellabelle who has the highest rep on here (or at least she used to) has [posted about synereo](https://steemit.com/synereo/@stellabelle/2-problems-plaguing-steemit-that-synereo-has-already-solved) and how it has solved some issues that steem has not. Has it though? It's not even live yet.\n\n# It is true, steem has issues: Retention! Retention! Retention!\nHaving been on the steem for about one month, I also see some issues with the site. Most importantly looking at the data, the biggest issue is that we have a big retention problem. Users sign on well but then seem to not stay active. This is bad. I don't know if this is normal and how this looks for other social media platform, but the [chart](https://steemit.com/steemit/@atomrigs/attention-whales-it-is-time-for-your-action) from @atomrigs does not look good.\n![steem](https://img1.steemit.com/0x0/https://s3.postimg.io/bzlvi7qlf/trend.png)\n\nConsequently it makes sense that the price of steem has crashed a bit, because with this user behavior a lot of the potential of steem is diminished. Again credit goes to @atomrigs.\n[chart](https://img1.steemit.com/0x0/https://s12.postimg.io/sbx0w3w1p/stock_price.png)\n\nI think we do not have enough data to draw correlation conclusions, however it is clear that investors are a bit timid right now. But I am less worried about the price, but the chart of new accounts vs account activity is a real problem and shows an issue that needs to be addressed. One thing that @atomrigs has missed in his post that in my mind is the most important indicator on steem are votes. The trend with votes looks exactly the same, so the chart of @atomrigs is good enough actually. But to be sure here are the votes. \n<a target='_BLANK' href='https://ipfs.pics/QmT6C3giuSinJw9Ymz81rzU5nRiSQXY2pvEMxP5Vnwcdta'><img src='https://ipfs.pics/ipfs/QmT6C3giuSinJw9Ymz81rzU5nRiSQXY2pvEMxP5Vnwcdta'/></a>\n\nI have talked about what I think are the key problems that lead to these retention issues [here](https://steemit.com/steem/@knircky/i-love-steem-the-price-is-starting-to-hurt-one-last-bullet):\n- Activity has been stagnant according to the stats (even though it feels like more and better content is popping up all the time). While user growth can be seen every day, the amount of votes and post have not been going up since I joined even though the amount of users has roughly tripled in one month.\n- I think the voting does not work as well as expected. I find myself voting like a robot for things that i think will go viral, vs things that I like. My curation reward is usually between 0.01SP and 7SP. A huge difference. Of course I try to hunt the big rewards, instead of rewarding who and what I like. In fact I have voted for many post I thought were bad and things I did not like, just because I thought it was profitable.\n- The curve between highest paying post and low paying post as well as the ones in the middle is way to high in my opinion. I think there are many good posts that do not get rewarded, and others that are not that amazing that get way overrated.\n\nSo I see the issues with steem, but I am not too worried. I think they can be fixed and overall Steem has amazing design architecture and solves real problems that cannot be solved without its blockchain and business model. In particular I am talking about how content can be attracted and rewarded in a new financial model. So lets look at how steem compares with others.\n\n\n# Synereo: can someone explains how it works please?\n\n<a target='_BLANK' href='https://ipfs.pics/QmexMkKTygLS6uNqqcQU7M5BZwzVXeVXvMhNtNXV75JiVB'><img src='https://ipfs.pics/ipfs/QmexMkKTygLS6uNqqcQU7M5BZwzVXeVXvMhNtNXV75JiVB'/></a>\n\nI've been trying to understand how Synereo works. I started to read the white paper and pretty much gave up 1/2 way thru. It was a lot of fluff on the one hand and math formula on the other hand, both of which are useless when trying to analyze a project for investment purposes. I have also read some articles and watched video about it, but somehow nobody can just explain how it works in a few sentences or pages. This is always a red flag to me.\n\nHowever I see a few things that I find very fascinating about Synereo.\n- They are trying to create an economic model that reflects a social network. If this actually works it will be amazing. They are using a currency called REO that basically is supposed to reflect how important one is directly towards a particular network member and as a whole. This sounds very interesting, however the formulas with which they were trying to explain how this worked went a little over my head when I was trying to read it before going to bed.\n- The ability to pay for attention of certain people and likewise get rewarded for giving attention. This is where AMP comes in the currency one can buy right now on the market. Again how this works exactly I have not been able to grasp just yet. \n\nThere are however some red flags:\n- I don't understand the economic model yet, like how money comes in and out and how this thing can grow and take over the world and make its members rich and powerful. \n- The GUI I have seen by signing up for the beta looks horrendous and just as confusing as the white paper. This is another red flag. Its very early and the beta has not launched yet, so I am not judging quite yet.\n- While the coin has launched already I just received an email for another funding round, asking me to buy some shares of some company or buy more AMP. Again all this is confusing me. Why is there another round at this stage.\n- I have heard how there has been long development without much progress. So I am wondering if all the confusion I have seen is representative of an overall confusing culture.\n\nAs a result I will need to study this more, however I wonder if I can't understand this with some serious effort, what will regular people think. I will judge Synereo more when the real version comes out, but so far I am hesitant and have only invested a small sort of test amount and will re-evaluate once I have been able to test and understand it.\n\nInterestingly @Ned has made a similar comment about how he had trouble understanding the economic model in @stellabelle post. At least I am not alone here.\n\n# Yours network: I think its just a pretty name\n\nWhen it comes to Yours I have heard about it a few times and tried to research it, but so far did not find much content. Today there was a youtube video with the creator on epicenter bitcoin:\n\nhttps://www.youtube.com/watch?v=SjJJi9Dqzvo\n\nI was not impressed with the video. There was lots of fluff and only a few minutes of the interview actually covered how yours works, the rest was general stuff like how facebook sucks and people on youtube do not make much money for generation content. Thank you Mr. Caption Obvious.\n\nFrom my understanding of the video Yours works like this:\n- It's a company running a website that works like youtube on a centralized server. It's a copy of reddit.\n- There is a payment layer that works in top of the website using bitcoin micro-transactions.\n- The micro-transactions are executed via lightning networks, which is still in development.\n- The site will take a cut from each transaction, that will be lower than what youtube takes, which is 40%\n\nThe economic model was not really explained, other than that site will simply take a cut from each transaction and it will be cheaper than youtube. Key question: how are prices determined?\n\nFrom the interview I think the developer is very focused in the technical side of things and a true business model is missing. I think is not very innovative, its simply laying a payment layer on top of existing platform that can very easy be copied by reddit, Facebook and youtube. And this can be done with paypal just as well.\n\nAt this point I don't think Yours has a real shot at being successful and I would not invest into it. I hope I am wrong and I wish the Yours team good luck.\n\n# I am happy I have recently poweredUp ever more\n\nAs I pointed out in this [post](https://steemit.com/steem/@knircky/i-love-steem-the-price-is-starting-to-hurt-one-last-bullet) I have constantly poweredUp since I joined steem and invested quite a few bitcoins into my Steem account. \n\n<a target='_BLANK' href='https://ipfs.pics/QmNfzSpVeGiekbko6k4WednrBT11KE2Yy4Eug9vxb73RVe'><img src='https://ipfs.pics/ipfs/QmNfzSpVeGiekbko6k4WednrBT11KE2Yy4Eug9vxb73RVe'/></a>\n\nSo far it looks really bad, since I probably have lost 2/3 of my investment on paper. However I am confident in my decision because looking at Synereo and Yours I think Steem is looking good:\n- the business model is pretty clear, even if complex.\n- we have a working product that has attracted value, creating amazing content that would otherwise not exist\n- we have a fantastic team that is constantly adding new features to the blockchain and the website\n- @dan has shown in the past that he is capable of understanding problems both from a technical and business perspective and come up with a solution that covers both. He has done this over several years, the end result of which is graphene and this blockchain. \n- I think synereo has amazing potential but a very different business model and I think the two may co-exist, like twitter and facebook etc.\n- one of the biggest issues I saw, which was the attraction of outside money without diluting investors was solved today. I think it could have been done better, but the point is that the @steemit team is constantly improving and finding amazing new innovations that will bring steem forward\n\nIn this space we need to be able to handle swings and unfortunately losing 70% of value from its investment in a few weeks is normal in this new blockchain and crypto space. It's important to look at the fundamentals and trust in making the right decisions. Having reviewed steem and other upcoming solutions makes me confident that this for now is the best place to be part of and I am happy that I have diversified a portion of my crypto assets into the steem platform.\n\nI can't wait to see what new surprise the team will bring to steem next week and I am also looking forward to what other projects will have to offer.",
+    "body_length": 10592,
+    "cashout_time": "2016-10-01T05:24:39",
+    "category": "steemit",
+    "children": 37,
+    "created": "2016-08-30T10:14:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"synereo\",\"steem\",\"invest\",\"techreview\"],\"users\":[\"stellabelle\",\"atomrigs\",\"dan\",\"steemit\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/QmZjmgpCGzWEMdgR9fK3VyN6eRNzwaK5UCyA3KPznD7Xc6\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/s3.postimg.io\\/bzlvi7qlf\\/trend.png\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmT6C3giuSinJw9Ymz81rzU5nRiSQXY2pvEMxP5Vnwcdta\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmexMkKTygLS6uNqqcQU7M5BZwzVXeVXvMhNtNXV75JiVB\",\"https:\\/\\/img.youtube.com\\/vi\\/SjJJi9Dqzvo\\/0.jpg\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmNfzSpVeGiekbko6k4WednrBT11KE2Yy4Eug9vxb73RVe\"],\"links\":[\"https:\\/\\/ipfs.pics\\/QmZjmgpCGzWEMdgR9fK3VyN6eRNzwaK5UCyA3KPznD7Xc6\",\"https:\\/\\/steemit.com\\/synereo\\/@stellabelle\\/2-problems-plaguing-steemit-that-synereo-has-already-solved\",\"https:\\/\\/steemit.com\\/steemit\\/@atomrigs\\/attention-whales-it-is-time-for-your-action\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/s12.postimg.io\\/sbx0w3w1p\\/stock_price.png\",\"https:\\/\\/ipfs.pics\\/QmT6C3giuSinJw9Ymz81rzU5nRiSQXY2pvEMxP5Vnwcdta\",\"https:\\/\\/steemit.com\\/steem\\/@knircky\\/i-love-steem-the-price-is-starting-to-hurt-one-last-bullet\",\"https:\\/\\/ipfs.pics\\/QmexMkKTygLS6uNqqcQU7M5BZwzVXeVXvMhNtNXV75JiVB\",\"https:\\/\\/www.youtube.com\\/watch?v=SjJJi9Dqzvo\",\"https:\\/\\/ipfs.pics\\/QmNfzSpVeGiekbko6k4WednrBT11KE2Yy4Eug9vxb73RVe\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T10:14:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 26103584702060,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "80.858 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steem-vs-yours-vs-synereo",
+    "post_id": 799435,
+    "promoted": "54.000 HBD",
+    "replies": [],
+    "root_title": "Steem vs. Yours vs. Synereo",
+    "title": "Steem vs. Yours vs. Synereo",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@knircky/steem-vs-yours-vs-synereo"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26081847613156",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7144417287594",
+        "voter": "skywalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1670057976865",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16708812016",
+        "voter": "fury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6477125435976",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098685425",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200359501764",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3761776605",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697242966",
+        "voter": "bunny"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "4231727699250",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53910714446",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660654299",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213651922",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4790492025902",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381835046480",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398735777445",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2461162230926",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "811514178568",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253788669743",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622652357",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1024663824110",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967077031",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17350120065",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13185221918",
+        "voter": "zorro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288127167",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47052482880",
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74873944700",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14434439480",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21642455110",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580038046449",
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2517176669",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "495408451",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5698028555",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3309226774",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76757203731",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1788138110",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13439768796",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501242325",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386931391",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "845493779",
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181925256631",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22769129551",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649863857",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684133676946",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158031103885",
+        "voter": "ikigai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110500898396",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4654926641",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28041818855",
+        "voter": "tskeene"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58775820471",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6732618302",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1902438231",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58458138862",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22975306447",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59645609175",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5945878550",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177794356372",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47358556939",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41598563868",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3178252220",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251585044",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5945069361",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2928214359",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132995172452",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6262688209",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "626398878696",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40543594613",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238079192",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "643383776411",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486891587687",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3682809014",
+        "voter": "owdy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "66739626",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61186165",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14805447582",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17189609334",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4558439244",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35921995525",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4622558062",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33819779736",
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28858184031",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10921739764",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217877382",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2044404568",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421663298",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11380187826",
+        "voter": "tinyhomeliving"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16251285643",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45104752848",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1991213966",
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23356891134",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1852993914",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3034466693",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5697335879",
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3477776250",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333789860",
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6735107405",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107451947",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109760976",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8128920015",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3143430298",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62899820",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26577803315",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24424394219",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97819198",
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72186967916",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1557388169",
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107117143",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214244773946",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375362904",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1263753997",
+        "voter": "aleco"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4072752362",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1719078561",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260838105",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261229058",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151130174",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151983699",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86657502",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1063256534",
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15887054267",
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10988246531",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19360996922",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "599149869",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417763036",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224122038",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2290161490",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78475461",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36082655100",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129066659",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "879267346",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25927425773",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27498823483",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1022586648",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9679217640",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37417107898",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53835780",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39956396307",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53473560",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23035195674",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21847411404",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13231389256",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3733416223",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651986872",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84984809659",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89812186",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3610497290",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116116362949",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431713317",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70682332",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1344860547",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299755454",
+        "voter": "coloured-content"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53884258",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63370428",
+        "voter": "anarcist69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11174711861",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1588588731",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3734525922",
+        "voter": "kiddarko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61515128",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1390975245",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88015547054",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1394296094",
+        "voter": "nords"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6777205106",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1103370391",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1411920528",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296299265",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8467409533",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270793460",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18846153167",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18535258789",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12924917515",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12133327764",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25564668758",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313043440",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52516313",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157607863",
+        "voter": "weeds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64447070",
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9064021528",
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24235309770",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209056793",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73380620",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52746117",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52705614",
+        "voter": "danbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62750892",
+        "voter": "tinkerbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "968641174",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11197079739",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1737357327",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5815020980",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2978551571",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54597407",
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "564922076",
+        "voter": "funnyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50460250",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439002",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50436594",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2189933691",
+        "voter": "ocrdu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53908188",
+        "voter": "verbal-d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51383543",
+        "voter": "mr189"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166520919",
+        "voter": "you-know-nothing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289180646",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107344655",
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346061498",
+        "voter": "vh770"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118552908",
+        "voter": "creativeyoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90073513",
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059314",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "705490153",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      }
+    ],
+    "author": "pfunk",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>![thumb](https://ipfs.pics/ipfs/Qmd9rM4BSJdusYs3igXwaPqtYr7RJceMQM3ZoHrWLwbXYu)</center>\n\nPontiac, the car brand, was named after [Pontiac](https://en.wikipedia.org/wiki/Pontiac_(Ottawa_leader)), a badass war chief of the Ottowa people in the 1700s. Conveniently, the city the cars were manufactured in was named after him too: Pontiac, Michigan. For their first post-WWII designs, Pontiac drew upon the heritage of their name and introduced the [Chieftan](https://en.wikipedia.org/wiki/Pontiac_Chieftain) in 1949. The cars featured hood ornaments of Chief Pontiac, and the 1951 model's clear orange bakelite looks stunning in the sunlight. I came across this one on a city street and the hood ornament really caught my eye, with its intricate cracks from age sparkling in the light.\n\n<center>![1](http://i.imgur.com/Qe1TipU.jpg)</center>\n\n<center>![2](http://i.imgur.com/QqqsEAO.jpg)</center>\n\nThe car this beauty belongs to, an orange 1951 Pontiac Chieftan:\n\n<center>![car](http://i.imgur.com/sJcQFiH.jpg)</center>\n\n# A History Lesson\n\nHood ornaments started out on early automobiles that had their radiator caps outside of their hoods. Patented in 1912, the [Boyce MotoMeter](https://en.wikipedia.org/wiki/Boyce_MotoMeter),  was an early water temperature gauge that sat atop the radiator visible to the driver, and doubled as a cap. These were very popular on cars and even came standard on some models, until temperature gauges started to be mounted on the dash in the 1930s. \n\nAnd naturally they were decorated. They were aftermarket parts at first. Because the radiator cap was an easily accessible part, some early motorists bought special ones to make their car stand out.  Manufacturers decorated theirs too, and it became a trademark to distinguish a marque. Very often, the hood ornament would change year-to-year.\n\n<center>![Packard](https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG/1024px-1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG)\nA MotoMeter with a hood mascot on a 1926 Packard Six model 226. \n[Photo by Alf van Beem](https://en.wikipedia.org/wiki/File:1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG), public domain.</center>\n\n## Pontiacs\n\nThe name Pontiac was given to a new lower-tier and lower-cost marque created in 1926 by the Oakland Motor Car Company, a division of General Motors. This was a part of their [Companion Make Program](https://en.wikipedia.org/wiki/General_Motors_Companion_Make_Program), a sales strategy that filled in the gaps of GM's tiers of quality and features. From Chevrolet at the most basic to Cadillac at the top, GM wanted a car to fit everyone's needs, wants, and budget. Pontiac was one step above Chevrolet. \n\nPontiac adorned their cars with a variety of hood ornaments featuring the signature Chief Pontiac. From the '20s into the '50s, the chief's face led Pontiacs, including as a face on the front of a jet in '55. The face left the jet in '56. Perhaps Pontiac's designers didn't like the juxtaposition of a 1700s native war hero blending into the Jet Age.\n\n<center>[![Pontiac ornaments](http://i.imgur.com/mWRxQZG.jpg)](http://www.pbase.com/mgrove/hood_ornaments)\nPontiac hood ornaments from 1928-1956. Click the image or [here for source](http://www.pbase.com/mgrove/hood_ornaments).</center>\n\n## Fashion Moves On To Safety\nIn the late 50s and early 60s, hood ornaments fell out of fashion for many car brands. Upmarket and luxury brands such as Buick, Cadillac, Mercedes Benz, and Jaguar kept the tradition up however. The iconic bulldog atop Mack heavy duty truck hoods did too. For 1968 cars, pedestrian-friendly safety regulations mandated that hood ornaments could no longer be fixed. Those who still had hood ornaments adapted to this by introducing ones that were spring loaded or attached to a flexible cable so they could bend back if their inattentive driver happened to plow down a poor old lady crossing the street. Blunt force trauma is better than getting stabbed by a shiny mohawk I suppose.\n\n<center>![mack](http://i.imgur.com/exgmWIo.jpg) ![cadillac](http://i.imgur.com/vjKhk3R.jpg)\nMack Truck and Cadillac hood ornaments. Photos by [Samdogs](https://www.flickr.com/photos/samdogs/489923835/) and [Charlie](https://www.flickr.com/photos/ceonyc/8405620690/)</center>\n\nThe new spring loaded ornaments combined with the luxury branding of the hood ornament holdouts led to many thefts in the '70s through '90s. Gradually even luxury brands ditched them, or only put them on their top-end models. Rolls Royce is a notable holdout. Today they put special engineering into their mascot, [The Spirit of Ecstasy](https://en.wikipedia.org/wiki/Spirit_of_Ecstasy), dating back over a hundred years to 1911. A button can raise or lower it at the driver's control. And combining a safety and anti-theft measure, if it is hit with enough force it will also instantly retract.\n\n<center>![spirit](http://i.imgur.com/2c03COl.jpg)\nRolls Royce's Spirit of Ecstasy. [Photo by majomka](https://pixabay.com/en/rolls-royce-spirit-of-ecstasy-emblem-689031/), public domain.</center>\n\n### People today haven't seen many hood ornaments from their hay day. If you'd like to see more, [check out this awesome gallery from Marland Grove](http://www.pbase.com/mgrove/hood_ornaments).\n\n---\n\n<center><h3>[#pfunkblog](https://steemit.com/active/pfunkblog) [#pfunkphotos](https://steemit.com/active/pfunkphotos)</h3></center>\nIf you like this post, click my name below or [here for my blog page](https://steemit.com/@pfunk) and hit the **follow** button in the upper right!",
+    "body_length": 5627,
+    "cashout_time": "2016-09-30T12:57:48",
+    "category": "cars",
+    "children": 29,
+    "created": "2016-08-30T09:36:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"cars\",\"photography\",\"pfunkphotos\",\"pfunkblog\",\"history\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/Qmd9rM4BSJdusYs3igXwaPqtYr7RJceMQM3ZoHrWLwbXYu\",\"http:\\/\\/i.imgur.com\\/Qe1TipU.jpg\",\"http:\\/\\/i.imgur.com\\/QqqsEAO.jpg\",\"http:\\/\\/i.imgur.com\\/sJcQFiH.jpg\",\"https:\\/\\/upload.wikimedia.org\\/wikipedia\\/commons\\/thumb\\/3\\/36\\/1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG\\/1024px-1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG\",\"http:\\/\\/i.imgur.com\\/mWRxQZG.jpg\",\"http:\\/\\/i.imgur.com\\/exgmWIo.jpg\",\"http:\\/\\/i.imgur.com\\/vjKhk3R.jpg\",\"http:\\/\\/i.imgur.com\\/2c03COl.jpg\"],\"links\":[\"https:\\/\\/en.wikipedia.org\\/wiki\\/Pontiac_(Ottawa_leader)\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Pontiac_Chieftain\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Boyce_MotoMeter\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/File:1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/General_Motors_Companion_Make_Program\",\"http:\\/\\/www.pbase.com\\/mgrove\\/hood_ornaments\",\"https:\\/\\/www.flickr.com\\/photos\\/samdogs\\/489923835\\/\",\"https:\\/\\/www.flickr.com\\/photos\\/ceonyc\\/8405620690\\/\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Spirit_of_Ecstasy\",\"https:\\/\\/pixabay.com\\/en\\/rolls-royce-spirit-of-ecstasy-emblem-689031\\/\",\"https:\\/\\/steemit.com\\/active\\/pfunkblog\",\"https:\\/\\/steemit.com\\/active\\/pfunkphotos\",\"https:\\/\\/steemit.com\\/@pfunk\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T05:23:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 61927841326479,
+    "parent_author": "",
+    "parent_permlink": "cars",
+    "pending_payout_value": "204.013 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-lost-and-forgotten-art-of-the-hood-ornament-featuring-the-51-pontiac-chieftan",
+    "post_id": 799195,
+    "promoted": "51.500 HBD",
+    "replies": [],
+    "root_title": "The Lost and Forgotten Art of the Hood Ornament, Featuring the '51 Pontiac Chieftan",
+    "title": "The Lost and Forgotten Art of the Hood Ornament, Featuring the '51 Pontiac Chieftan",
+    "total_payout_value": "0.000 HBD",
+    "url": "/cars/@pfunk/the-lost-and-forgotten-art-of-the-hood-ornament-featuring-the-51-pontiac-chieftan"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "11430243205500",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3188452127612",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223769954980",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416463064154",
+        "voter": "lafona"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "14469720879984",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1319152035389",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3015688539436",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065096145151",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320958684626",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3524962999766",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2479162407",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3009725987",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557825892",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43167128561",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1328636390",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170924165",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381968575324",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379356520243",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "685525576740",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167006544345",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "498154721",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773710219",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "162992394596",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823215122111",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289392252587",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230506986",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14104868761",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31028396876",
+        "voter": "thedarkestplum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056146398",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327201490881",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10014471046",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7103998234",
+        "voter": "taoofsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16264017361",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58360860731",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "929334235",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73942080812",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1430769534",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "359570383120",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202782147716",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586153919387",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11118667764",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10075379390",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3442399740415",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363218862243",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342081119",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362334823136",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100971986463",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181942657700",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8096289794",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249743373270",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47480263905",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20453713624",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132792025300",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1091598557",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2352422260",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129179648054",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189545314722",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1400138433026",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686878794110",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100494403998",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4041091559",
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259034550983",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41364826259",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92408012761",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5147983228",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62731817565",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6873879806",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40796944760",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3311846140",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17340323342",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7205955435",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1263817266",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5946075754",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3370446182",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9856964632",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172587678511",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7905293129",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31283265272",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5945940373",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231914934",
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20119492096",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6263066176",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666482029300",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27806701251",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1559911799",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71508499555",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "450490274597",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1118184846",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24132153479",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143979534662",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13265886887",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "864097811",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22929242435",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16334455276",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14633008138",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393022921",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531703283",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4023608719",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2917814226",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11502422370",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77568768403",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33629159959",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4184075891",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310840633",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4135548207",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2468438194",
+        "voter": "fireriseace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2816120254",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10995368554",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "744526625",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18793081399",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42870892029",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15095626509",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18689951751",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12696760695",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79018127283",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3034986192",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2423635537",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58690095318",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389421504",
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26088619512",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6659145103",
+        "voter": "cryptobro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7791666106",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3082024551",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2820120005",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2071759707",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23693378872",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4297488643",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37066079315",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67031455381",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192900146033",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113622998",
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016029372465",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13208655601",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15965457133",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1089072756",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960874021",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "442838800",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897249772",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18634755812",
+        "voter": "jennamarbles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35581832534",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38420830032",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7599817269",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17524174666",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568834437",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10174214221",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5362780558",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103648120",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3049903464",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8501004857",
+        "voter": "alphabeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49083786264",
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4665399694",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122273677",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24075889262",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28501596110",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85597116980",
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8761422348",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5886596143",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1950289959",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36093241919",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1425337253",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2647645651",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19610089929",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22420005771",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15561179003",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7484747344",
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "691782075",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512286246",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12628054529",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15099288018",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3452883959",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88063368097",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9152280038",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435409217",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1312875497",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11409257997",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "353095859",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122035883",
+        "voter": "harrycoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18933467156",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "958407932",
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58277489",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28468972316",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2127373904",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61056742",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83592503505",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "575708182",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5733814684",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61094018",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6918396879",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1117439352",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "716669209",
+        "voter": "inferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3374739266",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "771908956",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87993823754",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250890922",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23002426499",
+        "voter": "jimmco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17719880813",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "478632713",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6860983719",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11435132110",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2582268537",
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3890904309",
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22504086307",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3530818614",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85421073",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615508801",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50164653",
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "695736122",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666955368",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13468516926",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13864407456",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2102602089",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1148962246",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12067204352",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17536031676",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107899577",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5812055555",
+        "voter": "canadian-coconut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1377220430",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5004447489",
+        "voter": "sarahjordan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77021319",
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187760632",
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1582075103",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185235623517",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52024054",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2146314155",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24239498471",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91697951",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53871683",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53593366",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1472243153",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1612393618",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5544678407",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454788",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25502873957",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51595558",
+        "voter": "saintmichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83500065",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51128264",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346061498",
+        "voter": "vh770"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201743745",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61862680",
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52101327",
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607607141",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51062060",
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50213272",
+        "voter": "lord.robert"
+      }
+    ],
+    "author": "kaylinart",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<a href=\"http://imgur.com/n0FXs2m\"><img src=\"http://i.imgur.com/n0FXs2m.jpg\" title=\"source: imgur.com\" /></a>\nWith the new Promoted tab, Some people are happy. Others are complaining.\n\"The Rich will Get richer.\" \nI keep hearing people say. \n\n## But is this such a bad thing? ## \nWhen Browsing around, I noticed that ANYONE CAN promote any post. Not just your own. You can support anyone and any post you want. \nIf a dolphin or a whale sees your excellent post, they can promote it FOR YOU! In addition to giving you their upvote.\n\nThis will allow you to do EVEN BETTER with your posts. Also, you can promote your stuff.\n<a href=\"http://imgur.com/LcS63SL\"><img src=\"http://i.imgur.com/LcS63SL.gif\" title=\"source: imgur.com\" /></a>\n# Your SUCCESS In YOUR Hands! #\nYou can promote your own stuff, Sure it may not blow up into something large, But you'll at the very least get more followers. This will help future posts; Your investment will help you do well for future posts.\n\nSteemit is like a lottery, You can post high-quality content that is ignored, Sometimes your high-quality content is seen. Sometimes people don't even care about the topic you are talking about, and you have been ignored anyways. There are so many variables. It can be stressful when you work your butt off on a post that is just invisible. \n\nWith the post promotion, You can give yourself an edge on that. So it will be seen. If your post still doesn't do well, You can learn from it. Maybe you need a better title? better photos? \n\nI personally don't like my stuff left to chance, So the opportunity to make things happen makes me happy. \n<a href=\"http://imgur.com/oA9JsVb\"><img src=\"http://i.imgur.com/oA9JsVb.jpg\" title=\"source: imgur.com\" /></a>\n# Businesses Can Advertise! #\nImagine if you were on Facebook, And instead of seeing those pesky ads on the site, You had a separate wall you could go to, With those ads. \n\n### Would you ever go to the wall of advertising? ###\nHell NO!\nI would avoid that like the plague. Unless they offered me some coupons or something, They would have to do something for ME!!\n\nSo what happens if businesses take over the promoted wall?\n\nPLEASE DO!\nThis advertising is perfect, The money spent on the promoted posts goes back into the system. (I don't understand all of the technical stuff)\n<a href=\"http://imgur.com/qFti1Nr\"><img src=\"http://i.imgur.com/qFti1Nr.jpg\" title=\"source: imgur.com\" /></a>\nBut  If Domino's Pizza wants to promote their new carry out pizza's for 7.99 on the promoted page, They will have to ADD MONEY to the pool. That WE can earn. In order to promote. I LOVE THIS! \n\nThat means Domino's pizza is putting money in OUR POCKETS!\n### Won't the advertising fail then? Because It's on a separate wall? ### \nIf it were Facebook, YES! But with Steemit, We are getting something out of their advertising. If big businesses don't get success from promoted posts, they won't promote on our platform anymore. And we'll have less money around as the result. \n\nThe principle of Reciprocity will come into effect.\n- Domino's gave you money, Now how about pizza for dinner tonight?\n\nApparently, if you hate pizza, You won't buy a pizza. But if someone is promoting cute shoes, you might just have to buy those shoes, I mean That company GAVE the platform more money for you to earn. You can buy a pair of shoes from them right?\n\nWith Facebook, there is no Reciprocity  Because the ads do nothing for you, With Steemit This is a beautiful form of advertising that will have  A BIG IMPACT.\n\n<a href=\"http://imgur.com/8VApJlc\"><img src=\"http://i.imgur.com/8VApJlc.jpg\" title=\"source: imgur.com\" /></a>\n# So Why You Complaining? # \nSteemit made some exciting changes yesterday, And we need to be HAPPY! I'm so excited about the future of Steemit. You just have to think of the long term benefits of each change that is made, And how it may or may not benefit you. Some changes may hurt your short-term game but are good for the longer term. While other changes may not affect you at all! And if you deeply hate that promoted tab, You can always ignore it! No law against. that.",
+    "body_length": 4097,
+    "cashout_time": "2016-10-01T00:11:33",
+    "category": "steemit",
+    "children": 72,
+    "created": "2016-08-30T20:58:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"advertising\",\"promoted\",\"promotion\"],\"image\":[\"http:\\/\\/i.imgur.com\\/n0FXs2m.jpg\",\"http:\\/\\/i.imgur.com\\/LcS63SL.gif\",\"http:\\/\\/i.imgur.com\\/oA9JsVb.jpg\",\"http:\\/\\/i.imgur.com\\/qFti1Nr.jpg\",\"http:\\/\\/i.imgur.com\\/8VApJlc.jpg\"],\"links\":[\"http:\\/\\/imgur.com\\/n0FXs2m\",\"http:\\/\\/imgur.com\\/LcS63SL\",\"http:\\/\\/imgur.com\\/oA9JsVb\",\"http:\\/\\/imgur.com\\/qFti1Nr\",\"http:\\/\\/imgur.com\\/8VApJlc\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T20:58:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 56408831488012,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "330.380 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "why-the-promoted-tab-is-the-best-thing-ever",
+    "post_id": 805254,
+    "promoted": "51.356 HBD",
+    "replies": [],
+    "root_title": "Why The PROMOTED Tab Is The BEST Thing Ever!",
+    "title": "Why The PROMOTED Tab Is The BEST Thing Ever!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@kaylinart/why-the-promoted-tab-is-the-best-thing-ever"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30339908020562",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1793185753098",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5648189733502",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1136471312099",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2036157978",
+        "voter": "proctologic2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "307854063319",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9463360243",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104913858289",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76675529470",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171898827767",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15868828870",
+        "voter": "jademont"
+      },
+      {
+        "percent": "443",
+        "reputation": 0,
+        "rshares": "29917100062",
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61060303",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "729811189",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "11904454830",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8804491689",
+        "voter": "richman"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "6703367104",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55715107182",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418614079",
+        "voter": "zheka-melnikov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39838275827",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "849630107",
+        "voter": "coar"
+      },
+      {
+        "percent": "5555",
+        "reputation": 0,
+        "rshares": "1766932742",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76926379771",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112652982457",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19445503574",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394735060526",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173921081175",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118655742038",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91847138579",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4487075430",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30885067393",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7038427221",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68410228620",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3064933831",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179628130136",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37002417511",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4998101846",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52311028214",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "11533997209",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14898136192",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "54221077",
+        "voter": "strawhat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10245289581",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "53734079",
+        "voter": "cryptochannel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30062419857",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550658687885",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231554825",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168490289070",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309495689614",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4702611121",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138084510282",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40353294945",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243649644994",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2123737721",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84745420462",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3368223007",
+        "voter": "begstreets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5706185290",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "726952476",
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138604353",
+        "voter": "bsgomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19885998408",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3849140235",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5471375290",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38383171914",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86465359157",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5203707025",
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51423955",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36222407310",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474208730",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25137854994",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "2910988389",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10434858028",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "862222696",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5986514391",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "21439394585",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11197380448",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15279745645",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3116848228",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16487484019",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "443",
+        "reputation": 0,
+        "rshares": "793610074",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6772181549",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1791492839",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1834344112",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264199005",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6718625083",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14682233952",
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3893435508",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23733546534",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5830430132",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331709231",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9300623336",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "5700",
+        "reputation": 0,
+        "rshares": "17329389153",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4761294926",
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "728655108",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2172044004",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4107228742",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26371930846",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487425594",
+        "voter": "frol"
+      },
+      {
+        "percent": "6800",
+        "reputation": 0,
+        "rshares": "32443613669",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8019523640",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9139190744",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9956211164",
+        "voter": "booky"
+      },
+      {
+        "percent": "1100",
+        "reputation": 0,
+        "rshares": "1266758168",
+        "voter": "kimal73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3745370757",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78190716",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60369832",
+        "voter": "i603"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11195003640",
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15560546051",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3488542879",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5656732242",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2053712672",
+        "voter": "chef.cook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55893569",
+        "voter": "damascusvg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4434491535",
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "818232071",
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5954717805",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89234192424",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54408230",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113858863",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582660326",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "862232003",
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2067369152",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143358574",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50263480",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439879",
+        "voter": "theodoros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54390442",
+        "voter": "alex.gaud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238100621",
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157583759",
+        "voter": "greencycles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198143828",
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157730645",
+        "voter": "nick174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "659555137",
+        "voter": "reddust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152869602",
+        "voter": "hethzen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152523892",
+        "voter": "malasuerte94"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124603587",
+        "voter": "bromejs"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/12/Voting-000065325199_Small69865.jpg\" width=\"812\" height=\"590\"/></p>\n<p>Steem uses a consensus mining system that is different from most conventional cryptocurrencies like bitcoin. &nbsp;As stated in the <a href=\"https://steem.io/SteemWhitePaper.pdf\">whitepaper</a> (p22):</p>\n<blockquote>With Steem, block production is done in rounds. Each round 21 witnesses are selected to create and sign blocks of transactions. Nineteen (19) of these witnesses are selected by approval voting, one is selected by a computational proof-of-work, and one is timeshared by every witness that didn\u2019t make it into the top 19 proportional to their total votes. The 21 active witnesses are shuffled every round to prevent any one witness from constantly ignoring blocks produced by the same witness placed before.</blockquote>\n<p><strong>As stated above the top 19 witnesses are \"elected\" by voting. &nbsp;The voting page can be seen </strong><a href=\"https://steemit.com/~witnesses\"><strong>here</strong></a><strong>. &nbsp;This brings us to the problem:</strong></p>\n<hr />\n<h1>The Problem</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/12/blindfolded-senior-business-man-walking-through-social-media-data-000082574145_Small0c713.jpg\" width=\"841\" height=\"570\"/></p>\n<p><strong>Due to the nature of Steemit it is attracting people who are not necessarliy familiar with cryptocurrency concepts and the difference in the way that mining works can be confusing even to those who are familiar with conventional POW (proof of work) or POS (Proof of Stake).</strong>&nbsp;</p>\n<p>There is understandably a lot of confusion in the community over the role of witnesses as well as who to vote for. There is also inconsistency in the information that witnesses and witness candidates provide to potential voters.</p>\n<hr />\n<h1>A Potential Solution?</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/12/We-offer-solutions--business-card-000084741237_Smallfbee9.jpg\" width=\"829\" height=\"578\"/></p>\n<p><strong>Knowledge is power.</strong></p>\n<p><strong>With an appropriate set of questions and answers voters should be able to make an informed decision.</strong></p>\n<p>With this in mind I have crafted a questionnaire for witnesses and prospective witness candidates. This is a draft framework for community discussion. &nbsp;</p>\n<p>The aim is to have a standardised set of questions that all witnesses and witness candidates answer in order to facilitate the process of witness voting for community members. &nbsp;</p>\n<p><strong>The questions are designed to be voluntary.&nbsp;</strong></p>\n<p><em><strong>It is up to individual candidates/witnesses if they answer them or not.</strong></em></p>\n<hr />\n<h1>THE QUESTIONNAIRE</h1>\n<hr />\n<h1>A) Technical Questions</h1>\n<h3><em>1)In a few sentences or less please explain the role of a witness in the Steemit/Steem ecosystem as you understand it.</em></h3>\n<h3><em>2)What are the most important qualities for a witness to have?</em></h3>\n<h3><em>3)How do you fulfil those qualities?</em></h3>\n<h3><em>4)Is there anything beyond this that you feel makes you a better witness candidate than the average person?</em></h3>\n<h3><em>5)What kind of hardware setup are you using and is it your own local hardware or rented?</em></h3>\n<h3><em>6)What if any contingencies do you have in case of an emergency or server failure?</em></h3>\n<h3><em>7)Do you think the current compensation for a witness is fair? &nbsp;If not what do you think would be fair compensation?</em></h3>\n<h3><em>8)What percentage (or fixed amount) of witness earnings should be kept and what percent invested back into the steem platform?&nbsp;</em></h3>\n<h3><em>9)How do you intend to use your witness earnings?</em></h3>\n<p><em>(Thanks to @geoffrey for suggestions for modifying the last 3 questions here.)</em></p>\n<hr />\n<h1>B) Current Witness Questions</h1>\n<h3><em>1)What challenges or problems have you faced in your role as witness?</em></h3>\n<h3><em>2)What other types of decisions do you think as a witness you should be involved in voting on?</em></h3>\n<h3><em>3)Are there any changes to the witness/mining system or structure that you feel would improve the system? &nbsp;Why?</em></h3>\n<p><em>(Thanks to @jesta for suggesting question 2.)</em></p>\n<hr />\n<h1>C) Community Questions</h1>\n<h3><em>1)What do you think makes Steemit special and worth supporting?</em></h3>\n<h3><em>2)How much do you use Steemit on average per week?</em></h3>\n<h3><em>3)What is your favourite type of post?</em></h3>\n<h3><em>4)Do you have a specific favourite post you would like to mention or link to? &nbsp;(Feel free to give a shout out to the author)</em></h3>\n<h3><em>5)What kind of posts do you dislike?</em></h3>\n<h3><em>6)How do you feel about the Steemit governance structure?</em></h3>\n<h3><em>7)How would you improve Steemit?</em></h3>\n<hr />\n<h1>D) Personal Questions</h1>\n<h3><em>1)How did you get into cryptocurrencies?</em></h3>\n<h3><em>2)What hobbies or interests do you have outside of Steemit and cryptocurrencies?</em></h3>\n<h3><em>3)What is your favourite movie genre?</em></h3>\n<h3><em>4)What is your favourite movie or movies?</em></h3>\n<h3><em>5)What is your favourite musical genre?</em></h3>\n<h3><em>6)What are you favourite bands/albums?</em></h3>\n<h3><em>7)What is your favourite book (fiction or non-fiction) and do you have a favourite author?</em></h3>\n<h3><em>8)What is your favourite TV show?</em></h3>\n<h3><em>9)Which is your favourite Star Wars movie from the original trilogy?</em></h3>\n<h3><em>10)Margarine or butter?</em></h3>\n<h3><em>11)The Beatles or The Rolling Stones?</em></h3>\n<h3><em>12)Have you ever tried Marmite?</em></h3>\n<h3><em>13)Are there any weird facts that you would like to share with everyone?</em></h3>\n<h3><em>14)Is there anything else that you would like other people to know about you?</em></h3>\n<hr />\n<h1>Conclusions</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/12/Business-person-having-bright-idea-000074154627_Small7f013.jpg\"/></p>\n<p>Thank you for reading. &nbsp;</p>\n<p><strong>As I have stated this is a starting point for community discussion. &nbsp;All the questions are voluntary - there is no way to compel people to answer, neither should there be. &nbsp;</strong></p>\n<p><strong>The witnesses have a priviliged position in the Steemit ecosystem which gives them considerable power. Since people are required to vote for them it is in my opinion to be expected that people would like appropriate information in order to make an informed decision.&nbsp;</strong></p>\n<p>The \"personal\" section is designed to be fun and to help \"humanise\" candidates. &nbsp;I can understand if some people find the questions frivolous or irrelevant to the job of being a witness. &nbsp;</p>\n<p>In regards to this one must consider the dilemma of the voter who may need some kind of alternative criteria to decide between different candidates who are equally capable from a technical standpoint.&nbsp;</p>\n<p><strong>Whether people feel that this makes voting a popularity contest or is in some way unfair is for the community to decide.</strong></p>\n<hr />\n<p><em>If you like my work please follow me and check out my previous photography work and tutorials &nbsp;@thecryptofiend - hope you enjoy.</em></p>\n<hr />\n<p><em>Credits for images - All Images are purchased from Istockphoto using my own personal account. &nbsp;Further information can be provided if requested.</em></p>\n</html>",
+    "body_length": 7536,
+    "cashout_time": "2016-10-14T04:34:42",
+    "category": "steemit",
+    "children": 46,
+    "created": "2016-09-12T16:44:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"witness-category\",\"steemit-ideas\",\"politics\"],\"users\":[\"geoffrey\",\"jesta\",\"thecryptofiend\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/12\\/Voting-000065325199_Small69865.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/12\\/blindfolded-senior-business-man-walking-through-social-media-data-000082574145_Small0c713.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/12\\/We-offer-solutions--business-card-000084741237_Smallfbee9.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/12\\/Business-person-having-bright-idea-000074154627_Small7f013.jpg\"],\"links\":[\"https:\\/\\/steem.io\\/SteemWhitePaper.pdf\",\"https:\\/\\/steemit.com\\/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T16:44:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 43409252661446,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "122.375 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "witness-questionnaire-a-solution-for-voter-confusion",
+    "post_id": 931957,
+    "promoted": "51.000 HBD",
+    "replies": [],
+    "root_title": "Witness Questionnaire - A Solution for Voter Confusion?",
+    "title": "Witness Questionnaire - A Solution for Voter Confusion?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@thecryptofiend/witness-questionnaire-a-solution-for-voter-confusion"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318095208614",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429044376587",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4533732336802",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7303764362542",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1659602960652",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "509970669779",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116291645822",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446046136",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1069598978",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212186899968",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72055092368",
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140992694081",
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50900643432",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2194663980",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "7900",
+        "reputation": 0,
+        "rshares": "145906252490",
+        "voter": "marina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49836148737",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347471940542",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19323388954",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3317742975",
+        "voter": "karen13"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "298783270",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431019291",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19333957259",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161322307500",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39918937494",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10993349551",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13748222174",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8944418644",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6083187762",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24751486274",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3733883806",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7668574769",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6948566921",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15642700631",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "1660823962",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11319565357",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5300806959",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11777272396",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57766716",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209436170",
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58555241",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1682367496",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3443716599",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2818827380",
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40814499797",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59174034",
+        "voter": "pataxis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1559083086",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "707118642",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731283721",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55368187",
+        "voter": "johano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5827842311",
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350847785",
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "825740842",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4736805376",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2457079513",
+        "voter": "funnyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87219762",
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245824",
+        "voter": "steembets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155699375",
+        "voter": "daniel.brest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149226307",
+        "voter": "edward.shroder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133226774",
+        "voter": "eduard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153123119",
+        "voter": "shreeraj"
+      }
+    ],
+    "author": "claudiop63",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s14.postimg.org/nktzlc8i9/640px_Stipula_fountain_pen.jpg\nHi there. I have been writing short novels for some time, mostly in my native language (Italian).  \nNow, I would like to play around with the fact that Steemit easily enables us to collect decentralized contributions to any activity, including creative writing...    \n\nDo you want to play with me? Then it works in this way: \n\nI decide the abstract of a story, and write an introductory (very short) chapter, labelled as CHAPTER 1.\nThe first person willing to contribute is going to write a comment to the post containing a short chapter (labelled CHAPTER 2) which is logically connected to my CHAPTER 1 and develops the story...\n \nFurther contributors will post their own chapters as follow-ups to the last contribution submitted (e.g. CHAPTER 6, logically linked to CHAPTER 5). \n\nLet's see what comes out.. \n\nIF YOU DONT' HAVE MUCH TIME, JUST WRITE ONE PARAGRAPH OR TWO :-)\n\nAfter the first payment period (24 hours from now or so), I will post the stitched-up story resulting from your contributions (possibly with some edits, depending on my personal taste) and then we can continue from there for the next 30 days... \n\nOk, here we go: \n\nABSTRACT \nFabio and Emma are in their late 20s and live in London. Fabio is Italian, Emma comes from a small town in the north of England. Fabio has just lost his well-paid job in a major financial institution in the City, while Emma has just gotten a cool job in the fashion industry.  \nThey have been together for three years and want to have children, but the recent professional changes are putting their relationship under \npressure. Fabio would like to either accept an offer from Wall Street and move now to New York City, or take a sabbatical year for them to travel and decide where to go and what to do next...  \n\nCHAPTER 1 \nA funny smell in the subway. It's not unpleasant \u2013 just weird.  It reminds Fabio of one of Emma's body  odours...the one he likes most.  \nFabio was trying not to think about Emma for as long as possible, following last night's discussion. Sometimes he feels she doesn't realize how lucky they are: his savings can easily pay for 12 months of travelling, making love, and deciding where to go next. Ok, she has a brand new job, but they are still young and Fabio feels they should grab now their chance to travel and then decide where to settle down and have kids.  \nThe train stops. Time to get out. \n\nPLEASE POST YOUR FOLLOW-UP CHAPTER AND MAKE SURE YOU STATE CLEARLY YOUR CHAPTER n, WHICH SHOULD BE THE FOLLOW-UP TO THE CONTRIBUTION LABELLED AS CHAPTER n-1 \n\nImage credit: http://bit.ly/2cpqac3",
+    "body_length": 2638,
+    "cashout_time": "2016-10-08T21:58:15",
+    "category": "writing",
+    "children": 24,
+    "created": "2016-09-07T19:14:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"writing\",\"fiction\",\"steemit\",\"life\",\"steemsquad\"],\"image\":[\"https:\\/\\/s14.postimg.org\\/nktzlc8i9\\/640px_Stipula_fountain_pen.jpg\"],\"links\":[\"http:\\/\\/bit.ly\\/2cpqac3\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T17:55:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17333270627842,
+    "parent_author": "",
+    "parent_permlink": "writing",
+    "pending_payout_value": "33.722 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "decentralized-fiction-writing-add-a-chapter-to-my-story",
+    "post_id": 884826,
+    "promoted": "50.154 HBD",
+    "replies": [],
+    "root_title": "DECENTRALIZED Fiction Writing \u2013 Add a Chapter to My Story :-)",
+    "title": "DECENTRALIZED Fiction Writing \u2013 Add a Chapter to My Story :-)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/writing/@claudiop63/decentralized-fiction-writing-add-a-chapter-to-my-story"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3188398613205",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416455555810",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1063241778133",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "974982219665",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320953723545",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3717269466",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4512599117",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836491819",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660320000938",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6096976679374",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64588098355",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992187857",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256346717",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78520433306",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59481192813",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391322719970",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388642364543",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147468593258",
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18842819298",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6577996290",
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "732029636244",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82303225745",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746998903",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160172040",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392008932107",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338575099598",
+        "voter": "lighthil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345687346",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38470062044",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3208539412",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "553920270",
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3980058535",
+        "voter": "atomrigs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21028087238",
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241453016290",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8051310955",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9509180288",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1013385578660",
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "340613629011",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31752985511",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3586399099",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20121967528",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1280057354",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79538010241",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2502028807",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416685282",
+        "voter": "shane-loomb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17062034940",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40270702221",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2208534217065",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185941009750",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485523165464",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686844134557",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77265331719",
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5041587169",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1851119104",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8358099209",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43717579213",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56370456341",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5826412643",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20298262584",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8748767514",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13994668195",
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4642678824",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119597882420",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5825119560",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1399449402",
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262524864",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "295356843",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "257129715707",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9686786504",
+        "voter": "jay4u"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "20722812158",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2371698511",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "213524555",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "195753480",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1343571109602",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223842426",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27440848116",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807565461",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470865927",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2348634180",
+        "voter": "cloh76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11487152871",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195865320523",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137278456669",
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235543115",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4132768874",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11823397688",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1988805953",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431895128",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128363179459",
+        "voter": "gbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17309844116",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37626823996",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25944279504",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2603531410",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3032970711",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4042823087",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1560460454",
+        "voter": "iamwne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581859390",
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3477759461",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5861640729",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2274697083",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119910353",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192019967397",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27197763226",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3399069000",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44589336878",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6513525503",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54499541667",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3646308452",
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1102384575",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960761826",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "700736195",
+        "voter": "clonewarz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12580474306",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39188627214",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "573813577",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17996407061",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5574895971",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110037247",
+        "voter": "kukuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36810520388",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132463150",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1958148384",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5859277865",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30544566558",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55181675",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56215794",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2537580784",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20619537016",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22246173698",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "758711107360",
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3899837943",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7481079798",
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574283957",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111083493",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3538380254",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157606858",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497521278",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56647554",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53370316",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10934414249",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753317",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001789859",
+        "voter": "fooblic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51619811",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "776885575",
+        "voter": "rem870man"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63133947",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1665509115",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1198517584",
+        "voter": "anech512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1079996592",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290489475",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124331966",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863356",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51860909",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1238992289",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59905640",
+        "voter": "unnsmed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40456542770",
+        "voter": "jyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51481279",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166517436",
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53765568",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17411909771",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1092134439",
+        "voter": "fiat19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8621687032",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53856578929",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501310305",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12066449411",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688853443",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1875177639",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3791707980",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2432988745",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "888015091",
+        "voter": "profitgenerator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2061005629",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26338425659",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65297740",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1370669935",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68279885",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3568269258",
+        "voter": "szoftfst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63763634708",
+        "voter": "jack8831"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50834679",
+        "voter": "honna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988075153",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206333088",
+        "voter": "webus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50020884",
+        "voter": "coriana"
+      }
+    ],
+    "author": "clayop",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>After two tremendous spikes in the last month, Steem price has been decreasing steadily and it seems to be in a somewhat serious situation. A worse thing is that posts per user is dramatically decreasing. This means that users are not enjoying this platform and may leave to other attractive platform very easily. What makes these outputs?</p>\n<p><img src=\"https://s3.postimg.io/bzlvi7qlf/trend.png\" width=\"1047\" height=\"631\"/></p>\n<p>(Image source: @atomrigs 's <a href=\"https://steemit.com/steemit/@atomrigs/attention-whales-it-is-time-for-your-action\">post</a>)</p>\n<p><br></p>\n<p>Although Steemit sounds very promising, as advertised \"post it and earn reward\", the reality to regular users is very disappointing. Many of them only got below $0.1 regardless of their efforts on the posts. Obviously there were some junk posts and copy-paste things, but some maybe really worth to be rewarded. I think that there are two main reasons. First, whales are few and they can read a very small number of posts. Undiscovered posts by whales sometimes get over a hundred upvotes but the reward is still below $0.1. Second, reward system is too biased. As mentioned in the white paper, the reward system is bench-marking a casino scheme. But statistics and user experiences so far may tell this is wrong. We should remind that while a few jackpot winners are very happy, many losers are desperate and sometimes give up their lives. The similar thing is happening now in Steemit.</p>\n<p><br></p>\n<p>Then what should we do? I want to suggest three points.</p>\n<p><br></p>\n<p><br></p>\n<h2>1. Limit whales voting power at a certain percentage of total Steem Power</h2>\n<p>(Original idea is from @slowwalker 's <a href=\"https://steemit.com/kr/@slowwalker/3zcizz\">post</a>)</p>\n<p>For instance, we can restrict whales voting power at 0.1%. Then if a whale have 5,000 SP out of 500,000 (1.0%), he has the same power with those who has 500 SP (0.1%), but he can vote 10 times more at the full rate. This may cause some whales to split accounts, but this splitting for increasing voting power can be considered as an abuse given the system. This suggestion can make dolphins stronger and results in more distributed power system.</p>\n<p><br></p>\n<h2>2. Reduce biases in the reward system</h2>\n<p><img src=\"http://i.imgsafe.org/9eb18e1.png\" width=\"630\" height=\"465\"/></p>\n<p>Currently the parameter is 2.0 (square) and it brings in a very high head and long tail. But what we need is thick tail. We need to test and simulate other parameters between 1 and 2, focusing on some socially meaningful measurements (e.g. median payout, mode payout bracket, 90/10 ratio, <a href=\"https://www.equalitytrust.org.uk/how-economic-inequality-defined\">etc</a>). Do not undervalue seemingly-worthless posts. If we can make people happy and retain them, the reward is not a waste. Remember that attracting new user also costs, and ex-users are very very hard to bring back.</p>\n<p><br></p>\n<h2>3. Reputation-based display should be default</h2>\n<p>Although payout-based sorting has some importance in terms of system security and users' perception, it's side-effect is also significant - a feeling of inequality. I would suggest a reputation-based display page as a default. People are able to have more influence without having a great amount of money, so that everyone can dream about becoming an important person in this platform. If needed, we surely have to develop better reputation system.</p>\n<p><br></p>\n<p>Steemit is mainly a SNS, not a marketplace nor a gambling system. Our first goal should be making as many people happier, then those people will make us succeed. I would really appreciate to developers who are working very hard under the water and many friends who give bitter advises for Steemit.</p>\n</html>",
+    "body_length": 3803,
+    "cashout_time": "2016-09-29T17:50:24",
+    "category": "steemit",
+    "children": 38,
+    "created": "2016-08-29T09:09:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"suggestion\"],\"users\":[\"atomrigs\",\"slowwalker\"],\"image\":[\"https:\\/\\/s3.postimg.io\\/bzlvi7qlf\\/trend.png\",\"http:\\/\\/i.imgsafe.org\\/9eb18e1.png\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@atomrigs\\/attention-whales-it-is-time-for-your-action\",\"https:\\/\\/steemit.com\\/kr\\/@slowwalker\\/3zcizz\",\"https:\\/\\/www.equalitytrust.org.uk\\/how-economic-inequality-defined\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T18:53:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 26105252611725,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "87.918 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "make-people-happier-and-let-steemit-succeed",
+    "post_id": 787404,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Make People Happier and Let Steemit Succeed",
+    "title": "Make People Happier and Let Steemit Succeed",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@clayop/make-people-happier-and-let-steemit-succeed"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6969609715267",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6041832098578",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098537433",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3761592437",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697211724",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53898850648",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660577015",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213642056",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2461184782115",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451819636",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622624403",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967032634",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288114012",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74873944700",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20204305009",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1788152919",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10075379390",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9215199356",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1068373055",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686865536242",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2370719608",
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5076307916",
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17340323342",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44546434853",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48542520862",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55819086010",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59751474240",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124480200899",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464240904",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227948163",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12851338071",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33629159959",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47399416292",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15085871795",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98108299",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100419616",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65229443",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97819198",
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9163703657",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "612861952",
+        "voter": "greengo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452064608",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17996472953",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17950934727",
+        "voter": "renk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137113215",
+        "voter": "tiffany123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "736893129",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25310106112",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27499486740",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "523034384",
+        "voter": "grahnite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38668120965",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039449399",
+        "voter": "handmade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "758721600658",
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470093580914",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839147597",
+        "voter": "nick-sinard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636463375",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9951450706",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103214952819",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18499482072",
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4431678881",
+        "voter": "zivile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14413813530",
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375926454",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33363388226",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38441712669",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14100063768",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1400671466",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4296017852",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13916959803",
+        "voter": "kushfreeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58435806",
+        "voter": "bettyanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "984374312",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765065044",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273191918",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379632083",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23182784473",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91725775",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5186278337",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499134976",
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52153025",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51597326",
+        "voter": "nathan.chinn"
+      }
+    ],
+    "author": "kafkanarchy84",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://i.imgsafe.org/5307899e5a.jpeg\n\n**Hello! In this post we want to tell you about Steemit, and how to make an account.** We are also gonna go to Niigata Station here in Niigata, Japan, and spread the word about Steem! Please check out the video below!\n\n**\u3053\u3093\u306b\u3061\u306f\uff01**\nsteemit\u521d\u3081\u3066\u306e\u65b9\u3078\u306e\u7d39\u4ecb\u3068\u30a2\u30ab\u30a6\u30f3\u30c8\u4f5c\u6210\u65b9\u6cd5\u3001\u521d\u6295\u7a3f\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\n\u307e\u305f\u65b0\u6f5f\u99c5\u5468\u8fba\u3067\u3001steemit\u3092\u62e1\u6563\u3057\u3066\u304d\u307e\u3059\u3002\u4e0b\u8a18\u52d5\u753b\u3092\u305c\u3072\u3054\u89a7\u304f\u3060\u3055\u3044\uff01\n\nhttp://i.imgsafe.org/57b7e7f081.jpeg\n*\u30b9\u30c6\u30a3\u30df\u30c3\u30c8\u540d\u523a*\n\nhttp://i.imgsafe.org/530cae8c6f.jpeg\n\nhttp://i.imgsafe.org/5318b7bf13.jpeg\n*Talking to people about Steem.*\n\n**Without further ado, here's the video!**\n\u305d\u308c\u3067\u3001\u30d3\u30c7\u30aa\u898b\u307e\u3057\u3087\u3046\uff01\uff01\uff01\n\nhttps://youtu.be/tJ0jRYkegA4\n\n\n**We had a great time today, and hope to see you on Steemit.com soon!!!**\n\u4eca\u65e5\u306f\u3001\u3068\u3066\u3082\u697d\u3057\u304b\u3063\u305f\u3067\u3059\uff01\n\u3058\u3083\u3001\u307e\u305f\u30b9\u30c6\u30a3\u30fc\u30e0\u3067\u306d\uff01\uff01\uff01^_^\n\nPeace, Love, and Anarchy,\n\n~KafkA\n\n***\n*Graham and Miyuki Smith are Voluntaryist activists residing in Niigata, Japan. To help support our activism here at Voluntary Japan, please consider upvoting, curating, and promoting/sharing this post!!!*\nhttp://i.imgsafe.org/55f1b38bb4.jpeg\nhttp://i.imgsafe.org/57b217a562.jpeg\n### ~*~ ###",
+    "body_length": 1038,
+    "cashout_time": "2016-09-30T13:17:15",
+    "category": "steemit",
+    "children": 11,
+    "created": "2016-08-30T10:32:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"japanese\",\"cryptocurrency\",\"tutorial\"],\"image\":[\"http:\\/\\/i.imgsafe.org\\/5307899e5a.jpeg\",\"http:\\/\\/i.imgsafe.org\\/57b7e7f081.jpeg\",\"http:\\/\\/i.imgsafe.org\\/530cae8c6f.jpeg\",\"http:\\/\\/i.imgsafe.org\\/5318b7bf13.jpeg\",\"https:\\/\\/img.youtube.com\\/vi\\/tJ0jRYkegA4\\/0.jpg\",\"http:\\/\\/i.imgsafe.org\\/55f1b38bb4.jpeg\"],\"links\":[\"https:\\/\\/youtu.be\\/tJ0jRYkegA4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T12:27:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 18490635633805,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "46.967 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "my-200th-steemit-post-bringing-steem-to-the-streets-of-japan-steemit-feat-mslight2016",
+    "post_id": 799551,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "My 200th Steemit Post! Bringing Steem to the Streets of Japan! Steemit \u306b\u3064\u3044\u3066\u65e5\u672c\u306e\u65b9\u3005\u3078\u7d39\u4ecb\u3057\u307e\u3059\uff01(feat. @mslight2016)",
+    "title": "My 200th Steemit Post! Bringing Steem to the Streets of Japan! Steemit \u306b\u3064\u3044\u3066\u65e5\u672c\u306e\u65b9\u3005\u3078\u7d39\u4ecb\u3057\u307e\u3059\uff01(feat. @mslight2016)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@kafkanarchy84/my-200th-steemit-post-bringing-steem-to-the-streets-of-japan-steemit-feat-mslight2016"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "12795356591228",
+        "voter": "rainman"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "20627905251154",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2819951722233",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3126139203563",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408335912363",
+        "voter": "lafona"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "137520714395",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1045590849049",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "918746263877",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314680482723",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6477125435976",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2479280379",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3009895073",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95870468045",
+        "voter": "testz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557842933",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43188009259",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1328701927",
+        "voter": "mini"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "4383774924626",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170928098",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15405606665",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "498171759",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773739057",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134108679839",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66151857717",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230510919",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8126895938",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9703360306",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "993844457161",
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1927622529",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273642114361",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19711517082",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1293680763",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54016857275",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1788305838",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "359570383120",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249412785392",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41737728268",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3764317734163",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4533981884",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946407565",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "81560548889",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6874854410",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23613509404",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188243688187",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25007532817",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305496314948",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63488015693",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4522484628",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13086745099",
+        "voter": "zer0sum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119598721068",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13688318779",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37071287028",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262539416",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76785426942",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12165573676",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1088758929",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1108897841",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531668806",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11266480276",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83318660729",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473559669",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54005396563",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391334114",
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14784154359",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6186917789",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13846050753",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196293057448",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57476726978",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6518131962",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95772387",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93184919",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145088625",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72245725",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4710593462",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116451427",
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8626407928",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60350290",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3513802513",
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16417044263",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83373852",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2555471109",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4072795127",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9224124607",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130660676",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "442838800",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7599817269",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10231913210",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4100960070",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "861323115",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856524470",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25310106112",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5337877066",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "762211704",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5388014407",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "1800",
+        "reputation": 0,
+        "rshares": "216277477550",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2600",
+        "reputation": 0,
+        "rshares": "8790981829",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "95557398685",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3592472408",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "18385668989",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1481116321",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4751041510",
+        "voter": "lianbing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "698557363",
+        "voter": "romancs"
+      },
+      {
+        "percent": "1800",
+        "reputation": 0,
+        "rshares": "24523502262",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1964111181",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7190118987",
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100647770218",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "1326246308",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9342791743",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3299387426",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31543276597",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3302534849",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18933467156",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85284068",
+        "voter": "sparkeddev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61313637",
+        "voter": "jfelton5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1390975245",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "220537174",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6777205106",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7409732748",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10968660346",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2409596950",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2568446320",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "478632713",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12924917515",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13428645312",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6935351112",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2920931566",
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660145254",
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118894339",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631968702",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69382211",
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14429548321",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11825860265",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58018384",
+        "voter": "asoumeru2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37998652701",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632970742",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54285969",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24235309770",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93212736",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70169318",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38618215503",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "968641174",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55496395",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50061861",
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67870265",
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50066904",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84322994",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251144803",
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309356040",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64483787",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149977811",
+        "voter": "steemitcharity"
+      }
+    ],
+    "author": "good-karma",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://s5.postimg.org/ii6534gs7/feature_thumbnail.png</center>\nExcited to announce eSteem v1.1.6 updates, that is published today.  After [iOS v1.0.0 release](https://steemit.com/steemmobile/@good-karma/finally-esteem-is-on-ios-app-store-other-development-updates), I have pushed next batch of updates for iOS Appstore Review. Worked on AppStore screenshots as well so it is more attractive to new users.\n<center>https://s5.postimg.org/8n9xzs6if/screenshots.png</center>\n\n# New Features\n\ud83d\udd25 **New Push notifications**\nYou can now, not only publish/read/comment/transfer/vote but You can receive notifications when someone votes your content, comments on your posts, follow you.\n<center>https://s5.postimg.org/z0otytxx3/notifications.png</center>\n\ud83d\udd25 **New Bookmarks**\nWith users request, Bookmarking feature has been added, where you can save post for later read. It is super easy, you just open any post you want and bookmark it from top right corner. Remove bookmarking can be done from same page or menu has Bookmarks page where you can open post or swipe left to remove it from Bookmarks.\n<center>https://s5.postimg.org/jdxklgk53/bookmarks.png</center>\n\ud83d\udd25 **New added sort trend Promoted**\n<center>https://s5.postimg.org/lxt7fk7p3/promoted.png</center>\n# Improvements\n\ud83d\udd25 Login page refinement\n<center>https://s5.postimg.org/rai1tovlj/login.png</center>\n\ud83d\udd25 Profile picture, better formatting on blockchain, with consensus of some Steem devs!\n\ud83d\udd25 Markdown improvements\n\ud83d\udd25 Layout updates\n# iOS (v1.1.8)\nhttps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1141397898&mt=8\nVersion 1.1.5 was submitted for AppStore review on \ud83d\udd50_27th Aug 2016_, should be available soon after review is done. \n# Google Play (1.1.6)\nhttps://play.google.com/store/apps/details?id=com.netsolutions.esteem\n\n# Future plans\nMoving forward, focus will be to increase user base of the Steem platform as a whole. Enabling users to signup through app. Improvement on customized/personalized view and feel. Ability to make quick posts, promote content, give ability to cashout earned funds through @blocktrades or similar services, multiple language support, private messaging, support for WindowsPhone users, many more ideas.\n# Suggestions and Contributions\nPlease leave a comment and feedback. Project is [Opensource](https://github.com/feruzm/esteem), and you are invited to contribute anyway you can.\n\ud83d\udd4a **Follow** [me](https://steemit.com/@good-karma) for future updates, get in touch through steemit.chat #steemmobile or #esteem channel.\n\n# UPDATE\n## iOS AppStore new version is available. This version doesn't have bookmarking and notifications yet, though all other major functionalities are in this version... How exciting to get approval for new version and you can be sure that iOS updates will now be consistent. Please give your feedback as much as you can, as it helps development to keep implementing updates.",
+    "body_length": 2905,
+    "cashout_time": "2016-09-30T20:09:54",
+    "category": "steemmobile",
+    "children": 46,
+    "created": "2016-08-30T12:29:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemmobile\",\"esteem\",\"steem\",\"steemit\",\"apps\"],\"users\":[\"blocktrades\"],\"image\":[\"https:\\/\\/s5.postimg.org\\/ii6534gs7\\/feature_thumbnail.png\",\"https:\\/\\/s5.postimg.org\\/8n9xzs6if\\/screenshots.png\",\"https:\\/\\/s5.postimg.org\\/z0otytxx3\\/notifications.png\",\"https:\\/\\/s5.postimg.org\\/jdxklgk53\\/bookmarks.png\",\"https:\\/\\/s5.postimg.org\\/lxt7fk7p3\\/promoted.png\",\"https:\\/\\/s5.postimg.org\\/rai1tovlj\\/login.png\"],\"links\":[\"https:\\/\\/steemit.com\\/steemmobile\\/@good-karma\\/finally-esteem-is-on-ios-app-store-other-development-updates\",\"https:\\/\\/itunes.apple.com\\/WebObjects\\/MZStore.woa\\/wa\\/viewSoftware?id=1141397898&amp;mt=8\",\"https:\\/\\/play.google.com\\/store\\/apps\\/details?id=com.netsolutions.esteem\",\"https:\\/\\/github.com\\/feruzm\\/esteem\",\"https:\\/\\/steemit.com\\/@good-karma\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T03:52:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 61488852235441,
+    "parent_author": "",
+    "parent_permlink": "steemmobile",
+    "pending_payout_value": "315.625 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "push-notifications-bookmarks-esteem-mobile-app-update-1-1-6-ios-and-android",
+    "post_id": 800411,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "eSteem mobile app update - PUSH NOTIFICATIONS, BOOKMARKS for iOS and Android v1.1.6",
+    "title": "eSteem mobile app update - PUSH NOTIFICATIONS, BOOKMARKS for iOS and Android v1.1.6",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemmobile/@good-karma/push-notifications-bookmarks-esteem-mobile-app-update-1-1-6-ios-and-android"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "16068038584703",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17171576974763",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380238459022",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14711632963423",
+        "voter": "summon"
+      },
+      {
+        "percent": "6700",
+        "reputation": 0,
+        "rshares": "24210363403124",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1550622330013",
+        "voter": "butterfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7289338316046",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2820033121914",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6712487067746",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9503370227688",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2192945558805",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1624006663135",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6331869243814",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20671106684513",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120834626314",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184562993311",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "945930480134",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995519849332",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098731457",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2018773757609",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3761860450",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697249542",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7015155316458",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53918713676",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660687180",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5867859194421",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213653566",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39162536068",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391714823652",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "685551872886",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2393233043752",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6577996290",
+        "voter": "sean0010"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2837721644118",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1305441705806",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264042739643",
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362299688738",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3081483272757",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77472030486",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1135569292139",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258875492586",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16216414939",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622662222",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105274127320",
+        "voter": "chainreaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967090183",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6766430140",
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384246737743",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3815433932",
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839270505208",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49200552023",
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134115222316",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93860680998",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64498886993",
+        "voter": "ilanaakoundi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30870794916",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66151857717",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288128811",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23934611353",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22084251149",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13550665433",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11533606733",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "899953681",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85890057706",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78060070006",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3982414769",
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14435268029",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211014753439",
+        "voter": "camilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9784967164",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174336102579",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23524407728",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5074405568",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550376960524",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7552072593",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485329642",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9703919146",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "827766206746",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5577262823",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46956093933",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098966754",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "340794336001",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9940200806",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "645203570488",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4326510656",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60408640373",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156368475862",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57940401954",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221686128997",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22011825006",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54129776980",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1150356508",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76775332206",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "553323357537",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1788358436",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19203629337",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56822713110",
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29021695416",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46913811335",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "609559152097",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59988248729",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12095833335",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379207039",
+        "voter": "damien-beverly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84699179852",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10066128118",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347261612",
+        "voter": "saroj-bhatta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3594730571722",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371634303650",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334084395",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2165862961420",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37471306135",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14102439208",
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379050615",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52893188787",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252206116978",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362297448706",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48482602262",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5828249937",
+        "voter": "lynda-j-leonard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "845541117",
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103251664763",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62760893653",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74694183756",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126669587592",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4445080279",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8545983898",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19863197326",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249740793584",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333415746",
+        "voter": "prabhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510365428219",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85385700303",
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46759090124",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48470704368",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4698166290",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77535014482",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21377142974",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557026163",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946546599",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5522250850",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136561075585",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607119489",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5722609782",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1458450427016",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9529672369",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105486651121",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12636994925",
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43150783931",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31685349698",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7741509209",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042076048",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36646941673",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14383489041",
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22976182156",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58091921234",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4091287980",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255977736",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3515915464",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207387522046",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10116063618",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3124603257",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177794222264",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260424224",
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24517189036",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305496314948",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39865290374",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239067516",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3043584516",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4614780233",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18699855530",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122041728369",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32586668999",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10651795051",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2928510333",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130350301700",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10089902117",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36041621084",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245196723",
+        "voter": "eterps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164136412",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1657037877",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8532520414",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82109855152",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12190374285",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14991964319",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464248932144",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10585423374",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "200223812",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "183563429",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265314431",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24634906677",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1343740412742",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10458694767",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75201407580",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13265865922",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127921982448",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1108897841",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7725614667",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40457916072",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28015342834",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "812002726",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302505871",
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "864036703",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22593623327",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304280811",
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4673264451",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531668806",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238596933",
+        "voter": "ozbay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4389391330",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2930979765",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16137766305",
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13785536342",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196279016677",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185218452",
+        "voter": "snowden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1970824176",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91930340909",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35157697748",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10951363171",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4403810839",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15491273980",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23944697198",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60005996181",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80556710406",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235543115",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3648670489",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11027431114",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1989777882",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378576826",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7199026334",
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93399900652",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1311252522",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18461450756",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4108169412",
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15904877590",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49543036127",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41360210955",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118255889342",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7704010714",
+        "voter": "tryptamin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4460994500",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "423284208",
+        "voter": "bigedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3574289283",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1481735585",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5137023260",
+        "voter": "pierregi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042362333",
+        "voter": "jsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2025624569",
+        "voter": "chahredine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1980645998",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234732800",
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "276041472",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37545357584",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366255021",
+        "voter": "jos.denmark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424094754",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7151100502",
+        "voter": "yonuts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247279471564",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14593978966",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1523240023",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8079515480",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7727377903",
+        "voter": "manipulable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7310716910",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3090446482",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18778391985",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6217458703",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13480328466",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2277845741",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116506316",
+        "voter": "calbiotech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118833099",
+        "voter": "kattokassinen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8129630141",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116481148",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2820120005",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133244656",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104872826",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4501389219",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19657221624",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68666921142",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469079927",
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92846600",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5100239216",
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2842506785",
+        "voter": "natenvos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214307898873",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384838496",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111165137",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165911036",
+        "voter": "navydude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "788145165",
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2686520910",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "12219105485",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1399420305",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1682804929",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255303484",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255686119",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144699103",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145516307",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84813726",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4927592739",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56723728631",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115387959",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13208847526",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207775439717",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633329337",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116884886",
+        "voter": "blackhole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "795632907",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501806576",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5062116348",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4283332799",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116443950",
+        "voter": "invent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "953327883",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20531481652",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376266655",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23927890118",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7599817269",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18444450900",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1793399910",
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "593542712",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408919835",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219368610",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263336186",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11739152761",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76805770",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110407780",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1567856396",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3971767333",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "736893129",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125670168",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114289721",
+        "voter": "diaperhaiku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4100960070",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238898910625",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6448556162",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93173678605",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6431609320",
+        "voter": "comealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "915590461",
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1387391493",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2368539478",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25310106112",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1632473635",
+        "voter": "ba-boo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1483559041",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145372642777",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "657874013",
+        "voter": "tkembo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108022819",
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1150750202",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50397912652",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112407757",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2524452892",
+        "voter": "litrbooh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9221354231",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746967470",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692602737",
+        "voter": "nimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5476861182",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5387965254",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43823144337",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2122069394",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65282378",
+        "voter": "marynetta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16805314062",
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52102443",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16113899489",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24824821554",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19436122640",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2697238149",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13594079153",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1781802701",
+        "voter": "alcyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12630467618",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32045522155",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74073418",
+        "voter": "nessacute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459637900",
+        "voter": "germansailor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3634498489",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66620085",
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2467617555",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "440765209095",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3649442496",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6152428019",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "961218107",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "774137084",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "527810072",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64679936",
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1964111181",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6405573928",
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343630735",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64099469",
+        "voter": "kevinhoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14148025208",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12334075382",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9951450706",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94563887663",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62525016",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100635796399",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58503140239",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2393809821",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661329846",
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624994940",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62168955",
+        "voter": "bayern000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52502611",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115476170",
+        "voter": "crypticus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3360005674",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66563826",
+        "voter": "tukeycon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85705342",
+        "voter": "carlyadams"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10749928332",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351621408",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13788052109",
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21034247347",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16993200482",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62639005",
+        "voter": "ropedancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36862798038",
+        "voter": "dowha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79279214",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6981205089",
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28468480134",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1554619391",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62302798",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177497379",
+        "voter": "florentina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59505145",
+        "voter": "rmach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66214844",
+        "voter": "biervibes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2048624792",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6777205106",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10543706281",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60121509",
+        "voter": "titan792008"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78132990",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537557601",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588978698",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74815575853",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7882694412",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120171572",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310778341",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1863822291",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2409828661",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447463625",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3646267239",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131938457",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61917877",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2457788889",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3718839133",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67234587",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58276258",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52342236",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55945663",
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1676295651",
+        "voter": "dubravko1982"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5804656843",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85974926",
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82469320104",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41359323816",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68948761",
+        "voter": "mckeever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12118801504",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182816069",
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1710879681",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6861219981",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12087608265",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2582268537",
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3267609762",
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390926857",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4211261250",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "851772710",
+        "voter": "scottrok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59174678",
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56443564",
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58743942",
+        "voter": "robind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "998162791",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58816543",
+        "voter": "anurbanmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245231137050",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58286594",
+        "voter": "agoristgirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631152499",
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1256937564",
+        "voter": "blue1950"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96720141",
+        "voter": "anarcharos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6510015298",
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67699642",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144332158",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58025713",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9027471555",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "708221558",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57920706",
+        "voter": "lionelmessi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11404758868",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122085342",
+        "voter": "godo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3614919579",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56761351",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57851525",
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57828337",
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56679654",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "680833100",
+        "voter": "brightstar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9276551988",
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139100977",
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57683766",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84754573",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5210919498",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13863973335",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501425107",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12307778400",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438997798",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368489014",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361907111",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57384010",
+        "voter": "redpillbetting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1620016836",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2575415162",
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57072675",
+        "voter": "dadview"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3910484304",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20815698155",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55892382",
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1327049009",
+        "voter": "leneg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55768488",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1280449066",
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467322192",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56932483",
+        "voter": "tl1210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1692857215",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15138353971",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57184430",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55627295",
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56733180",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1656107455",
+        "voter": "grm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56625126",
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "612650384",
+        "voter": "techstar581"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56616688",
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55501060",
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1651777832",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1774939202",
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55383044",
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59562278",
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5592787900",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100654728",
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55397045",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2691693294",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187760632",
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55803830",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "645888513",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371195814",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62172605",
+        "voter": "afristeem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1615035001",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13847174411",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55982050",
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164186785700",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53155012",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54467815",
+        "voter": "lsk464"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287896907",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24234871614",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001549920",
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2636683622",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99193021",
+        "voter": "maytons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4498334912",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55084051",
+        "voter": "starkgrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55020337",
+        "voter": "cyrils"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181182554",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350178439",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53893542",
+        "voter": "knarly327"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140568307",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335474158",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57522774",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364794611",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72893380",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291736661",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74169761939",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74242787",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5082552771",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "742679393",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54871468",
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56362571",
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "556717327",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53103516",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55136065",
+        "voter": "darrenciccone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52930132",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56052374",
+        "voter": "sic-savidicus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814320",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176715413",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1678205602",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979370509",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52970106",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54597407",
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2539945399",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "319211613",
+        "voter": "nataliadobrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63886313",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577247264",
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55894599",
+        "voter": "bontonstory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68637609",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50066904",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53170928",
+        "voter": "wallacepoewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1098383476",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26012931436",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1488565583",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53579928",
+        "voter": "luup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52847613",
+        "voter": "phattack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222511908",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6787548607",
+        "voter": "jhermanbeans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56269886",
+        "voter": "stardust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54672126",
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2115382778",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2935093318",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51523047",
+        "voter": "akaskew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52508568",
+        "voter": "rafek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62196440",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103650339",
+        "voter": "koalax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53215131",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66920614",
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173485634",
+        "voter": "you-know-nothing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651302553",
+        "voter": "antifragile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64753648",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1059793205",
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4726351699",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54916682",
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50878690",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324180348",
+        "voter": "vh770"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2241871498",
+        "voter": "carlitashaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136773607",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50602980",
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50264719",
+        "voter": "drinkthemilk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53447080",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50249177",
+        "voter": "iamgrateful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51185859",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52030157",
+        "voter": "neophonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50876228",
+        "voter": "shaungerow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54170254",
+        "voter": "jasondaum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2999849952",
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464502884",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825171",
+        "voter": "donchate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607607141",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50060843",
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50608174",
+        "voter": "andreeagarden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50533812",
+        "voter": "dtrevor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96368768",
+        "voter": "pabloescobar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50510574",
+        "voter": "yfu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50479027",
+        "voter": "sunlight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50453509",
+        "voter": "peteonthestreet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50427196",
+        "voter": "krissy-b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50395142",
+        "voter": "anitap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50291088",
+        "voter": "berwynbass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50195830",
+        "voter": "cunninglinguist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50188731",
+        "voter": "ryanjerome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50146097",
+        "voter": "b0atman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50146038",
+        "voter": "jeffrobang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78311792",
+        "voter": "cianosapatti"
+      }
+    ],
+    "author": "steve-walschot",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "# Today i decided to stop my regular job and become a fulltime Steem developer/curator/contributor. \n\n### A risky move considering i'm no whale at all, and at it's best, a powerdown would only generate around 75$ a week. \n\nhttps://media.licdn.com/mpr/mpr/AAEAAQAAAAAAAAVdAAAAJDI3NWIyOTA0LWY4MjUtNDQ3ZC1iNTFhLTI4OGMxYTE1NWI3NQ.jpg\n\nI found myself working every spare minute on steem related projects. Mainly, Steempay.io and it's side projects, as well as helping others and teaming up to handle bigger projects. All of this is a very time and energy consuming process. \n\nCombining this with my regular day job, got me up to a point where i'm in need of time. \nTime for my family, time for my kids, time to relax, time to eat, time to sleep.\n\nMy life savings are enough to cover for the next few months focusing on nothing but Steem. At this point, i've generated some nice rewards, but every SBD i've made has been invested in the growth, quality and productivity of my work and work enviroment. \n\nThis may sounds like a bad idea - and it probably will be - but I want to let my creativity flow free without being forced to get up for work. At the same time, this will force me to deliver outstanding and unique products for this platform to have a minor source of income. \n\nI'm aware that i may regret this decission some day, but hey. **Productivity before brains!**\n\nYou can support me by voting me as a steem witness ([SEE LINK](https://steemit.com/witness-category/@steve-walschot/witness-application-post-steve-walschot-creator-of-steempay)) or simply by following me and upvoting my posts if you like them enough!\n\n## Let's see how this plays out :-)",
+    "body_length": 1657,
+    "cashout_time": "2016-09-30T20:16:03",
+    "category": "timeforachange",
+    "children": 151,
+    "created": "2016-08-30T14:28:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"timeforachange\",\"fulltimesteem\"],\"image\":[\"https:\\/\\/media.licdn.com\\/mpr\\/mpr\\/AAEAAQAAAAAAAAVdAAAAJDI3NWIyOTA0LWY4MjUtNDQ3ZC1iNTFhLTI4OGMxYTE1NWI3NQ.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/witness-category\\/@steve-walschot\\/witness-application-post-steve-walschot-creator-of-steempay\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T14:28:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 186924115743052,
+    "parent_author": "",
+    "parent_permlink": "timeforachange",
+    "pending_payout_value": "3747.288 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steeming-around-the-clock-bye-bye-regular-job",
+    "post_id": 801440,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Steeming around the clock - Bye bye regular job!",
+    "title": "Steeming around the clock - Bye bye regular job!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/timeforachange/@steve-walschot/steeming-around-the-clock-bye-bye-regular-job"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "758229401499",
+        "voter": "mr11acdee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55443872918",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6427387942069",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35604278185574",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6840543961070",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9314806498176",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120834626314",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "945944540976",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3524460829376",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098774179",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3761913032",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697256115",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500914366241",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53926470434",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660705255",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213653566",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389063897599",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2393513197011",
+        "voter": "recursive"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1136472885089",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80699573707",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253788669743",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9200408205",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622667151",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967098399",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839270505208",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89866609466",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36622493980",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288128811",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23934753310",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82688369456",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12974070943",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85956249019",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365743136198",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79653132659",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9589267820",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16764407247",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13423594806",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7582612728",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535513865380",
+        "voter": "eeks"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "12587223080",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11166877278",
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "465107574",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9703919146",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5456091909",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111430524354",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26320907217",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37297723085",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098966754",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327209166737",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "16574864652",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "645309420649",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239540317938",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "908206405",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3663621620",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18726590841",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1449074419",
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221720713377",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59551898705",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54129776980",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1062096269",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76778729916",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516435133701",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1430738012",
+        "voter": "murh"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "376542079",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47661340196",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562669986551",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59997501097",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24795162523",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2931804837",
+        "voter": "bill-kline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201832466909",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3594850813100",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371652967811",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334084395",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363256840",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9861567392",
+        "voter": "gsus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49611650863",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "827956563",
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103183151792",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12933674542",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65873159454",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9218256992",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67941545485",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258065486703",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75952714371",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135558091568",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1905130714",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281682997632",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132870495141",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4044569693",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193325289474",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429359370177",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102981746849",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42254419116",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32317868792",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46165618324",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13511383443",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7741509209",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3398961575",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12819770845",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14008745562",
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6615855133",
+        "voter": "tobydaniel2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17543063322",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261201772",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9856964632",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19983766662",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8028855596",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335454431536",
+        "voter": "heiditravels"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4542608039",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5631764590",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41598563868",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3043880308",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4522484628",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8578050565",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5014183284",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15159135783",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18333306648",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304208082",
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117160059235",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30694094423",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10105609937",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135308691632",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125040431114",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15814654233",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8236654789",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9191580572",
+        "voter": "rnevet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "626493107542",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32953138376",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1592136512",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8532600904",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76784131793",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1339511338",
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2727574411",
+        "voter": "kepo777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464302070067",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10585603645",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308550471",
+        "voter": "onthewayout"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "333706353",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "305939049",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113577526339",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1350155707",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1206462597",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147174247311",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10438079975",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12851338071",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "864077460",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22470657587",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14953551106",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4673264451",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4023608719",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2916845666",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11032935743",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86186408194",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473559669",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113769285579",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4183845094",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54233106957",
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15492148878",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7769781964",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1367833704",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30275949847",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78983719974",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13451771168",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9937357651",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1768701961",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8841186026",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "825453432",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594214785",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18793081399",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2180586785",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268065099767",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235342593",
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43997216785",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20755866976",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20246922705",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118255889342",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3422191867",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1769553673",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13248573174",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12202190947",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2423586298",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4127371020",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5474925957",
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252325991392",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136950996",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3415324828",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14306493580",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61113481202",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120903743",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1482891198",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8079515480",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2475919284",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8130024422",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "876685820",
+        "voter": "amor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226888651833",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3287926088",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "812081773",
+        "voter": "sovereignbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111864348",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24431467730",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4082655338",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72188301713",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106773590",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3514180305",
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203596805109",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97391141",
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995679022080",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113481077",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26224201592",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "15885452304",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646355321",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249753408",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250127725",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144699103",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145516307",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82969949",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4927592739",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9947377892",
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6989326514",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401029098",
+        "voter": "ladypenelope1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14089138088",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212108890668",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "682632091",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6960449261",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4283332799",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "442838800",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1912624362",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878557069",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376266655",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7599817269",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17522565456",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "593558488",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17665762711",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400045064",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214599727",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11348028763",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75136080",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87875580",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4669081913",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "722444244",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8747695392",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122273677",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897211578",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95071888164",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6431609320",
+        "voter": "comealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1318034402",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21862344199",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112669609",
+        "voter": "awaking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89163450186",
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099605749",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51493519449",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8760811043",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6023464839",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1404629435",
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1475551420",
+        "voter": "shaheer001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66335200",
+        "voter": "elec365"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64002331",
+        "voter": "marynetta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3776705827",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501311515",
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22418268355",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3800326295",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15936411207",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33035830465",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3634498489",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1776772038",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2221585706",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "440780649721",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3564737346",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "741195080",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "527810072",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86802572834",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16142666675",
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235619763",
+        "voter": "riosparada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1317535282",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12628040417",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10158724335",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17085246218",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92634012404",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3452722106",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61274515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2442663082",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632943616",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1361293312",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54703435881",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52099594",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11641985098",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330698101",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753317",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3847031922",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580373746",
+        "voter": "bmcv001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1588639050",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17969206486",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4287682528",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66843259",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58277489",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11985033800",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1718263538",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61056742",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85844312962",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11484038338",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "575708182",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59872138",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38942482124",
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1148442889",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "608245002340",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76555472966",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7409763632",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4202213533",
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258347207",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58273476",
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1115440027",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7542708002",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1665570930",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "771908956",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51852278",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87993823754",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447463625",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4146823244",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2117999039",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51481279",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18096694691",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383444983",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489268995",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17975783136",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "963426496",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61763241",
+        "voter": "kenistyles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5923119227",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57842929",
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78034241694",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62402082",
+        "voter": "lensessions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087363894",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57966969",
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40532137340",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12408078567",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186472391",
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11717575431",
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7003599108",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12087608265",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60330284",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57717811",
+        "voter": "ccm702"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4297274506",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3059404056",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93285020",
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58014390",
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1640583352",
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57475981",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24542145098",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58605389",
+        "voter": "stokjockey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236422965",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597148004",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118704463",
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312357671",
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58270400",
+        "voter": "awareindeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58083507",
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141386604",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55750195",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76323726",
+        "voter": "adnanefs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8425764272",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50164653",
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118894339",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941893474",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666566725",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68000266",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3689924694",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246586617",
+        "voter": "ratinct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56761351",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94063090",
+        "voter": "darkflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305954884",
+        "voter": "shanelohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82849053193",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95644485",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57872458",
+        "voter": "jcomeauictx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134517502",
+        "voter": "matthewmencel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641422439",
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7040332611",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1635069765",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79669298",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150460886",
+        "voter": "freeinthought"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13864407456",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2365368248",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11825120423",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646708938",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58576423",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376009198",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17535220687",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6881046075",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361907111",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57248873",
+        "voter": "cryp71x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107899577",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534937690",
+        "voter": "dumbclubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51718188",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69110586",
+        "voter": "expatlove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53537748",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1280449066",
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268017975",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55669133",
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37242141910",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55627295",
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56625126",
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54467501",
+        "voter": "mrmike3rd7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56690664",
+        "voter": "ritherz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56616688",
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "631258194",
+        "voter": "tylerdav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2716492929",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1159739581",
+        "voter": "maryfromsochi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2653697396",
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55803830",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14243082064",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1647994899",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "508931772",
+        "voter": "codylang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1823133785",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57143539",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115478656190",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267639325",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52024054",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72763310",
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51210426",
+        "voter": "t-killa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2195094022",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54349843",
+        "voter": "lynceus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23181600649",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "915504134",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5042502288",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54551628",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213702500",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4678584078",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343328624",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268499548",
+        "voter": "serioustruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70170304",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55496299",
+        "voter": "allyouneedtoknow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53871683",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53593366",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245237484621",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53602103",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37107302332",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59702540",
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1502059088",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "700644632",
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51979174",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1624220962",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50812926",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1612393618",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52800061",
+        "voter": "perufoodie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5682945431",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51646863",
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52663821",
+        "voter": "thefernandaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2852618357",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52635830",
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8258036015",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62633640",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55034512",
+        "voter": "daniel31oh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58720591",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53327662",
+        "voter": "pdavid000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143043369",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52874902",
+        "voter": "steeme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1918615754",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51620406",
+        "voter": "libertyadvocate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50563647",
+        "voter": "saintmichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51570063",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61140021",
+        "voter": "roman-dikanev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52629272",
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65608445",
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53518025",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1664685968",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136773607",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92087247",
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51436620",
+        "voter": "rossulbricht"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51422500",
+        "voter": "newman57103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52399098",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51250382",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62714685",
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1308464526",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51492662",
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464502884",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50821110",
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825171",
+        "voter": "donchate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607607141",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50586270",
+        "voter": "adbro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50505248",
+        "voter": "ana-maria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159378797",
+        "voter": "dayan"
+      }
+    ],
+    "author": "dollarvigilante",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://www.steemimg.com/images/2016/08/30/JeffBerwicktheDollarVigilanteandHeidiTravelsonSteemit81e02.jpg</center>\n\nAs @heiditravels recently recounted (<a href=\"https://steemit.com/travel/@heiditravels/a-chance-encounter-with-the-dollar-vigilante-jeff-berwick\">A Chance Encounter With The Dollar Vigilante: Jeff Berwick</a>) the stars seemed to align for a chance meeting between the two of us in Miami a few days ago.\n\nI was just passing through the USSA for as short of a time as possible (it's too much of a police state and too unfree for my liking) <a href=\"https://steemit.com/money/@dollarvigilante/why-i-left-canada-and-became-a-citizen-of-the-dominican-republic\">on my way to the Dominican Republic to become a citizen</a> and we managed to meet up.\n\nHer story is quite fascinating.  Less than two months ago she only dreamed of living a life of world travel and adventure.  She had just saved up for her first big trip and was in Tahiti when she began to post on Steemit about it... and the Steem dollars began to flow in.  Now she is living the Steem Dream and was just packing for her trip to Africa to swim with great white sharks... all funded by Steem.\n\nI asked her all about it, and more, and you can see it exclusively on Steemit (it is unlisted on Youtube) here:\n\n<center>https://www.youtube.com/watch?v=zFcnzicNcV8</center>\n\n50% of all Steem dollars generated by this post will be transferred (and publicly verifiable by viewing my wallet) to @heiditravels .  That's just another really cool use of Steemit... if you get good content by interviewing or working with other people you can easily, and verifiably, transfer whatever percentage of the Steem dollars you like to that person, or to a charity, or whatever you like.\n\nStay tuned and follow me here at @dollarvigilante as I've got another Steem Exclusive coming up in the next few days with another Steemian... one of the most famous big wave surfers in the world.\n\n<center>https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg</center>",
+    "body_length": 2114,
+    "cashout_time": "2016-09-30T23:30:09",
+    "category": "life",
+    "children": 53,
+    "created": "2016-08-30T16:53:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"travel\",\"purpose\",\"anarchy\"],\"users\":[\"heiditravels\",\"dollarvigilante\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/JeffBerwicktheDollarVigilanteandHeidiTravelsonSteemit81e02.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/zFcnzicNcV8\\/0.jpg\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/www.dollarvigilante.com\\/wp-content\\/uploads\\/2016\\/08\\/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/travel\\/@heiditravels\\/a-chance-encounter-with-the-dollar-vigilante-jeff-berwick\",\"https:\\/\\/steemit.com\\/money\\/@dollarvigilante\\/why-i-left-canada-and-became-a-citizen-of-the-dominican-republic\",\"https:\\/\\/www.youtube.com\\/watch?v=zFcnzicNcV8\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T16:59:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 89809482562855,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "807.869 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steem-exclusive-steemit-superstar-heiditravels-on-how-steem-changed-her-life",
+    "post_id": 802757,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Steem Exclusive:  Steemit Superstar, HeidiTravels On How Steem Changed Her Life",
+    "title": "Steem Exclusive:  Steemit Superstar, HeidiTravels On How Steem Changed Her Life",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@dollarvigilante/steem-exclusive-steemit-superstar-heiditravels-on-how-steem-changed-her-life"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118375050443",
+        "voter": "penambang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898999837605",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1048493215368",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75887657904",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34688108074",
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431736381",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "359570383120",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10821205658",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35997491244",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2247539959401",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13344569074",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510761583032",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97998372635",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "80797527028",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264232034103",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94293890572",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59681038843",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1327008130",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17885864632",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1862753166",
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3443870821",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50922521045",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4248264820",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41600326158",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4614780233",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10363856033",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "466928201309",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71512383012",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2728944167",
+        "voter": "kepo777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13854906879",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12851338071",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1586424739",
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23031752136",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13985938610",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11380680169",
+        "voter": "tinyhomeliving"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18461515038",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "3019181010",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424094754",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18407230178",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27111031461",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4192907964",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8984285747",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72326327736",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1038533669",
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "442838800",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11217104095",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38420993918",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8274812056",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10236495537",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32598223972",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5246198372",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76609480",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2925417608",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19368137736",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28503926327",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1685862547",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5477975441",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1949167915",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1083184768217",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "8801659586",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "95623720863",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3594663669",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8832774864",
+        "voter": "aleksandraz"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "18397730220",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84546938",
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "852897404",
+        "voter": "havok777"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "1127861801",
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12201607300",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "1327638656",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1752604310",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "133268926",
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54770479559",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10552634113",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1129806513",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3345684015",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18503161084",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "220591346",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10826660667",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74754408377",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6784921228",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12127107749",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73686270",
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6379814992",
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88366627",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "603712143",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309692332",
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69382211",
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4397523492",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1576961403",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3421014498",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413377157",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68442517",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65057583",
+        "voter": "marquismiller"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>1) Supercharging your vote</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/iStock_20135252_SMALLbf93e.jpg\" width=\"849\" height=\"565\"/></p>\n<p>We have the promotion feature and it is a nice addition but as @stellabelle and I have discussed this does not allow people to power up their vote in any way. &nbsp;</p>\n<p>My proposal is to allow people to \"supercharge\" their vote with Steem Dollars which would effectively allow them to vote as if they were a whale. &nbsp;</p>\n<p>Most people would never have enough money to be able to do this via powering up the normal way. &nbsp;By allowing them to give special votes in this way you not only decrease the perceived inequality but you also increase the utility of Steem Dollars.</p>\n<p>The money gets added to the value of the post like any other vote and goes to the author and curators without getting burned.</p>\n<p><br></p>\n<h1>2) When you Power Up your SP Your Voting Power Percentage resets to 100</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/iStock_82500533_SMALL1bb21.jpg\" width=\"848\" height=\"565\"/></p>\n<p>This would need to have a minimum value set on it to prevent people gaming it but if a decent limit of say 20 STEEM/SP was set I think a fair balance could be created. &nbsp;It might need a trial period to get the balance right but I don't see any negatives to at the very least trialling it.</p>\n<p>I think it is only fair to reward people for supporting the platform by powering up and this would create an added incentive for doing it.</p>\n<p>It would be another reason for people to keep powering up and not power down.</p>\n<p><br></p>\n<h1>What do you think?</h1>\n<p>I would love to hear everyone else's opinions on these features. &nbsp;Have your say in the comments:</p>\n<p><em>(Stock images are licensed from Istockphoto)</em></p>\n</html>",
+    "body_length": 1847,
+    "cashout_time": "2016-10-01T09:46:27",
+    "category": "steemit",
+    "children": 51,
+    "created": "2016-08-31T01:48:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemit-issues\",\"improvements\"],\"users\":[\"stellabelle\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/iStock_20135252_SMALLbf93e.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/30\\/iStock_82500533_SMALL1bb21.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T01:48:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 8475830574606,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6.981 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "2-killer-steemit-features-i-would-like-to-see",
+    "post_id": 807872,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "2 Killer Steemit Features I Would Like to See",
+    "title": "2 Killer Steemit Features I Would Like to See",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@thecryptofiend/2-killer-steemit-features-i-would-like-to-see"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29149950835282",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6861569971471",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5924234483394",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099190450",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762481721",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697315118",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54008589524",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660921578",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213661759",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "680044431552",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622724514",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967195088",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37433283387",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288140285",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77077525796",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16790593117",
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15147326440",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245262828265",
+        "voter": "pal"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431790058",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "645871797",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686886224488",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264232034103",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2734348852",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5295879940",
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27723610634",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193551595441",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7737095403",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "495205928",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164144609",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4297945677",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14060870176",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240049444",
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15095872300",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57476973508",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5163291953",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7599817269",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8109622231",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83369140",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169107599",
+        "voter": "rapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96844036334",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21862321315",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27733549939",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5554247457",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7063527946",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51270513",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58275558296",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14595453967",
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10969296833",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368407925",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39122672915",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6723333932",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10781138628",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3360007447",
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1400671466",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4468774878",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24766554839",
+        "voter": "jaredhowe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1729399452",
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56944614",
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3234541052",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3804803969",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97596413",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58151911",
+        "voter": "thomas.shirk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20656723016",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4413950649",
+        "voter": "dangis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109707855",
+        "voter": "xvickx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57963669",
+        "voter": "natof9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1253697227",
+        "voter": "profitgenerator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115487703646",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68442517",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499134976",
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51595558",
+        "voter": "saintmichael"
+      }
+    ],
+    "author": "kafkanarchy84",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "**\"Progress.\" One hears this word all the time in political speeches.** \"Forward.\" \"Progress.\" \"Change.\" Here in Japan it is exactly the same. There is a sign for Shinzo Abe (current Japanese Prime Minister) in my neighborhood which reads, roughly translated from the Japanese:\n\n***With Strong Power,***\n***Forward.***\n***This way.***\n\n<a href='https://postimg.org/image/4dorojsjx/' target='_blank'><img src='https://s14.postimg.org/aemglmf69/bullshit_poster.jpg' border='0' alt='bullshit poster'/><br /><a target='_blank' href='https://postimage.org/'>\n\nAs Abe is currently attempting to reinterpret [Article 9 of the Japanese constitution](https://en.m.wikipedia.org/wiki/Article_9_of_the_Japanese_Constitution) it looks like Japan may indeed be going \"strongly forward,\" right into war.\n\n# The \"Status Quo\" Destroys What We Don't (but could possibly) Know. #\n\nI want to pause here for a second and look at the word \"state.\" Look at the phrase \"***status*** quo.\" *State* and *status* are clearly seen to share a common etymological root. Namely, the Latin *\"stare\"* which means \"to stand.\" Now, think of the words \"stagnant\" or \"static.\" These words are all interrelated.\nWhat they have in common is clearly seen:\n\n**NOTHING IS MOVING.**\n\n**It truly is a sad *state* of affairs. The state hates movement, hates innovation, and hates progress.** How do I know? Well, if it is not easy enough to decipher already, let's look at three fields where true progress in innovation is basically grinding to a halt under state \"supervision.\" This \"supervision\" is killing the *real vision* which always benefits humanity insofar as it is allowed to flourish.\n\n**The three areas are:**\n\n**1. Health**\n**2. Science**\n**3. The Arts**\n\n<a href='https://postimg.org/image/3rltv0nvb/' target='_blank'><img src='https://s15.postimg.org/tzwyke7yz/Cannabis.jpg' border='0' alt='Cannabis'/><br /><a target='_blank' href='https://postimage.org/'>\n# Health # \n\nMarijuana. Need I say more? Proven to dramatically reduce the symptoms of epilepsy and other neurological disorders, kill cancer cells and provide a safe, non-addictive treatment for pain, depression, and PTSD, Cannabis, this plant which also has about a million other practical uses is...\n**\"ILLEGAL.\"**\nI think I need to smoke a bowl now because I want to puke. Oh wait. I can't. I'll be taken from my family, put in a rape cage and have to do hard labor. Silly me. **I forgot. We are *civilized.***\n\nSuper addictive opiate-based painkillers shown to make people suicidal and *more depressed?*  Why, legal, of course.\n\n**RESOURCES ON THE MEDICAL BENEFITS OF CANNABIS:**\n\nhttp://www.cancer.gov/about-cancer/treatment/cam/patient/cannabis-pdq\n\nhttps://m.youtube.com/watch?v=S9qkYLtAhSQ\n\n# Science #\n\nNikola Tesla. Arguably the greatest inventor/scientific mind of the late 19th, early 20th century--dies alone, penniless, and talking to birds. No matter he was working to, and claimed to have found, a way to extract free, ambient energy from the air. The Rockefellers, Edisons, and Morgans, would not hear of it. No funding for you, Nik!\n\nWhy was there no funding for Tesla? In a nutshell, it was because the state was interested in maintaining a violent monopoly on the production of power, so they could continue to stuff their faces with the finest foods and travel the world, while laughing at the likes of you and I, working until we die to pay for access to their shitty fossil fuels and crudely primitive sources for energy and power.\n\n>Morgan could easily see that Tesla\u2019s main motivation was not to make money. Rather it was to emancipate humanity with new forms of technology that would liberate people from darkness, drudgery, and various forms of top-down oppression. Neither Morgan nor the class he represented shared Tesla\u2019s goal of conducting research and development to make life easier and better in ways that operate within, rather than against, prevailing patterns of nature, including what is best in human nature.\n[SOURCE](http://www.veteranstoday.com/2014/04/22/prophet-or-profit-nikola-teslas-vision-vs-j-p-morgans-greed/)\n\n**RESOURCES:**\nhttp://www.pbs.org/tesla/ll/ll_todre.html\nhttps://en.m.wikipedia.org/wiki/Wireless_power_transfer\n\n<a href='https://postimg.org/image/fe74390xv/' target='_blank'><img src='https://s21.postimg.org/4elwrnaiv/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/app.php'>\n## The Arts ##\n\n**My whole reason for posting. I read an interesting quote by film director Francis Ford Coppola just yesterday:**\n\n>You have to remember that it\u2019s only a few hundred years, if that much, that artists are working with money. Artists never got money. Artists had a patron, either the leader of the state or the duke of Weimar or somewhere, or the church, the pope. Or they had another job. I have another job. I make films. No one tells me what to do. But I make the money in the wine industry. You work another job and get up at five in the morning and write your script.\nThis idea of Metallica or some rock n\u2019 roll singer being rich, that\u2019s not necessarily going to happen anymore. Because, as we enter into a new age, maybe art will be free. Maybe the students are right. They should be able to download music and movies. I\u2019m going to be shot for saying this. But who said art has to cost money? And therefore, who says artists have to make money?\n[SOURCE](http://99u.com/articles/6973/francis-ford-coppola-on-risk-money-craft-collaboration)\n\n**Well, how do you feel? Do *you* want to shoot him? I don't. I think his answer here is dead on.** I am all for artists being paid. In fact, that is one of the main reasons I am on Steemit.com. However, as an anarchist, and as one who has given a substantial amount of thought to the matter, I do not support IP (intellectual property) \"rights.\" These reasons why I do not can be basically summed up in [this article](https://steemit.com/anarchism/@jaredhowe/intellectual-property-a-government-protected-monopoly) by @jaredhowe.\n\nWhat I am getting at here is that real artists, paid for the art or not, are going to create. However, for anyone who has ever read George Orwell's *Keep the Aspidistra Flying* it is clear that some modicum of sustenance (food in belly, clothes on back, roof over head) are necessary for creation to really take place. I quote Orwell from the aforementioned title here:\n\n>The next seven months were devastating. They scared him and almost broke his spirit. He learned what it means to live for weeks on end on bread and margarine, to try to \u2018write\u2019 when you are half starved, to pawn your clothes, to sneak trembling up the stairs when you owe three weeks\u2019 rent and your landlady is listening for you. Moreover, in those seven months he wrote practically nothing. The first effect of poverty is that it kills thought. He grasped, as though it were a new discovery, that you do not escape from money merely by being moneyless. On the contrary, you are the hopeless slave of money until you have enough of it to live on\u2015a \u2018competence\u2019, as the beastly middle-class phrase goes.\n\n<a href='https://postimg.org/image/hvr7ls1cr/' target='_blank'><img src='https://s9.postimg.org/6w60a6axr/1430395863q3fi8.jpg' border='0' alt='1430395863q3fi8'/><br /><a target='_blank' href='https://postimage.org/'>\n\n**So, this is it. Without money, creation is stifled. Without money, people become selfish (naturally). Without money, fear sets in.**\n\n( As a brief aside, I would also like to recommend W. Somerset Maugham's *The Summing Up* as an excellent exploration of this idea. Maugham wrote this book toward the end of his life as a kind of final statement, and self-declaration, and in it he talks much of how success, to the contrary of what society says and teaches, did not make him greedy, haughty, uncreative and unfeeling, but on the contrary seemed to engender compassion, creativity, and long suffering for others in him.)\n\n\n\n# Without the State, Money Flows #\n\nMaybe you are an artist working as a carpenter, daytime. Maybe you do landscaping. Maybe you are a garbage man symphony composer burning the midnight oil in unpredictable feverish heats of creative passion. There is nothing wrong with that. There is nothing wrong with working a \"day job,\" is there? Sure, we should all strive to do what we love, and to do it ALL THE TIME. I'm a believer in that. If it wasn't what we were \"meant to do\" why would we be doing it for no pay, no glory, and no legacy, other than that of our own personal satisfaction? \n\n**My main point in writing this is that, without all the restrictive--and maybe, more accurately, *constrictive*--red tape, meaningless legislation, bureaucratic fines, fees, licenses, taxes, and guns to your head to enforce them, you would probably have more money, and thus, more time, energy, resources, compassion and flow to dedicate to your art.**\n\n<a href='https://postimg.org/image/ksywo2yvl/' target='_blank'><img src='https://s16.postimg.org/g72sfqdcl/band.jpg' border='0' alt='band'/><br /><a target='_blank' href='https://postimage.org/'>*A picture I drew of my former band, on which I spent thousands of dollars and got nothing in return but a personal satisfaction. Namely, the transmission of myself via sounds, music, and words to others, and the joy of connecting with my fellow humans on a profound level through self-expression.*\n\n# Anarchism, Art, and Order #\n\n<a href='https://postimg.org/image/502b757ib/' target='_blank'><img src='https://s21.postimg.org/n2vdyd3d3/anarchy.jpg' border='0' alt='anarchy'/><br /><a target='_blank' href='https://postimage.org/'>\n\n**If you are an anarchist you likely know the overwhelming feeling of dread and fear that sometimes hits.** I've got a stomachache right now because of it. It feels as if there is no way out. Behind on medical bills, behind on taxes, behind on absolutely everything and your whole life you have been told that this is normal:\n\n**to burn yourself out, and slave each moment of existence *just to pay a thief,* is *normal.***\n\n**Enough is enough.**\n\n**Can you imagine how beautiful the world could be without a state?**\n\nBeautiful gardens being grown, medicine being made and technology being advanced at light-speed now that the lobbyists are gone.\n\nNow that everyone is armed, we laugh at those who would say \"stop resisting\" when they try to uproot plants from our gardens, forests and fields. Community organizations come to your aid. The bully who used to throw people in cages is now, ostracized caged or *killed himself* should he try to violate the rights or take the life of another peaceful human being.\n\nCan you imagine the paintings, the murals, the sculptures viewed from modern, high-speed roadways standing stories tall, of boys and girls playing, of great men and women of science, instead of the grotesque statues of communist leaders or child-murdering, dictatorial thieves?\n\n**This is my world.**\n\n**I live in this world already.**\n\n**Will you be there, too?**\n\n~KafkA\n***\n*Graham Smith is a Voluntaryist activist residing in Niigata, Japan.*\n<a href='https://postimg.org/image/q3u5ej98r/' target='_blank'><img src='https://s17.postimg.org/hlkpa72q7/13615500_730504890423605_1425702647400253724_n.jpg' border='0' alt='13615500_730504890423605_1425702647400253724_n'/><br /><a target='_blank' href='https://postimage.org/'>",
+    "body_length": 11332,
+    "cashout_time": "2016-10-01T15:04:48",
+    "category": "anarchy",
+    "children": 5,
+    "created": "2016-08-31T02:31:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"anarchy\",\"anarchism\",\"cannabis\",\"voluntaryism\",\"politics\"],\"users\":[\"jaredhowe\"],\"image\":[\"https:\\/\\/s14.postimg.org\\/aemglmf69\\/bullshit_poster.jpg\",\"https:\\/\\/s15.postimg.org\\/tzwyke7yz\\/Cannabis.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/S9qkYLtAhSQ\\/0.jpg\",\"https:\\/\\/s21.postimg.org\\/4elwrnaiv\\/image.jpg\",\"https:\\/\\/s9.postimg.org\\/6w60a6axr\\/1430395863q3fi8.jpg\",\"https:\\/\\/s16.postimg.org\\/g72sfqdcl\\/band.jpg\",\"https:\\/\\/s21.postimg.org\\/n2vdyd3d3\\/anarchy.jpg\",\"https:\\/\\/s17.postimg.org\\/hlkpa72q7\\/13615500_730504890423605_1425702647400253724_n.jpg\"],\"links\":[\"https:\\/\\/postimg.org\\/image\\/4dorojsjx\\/\",\"https:\\/\\/postimage.org\\/\",\"https:\\/\\/en.m.wikipedia.org\\/wiki\\/Article_9_of_the_Japanese_Constitution\",\"https:\\/\\/postimg.org\\/image\\/3rltv0nvb\\/\",\"http:\\/\\/www.cancer.gov\\/about-cancer\\/treatment\\/cam\\/patient\\/cannabis-pdq\",\"https:\\/\\/m.youtube.com\\/watch?v=S9qkYLtAhSQ\",\"http:\\/\\/www.veteranstoday.com\\/2014\\/04\\/22\\/prophet-or-profit-nikola-teslas-vision-vs-j-p-morgans-greed\\/\",\"http:\\/\\/www.pbs.org\\/tesla\\/ll\\/ll_todre.html\",\"https:\\/\\/postimg.org\\/image\\/fe74390xv\\/\",\"https:\\/\\/postimage.org\\/app.php\",\"http:\\/\\/99u.com\\/articles\\/6973\\/francis-ford-coppola-on-risk-money-craft-collaboration\",\"https:\\/\\/steemit.com\\/anarchism\\/@jaredhowe\\/intellectual-property-a-government-protected-monopoly\",\"https:\\/\\/postimg.org\\/image\\/hvr7ls1cr\\/\",\"https:\\/\\/postimg.org\\/image\\/ksywo2yvl\\/\",\"https:\\/\\/postimg.org\\/image\\/502b757ib\\/\",\"https:\\/\\/postimg.org\\/image\\/q3u5ej98r\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T03:34:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 44861547400445,
+    "parent_author": "",
+    "parent_permlink": "anarchy",
+    "pending_payout_value": "230.904 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-art-of-anarchy-how-the-state-suppresses-creativity-innovation-and-progress",
+    "post_id": 808166,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "The Art of Anarchy: How the State Suppresses Creativity, Innovation, and Progress.",
+    "title": "The Art of Anarchy: How the State Suppresses Creativity, Innovation, and Progress.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/anarchy/@kafkanarchy84/the-art-of-anarchy-how-the-state-suppresses-creativity-innovation-and-progress"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "699852690377",
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "701289384385",
+        "voter": "barrie"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "409333834188",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6351970742614",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099490927",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762862223",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697369009",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54045427499",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661075085",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213673190",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36417593265",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4698314134689",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401844080931",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2463346926887",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1820104943",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066155305807",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139567988316",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9752474920",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2438952883",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264050196660",
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3081790005091",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "701038329558",
+        "voter": "marginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622773507",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1096204467405",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967275107",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400004453186",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823396468317",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63910028506",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288156614",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14365023000",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14524463466",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25688974340",
+        "voter": "fkn"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3979242505",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677909035423",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "847700381",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231399933007",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73983332816",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432063160",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534623489109",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63024638994",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3597537777762",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362392818036",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53001732751",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4123478215",
+        "voter": "imyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282110250186",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6009523520",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98088341974",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205125559935",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43199622041",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31688993607",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12845779155",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199741557",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8562122511",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7855628813",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193551595441",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44204079733",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107619198367",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "79333963",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "73427338",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "812099979",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013710280",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30944167982",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5305619945",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4185824029",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1368021685",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12223552900",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11493575744",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42936222697",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19746734930",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12396216231",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10257829698",
+        "voter": "tessaddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73102427276",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203748970793",
+        "voter": "jl777"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4077622858",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2582334157",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "700752312",
+        "voter": "clonewarz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15453658587",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190368245",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17534911763",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618805674",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2707574080",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1979512137",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10855436202",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33148707079",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129091453",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52633105216",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8765440170",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53835780",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53473560",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16114519862",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19804199229",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29020723398",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "503043418102",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1838725481",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543794764",
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3651974563",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100133932391",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12816228337",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3410817262",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154454721",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53884258",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52099594",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753317",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51619811",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61515128",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1227438886",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83686491434",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2380059515",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281221497",
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1329782901",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6763113815",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428561080",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863356",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51860909",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51852278",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51481279",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326187987",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46710151149",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10832852934",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1499984615",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562255",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1709839114",
+        "voter": "lyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "591407137",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74585233974",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51712804",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1713191716",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51718188",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51388276",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51379706",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "669523866",
+        "voter": "sophiachan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37275739598",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15860264847",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56749063",
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5732988391",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3122235451",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814474",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "503793040",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51451058",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176872248178",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115478656190",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4497332799",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "834117027",
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2760058868",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53110243",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141596712",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41887968235",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37139276699",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51979174",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5412729008",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454788",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50468091",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1575553858",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251411191",
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3022616195",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101617979",
+        "voter": "koalax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4965207316",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114510631",
+        "voter": "lovetaste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50293418",
+        "voter": "amylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1632559314",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72792245",
+        "voter": "motsna"
+      }
+    ],
+    "author": "sweetsssj",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I've always loved China's classical art and literature, the picture is of me and my cousin wearing ancient traditional costumes.\n![Imgur](http://i.imgur.com/KVULsFp.jpg)\n![Imgur](http://i.imgur.com/8pVoimN.jpg)\n\u6211\u4e00\u76f4\u6df1\u7231\u4e2d\u56fd\u53e4\u4ee3\u7684\u6587\u5b66\u827a\u672f\uff0c\u56fe\u4e2d\u662f\u6211\u548c\u8868\u59b9\u5706\u68a6\u7684\u53e4\u88c5\u9020\u578b\u3002\n\n#### What is Kunqu Opera?\nKunqu Opera is one of China's oldest forms of Chinese Opera. It is also one of China's art and cultural heritage treasures and is recognised of the progenitor acrobatics. Kunqu Opera is listed as one of the Masterpieces of the Oral and Intangible Heritage of Humanity by UNESCO since 2001.\n\nOriginating from the Suzhou area, Kunqu opera began it's life as a folk a Capella and soon become widespread in the southern areas of China. Kunqu opera is not only valued for it's vocals, but also it's literary content. It's merits have taken Kunqu to the highest peaks of Chinese operatic literature. \n\nOwing to the high degree of appreciation for Kunqu opera in the Ming and Qing Dynasties, it's development reached its peak around the 18th Century. It gradually declined in popularity up to the late Qing Dynasty, as more Kunqu performers turned to Beijing Opera instead.\n\n![Imgur](http://i.imgur.com/q2R8a2c.jpg)\n\u4ec0\u4e48\u662f\u6606\u66f2\uff1f\n\u6606\u66f2\uff08Kun Opera\uff09\u662f\u4e2d\u56fd\u6700\u53e4\u8001\u7684\u5267\u79cd\u4e4b\u4e00\uff0c\u4e5f\u662f\u4e2d\u56fd\u4f20\u7edf\u6587\u5316\u827a\u672f\u4e2d\u7684\u73cd\u54c1\uff0c\u62e5\u6709\u767e\u620f\u4e4b\u7956\u7684\u79f0\u53f7\u3002\u6606\u66f2\u57282001\u5e74\u88ab\u8054\u5408\u56fd\u6559\u79d1\u6587\u7ec4\u7ec7\u5217\u4e3a\u201c\u4eba\u7c7b\u53e3\u8ff0\u548c\u975e\u7269\u8d28\u9057\u4ea7\u4ee3\u8868\u4f5c\u201d\u3002\u6606\u66f2\u8d77\u6e90\u4e8e\u4e2d\u56fd\u82cf\u5dde\u4e00\u5e26\uff0c\u4e00\u5f00\u59cb\u662f\u6c11\u95f4\u6e05\u5531\uff0c\u4f46\u4e4b\u540e\u6e10\u6e10\u6d41\u884c\u4e8e\u6574\u4e2a\u4e2d\u56fd\u5357\u65b9\u3002\u56e0\u4e3a\u6606\u66f2\u4e0d\u4ec5\u5177\u6709\u58f0\u8154\u4ef7\u503c\uff0c\u8fd8\u5177\u5907\u6587\u5b66\u4ef7\u503c\uff0c\u6606\u66f2\u7684\u6587\u5b66\u811a\u672c\u662f\u4e2d\u56fd\u620f\u66f2\u6587\u5b66\u7684\u4e00\u5ea7\u9ad8\u5cf0\u3002\u7531\u4e8e\u6606\u8154\u62e5\u6709\u5f88\u9ad8\u7684\u6b23\u8d4f\u5ea6\uff0c18\u4e16\u7eaa\u524d\u660e\u6e05\u65f6\u4ee3\u662f\u6606\u66f2\u53d1\u5c55\u7684\u9f0e\u76db\u65f6\u671f\uff0c\u5230\u4e86\u6e05\u4ee3\u665a\u671f\u9010\u6e10\u8d70\u5411\u6ca1\u843d\uff0c\u5f88\u591a\u6606\u66f2\u5927\u5bb6\u5f00\u59cb\u8f6c\u5411\u4eac\u5267\u8868\u6f14\u3002\n\n#### Kunqu Opera's relation to Beijing Opera\nKunqu is known as the quintessence of Chinese Opera and is one of the firm foundations leading to Beijing Opera. Within a Beijing opera, there are many elements brought over from Kunqu, the vocals, and the acting style. In fact, every Beijing Opera performer must study and lay their foundations through Kunqu opera. \n\n![Imgur](http://i.imgur.com/mfmtxHT.jpg)\n\u6606\u66f2\u4e0e\u4eac\u5267\u7684\u5173\u7cfb\n\u4eac\u5267\u88ab\u8a89\u4e3a\u4e2d\u56fd\u7684\u56fd\u7cb9\uff0c\u800c\u4e2d\u56fd\u620f\u66f2\u4e4b\u6bcd\u6606\u66f2\u5374\u662f\u4eac\u5267\u7684\u6765\u6e90\u4e4b\u4e00\u3002\u4eac\u5267\u91cc\u9762\u6709\u5927\u91cf\u7684\u6606\u66f2\u5531\u8154\u548c\u6606\u66f2\u8868\u6f14\uff0c\u6606\u66f2\u7684\u57fa\u7840\u662f\u6bcf\u4e00\u4e2a\u4eac\u5267\u6f14\u5458\u5fc5\u5907\u7684\u3002\n\n#### Key features of Kunqu\n\nI've always been very interested in Kunqu Opera, from it's strong lyricism, to it's delicate dancing and singing. All elements combined to give a gracious and harmonious resonance. The overall coordination of these factors are what gives *Kunqu* it's beautiful picture. \n\n*Kunqu Opera* inherits much of it's dance from traditional folk dance and court dance. For a dancer like myself, I am fascinated by it's style and origin, for me, it is undoubtedly a great enjoyment as well as a learning process. \n\n*Kunqu* also carries with it an inherited Wu dialect which originated from the south. It is considered a pleasant and sweet sounding dialect, whether in narrative or scenery, spoken or sung, the dance is always coupled with the vocals for perfect compliment. The strong story driving the Kunqu is what fascinates many foreigners, many watching once and falling in love right away. \n\nAmereican Student learning Kunqu / \u7f8e\u56fd\u5b66\u751f\u5b66\u4e60\u6606\u66f2\n![Imgur](http://i.imgur.com/Mdp7rlM.jpg)\nCredit to [ncku.edu.tw]( http://web.ncku.edu.tw/files/16-1000-115044.php?Lang=en)\n\u6606\u66f2\u7684\u7279\u70b9\n\u6211\u4e00\u76f4\u975e\u5e38\u611f\u5174\u8da3\u4e8e\u6b23\u8d4f\u6606\u66f2\u827a\u672f\uff0c\u5b83\u7684\u6292\u60c5\u6027\u5f3a\u3001\u52a8\u4f5c\u7ec6\u817b\uff0c\u6b4c\u5531\u4e0e\u821e\u8e48\u7684\u8eab\u6bb5\u7ed3\u5408\u5f97\u5de7\u5999\u800c\u8c10\u548c\uff0c\u8fd9\u4e9b\u56e0\u7d20\u6574\u4f53\u914d\u5408\uff0c\u603b\u80fd\u8425\u9020\u51fa\u4e00\u79cd\u552f\u7f8e\u7684\u753b\u9762\u3002\u6606\u5267\u7684\u620f\u66f2\u821e\u8e48\u591a\u65b9\u5438\u6536\u548c\u7ee7\u627f\u4e86\u53e4\u4ee3\u6c11\u95f4\u821e\u8e48\u3001\u5bab\u5ef7\u821e\u8e48\u7684\u4f20\u7edf\uff0c\u8fd9\u5bf9\u4e8e\u559c\u6b22\u821e\u8e48\u7684\u6211\u6765\u8bf4\uff0c\u65e0\u7591\u662f\u83ab\u5927\u7684\u4eab\u53d7\u548c\u5b66\u4e60\u8fc7\u7a0b\u3002\u540c\u65f6\u5b83\u7684\u8bed\u97f3\u5e26\u6709\u5434\u4fac\u8f6f\u8bed\u67d4\u548c\u7684\u5357\u65b9\u53e3\u97f3\uff0c\u65e0\u8bba\u53d9\u4e8b\u8fd8\u662f\u5199\u666f\uff0c\u5ff5\u767d\u8bf4\u5531\u4e0e\u821e\u8e48\u7684\u7d27\u5bc6\u7ed3\u5408\uff0c\u6545\u4e8b\u6027\u975e\u5e38\u5f3a\uff0c\u5c31\u8fde\u4e0d\u5c11\u5916\u56fd\u53cb\u4eba\u90fd\u770b\u5f97\u6d25\u6d25\u6709\u5473\u751a\u81f3\u7231\u4e0a\u4e86\u6606\u66f2\u3002\n\n#### A visit to ***Nanke's Dream***\n\nI was very lucky to get an opportunity to come to the Beijing National Grand Theatre which is located west of Tiananmen Square in Central Beijing. This venue holds the highest regard amongst the Chinese national performing arts. It is also the largest Sino-foreign exchange platform serving as a base for the Chinese cultural and creative industries. \n\nThe building is oval shaped, and looks a bit like a spaceship, Because of it's quite uncanny appearance, it clashes with the surrounding environment and yet retains its eye catching qualities. Like a castle with a moat, it was built in the middle of the lake, and surrounded by water. It could be described as a pearl, other's will describe it like a shell. Whichever, the Grand Theatre itself, represents an end of an era, and the beginning of a new one.\n\n![Imgur](http://i.imgur.com/pzep2pW.jpg)\n![Imgur](http://i.imgur.com/98KjWsK.jpg)\n\u8d70\u8fdb\u300a\u5357\u67ef\u68a6\u8bb0\u300b\u7684\u68a6\u5e7b\u4eba\u751f\n\u8fd9\u4e00\u6b21\u5f88\u9ad8\u5174\u6709\u673a\u4f1a\u6765\u5230\u4e86\u5317\u4eac\u7684\u56fd\u5bb6\u5927\u5267\u9662\uff0c\u5b83\u4f4d\u4e8e\u5317\u4eac\u5e02\u4e2d\u5fc3\u5929\u5b89\u95e8\u5e7f\u573a\u897f\u4fa7\uff0c\u662f\u4e2d\u56fd\u56fd\u5bb6\u8868\u6f14\u827a\u672f\u7684\u6700\u9ad8\u6bbf\u5802\uff0c\u4e2d\u5916\u6587\u5316\u4ea4\u6d41\u7684\u6700\u5927\u5e73\u53f0\uff0c\u4e2d\u56fd\u6587\u5316\u521b\u610f\u4ea7\u4e1a\u7684\u91cd\u8981\u57fa\u5730\u3002\u5b83\u7684\u5916\u5f62\u975e\u5e38\u7279\u522b\uff0c\u692d\u5706\u5916\u5f62\u5728\u957f\u5b89\u8857\u4e0a\u663e\u5f97\u50cf\u4e2a\u201c\u5929\u5916\u6765\u5ba2\u201d\uff0c\u4e0e\u5468\u906d\u73af\u5883\u7684\u51b2\u7a81\u8ba9\u5b83\u663e\u5f97\u5341\u5206\u62a2\u773c\u3002\u5b83\u5efa\u5728\u6e56\u4e2d\u592e\uff0c\u8c61\u6e56\u4e2d\u660e\u73e0\uff0c\u53c8\u8c61\u201c\u86cb\u58f3\u201d\uff0c\u91cc\u9762\u5b55\u80b2\u7740\u751f\u547d\uff0c\u5927\u5267\u9662\u4ee3\u8868\u4e86\u4e00\u4e2a\u65f6\u4ee3\u7684\u7ed3\u675f\u4e0e\u53e6\u4e00\u4e2a\u65b0\u7684\u65f6\u4ee3\u7684\u5f00\u59cb\u3002\n\n***Nanke's Dream*** is the story of how it's main protagonist - ***Chunyu Fen***, fell asleep one day as he was drinking alcohol. Whilst asleep, he dreamt that he entered Huaian Empire where he became acquainted with the Ant Emperor as well as the emperor's daughter. The Ant Emperor offered his daughters hand in marriage to which *Chunyu Fen* could not refuse.. For he and the princess fell deeply in love. An so, for 20 years, *Chunyu Fen* was the governor of *Nanke* (a prosperous state of the empire), and lived a rich and glamorous life. Much later, the princess died, and *Chunyu Fen* gradually lost his influence and was eventually repatriated back from whence he came. *Chunyu Fen* suddenly awakes, only to realise that the last 20 years of his life, all the good as well as the grief and sorrow was all but a dream. *Chunyu Fen* finally understands the depths of love and hate in this world, but couldn't accept the fact that his princess was no longer of this world. This realisation empowered his decision to become a Buddhist. \n\nThis opera was written by the famous Ming Dynasty writer called ***Tang Xianzu*** and is one of his most recognised works. It's theme, dream and life is known as classical satire. \n\nThe stage design exudes neo-classical art and yet incorporates modern artistic flair. The Kunqu really leans on this aesthetic and uses it to maintain a fluid flow.\n\n![Imgur](http://i.imgur.com/Lyr0NuS.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\n![Imgur](http://i.imgur.com/yHNscdu.jpg)\n\u300a\u5357\u67ef\u68a6\u8bb0\u300b\u8bb2\u8ff0\u4e3b\u4eba\u516c\u9152\u9189\u540e\u201c\u5357\u67ef\u4e00\u68a6\u201d\u5165\u5927\u69d0\u5b89\u56fd\uff0c\u88ab\u8681\u738b\u53ec\u4e3a\u9a78\u9a6c\uff0c\u4e0e\u516c\u4e3b\u975e\u5e38\u6069\u7231\uff0c\u4e14\u4efb\u804c\u5357\u67ef\u90e1\u592a\u5b88\uff0c\u4e8c\u5341\u4f59\u5e74\u5386\u7ecf\u5bcc\u8d35\u8363\u534e\uff0c\u540e\u6765\u968f\u7740\u516c\u4e3b\u4ea1\u6545\uff0c\u4e3b\u4eba\u516c\u9010\u6e10\u5931\u53bb\u6743\u52bf\uff0c\u6700\u7ec8\u88ab\u9063\u8fd4\u56de\u5bb6\u3002\u540e\u6765\u5e61\u7136\u9192\u6765\uff0c\u624d\u77e5\u4e8c\u5341\u591a\u5e74\u7684\u6b23\u559c\u60b2\u54c0\u90fd\u4e0d\u8fc7\u662f\u5728\u505a\u68a6\u3002\u7537\u4e3b\u4eba\u516c\u4f53\u609f\u81ea\u5df1\u7231\u6068\u7684\u5206\u754c\uff0c\u76f4\u5230\u6700\u540e\u9762\u5bf9\u516c\u4e3b\u7684\u4e0d\u820d\u4e0e\u6df1\u60c5\u540e\uff0c\u7ec8\u4e8e\u6709\u6240\u987f\u609f\uff0c\u7acb\u5730\u6210\u4f5b\u3002\u8be5\u5267\u662f\u660e\u4ee3\u8457\u540d\u620f\u66f2\u5bb6\u6c64\u663e\u7956\u7684\u4ee3\u8868\u4f5c\u4e4b\u4e00\uff0c\u4ee5\u68a6\u5e7b\u5199\u4eba\u751f\uff0c\u662f\u4e00\u90e8\u7ecf\u5178\u7684\u8bbd\u4e16\u5267\u4f5c\u3002\u821e\u53f0\u8bbe\u8ba1\u7a7a\u7075\u5199\u610f\uff0c\u5c55\u5f00\u6606\u66f2\u7684\u6d41\u52a8\u4e4b\u7f8e\u3002\n\n#### The costumes in ***Nanke's Dream***\n\nThe costumes worn by the actors are mostly hand embroidered. It's styles are inherited from traditional Kunqu Opera's, but have some degree of separation on design. The themes are primarily of China's traditional Celedon as well as Chinese traditional landscape paintings. The styles are what enable the viewer to really believe the Huaian dream state really exists. \n\nThe clothes all have landscapes with flowers as their recurring theme. On all the costumes, there was clever and careful consideration of colour used. This is because the patterns and colours must be auspicious but also exude a dream like state on stage. \n\u68a6\u5e7b\u822c\u7684\u300a\u5357\u67ef\u68a6\u8bb0\u300b\u670d\u88c5\n\u821e\u53f0\u4e0a\u6f14\u5458\u620f\u670d\u7684\u4e00\u9488\u4e00\u7ebf\u5927\u591a\u662f\u90a3\u7ee3\u5a18\u4eb2\u624b\u7ee3\u5236, \u5728\u5b8c\u5168\u7ee7\u627f\u4f20\u7edf\u620f\u66f2\u670d\u88c5\u57fa\u7840\u4e0a\uff0c\u53e6\u8f9f\u8e4a\u5f84\uff0c\u4ee5\u4e2d\u56fd\u4f20\u7edf\u9752\u74f7\u4e0e\u5c71\u6c34\u753b\u4e3a\u5143\u7d20\uff0c\u6784\u9020\u51fa\u4e0d\u5c5e\u4e8e\u4eba\u4e16\u7684\u201c\u68a6\u5e7b\u69d0\u5b89\u201d\u7279\u8272\u3002\u4ee5\u5c71\u6c34\u82b1\u9e1f\u6784\u6210\u670d\u88c5\u5143\u7d20\uff0c\u5de7\u5999\u8fd0\u7528\u914d\u8272\u4e0e\u4f20\u7edf\u5409\u7965\u56fe\u6848\u8fdb\u884c\u521b\u65b0\uff0c\u4ee4\u300a\u5357\u67ef\u68a6\u300b\u7684\u821e\u53f0\u8272\u5f69\u4e0a\uff0c\u4e0d\u4ec5\u6709\u7740\u4f20\u7edf\u7684\u53e4\u5178\u97f5\u5473\uff0c\u66f4\u591a\u4e86\u4e00\u4e9b\u201c\u7f8e\u68a6\u201d\u822c\u7684\u7eda\u4e3d\u591a\u59ff\u3002\n\nCeledon costume / \u9752\u74f7\u670d\u9970\n![Imgur](http://i.imgur.com/a7ADbiw.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\nLandscape paintings on the opera costumes / \u620f\u670d\u4e0a\u7684\u5c71\u6c34\u753b\n![Imgur](http://i.imgur.com/nuEom5O.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n![Imgur](http://i.imgur.com/d1A3qB0.jpg)\nCredit to [yczihua.com](http://www.yczihua.com/article-14918.html)\n\nSilk Yarn hand embroidered in various flower patterns all over the cloak. \nCombined with light pink and an embroidered pleated skirt, this outfit is tender yet beautiful.\n\u7528\u4e1d\u7ebf\u7efd\u653e\u7684\u82b1\u6735\u523a\u7ee3\u5728\u7c89\u8272\u6597\u7bf7\u4e0a\uff0c\u914d\u6de1\u7c89\u8272\u523a\u7ee3\u767e\u8936\u88d9\u5f88\u5a07\u8273\u3002\n![Imgur](http://i.imgur.com/36rDsBP.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\nA blue base with grass embroidery and white collar. Shows dignity and is simple yet elegant.\n\u84dd\u8272\u5e95\u5b50\u5170\u8349\u523a\u7ee3\u548c\u767d\u8272\u7acb\u9886\u620f\u670d\uff0c\u7aef\u5e84\u7d20\u96c5\u3002\n![Imgur](http://i.imgur.com/gvmmIxA.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n![Imgur](http://i.imgur.com/yszOR7P.jpg)\nCredit to [zihua01.com](http://www.zihua01.com/article/show-2503.aspx)\n\nPeacock designs on the costumes as well as flowers.\n\u620f\u670d\u4e0a\u7684\u5b54\u96c0\u548c\u82b1\u6735\u5c0f\u9e1f\n![Imgur](http://i.imgur.com/bp3S2d1.jpg)\n![Imgur](http://i.imgur.com/yPdRNoO.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\nSome shots of the protagonist and the princess getting married, as well as showing his visit to the whore house after his wife has passed away. \n\u7537\u5973\u4e3b\u4eba\u516c\u7ed3\u5a5a\u7684\u753b\u9762\u548c\u7537\u4e3b\u4eba\u516c\u5728\u59bb\u5b50\u901d\u53bb\u540e\u53bb\u5993\u9662\u6d88\u9063\n![Imgur](http://i.imgur.com/ezDgbbU.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\nThe protagonist dances with paragraphs of silk, in a bid to farewell for his princess. As seen in the picture, it has an intense effect on stage. \n![Imgur](http://i.imgur.com/WCPfuKz.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\u7537\u5973\u4e3b\u4eba\u516c\u8bc0\u522b\u7684\u6bb5\u843d\u7684\u7ef8\u821e\uff0c\u6709\u66f4\u5f3a\u70c8\u7684\u821e\u53f0\u6548\u679c\u3002\n\nTang Xianzu's play embodies many aspects of Buddhism, as such, the accompanying music has strong elements of Buddhist music to complement. This integration of Buddhist music, although unconventional to Kunqu Opera, gave the Opera it's own unique flavor. \n\u5728\u5267\u76ee\u7684\u914d\u4e50\u4e0a\uff0c\u66f4\u51e0\u5904\u5173\u8282\u4e0a\u52a0\u5165\u4e86\u4f5b\u6559\u97f3\u4e50\u5143\u7d20\u4ee5\u7a81\u51fa\u6c64\u663e\u7956\u5728\u5267\u672c\u4e2d\u6240\u60f3\u4f53\u73b0\u51fa\u7684\u7985\u610f\u3002\u8bbe\u8ba1\u65cb\u5f8b\u4e0e\u4f20\u7edf\u66f2\u724c\u76f8\u878d\u5408\uff0c\u4f7f\u5f97\u97f5\u5473\u66f4\u6d53\u3002",
+    "body_length": 9049,
+    "cashout_time": "2016-10-01T22:29:45",
+    "category": "art",
+    "children": 17,
+    "created": "2016-08-31T20:19:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"art\",\"literature\",\"music\",\"history\",\"cn\"],\"image\":[\"http:\\/\\/i.imgur.com\\/KVULsFp.jpg\",\"http:\\/\\/i.imgur.com\\/8pVoimN.jpg\",\"http:\\/\\/i.imgur.com\\/q2R8a2c.jpg\",\"http:\\/\\/i.imgur.com\\/mfmtxHT.jpg\",\"http:\\/\\/i.imgur.com\\/Mdp7rlM.jpg\",\"http:\\/\\/i.imgur.com\\/pzep2pW.jpg\",\"http:\\/\\/i.imgur.com\\/98KjWsK.jpg\",\"http:\\/\\/i.imgur.com\\/Lyr0NuS.jpg\",\"http:\\/\\/i.imgur.com\\/yHNscdu.jpg\",\"http:\\/\\/i.imgur.com\\/a7ADbiw.jpg\",\"http:\\/\\/i.imgur.com\\/nuEom5O.jpg\",\"http:\\/\\/i.imgur.com\\/d1A3qB0.jpg\",\"http:\\/\\/i.imgur.com\\/36rDsBP.jpg\",\"http:\\/\\/i.imgur.com\\/gvmmIxA.jpg\",\"http:\\/\\/i.imgur.com\\/yszOR7P.jpg\",\"http:\\/\\/i.imgur.com\\/bp3S2d1.jpg\",\"http:\\/\\/i.imgur.com\\/yPdRNoO.jpg\",\"http:\\/\\/i.imgur.com\\/ezDgbbU.jpg\",\"http:\\/\\/i.imgur.com\\/WCPfuKz.jpg\"],\"links\":[\"http:\\/\\/web.ncku.edu.tw\\/files\\/16-1000-115044.php?Lang=en\",\"http:\\/\\/www.3lian.com\\/gif\\/2014\\/10-17\\/63602.html\",\"http:\\/\\/www.yczihua.com\\/article-14918.html\",\"http:\\/\\/www.zihua01.com\\/article\\/show-2503.aspx\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T10:00:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 32148572761414,
+    "parent_author": "",
+    "parent_permlink": "art",
+    "pending_payout_value": "109.641 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "dreaming-of-kunqu-opera",
+    "post_id": 816528,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Unravelling the mysteries of Ancient Chinese Opera.  \u68a6\u7740\u6606\u66f2\u7684\u7f8e\u68a6\u3002",
+    "title": "Unravelling the mysteries of Ancient Chinese Opera.  \u68a6\u7740\u6606\u66f2\u7684\u7f8e\u68a6\u3002",
+    "total_payout_value": "0.000 HBD",
+    "url": "/art/@sweetsssj/dreaming-of-kunqu-opera"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "6400",
+        "reputation": 0,
+        "rshares": "18111669830201",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "715315172073",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7573714865699",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31497755152710",
+        "voter": "smooth"
+      },
+      {
+        "percent": "-100",
+        "reputation": 0,
+        "rshares": "-28866299703",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25170479661289",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-14427527758213",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1437788839897",
+        "voter": "testdrive"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "19129112425750",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4351732257617",
+        "voter": "paladin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7330584928873",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-8419314286433",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118421595242",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "991013934194",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "78337583406",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4115947771664",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3719861985",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4516048249",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "828474117",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "491388231044",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64951387539",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993522631",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256417598",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63315124730",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399082207767",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2532594526039",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856507042",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066178277767",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139584599964",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26220717668",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9947524418",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2487731941",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5591735886829",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82320587314",
+        "voter": "vip"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-11536845001",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747400513",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160843467",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "411754503823",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31574155155",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37363539080",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345805525",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83918741034",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23959616565",
+        "voter": "yefet"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-739720065624",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89757746179",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91966293702",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419261694760",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77358908541",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23701819727",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11709377940",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46091738076",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18707867834",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-5182453297",
+        "voter": "bitsignal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15155961877",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8044871647",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7737351987",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23177273743",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475511002",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1013426657626",
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5462055645",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25662062679",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243142994851",
+        "voter": "streemian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056240258",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330922076737",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "17248327984",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "693212113686",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-257095116113",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "968800436",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2360574794",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615680166",
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161898152160",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59132961985",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1420092931",
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236278422460",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24595608321",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73997216728",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594987180387",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432221003",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1107557158",
+        "voter": "martinallien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3087380162",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29022233668",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37377306695",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511452314781",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64353335571",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23887704092",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9121031191",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-3909854798215",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368970528",
+        "voter": "marcrapf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1675750169",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371369240",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856263211",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56384822076",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65928802971",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52929795664",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77755622946",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199416178251",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8558676623",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "271755285545",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79119970246",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-127103165351",
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-213934252330",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137049299903",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282088742558",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5865649820",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "321645695",
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2566336288",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149920174624",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4044936568",
+        "voter": "usefree"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-623966976",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193343504897",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6136878892",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9720382493",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98130276151",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270969226152",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31058131849",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4943256767",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6735464595",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8419452329",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3312702629",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8190519067",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7207306177",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12848570677",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16659999864",
+        "voter": "acassity"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-16254790117",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60995394021",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17547206549",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161952614",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5709173603",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4011066647",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51524686045",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221261942904",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8305742469",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7859945579",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193551595441",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49750193342",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26621276425",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-307502691227",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5407890112",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43344082030",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107619198367",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3114422667",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5856890314",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15816712653",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259419173",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "367291094",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34473688121",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5827885675",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127353375023",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246771748723",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226902626",
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67550325998",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6014285246",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560136721741",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-295201037",
+        "voter": "citizen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32990051928",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25445573460",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287184429",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7049471118",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15942960920",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "660838391042",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1215614837",
+        "voter": "danny-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499737940301",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10585994983",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "680517621",
+        "voter": "busser"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "343839867",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "318227536",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "943863353",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1343816516483",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147809269974",
+        "voter": "knircky"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-978237171",
+        "voter": "cousteau"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-536175286",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "762881799",
+        "voter": "dicov"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-621950225",
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "948064668",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46655397353",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13791949238",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "93503073",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666800322",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013373235",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10577596739",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4987849891",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16655539117",
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114935388111",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348837142851",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116044854234",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4186716317",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15152683674",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846939372",
+        "voter": "deruwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24444680262",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236993728",
+        "voter": "nysemax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349307643",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12578813242",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7016294962",
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4155430381",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42313946334",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11842796775",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2046548687",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241318691",
+        "voter": "yousaywhat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369337292",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-12155043681",
+        "voter": "kuriko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147819223871",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1425372533",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19222921559",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2182332000",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51736048406",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40692268042",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18235583674",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6784977045",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939224933",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12702349860",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437754345",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12854562736",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2472726348",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4213795388",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257505199612",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19970133668",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14310729575",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59719258418",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125838590",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1505058704",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6880831700",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1380719008",
+        "voter": "steveit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2280809650",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263957398",
+        "voter": "shing3e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3146467813",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26057056395",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898730377",
+        "voter": "amor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21922455576",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4079005054",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4233483353",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78626939838",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118550692",
+        "voter": "metalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4295800504",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22491376069",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3515225380",
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193068983853",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016329703765",
+        "voter": "james212"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "16320418751",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1684338629",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255348494",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255731129",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147929650",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148765015",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84813726",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4927809418",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117601843",
+        "voter": "slopetester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81029784268",
+        "voter": "thebear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1271178998",
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6108553793",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696318020",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "433658931",
+        "voter": "quigua"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-109783161",
+        "voter": "activcat"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-339429075",
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897343674",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702710547",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7672719225",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176770513",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17538610386",
+        "voter": "proto"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-44086368125",
+        "voter": "vidale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618911664",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "409070071",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1979512137",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219398629",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2272937366",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9306044630",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76805770",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2083095001",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "972381129",
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117818134",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "722574736",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114300588",
+        "voter": "mcbowler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125694309",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60062064525",
+        "voter": "tommyhansen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897456559",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60192222011",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98780684542",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1595890774",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10064002136",
+        "voter": "michiel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112669609",
+        "voter": "awaking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125562936",
+        "voter": "blysards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4074098957",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124633787060",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110227366",
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "972166505",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52649085689",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8767342397",
+        "voter": "taker"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-35775686256",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1363846454",
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40064325570",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2371552270",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16476010602",
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52102443",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24827810197",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22434468906",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10186903210",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19452071595",
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36277428171",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-52454815832",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1853055846",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3967372036",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64679936",
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3495650909",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102188578929",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351100968",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174769884",
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265257162",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15246720962",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94683890895",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3663551703",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12156056871",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56272514",
+        "voter": "nickche"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-314141984",
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56250267",
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2382561461",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2116654319",
+        "voter": "natalymaty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52502611",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1228509011",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10947059419",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3294318443",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9883764215",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1640892571",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1588889351",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "295953698",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17970298536",
+        "voter": "highlite"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "90176839",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "795125532",
+        "voter": "kateblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73061236",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234905614",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1309455764",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59810686",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81461672884",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51186720",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117292449",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62391219",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4001734385",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72982892",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1125119862",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65008276",
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76396543",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62789265",
+        "voter": "trimpy"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-138794665",
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662771351",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644629048075",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5367667719",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4287458592",
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "294939619",
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310778341",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60637775",
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278901402",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2460226113",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88039262242",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4233723681",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59993245",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17450916624",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383461680",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52342236",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59226282",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5927510942",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1864520703",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59437116",
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57842929",
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68674686288",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59126308",
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12404459457",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58969197",
+        "voter": "kennykwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3281995765",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7940003776",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57808922",
+        "voter": "jjalvarado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75274936",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11717775228",
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7154112930",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12247233892",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2531880312",
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7602805802",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1400687811",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9963472602",
+        "voter": "stephenfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58824509",
+        "voter": "rimke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93285020",
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12934867995",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "845006779",
+        "voter": "riceowladam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56618390",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58816543",
+        "voter": "anurbanmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58625501",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3506320499",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57337530",
+        "voter": "will.isles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227167546",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58329350",
+        "voter": "datajunky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61825781",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65242867",
+        "voter": "fitmama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597197897",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043645",
+        "voter": "whaletrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84553833",
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55805722",
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258080185",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89325487",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1406600149",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1556727823",
+        "voter": "daniel82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77850201",
+        "voter": "adnanefs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8430695324",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710738936",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58712210",
+        "voter": "freemarketkev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63848024",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2625106710",
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3970067190",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57896578",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57865236",
+        "voter": "diazrodolfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127266333",
+        "voter": "carloseclectic3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71271091941",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56770079081",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57872458",
+        "voter": "jcomeauictx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62120078",
+        "voter": "malxdrakon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56611938",
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "628845528",
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1919754750",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64413475",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15562559312",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1424466460",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "717003388",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1956423616",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444410694",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68457825",
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361985376",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749458412",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58393851",
+        "voter": "cryp71x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4405532893",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1468986693",
+        "voter": "carlyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57035814",
+        "voter": "michaelmillman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71342343",
+        "voter": "expatlove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57050315",
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55669133",
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56781082",
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177291520",
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54547175",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16196662616",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51349284",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55579083",
+        "voter": "mrmike3rd7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4840591977",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56616688",
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "657023835",
+        "voter": "tylerdav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3189375248",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55473809",
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5979022425",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54147153",
+        "voter": "apriliarider15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17138775384",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56331463",
+        "voter": "nickynelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56208181",
+        "voter": "omars3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56919906",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379926525",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16688523787",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54661980",
+        "voter": "fourfingerz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176892847429",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55725073",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74543592",
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90001670",
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193620482",
+        "voter": "oliver-janich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22137549752",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336901505",
+        "voter": "anahilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2818534745",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-54140717",
+        "voter": "alibaba.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5144545467",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55093071",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204496842",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55070425",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53888695",
+        "voter": "harmcc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117997260",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51680032",
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108903782",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163082812",
+        "voter": "gracewriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55221863",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-54788721",
+        "voter": "puzat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379994386",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53589726",
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53719394",
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50377764",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237684324298",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54674145",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68637860285",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30330041079",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52597837",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53396102",
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105479568",
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53400199",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59536536",
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53103516",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54408230",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11198455080",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4121876727",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "533336221",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52948298",
+        "voter": "alwayzgamez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51871529",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2067141122",
+        "voter": "anthemhayek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1682399382",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54321981",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5415068741",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51644845",
+        "voter": "ether19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62401544",
+        "voter": "saamychristen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51575887",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53591687",
+        "voter": "petrius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51505929",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51519509",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52515180",
+        "voter": "arthurpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53559945",
+        "voter": "gabru77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53371117",
+        "voter": "harlekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54548642",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54250822",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2558272783",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1608889180",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50852949",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52515313",
+        "voter": "scotty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168642880",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51670447",
+        "voter": "silversurfer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52652814",
+        "voter": "libertyadvocate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3342896196",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50563647",
+        "voter": "saintmichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52629272",
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52767110",
+        "voter": "littlemorelove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51848960",
+        "voter": "audiphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52342557",
+        "voter": "sandeepachetan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302430414",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52018036",
+        "voter": "twilborn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5070422661",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "888971269",
+        "voter": "schattenjaeger"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1996189667",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53175236",
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144965624",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120923966",
+        "voter": "creativeyoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51838312",
+        "voter": "najwazebian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51573174",
+        "voter": "kiwiscanfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232397418",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50459335",
+        "voter": "catkill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51422448",
+        "voter": "cuvi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "980543031",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59381609",
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550404396",
+        "voter": "judithgpordon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52823042",
+        "voter": "humans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "691657013",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825171",
+        "voter": "donchate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84036029",
+        "voter": "lunavava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50213203",
+        "voter": "bumnumbum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1665210501",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65258460",
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-58065378",
+        "voter": "tanyamoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "448144955",
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79254686",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79201669",
+        "voter": "rymlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159378797",
+        "voter": "dayan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155910854",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152309066",
+        "voter": "kjsxj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160599284",
+        "voter": "agusstin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155516854",
+        "voter": "james93"
+      }
+    ],
+    "author": "dollarvigilante",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://www.dollarvigilante.com/wp-content/uploads/2016/08/Putin-Prepares-for-Nuclear-War-Just-Week-After-Germany-Prepares-for-Attack-The-Dollar-Vigilante.jpg</center>\n\nWe have recently\u00a0<a href=\"https://www.dollarvigilante.com/blog/2016/08/23/merkel-prepares-deliberate-crisis-white-house-plans-disastrous-succession.html\" target=\"_blank\">written about</a> how Angela Merkel in Germany has encouraged her citizens to begin stockpiling food and provisions to protect themselves in the event of an \u201cattack\u201d.\n\nSince, in the last week, the US State Department has issued an updated travel warning for Israel, the West Bank, and the Gaza strip as well as Turkey.\n\nAnd now, just this week, Russians are being awakened by the deafening noise of emergency war sirens as a simultaneous \"military combat readiness check\" took place for Russian soldiers from August 25th-31st according to Russian Defense Minister Sergei Shoigu. Vladimir Putin ordered these readiness checks in the Southern, Western, and Central military districts.\n\nHe is also moving naval vessels into key spots within the Black and Caspian Seas and has \"combat alert\" troops as well as aviation equipment positioned at strategic, tactical, airfields along the Ukrainian border, ready for the \"containment of a crisis situation\" to use his words.\n\nA Unian.info article highlights these moves by saying, \"Fighter and bomber aircraft, as well as military transport and attack helicopters will carry out flights of between 500 to 2,500 kilometers\" the press service of the Russian Defense Ministry reported.\n\nOn the other side of the Ukrainian border, globalist puppet \"Porky\" Petro Poroshenko has also been putting his troops on high alert after Vladimir Putin recently accused Kiev of \"using terrorist tactics to try to provoke a new conflict to destabilize Crimea\".\n\nAs Poroshenko amassed $850 million in 2015 and became the only Ukrainian businessman to see his net worth increase that year, he promised the people of Ukraine he would \"embed new traditions\" and \"sell his assets immediately after occupying the post\". He obviously never fulfilled this promise and the people have continued to suffer as they always do after the US and NATO bring \"freedom\" and \"democracy\" to a country.\n\nPutin knows that with NATO and the globalist elites propping up Ukraine, subverting Syria, and putting pressure on him, they are trying to back him and his allies into a corner in an effort to incite retaliation and chaos. In fact, prospects of a nuclear war are probable enough in Putin's mind for him to start constructing <a href=\"http://www.dailymail.co.uk/news/article-3741902/Russian-military-building-new-underground-bunkers-withstand-nuclear-war.html\">scores of \"nuclear proof\" subterranean bunkers</a> capable of withstanding atomic blasts. \n\nThat Russia has been building these asylums under Moscow and the Ural Mountains since the cold war, shows longstanding preparation, but recent construction of more bunkers in conjunction with Russian air defense missiles being moved into Crimea, show that we could be on the precipice of a massive escalation of violence.\n\nPutin says that Russia needs to \"strengthen its defenses as an aggressive NATO approaches\". Just what sort of \"crisis\" or \"aggression\" is the Russian President expecting? Does he really expect things to escalate into a nuclear war? This pattern of conflagration and war across eastern Europe and the Caucasus region is nothing new to us.\n\nWe have watched as the Central Banking elites have used these incendiary war game tactics in an attempt to provoke armed conflict to further their agenda to consolidate global power and move toward world government.\n\nAnd, they have been using their mainstream media programming to deceive Westerners into thinking that Syrian president Bashar Al-assad has been using chemical weapons on his own people when in actuality it has been their globalist arbiters of war like Killary Clinton and Barack O'bomber undermining Assad's regime by supplying these noxious weapons to the so called \"Free Syrian Army\".\n\nWhile we don't always agree with Donald Trump, one thing he said that we think is pretty accurate is \"Obama is the founder of ISIS\". If by founder, Donald means supplier of weapons and materials then he is <a href=\"http://thefreethoughtproject.com/cia-weapons-syrian-jihadis-isis-selling-facebook/\">correct</a>. We find it interesting that the terror group Al-Nusra formerly known as Al- Qaeda in Syria, works shoulder to shoulder with the US funded \u00a0\"Free Syrian Army\" .\n\nIn war, the first thing to die is the truth. \u00a0(Just look at this actual State Department briefing... they aren't even trying to hide that it is obviously lies and propaganda anymore)\n\n<center>https://www.youtube.com/watch?v=U4Cs5TEjxtk</center>\n\nAnd what is occurring in Syria is no exception.\n\nAnd perhaps the most glaring untruth out there is a statement of omission. \u00a0Your average American has NO idea that any of this is even going on. \u00a0In fact, for the last week, all they\u2019ve been upset about is that a football player didn\u2019t stand up to their special song.\n\n<center>https://www.dollarvigilante.com/wp-content/uploads/2016/08/Special-Song-The-Dollar-Vigilante.jpg</center>\n\nAs we near the end day of the Jubilee Year on October 2nd, most of the world\u2019s major armies appear to be positioned. \u00a0Even inside the US, Jade Helm never ended, it was just renamed UWEX and people have just gotten used to seeing tanks and other major military equipment being transported across the country.\n\nRussia is preparing for an attack. \u00a0Germany, too. \u00a0It makes sense for you to also.\n\nAnd the best preparation are the investments we have been recommending at TDV: gold, silver, cryptocurrencies (we have even featured Steem in our last two issues) and other hard assets. \u00a0Our portfolio has been the best performing portfolio we know of in the financial newsletter space over the last year, gaining 200%.\n\nAnd it\u2019s because most aren\u2019t paying attention to the big picture. \u00a0Most have no idea what is going on. \u00a0And, most certainly are not prepared.\n\n<a href=\"http://dollarvigilante.com/subscribe\">Subscribe to The Dollar Vigilante newsletter</a> to make sure you aren\u2019t one of them.\n\n<center>https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg</center>",
+    "body_length": 6378,
+    "cashout_time": "2016-10-02T19:32:18",
+    "category": "money",
+    "children": 163,
+    "created": "2016-09-01T05:01:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"money\",\"war\",\"gold\",\"silver\",\"cryptocurrencies\"],\"image\":[\"https:\\/\\/www.dollarvigilante.com\\/wp-content\\/uploads\\/2016\\/08\\/Putin-Prepares-for-Nuclear-War-Just-Week-After-Germany-Prepares-for-Attack-The-Dollar-Vigilante.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/U4Cs5TEjxtk\\/0.jpg\",\"https:\\/\\/www.dollarvigilante.com\\/wp-content\\/uploads\\/2016\\/08\\/Special-Song-The-Dollar-Vigilante.jpg\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/www.dollarvigilante.com\\/wp-content\\/uploads\\/2016\\/08\\/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg\"],\"links\":[\"https:\\/\\/www.dollarvigilante.com\\/blog\\/2016\\/08\\/23\\/merkel-prepares-deliberate-crisis-white-house-plans-disastrous-succession.html\",\"http:\\/\\/www.dailymail.co.uk\\/news\\/article-3741902\\/Russian-military-building-new-underground-bunkers-withstand-nuclear-war.html\",\"http:\\/\\/thefreethoughtproject.com\\/cia-weapons-syrian-jihadis-isis-selling-facebook\\/\",\"https:\\/\\/www.youtube.com\\/watch?v=U4Cs5TEjxtk\",\"http:\\/\\/dollarvigilante.com\\/subscribe\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T05:01:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 118593093813507,
+    "parent_author": "",
+    "parent_permlink": "money",
+    "pending_payout_value": "1422.498 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "putin-prepares-for-nuclear-war-just-week-after-germany-prepares-for-attack",
+    "post_id": 820325,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Putin Prepares for Nuclear War Just Week After Germany Prepares for Attack",
+    "title": "Putin Prepares for Nuclear War Just Week After Germany Prepares for Attack",
+    "total_payout_value": "0.000 HBD",
+    "url": "/money/@dollarvigilante/putin-prepares-for-nuclear-war-just-week-after-germany-prepares-for-attack"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163930696090",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "6718200263",
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31898709926",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48620091777",
+        "voter": "booja"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "25749256993",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175828281579",
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2764147151",
+        "voter": "dogguy"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "7532679157",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "5064801063",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4487751936",
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18459040440",
+        "voter": "jennamarbles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2492990882",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30265742240",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2906356120",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15058952169",
+        "voter": "artist1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "901114996",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7513690843",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651551511",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90001670",
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1280766933",
+        "voter": "mrabdo"
+      }
+    ],
+    "author": "timcliff",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "People have talked about how one day we may have large advertising companies eventually competing for the top 'promoted' slots. While some people may strongly dislike the idea of seeing adds on Steemit, I feel that it will do us more good than harm. Advertisers paying to create adds on the promoted page will create more of a demand for Steem/SBD. I searched to see if anyone has tried this yet, and it looks like nobody has tried this yet. So here it is - the first official Steemit advertisement :)\n\nThe links in this post are Amazon affiliate links. I will get a percentage of the purchases you make if you buy products from Amazon using the links from this post.\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/122310477X/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=24bb22ce909f787c509e392a27d84b04\">Pusheen Stuffed Animal\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/31UHFBNMIoL.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/1476747016/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=2b06be6b9ba7bc3f8cd7ab3cccc3193a\">\"I Am Pusheen the Cat\" Book\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/71PwztJ25IL.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/1223104834/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=007d7b947c27c07b3bd35e9475f0c4d0\">Pusheen with Cookie Stuffed Animal\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/41qB0VrAPJL.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/Pusheen-Cat-Selfies-Juniors-T-Shirt/dp/B01FEDKIXQ/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=b85bb9ca260b6c099db01ec3db9b10e6\">Pusheen The Cat Guide To Selfies T-Shirt\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/617hGubsdGL._UL1500_.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/B015329IIO/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=277425432e11e4bbd5db04ea73f01748\">Pusheen Slippers\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/718vO%2BxhMzL._SL1500_.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/1449478697/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=0d6f75dfda51bf68bfd8adf7fc1eb787\">Pusheen the Cat 2017 Wall Calendar\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/61MGJyu-d8L.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/Pusheen-Rainbows-Unicorns-Mermaids-Sweatshirt/dp/B01DWR775S/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=bf7375359049cc2e021e9f040cbe28f0\">Pusheen The Cat Rainbows Unicorns and Mermaids Sweatshirt\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/81B7IvYy-PL._UL1500_.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/B01E36NF44/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=125b18cca657ebeefae6f93a9853a6ce\">Pusheen Ice Cream Cone Stuffed Animal\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/71nz1K%2Bf6pL._SL1500_.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/Pusheen-Cat-Laptop-Juniors-T-Shirt/dp/B00R39UD3K/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=a9669dece2fa3e7dc2051d7a9e455ca6\">Pusheen The Cat Laptop T-Shirt \n<img src=\"https://images-na.ssl-images-amazon.com/images/I/51N5hJYe84L._UL1500_.jpg\"></a>",
+    "body_length": 3360,
+    "cashout_time": "2016-10-04T18:56:15",
+    "category": "advertisement",
+    "children": 2,
+    "created": "2016-09-03T15:59:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"advertisement\",\"pusheen\",\"promoted\",\"marketing\",\"advertising\"],\"image\":[\"https:\\/\\/images-na.ssl-images-amazon.com\\/images\\/I\\/31UHFBNMIoL.jpg\",\"https:\\/\\/images-na.ssl-images-amazon.com\\/images\\/I\\/71PwztJ25IL.jpg\",\"https:\\/\\/images-na.ssl-images-amazon.com\\/images\\/I\\/41qB0VrAPJL.jpg\",\"https:\\/\\/images-na.ssl-images-amazon.com\\/images\\/I\\/617hGubsdGL._UL1500_.jpg\",\"https:\\/\\/images-na.ssl-images-amazon.com\\/images\\/I\\/718vO%2BxhMzL._SL1500_.jpg\",\"https:\\/\\/images-na.ssl-images-amazon.com\\/images\\/I\\/61MGJyu-d8L.jpg\",\"https:\\/\\/images-na.ssl-images-amazon.com\\/images\\/I\\/81B7IvYy-PL._UL1500_.jpg\",\"https:\\/\\/images-na.ssl-images-amazon.com\\/images\\/I\\/71nz1K%2Bf6pL._SL1500_.jpg\",\"https:\\/\\/images-na.ssl-images-amazon.com\\/images\\/I\\/51N5hJYe84L._UL1500_.jpg\"],\"links\":[\"https:\\/\\/www.amazon.com\\/gp\\/product\\/122310477X\\/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=24bb22ce909f787c509e392a27d84b04\",\"https:\\/\\/www.amazon.com\\/gp\\/product\\/1476747016\\/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=2b06be6b9ba7bc3f8cd7ab3cccc3193a\",\"https:\\/\\/www.amazon.com\\/gp\\/product\\/1223104834\\/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=007d7b947c27c07b3bd35e9475f0c4d0\",\"https:\\/\\/www.amazon.com\\/Pusheen-Cat-Selfies-Juniors-T-Shirt\\/dp\\/B01FEDKIXQ\\/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=b85bb9ca260b6c099db01ec3db9b10e6\",\"https:\\/\\/www.amazon.com\\/gp\\/product\\/B015329IIO\\/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=277425432e11e4bbd5db04ea73f01748\",\"https:\\/\\/www.amazon.com\\/gp\\/product\\/1449478697\\/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=0d6f75dfda51bf68bfd8adf7fc1eb787\",\"https:\\/\\/www.amazon.com\\/Pusheen-Rainbows-Unicorns-Mermaids-Sweatshirt\\/dp\\/B01DWR775S\\/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=bf7375359049cc2e021e9f040cbe28f0\",\"https:\\/\\/www.amazon.com\\/gp\\/product\\/B01E36NF44\\/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=125b18cca657ebeefae6f93a9853a6ce\",\"https:\\/\\/www.amazon.com\\/Pusheen-Cat-Laptop-Juniors-T-Shirt\\/dp\\/B00R39UD3K\\/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=a9669dece2fa3e7dc2051d7a9e455ca6\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T18:43:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 552214823739,
+    "parent_author": "",
+    "parent_permlink": "advertisement",
+    "pending_payout_value": "0.243 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "official-steemit-advertisement-buy-pusheen-products-from-amazon-com",
+    "post_id": 845502,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Official Steemit Advertisement - Buy Pusheen Products from Amazon.com!",
+    "title": "Official Steemit Advertisement - Buy Pusheen Products from Amazon.com!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/advertisement/@timcliff/official-steemit-advertisement-buy-pusheen-products-from-amazon-com"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995902544214",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5536285359773",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103049052",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767386127",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54644232408",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662803066",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3921623226568",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318045860280",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23992305455",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969747519",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19637916155",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487241289",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5612862925",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331414403780",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25831645440",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1571363168454",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "3389073967",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534998623",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425750795",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49688826135",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380406839",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335778848",
+        "voter": "yonatann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105780627648",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76306518322",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6740408834",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21187339385",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238284822415",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14755964550",
+        "voter": "zer0sum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116686205297",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60750948355",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474045973",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531802773",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487519452",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55991205950",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16352609609",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206998761400",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3758301297",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230802431",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19753416410",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1626282910",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12726711150",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3493315959",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6979533647",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182756574271",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15909822224",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4831857977",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748983311",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15575274684",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24460059681",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14015055748",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537898386",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490788664",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30100686220",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27075686327",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18807630174",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7870860970",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6219336852",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5721389686",
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91126092446",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65703191166",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34357085787",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "274399247",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "9602930892",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68593728547",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1723840234",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58405372",
+        "voter": "protonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36371527197",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14100833410",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2213065774",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148042787",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115043900",
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56680590",
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "675058400",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66879121",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181982895",
+        "voter": "greatness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17059963076",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1485561825",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85546636",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9031232590",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154485682",
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51341602",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163508147",
+        "voter": "iamblessed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138732453",
+        "voter": "oliver.smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129262534",
+        "voter": "jack.johnson"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "As from [their website](https://riseup.net/en):\n>We are in a financial crisis and need your support! That's why we launched our $1 campaign, where we're asking every riseup user to give us just $1 a month!\n\nI didn't see any other donation post for RiseUp, so I thought it'd be great to run a STEEM fundraiser for them.\n\n<center>![](https://riseup.net/en/about-us/img/riseup-yellow.gif)</center>\n\n**What is RiseUP and why should I care?**\n\nRiseUP provides many services to whistleblowers and journalists, such as email, chat, VPN, among other things. Many people depend on them to allow them to keep the world safe.\n\n>Our purpose is to aid in the creation of a free society, a world with freedom from want and freedom of expression, a world without oppression or hierarchy, where power is shared equally. We do this by providing communication and computer resources to allies engaged in struggles against capitalism and other forms of oppression.\n\nEven if you don't personally use RiseUP, you can help protect free speech by donating to RiseUP here: https://riseup.net/en/donate\n\n**What about this post?**\nI will also be donating 100% of the value of this post (i.e. both SBD and SP value in whole) to RiseUP via Bitcoin. [I personally donated ~$60 of my own money just before writing this article](https://blockchain.info/tx/6a031de304db74cb90da261da65d4ac89edb768325011a33100058b851ebae8d)\n\nAs soon as the post pays out, I will be sending the value of this post as a donation to RiseUp, and posting proof as a separate post.\n\n\nPlease spread the word so we can protect freedom.\n-------",
+    "body_length": 1585,
+    "cashout_time": "2016-10-07T21:22:54",
+    "category": "steem",
+    "children": 11,
+    "created": "2016-09-06T19:48:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"anarchy\",\"riseup\",\"charity\"],\"image\":[\"https:\\/\\/riseup.net\\/en\\/about-us\\/img\\/riseup-yellow.gif\"],\"links\":[\"https:\\/\\/riseup.net\\/en\",\"https:\\/\\/riseup.net\\/en\\/donate\",\"https:\\/\\/blockchain.info\\/tx\\/6a031de304db74cb90da261da65d4ac89edb768325011a33100058b851ebae8d\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T19:48:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14550603934532,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "19.950 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "calling-all-users-riseup-are-having-a-financial-crisis",
+    "post_id": 875337,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "CALLING ALL USERS - RiseUp are having a financial crisis",
+    "title": "CALLING ALL USERS - RiseUp are having a financial crisis",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@someguy123/calling-all-users-riseup-are-having-a-financial-crisis"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1862100321",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2260794166",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "414574755",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32836465304",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "997815881",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128272117",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3082447408559",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374954229",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "970141192887",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "583791464",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173003533",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82035468310",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128218751248",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182657633334",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "10084998310",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "456987105",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5129138575",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33254767020",
+        "voter": "james-show"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "13266207402",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12524571436",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13564010250",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446039860",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1069530288",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79760484720",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356744858",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76306848367",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54150215675",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6071522849",
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111739237207",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2673745586",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92345695481",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2681690814",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23126720482",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86675287972",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3513693618",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821572322",
+        "voter": "poias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49836148737",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42100849373",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360836245947",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "32108493894",
+        "voter": "furion"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "237192759",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "263564711",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "243929499",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10475000294",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "896254871",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431019291",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43466091162",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225535370",
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20698934666",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10383203208",
+        "voter": "pcste"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13966407599",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3527588268",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36795839737",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82965552673",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40082029591",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "8170670653",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4647193327",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15102804387",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "1167271026",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8563805085",
+        "voter": "logic"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "269150419",
+        "voter": "fnait"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "245570408",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1645434255",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4401682802",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24751486274",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5766980028",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4404504173",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7011114855",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2129678456",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "10697432101",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74496308",
+        "voter": "themagus"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "1660823962",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6679625587",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3011592732",
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9238077787",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2149557353",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411640158",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227979819",
+        "voter": "xcepta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5861088198",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71902749",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99235443904",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20129639386",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3837178686",
+        "voter": "booky"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4505260508",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74873590",
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152822603",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1893166639",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "2926426046",
+        "voter": "alexandre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4655142091",
+        "voter": "englishtchrivy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91543033",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17788448526",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "924437688",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3158164152",
+        "voter": "eveningstar92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5172392166",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80213898072",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692398949",
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58484656",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2279697962",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56152698",
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4070899362",
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143004279",
+        "voter": "nadil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133456607",
+        "voter": "daniel.brest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127001112",
+        "voter": "edward.shroder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145928408",
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145921825",
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145152694",
+        "voter": "serena199"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145124187",
+        "voter": "gia7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>In December 2013 I had the good fortune to make a flying 4 day visit to Rome. &nbsp;</p>\n<p>It was to visit my sister in law's family who are Italian and had been unable to make my brother's wedding in England a few months earlier. &nbsp;Unfortunately there was very little time to do sightseeing. &nbsp;</p>\n<p>One thing I absolutely wanted to see was the famous Trevi Fountain. &nbsp;Due to reasons I will get to in the text below this ended up being rushed as it was getting late and close to sunset. &nbsp;</p>\n<p>I'm quite pleased with the photos though. &nbsp;I selected a split tone process in Silver Effex Pro to give them this unique tone.</p>\n<p>I just wish I had more time to do some proper sightseeing and photography of all the amazing architecture.</p>\n<p><br></p>\n<h1>Trevi Fountain Photos</h1>\n<p>Basic information about the fountain from Wikipedia (<a href=\"https://en.wikipedia.org/wiki/Trevi_Fountain\">link</a>):</p>\n<blockquote>The Trevi Fountain (Italian: Fontana di Trevi) is a fountain in the Trevi district in Rome, Italy, designed by Italian architect Nicola Salvi and completed by Pietro Bracci. Standing 26.3 metres (86 ft) high and 49.15 metres (161.3 ft) wide,[1] it is the largest Baroque fountain in the city and one of the most famous fountains in the world. The fountain has appeared in several notable films, including Federico Fellini's La Dolce Vita.</blockquote>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b21of23f6165.jpg\" width=\"800\" height=\"533\"/></p>\n<p>1</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b19of23fd6ff.jpg\" width=\"800\" height=\"533\"/></p>\n<p>2</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b14of2366864.jpg\" width=\"800\" height=\"533\"/></p>\n<p>3</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b15of2317b78.jpg\" width=\"800\" height=\"533\"/></p>\n<p>4</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b16of231f361.jpg\" width=\"800\" height=\"533\"/></p>\n<p>5</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b17of237ed99.jpg\" width=\"800\" height=\"533\"/></p>\n<p>6</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b18of2326902.jpg\" width=\"800\" height=\"533\"/></p>\n<p>7</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b20of23a3251.jpg\" width=\"800\" height=\"533\"/></p>\n<p>8</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b22of231ba03.jpg\" width=\"800\" height=\"1200\"/></p>\n<p>9</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b23of23f0c1d.jpg\" width=\"800\" height=\"533\"/></p>\n<p>10</p>\n<h1>A few selected other shots from the walk to the Fountain:</h1>\n<p>The walk to Trevi Fountain itself had some interesting sights which I tried to capture.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b1of1633f1.jpg\" width=\"799\" height=\"533\"/></p>\n<p>11</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01c1of1bf699.jpg\" width=\"800\" height=\"1200\"/></p>\n<p>12</p>\n<p>This was another fountain that just happened to be in the centre of a large roundabout on the walk to Trevi Fountain. &nbsp;Don't know what it is called - there are so many fountains around Rome - there was just too much to photograph and it was getting close to sunset. (As the photo below shows.)</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b1of232a1f5.jpg\" width=\"800\" height=\"533\"/></p>\n<p>13</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b12of23096e6.jpg\" width=\"800\" height=\"1200\"/></p>\n<p>14 - I loved the textures on some of the old buildings. &nbsp;Being pushed for time I tried to take some shots whilst I could.</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b11of2341f7d.jpg\" width=\"800\" height=\"533\"/></p>\n<p>15 - Here one can see the contrast between new and old.</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01d1of1acb34.jpg\" width=\"800\" height=\"533\"/></p>\n<p>16 - I loved the shapes and lines here.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b5of23547ad.jpg\" width=\"800\" height=\"533\"/></p>\n<p>17 - The walk consisted of lots of these kind of very narrow alleyways. &nbsp;This seems to be common to most historic cities. &nbsp;Some are so narrow that they feel claustrophobic.</p>\n<p><br></p>\n<h1>Rome's Worst Bus Tour</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b3of2379c07.jpg\" width=\"800\" height=\"533\"/></p>\n<p>18 &nbsp;</p>\n<p>Prior to going to Trevi Fountain and one of the reasons for the delay was that we took a bus tour of Rome. &nbsp;Unfortunately the driver seemed to be high on Coke or something because he was in a mad rush to go from place to place. &nbsp;In the end we didn't actually get a chance to see very much because of this. &nbsp;This was the only photo that I managed to get from that tour. &nbsp;I think it is a museum but I'm not sure. &nbsp;Maybe someone recognises this building?</p>\n<p><br></p>\n<h1>Technical Information:</h1>\n<ul>\n  <li>Nikon D7100 Camera</li>\n  <li>Sigma 24-70mm/2.8 lens</li>\n  <li>Adobe Lightroom CC and Nik Silver Effex Pro for processing.</li>\n</ul>\n<p>I hope you like the photos. &nbsp;If you like my work please follow me and check out my previous photography work and tutorials &nbsp;@thecryptofiend - hope you enjoy.</p>\n<p><em>(Verification for me here: </em><a href=\"http://www.aapicture.com/about-me\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n</html>",
+    "body_length": 5879,
+    "cashout_time": "2016-10-08T20:47:57",
+    "category": "photography",
+    "children": 36,
+    "created": "2016-09-07T18:07:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"steemit\",\"travel\",\"steemsquad\",\"life\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b21of23f6165.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b19of23fd6ff.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b14of2366864.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b15of2317b78.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b16of231f361.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b17of237ed99.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b18of2326902.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b20of23a3251.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b22of231ba03.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b23of23f0c1d.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b1of1633f1.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01c1of1bf699.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b1of232a1f5.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b12of23096e6.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b11of2341f7d.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01d1of1acb34.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b5of23547ad.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/Arif_Akhtar_Statue_CC_01b3of2379c07.jpg\"],\"links\":[\"https:\\/\\/en.wikipedia.org\\/wiki\\/Trevi_Fountain\",\"http:\\/\\/www.aapicture.com\\/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T18:07:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 6246021277012,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "5.940 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "trevi-fountain-in-italy-photography-a-masterpiece-of-baroque-art",
+    "post_id": 884147,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Trevi Fountain in Italy (Photography) - A Masterpiece of Baroque Art",
+    "title": "Trevi Fountain in Italy (Photography) - A Masterpiece of Baroque Art",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/trevi-fountain-in-italy-photography-a-masterpiece-of-baroque-art"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "10614103331311",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "59458723538",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "228718504444",
+        "voter": "justin"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "1926094932850",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "134423167163",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "5813057950",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2377826086",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40554406544",
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426202100",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73256443161",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80414780699",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19307972889",
+        "voter": "aaron-brodie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2673745586",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49836148737",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "885413874",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26650614620",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "409041301",
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10383203208",
+        "voter": "pcste"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "4059206027",
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64720992",
+        "voter": "dknightwolf70"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "13686287140",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4276991996",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25913356646",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "770166525",
+        "voter": "rebelmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61447120117",
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1359710881",
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1268303212",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154845278",
+        "voter": "crimson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140959075",
+        "voter": "my-art"
+      }
+    ],
+    "author": "kellywin21",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h3>http://i.imgur.com/3T97TGs.jpg?1<br>\nPhotograph Taken By Kelly Clegg</h3>\n<h3>Divining Fireflies</h3>\n<h3>The night is filled with that of<br>\nfireflies dancing their way through <br>\nthe night sky. With you sitting <br>\nupon this blanket here with me now; <br>\nwe are in the heat of the moment. <br>\nHolding me close, you being to <br>\ntake control; my body is at the grasp <br>\nof your finger tips. Laying over top <br>\nof me; I can feel your breath of beauty <br>\nupon my neck as the night fireflies <br>\nbecome that of butterflies within the <br>\npit of my stomach. Let us freeze time <br>\nupon this moment; I want to wrestle <br>\nthrough the night just to hear your <br>\nheartbeat against me one more time.<br>\nFor tonight there is a fire burning <br>\nbetween us so bright it matches that <br>\nof the beauty of this firefly filled sky. Let <br>\nthis fire rage through the night; for<br>\nI don\u2019t want this night to end. Place <br>\nyourself closer cowboy, it is only <br>\nyou and I here; dance your body upon <br>\nme for tonight you are the blanket in <br>\nwhich cloaks me. Leaving no place <br>\nuntouched, unloved, or unwanted; the <br>\nlook within those eyes shows the <br>\nlust upon your mind for me. With music <br>\nplaying its way through the silence <br>\nfor tonight we are connected as one. <br>\nLoving, laughing; with little care to <br>\nthat of the outside world. Be my <br>\ndistraction one last time cowboy for <br>\nI don\u2019t want this night to end.<br>\nBy Kelly Clegg<br>\n09/07/16<br>\n17:04:28</h3>\n</html>",
+    "body_length": 1529,
+    "cashout_time": "2016-10-09T11:28:00",
+    "category": "life",
+    "children": 9,
+    "created": "2016-09-07T23:19:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"photography\",\"poetry\",\"steemit\",\"beauty\"],\"image\":[\"http:\\/\\/i.imgur.com\\/3T97TGs.jpg?1\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T23:19:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 13391573680765,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "24.362 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "divining-fireflies",
+    "post_id": 887116,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Divining Fireflies",
+    "title": "Divining Fireflies",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@kellywin21/divining-fireflies"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2426805237",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207235087440",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55815725",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5888436135",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6080328266",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1211817254",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "824435072",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2000037840",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098916234",
+        "voter": "punjammies"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115585338",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51950730",
+        "voter": "caliman5899"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72627476",
+        "voter": "justusagenstum"
+      }
+    ],
+    "author": "punjammies",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hi All</p>\n<p>Yesterday I read the article by 'cryptogge' titled \"A quick fix for a broken capitalist society.\" The purpose of this blog is not to discuss the article, rather on the question the author 'cryptogge' asked me after I corrected him, on the length of the UK electoral cycle. He claimed that it was four years. I corrected him in comments. It is 5 years. Kudos to cryptogge: he acknowledged his error. It was the following words by cryptogge that caught my attention. He said in reply, \"What do you think about a 10 year cycle? Does that sound too long, or do you think we'd get better results from our politicians with a longer cycle?\"</p>\n<p><strong>Bloody Hell. Where do I start.</strong></p>\n<p><strong>&nbsp;</strong>Here is my answer. The West is filled with corrupt, inept, sociopathic liars. These people I am talking about are called Politicians, The old joke, \"How do you tell if a Politician is lying? Answer, his lips are moving.\" This has never been more true than it is today.</p>\n<p>Let us look a little closer.</p>\n<p>OBAMA ( The liar in chief) &nbsp;\"If you like your Doctor: you can keep your Doctor.\"</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\"No boots on the ground in the Middle East.\" ie &nbsp;Syria or Iraq.</p>\n<p>&nbsp;&nbsp;And the Whopper of a lie, &nbsp;&nbsp;\"The un-affordable care act. This will cause little in the way of premium hikes.\"</p>\n<p>He claimed that it would be the cost of a monthly mobile phone bill.&nbsp;</p>\n<p>I could go on with Oduma's lies, but it is beyond the capability of the memory left on my Mac. This Politician has bombed, invaded countries, &nbsp;and droned innocent men, women and children to death. He has also destroyed the American economy and doubled the USA debt to $19.5 trillion, in 7 years; to name just a tiny few of his <strong>\"accomplishments\".</strong></p>\n<p>DAVID CAMERON, the UK Prime Minister at the time, threatened us, the British people with anything and everything from dirty beaches to an economic collapse. He did this in order to secure a REMAIN vote win. This was on behalf of the globalists wet dream of \"The European Union.\" (If you want a little more detail on Brexit, watch \"Brexit the movie, on youtube.) you will then see just how bad these bat shit Euro crack pots are. They waste time and money at the same time, feathering their own nests.</p>\n<p>Hi, Cameron. Nothing happened after Brexit. the stock markets are up, employment is up, and countries around the world are lining up for trade deals. This shows clearly how inept you are. (By the way he has doubled our debt in the UK to 1.5 trillion pounds. Way to go pig fucker.)</p>\n<p>The last one I would like to use is MAD MERKEL in Germany. (I could talk for hours on other Politicians but it would be outside the scope of this article.) Yes, Merkel has allowed in hundreds of thousands of refugees and African financial migrants. The German people are now subject to daily</p>\n<ol>\n  <li>Murders</li>\n  <li>Rapes</li>\n  <li>Sexual assaults</li>\n  <li>Many more illegal acts such as theft.</li>\n</ol>\n<p>Yes the integration is going so well, NOT. Despite the overwhelming push back by the general population (perfectly illustrated by her parties defeat last weekend by the alternative for Germany AfD Party) she still is defiant. She said, \" If I could go back in time, I would make the same decision.\"</p>\n<p>The problem is that these Politicians, when elected, hardly ever fight for the views and needs of the people who elected them. No, they go power mad and do what ever they please: and screw the pions, sorry the electorate.</p>\n<p>I conclude that crytogge should have asked, \" How can we dismantle BIG GOV. and bring the power back to the people?\"</p>\n<p>http://i67.tinypic.com/r1esuf.jpg</p>\n<p>I leave you with the words that President Regan said were terrifying, \"I'm from the Government and I'm here to help.\"</p>\n<p><br></p>\n<p>Thanks for reading,</p>\n<p>&nbsp;Gazza.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n</html>",
+    "body_length": 4474,
+    "cashout_time": "2016-10-10T23:25:03",
+    "category": "steemit",
+    "children": 3,
+    "created": "2016-09-09T21:30:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"politics\",\"anarchy\"],\"image\":[\"http:\\/\\/i67.tinypic.com\\/r1esuf.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T21:30:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 229061842747,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "0.084 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "longer-government-terms-you-ve-got-to-be-kidding",
+    "post_id": 905885,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Longer Government terms: You've got to be kidding.",
+    "title": "Longer Government terms: You've got to be kidding.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@punjammies/longer-government-terms-you-ve-got-to-be-kidding"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30963839462387",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726606963",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524622404",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821039972",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66102267463",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996747311",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256577770",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5795877365182",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "698585501988",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750189664",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168132240",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "51961298450",
+        "voter": "ilanaakoundi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346070380",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81751922217",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11005902935",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76670473746",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "542833790",
+        "voter": "pinnpe"
+      },
+      {
+        "percent": "674",
+        "reputation": 0,
+        "rshares": "44862313286",
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61060303",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "735303258",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "1334348365",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7966340400",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43862346633",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982799520",
+        "voter": "coar"
+      },
+      {
+        "percent": "666",
+        "reputation": 0,
+        "rshares": "353351990",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11310608512",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80105016983",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51561874125",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367610195624",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114878892399",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18601449723",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52827905221",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91839799045",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3369106640",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30881138467",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369419860",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3732400501",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57994119092",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "2306799441",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10243974525",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "538646035702",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90553059",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17920414554",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10633723041",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12188573675",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773879013",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3869692830",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83046076405",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3302179419",
+        "voter": "begstreets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2926445780",
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "178673337188",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75057225722",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "724596281",
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "6634559362",
+        "voter": "pcste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13633005273",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3771796980",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5470500283",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91700864173",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6308132719",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51402486",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6377009195",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "8400",
+        "reputation": 0,
+        "rshares": "3320669846",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32225415319",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10857182852",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11198164112",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "116519557",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5005571071",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6220971135",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075326746",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4744028064",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10612838380",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3604092416",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17279737369",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16703453272",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "674",
+        "reputation": 0,
+        "rshares": "1189176818",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6906656455",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1828714169",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55022014",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119906036",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160710552",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10129755378",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1834344112",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3606072514",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6201928728",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "254680718",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "2200",
+        "reputation": 0,
+        "rshares": "7140180678",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4776396970",
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7980606923",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12229863740",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16019574880",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8407212528",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3473078581",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2124114858",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7196370032",
+        "voter": "alexandre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3932626457",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1285880803",
+        "voter": "yzomri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16011081559",
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56265089",
+        "voter": "yetaras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "573911846",
+        "voter": "edgarsart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5834273138",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90938149523",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52314834",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214944331",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55470360",
+        "voter": "skinimin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65629215",
+        "voter": "greatdabu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93729189",
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "359415875",
+        "voter": "aksinya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83052261",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2896201327",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361135016",
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149226307",
+        "voter": "edward.shroder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2696735310",
+        "voter": "lscottphotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146492230",
+        "voter": "modernbukowski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158532208",
+        "voter": "landria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10248469295",
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153075466",
+        "voter": "william007"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>Further to my <a href=\"https://steemit.com/photography/@thecryptofiend/gabriella-evolution-of-an-image-from-camera-to-photoshop\">previous tutorial using a different photo of Gabby</a> here is another tutorial where I am to go from start to finish. &nbsp;In this case I am going to do it in 2 parts since the post length was getting too long. &nbsp;In this first part I will just cover basic adjustments in Lightroom and blemish removal (mainly) in Photoshop. &nbsp;If you are unfamiliar with any of these techniques I would suggest going back to my previous tutorial mentioned above and these other 2 tutorials: <a href=\"https://steemit.com/photography/@thecryptofiend/quick-portrait-retouching-in-lightroom-tutorial\">Quick Portrait Retouching in Lightroom </a>and <a href=\"https://steemit.com/photography/@thecryptofiend/how-to-fix-damaged-photos-in-photoshop-tutorial-with-example-image\">How to Fix Damaged Photos in Photoshop.</a></p>\n<p><em>In the second part I will use some of the techniques I covered in </em><a href=\"https://steemit.com/photography/@thecryptofiend/easy-black-and-white-portrait-conversion-using-nik-silver-efex-pro-2-photography\"><em>my tutorial on black and white conversion</em></a><em> in Nik Silver Efex Pro 2.</em></p>\n<hr />\n<h1>Lightroom Edits</h1>\n<p>Here is the initial .NEF or RAW image in Lightroom. &nbsp;It looks a bit dull.</p>\n<h3>Exposure Adjustment</h3>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_011beda.png\" width=\"800\" height=\"458\"/></p>\n<p>So I am going to increase the exposure a little to + 0.70. &nbsp;There is some mild clipping of whites in the histogram but I am not too concerned about that.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_02b00b7.png\" width=\"241\" height=\"594\"/></p>\n<h3>Some Quick Blemish Removal</h3>\n<p>I'm also going to use the Spot Heal tool to do some basic blemish removal. &nbsp;This isn't absolutely necessary because I'm going to be doing more blemish removal in Photoshop. &nbsp;There are a few things that stand out and are fine to remove using the more basic LR tool. &nbsp;For example the piercing in Gabby's ear stands out because she isn't wearing an earring in this ear. &nbsp;So I've removed that.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_04e6452.png\" width=\"800\" height=\"487\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_03be1d6.png\" width=\"283\" height=\"343\"/></p>\n<p>The Spot removal tool is the large circle to the right of the crop tool symbol (9 part rectangle).</p>\n<p>Now I'm ready to Open the Image in Photoshop. &nbsp;So I right click on it Edit&gt;Edit in Adobe Photoshop CC and that opens it in a new Photoshop window.</p>\n<hr />\n<h1>Photoshop Editing</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_06d03ac.png\" width=\"800\" height=\"454\"/></p>\n<p>The first thing in PS is to create a new layer Cmd(Ctrl in Win)+Shift+N is the shortcut to do this. &nbsp;I am going to name the new layer Skin.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_0576e41.png\" width=\"755\" height=\"266\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_1256676.png\" width=\"276\" height=\"377\"/></p>\n<p>I'm mainly going to use the spot healing brush tool to remove blemishes. &nbsp;This comes down to subjective judgement but as I've said before you don't want to remove too much as you will lose skin detail. &nbsp;It doesn't matter quite as much for a photo like this compared to say an extreme close up shot of the face where overdone retouching will just look plain weird.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_0719cbc.png\" width=\"800\" height=\"585\"/></p>\n<p>One of the ways to do this and decide what to remove and what to keep is to look at the colour of blemishes. &nbsp;I tend to remove large red blemishes as these tend to be signs of inflammation. &nbsp;Leave smaller ones as that is a part of natural skin texture. &nbsp;I also leave any brown marks as these are freckles and moles and tend to add character to the face and skin. &nbsp;Nobody, no matter how great their skin is, is free from these so completely removing them can look odd.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_08e8920.png\" width=\"684\" height=\"385\"/></p>\n<p>Keep Zooming in and out to get an overall impression of the face.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_09bfd43.png\" width=\"800\" height=\"588\"/></p>\n<p>Here I can see the face doesn't really need any more work.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_109d71c.png\" width=\"800\" height=\"589\"/></p>\n<p>Normally I wouldn't remove the blemishes on the arms very much but on the zoomed out photo they are distracting from the face.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_13aeb27.png\" width=\"800\" height=\"590\"/></p>\n<p>Due to the distraction that they were creating I've removed more blemishes than I would normally on the arms. &nbsp;If you feel you have gone too far you can always use a layer mask to paint them in or out depending on what you want to do. &nbsp;You can also reduce the opacity of the entire layer. &nbsp;Since this is not a photo where the arms are the main subject it really is not so important. &nbsp;So I will just leave them like this (below).</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_14c803e.png\" width=\"800\" height=\"591\"/></p>\n<hr />\n<h1>Save and Reopen in Lightroom</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_1517fbb.png\" width=\"800\" height=\"592\"/></p>\n<p>Here is the zoomed out view. &nbsp;The photo looks done to me. &nbsp;So I will save it and close Photoshop. &nbsp;This will take me back to Lightroom. &nbsp;This means that I have a basic copy of the colour photo that has been retouched and I can use as a basis for more creative changes. &nbsp;</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_1762278.png\" width=\"800\" height=\"449\"/></p>\n<p>If I want to change it again I will either create a virtual copy first (just right click and it is in the main menu) or when using an external editor like PS or SEP2 I will select the option to \"Edit a Copy with Lightroom Adjustments\". &nbsp;This way I will always have the base retouched version of the colour photo to go back to if I need it.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/ScreenshotGEOAI_02_1658f94.png\" width=\"645\" height=\"474\"/></p>\n<p>For part 2 of this I will take this photo and do a black and white conversion in Nik Silver Efex Pro 2.</p>\n<hr />\n<h1>The Final Photos</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_3503of31853b.jpg\" width=\"350\" height=\"524\"/><img src=\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_3502of33a670.jpg\" width=\"350\" height=\"524\"/></p>\n<h3>Before &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;After</h3>\n<p>The difference here is quite subtle and difficult to see at this small size. &nbsp;I have added larger versions below so you can see it more clearly.</p>\n<hr />\n<h1>Large Versions</h1>\n<h3>Original:</h3>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_8003of385831.jpg\" width=\"800\" height=\"1199\"/></p>\n<h3>Edited and Retouched:</h3>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_8002of3ed2c9.jpg\" width=\"800\" height=\"1199\"/></p>\n<hr />\n<p>If you like my work please follow me and check out my previous photography work and tutorials &nbsp;@thecryptofiend - hope you enjoy.</p>\n<hr />\n<h1><em>Technical Information:</em></h1>\n<ul>\n  <li><em>Nikon D800 Camera</em></li>\n  <li><em>Sigma 24-70mm/2.8 lens, Natural light with a reflector and window backlighting. Camera Settings image below.</em></li>\n  <li><em>Adobe Lightroom CC and Photoshop CC for processing.</em></li>\n  <li><em>Model is Gabriella Kennedy.</em></li>\n</ul>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/CameraSettings1e46d.png\" width=\"281\" height=\"58\"/></p>\n<hr />\n<p><em>(Verification for me here: </em><a href=\"http://www.aapicture.com/about-me\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n<hr />\n</html>",
+    "body_length": 8871,
+    "cashout_time": "2016-10-13T02:38:00",
+    "category": "photography",
+    "children": 32,
+    "created": "2016-09-11T17:41:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"steemit\",\"art\",\"tutorial\",\"steemsquad\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_011beda.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_02b00b7.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_04e6452.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_03be1d6.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_06d03ac.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_0576e41.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_1256676.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_0719cbc.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_08e8920.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_09bfd43.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_109d71c.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_13aeb27.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_14c803e.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_1517fbb.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Screenshot_GEOAI_02_1762278.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/ScreenshotGEOAI_02_1658f94.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Arif_Akhtar_GEOAI_02_3503of31853b.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Arif_Akhtar_GEOAI_02_3502of33a670.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Arif_Akhtar_GEOAI_02_8003of385831.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/Arif_Akhtar_GEOAI_02_8002of3ed2c9.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/CameraSettings1e46d.png\"],\"links\":[\"https:\\/\\/steemit.com\\/photography\\/@thecryptofiend\\/gabriella-evolution-of-an-image-from-camera-to-photoshop\",\"https:\\/\\/steemit.com\\/photography\\/@thecryptofiend\\/quick-portrait-retouching-in-lightroom-tutorial\",\"https:\\/\\/steemit.com\\/photography\\/@thecryptofiend\\/how-to-fix-damaged-photos-in-photoshop-tutorial-with-example-image\",\"https:\\/\\/steemit.com\\/photography\\/@thecryptofiend\\/easy-black-and-white-portrait-conversion-using-nik-silver-efex-pro-2-photography\",\"http:\\/\\/www.aapicture.com\\/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T17:41:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 40181482530377,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "122.720 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "gabriella-image-retouching-and-editing-workflow-part-1",
+    "post_id": 923350,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Gabriella Image Retouching and Editing Workflow Part 1",
+    "title": "Gabriella Image Retouching and Editing Workflow Part 1",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/gabriella-image-retouching-and-editing-workflow-part-1"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28089806677544",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "699862714517",
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30332684393673",
+        "voter": "smooth"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3285415788316",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82757179887",
+        "voter": "friend5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231697645",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5681607884140",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49160688003",
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264039819632",
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345188197797",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "700848562903",
+        "voter": "marginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73478378127",
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2526156006939",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7861629418",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23459060358",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131723450338",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33790759559",
+        "voter": "lobotony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22608066888",
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3109492851",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19600886493",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14203054621",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47079694777",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175632532156",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "518414810499",
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "6004",
+        "reputation": 0,
+        "rshares": "373909536778",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58550291797",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "1509",
+        "reputation": 0,
+        "rshares": "706760886",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19108459602",
+        "voter": "bitswift"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232022742550",
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383066566",
+        "voter": "maylong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30797503151",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9742132866",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2093729289",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008663268203",
+        "voter": "rok-sivante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347511572",
+        "voter": "flexliv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270356534192",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15304433619",
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19846366327",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30777953044",
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125872217043",
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4528762695",
+        "voter": "johan-nygren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1690826655",
+        "voter": "ryan-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287315486",
+        "voter": "mark-larkento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44173392973",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14289671048",
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6846836651",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1294079780",
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362176333",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "6151465178",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254263935",
+        "voter": "bitnation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "754721997",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244780222",
+        "voter": "thephoebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27539166881",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246676916",
+        "voter": "joseph.kalu"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "664558796",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453318272",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410870140669",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1681166546",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235530178",
+        "voter": "faltmast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3239029241",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534153937",
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "32300376778",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6690604200",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77135933",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2725918423",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664257722",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156369688",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103856286",
+        "voter": "topten"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1378777586",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61911147",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6210793279",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63085782",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23875797716",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24191580911",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "5978",
+        "reputation": 0,
+        "rshares": "9911193534",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7839276917",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2332759687",
+        "voter": "armen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65682844",
+        "voter": "onelove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263567233",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63570195",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58467607",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93554943",
+        "voter": "garylachance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57914427",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57765027",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10160878734",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74494304",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58653788",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248913722",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6131779298",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "254680718",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39033176825",
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "9282619614",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2860417334",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1792679303",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60983768",
+        "voter": "mind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56165231",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1133917012",
+        "voter": "xjwf"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "728510194",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2127687264",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55414210",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55396880",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406673",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387660",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252834593",
+        "voter": "freerubens"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8019514474",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8407219570",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3704083901",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161075603245",
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53853911",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1615332211",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87328717",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11173826867",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6632630585",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57495743",
+        "voter": "fexlom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12089632983",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961187",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82718473",
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77004567",
+        "voter": "chrisaiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5234387113",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "805640399",
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53252658",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17716449982",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646418000",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52560790",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25845450384",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51003200",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51922012",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51994517",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53903585",
+        "voter": "erik93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143296220",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53681027",
+        "voter": "marielynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1415231685",
+        "voter": "bitfilm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52614987",
+        "voter": "dulcio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51484593",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50263480",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197331756",
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53885434",
+        "voter": "thegame"
+      },
+      {
+        "percent": "4500",
+        "reputation": 0,
+        "rshares": "1515493330",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24840348514",
+        "voter": "blacktier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109843313",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76034330",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154501261",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161196892",
+        "voter": "biabremer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160391389",
+        "voter": "mutdmour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160117497",
+        "voter": "eddielbc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155770689",
+        "voter": "chicmagnet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159544932",
+        "voter": "leomaxzi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158262080",
+        "voter": "mielia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156109914",
+        "voter": "spfoia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155872089",
+        "voter": "samkary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153513171",
+        "voter": "thierrya3d"
+      }
+    ],
+    "author": "bitnation",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><strong>Hi Steemizens! </strong>This is my first post on Steemit. I\u2019ll write a proper introduction in a not-too-distant future. I also plan to submit continuous updates on Bitnation, along with broader thoughts on the future of Virtual Nations and City States, Blockchain Applications, Virtual Jurisdictions, Cryptoanarchy, and more. I think Steemit is a wonderful way to empower Open Source Software (OSS) movements. But first, I want to give a yearly update on the STATE OF THE NATION: Bitnation</p>\n<p>/ Susanne Tarkowski Tempelhof, BITNATION Founder and Chief Unicorn</p>\n<p>(Image beneath featuring me and Alexandre Van De Sande in Rio de Janeiro, working on the DBVN protocol)</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/susanneandalex088fc.jpg\" width=\"1368\" height=\"912\"/></p>\n<p><br>\n<strong>Background</strong></p>\n<p><br>\nBITNATION started July 14th, 2014, when I shared <a href=\"https://docs.google.com/document/d/16HDB9AABa5rTOVFJj_8VLdOxgMguovLLAMviaTkZ1q4/edit?userstoinvite=fred.mazo@gmail.com,+btc@mundobitcoin.org&amp;pli=1\">this Google document </a>on Facebook, providing an overview of BITNATION\u2019s plan to build the world\u2019s first Blockchain Powered Virtual Nation. Within a few minutes volunteers from around the world gathered on Facebook and Skype and started discussing and promoting the concept.</p>\n<p><br>\nStarting Bitnation was challenging at first, because the concept was untested, and largely unheard of. Initially, the greatest confusion was around the word <em>governance</em>, because many people associated governance with decision making platforms, like democracy applications and other \u2018organizational governance\u2019 applications, rather than governance <em>services, </em>such as jurisdiction, security, etc. Two years on, the landscape is different. We\u2019ve implemented multiple proofs-of-concept (marriage, land titles, birth certificates, IDs, etc), explained the concept thoroughly in media, at meetups, and conferences, and a handful of others have leveraged the idea, and started implementing their own vision of it. The conceptual progress is tangible, but the greatest obstacle remains: mainstream adoption.</p>\n<p><br>\nWith mainstream adoption in mind, we spent over six month doing market research on what type of applications were used to conduct business in the fastest growing markets - emerging markets - where our services are needed to most, and in what way they were used. The result spoke loud and clear: smartphone chat applications. From WeChat in China, to WhatsApp in Brazil: everyone was on it, for business as well as pleasure. Hence, the road forward became obvious: we had to ditch the previous Pangea code, and start from scratch again, this time building our Blockchain Jurisdiction with a mobile phone chat interface.<br>\nStaying true to our principles, we had strict requirements: the application would need to be end-to-end encrypted, distributed and pseudonymous. After researching and testing several dozens of different codebases, we found Secure Scuttlebutt (SSBC), and its frontend applications, Patchwork and Patchbay. And thus, we begin Year 2: The Year of Pangea</p>\n<p><br>\n<em>Further Reading:</em></p>\n<p><br>\n<a href=\"https://blog.bitnation.co/what-is-bitnation-the-googlement/\">Pre-Foundational Document</a></p>\n<p><a href=\"https://docs.google.com/document/d/16HDB9AABa5rTOVFJj_8VLdOxgMguovLLAMviaTkZ1q4/edit\">Founding Document</a></p>\n<p><a href=\"https://docs.google.com/document/d/1r_VqWrKQw07E06XAtMv_cZnFyBZma4PFTBJpM5GuzbA/edit\">Whitepaper</a></p>\n<p><a href=\"https://github.com/Bit-Nation/BITNATION-Constitution\">Constitution</a></p>\n<p><strong><br>\nThe Year in Review</strong></p>\n<p><br>\n<strong>Highlights of the Past Year:</strong></p>\n<p><br>\n<em><strong>The \u2018Accidental Proof-of-Concept\u2019: Citizens, Embassies, Consulates, Allies and Nations</strong></em></p>\n<p><br>\nWhile we were preoccupied with building the initial Pangea Proof-of-Concept on the Horizon blockchain, what turned out to be the actual Proof-of-Concept, the <a href=\"https://bitnation.co/\">Bitnation website</a>, emerged more or less accidentally. It started with a discussion about the <a href=\"https://bitnation.co/team-directory/\">Team Page</a> while we were renewing our website. I stated that the conventional hierarchical \u2018team page structure\u2019, with executives, employees and so on wasn\u2019t quite philosophically consistent with our decentralized governance movement. Instead, we should adopt a \u2018no-barriers-to-entry model\u2019 like the Swedish Pirate Party initially embraced, enabling anyone who wanted to be part of the Team to simply join and start contributing, without the need for approval from any kind of formal nor informal authority. Said and done, Amin Rafiee implemented it beautifully.</p>\n<p><br>\nHundreds of people signed up as team members in the next few days, and many of them asked: \u201cDoes this mean I\u2019m a Citizen now?\u201d. Rather dumbfounded by the overwhelming request to become a Citizen through signing up on the website, we renamed the page to \u2018Citizen Directory\u2019 instead. And the signups kept on coming\u2026</p>\n<p><br>\nInspired by the instant Citizen signup success, we then added sign up as an Ally, sign up as an Embassy or Consulate, and most recently, sign up your Nation. Then the inevitable question arises: \u201cHow do we know these are real, well intentioned people, rather than spam accounts?\u201d. Someone bumped around the idea of manual vetting and approval, but it was quickly discarded by the community, for being a centralized and non-scalable approach. Instead, we came to consensus to experiment with a basic reputation system, a simplified e-Bay style implementation.</p>\n<p><br>\nAs the website gained more and more traction, a range of services were added, from our <a href=\"https://bitnation.co/notary/\">Public Notary</a>, to <a href=\"https://bitnation.co/education-network-ben/\">Education</a> and <a href=\"https://bitnation.co/citizen-security/\">Security Services</a>. In short, the website became a veritable governance service portal, within just a few months after its public launch in Q3/Q4 2015. At the time of writing, there are approximately 4000 Bitnation Citizens, as well as Embassies, Consulates and Allies spread throughout all continents (with the exception of Antarctica), connecting with the community, and using our governance services.</p>\n<p><br>\nAnd just like that, boom - a centralized and non-encrypted website, far from our puritanical Pangea vision, and devoid of any fancy code to speak of &nbsp;(besides the Blockchain ID and Notary) - became our rather arbitrary Minimum Viable Product (MVP). There it was, and it worked. Our much desired, yet very accidental, proof-of-concept :)</p>\n<p><br>\n<em><strong>Decentralized Borderless Voluntary Nation (DBVN) on Ethereum</strong></em></p>\n<p><br>\nOne year ago I estimated it would take Bitnation approximately five years to reach full decentralization. Luckily, I was proven brutally wrong. Thanks to the Ethereum technology, and Ethereum based applications such as Backfeed, the space has evolved exponentially in a surprisingly short time frame. Regardless of what one might think of the now-infamous The DAO - the initial enthusiasm surrounding its rather spectacular launch indicated a clear market desire for Decentralized Autonomous Organizations (DAO\u2019s), a moment I had been eagerly awaiting since I started to research and write about DAO\u2019s at end of 2013.</p>\n<p><br>\nEarlier this year, in January, I was in communication with Alexandre Van De Sande, a very talented Ethereum designer and frontend developer. We were both in Brazil, Rio de Janeiro at the time, and we decided to get together in person to launch Bitnation\u2019s organizational structure on the Ethereum blockchain, as a customized version of Ethereum\u2019s MIST Wallet DAO code, the DBVN.</p>\n<p><br>\nKey differences between the DAO and the DBVN protocols are inclusion of the constitution on the blockchain, as well as code that attempts to reflect a more holocratic decision making processes, instead of the more commonly adopted democratic process. In my view, democracy is an outdated form of \u2018coercion by the majority\u2019, and from what we\u2019ve been privileged to observe over the last decade, organizations such as The Pirate Party, The Pirate Bay, Anonymous, Linux and, to some extent, even Bitcoin itself, a holocratic model appears to offer greater degree of personal autonomy.</p>\n<p><br>\nAs with most things blockchain, the DBVN code is in an early experimental phase at this time, our concept is significantly more ambitious than its current implementation. Fundamental to our philosophy, the holocratic elements will need significant improvements -- more specifically; the ability to instantly create \u2018holons\u2019 - autonomous and semi-autonomous groups which remains a part of the \u2018Genesis Nation Holon\u2019 infrastructure. This brings us to our second DBVN Code ambition: a full merger into the Pangea protocol.</p>\n<p><br>\nThe aim of Pangea isn\u2019t merely to be an OSS Blockchain Jurisdiction --- beyond its own dispute resolution services, its intent is to enable groups and individuals to create their own Nations and Holons straight onto the Pangea platform, without the need to fork and modify the source code, or have any coding knowledge whatsoever. We\u2019re in the process of designing the Nation and Holon creation functionality through SSBC/ Patchwork/ Patchbay\u2019s public nodes and chat channel infrastructure.<br>\n</p>\n<p>DBVN Ethereum Address: 0x5aaeb6053f3e94c9b9a09f33669435e7ef1beaed</p>\n<p>Watch the Video: https://www.youtube.com/watch?v=x9UR7aVlF1A</p>\n<p>Contribute to the Code:&nbsp;</p>\n<p>https://github.com/Bit-Nation/BITNATION-Constitution/blob/master/DBVN.sol</p>\n<p>https://github.com/Bit-Nation/BITNATION-Constitution/blob/master/profit-share.sol</p>\n<p>Read the first Code Audit, and Patch: https://medium.com/@crypto_nation/report-recursive-call-vulnerability-in-dbvn-sol-471d99e30659#.skrvxtg4i</p>\n<p><br>\nAdditionally, to foster increased innovation in the \u2018Virtual Nation Building\u2019 space, we have set up a hub for aspiring Nation Founders, where we can connect to, support and learn from each other. There\u2019s also Virtual Nation building resources, including OS Constitutions, Codes of Laws, DBVN setup instructions, and more. We hope this initiative will help other Virtual Nations to blossom, to create an amplifying effect on social and technological development speed in our shared space -- our shared ambition.</p>\n<p><br>\nDuring the DBVN process, we also recreated the Bitnation dividend paying cryptoequity token, XBN, on the Ethereum blockchain, to replace the XBNX tokens previously created on the CounterParty protocol. We have not yet released XBN on the market, because we\u2019re in the process of burning the previous XBNX CounterParty tokens, and enabling an XBNX to XBN Swapbot for the tokens that are currently in circulation. (If you have experience in the token burning and automated swapping field and want to contribute, please reach out to us)<br>\nFor decentralized fund allocation amongst the contributor community, we\u2019re working with Backfeed, a Slack chat plugin built on the Ethereum technology. Backfeed enables the contributor community (whether they\u2019re developers, administrators, marketing people, or others) to create projects, submit contributions, and get paid instantly for it, without the need for any type of top-down approval. Amongst all the \u2018organizational governance\u2019 applications we\u2019ve tested, from Colony to Boardroom and SwarmBot -- Backfeed is by far the most suitable to Bitnation\u2019s open and rapidly evolving community nature.<br>\n</p>\n<p>We\u2019re currently using many centralized platforms for our own organizational management, from Slack to Trello, Taiga to Google Drive, etc. However, I believe we\u2019ll be able to replace those applications -- eliminating the most significant centralized points of failure in the near future -- between the implementation of Pangea and Backfeed, and other technologies, like IPFS, Swarm etc. All these technologies exists, but they\u2019re generally in early Alpha or Beta, and many of them lack a non-developer friendly frontend, making its usage rather non-intuitive, as for now.</p>\n<p><br>\nFor our public communication needs, overtime we plan to shift our efforts from traditional platforms like Facebook and Twitter, to emerging blockchain based platforms, such as Steemit and Synero.</p>\n<p><strong><br>\n</strong><em><strong>In the Spotlight: BITNATION Refugee Crisis Emergency Response (BRER) and Public Notary Partnership with Estonia\u2019s e-Residency Program</strong></em></p>\n<p><br>\nSecond of September 2015 the photo of Alan Kurdi, the 3 year old Syrian boy in a bright red shirt, lying dead on a beach in Greece, shook the world, and the Bitnation community -- many of whom are open borders advocate, digital nomads, migrants, and more often than not, consider ourselves \u2018World Citizens\u2019 first and foremost. As Alan\u2019s photo made it around the world media, I was already living with stateless refugees in Turin, northern Italy, trying to assist them with their asylum processes, simply because they were my former employees from years back, during the time I worked in warzones, and I felt it was my duty to try help them to the best of my ability, just like they had always helped me when I was in their environment.</p>\n<p><br>\nOne of the magical aspects of Open Source Communities and Movements, is their ability to instantly gather and rally around a cause, as we\u2019ve seen movements like the Pirate Party and Anonymous do - and that was precisely what happened. Instantly, hundreds of activists gathered on our Slack chat, and in less than a week we had built a website for refugees, including a free Blockchain ID, Bitcoin Debit Cards, maps and forums. Later on, we updated the ID to the more sophisticated WORLD CITIZEN ID, which is also free.</p>\n<p><br>\nOne thing led to another, and while we were speaking to various UN agencies and NGO\u2019s to get the IDs accepted as temporary ID documents for paperless people, we were approached by the Government of Estonia. Most of the Bitnation community are dedicated anarchists who are not generally keen on working with governments, but in our enthusiasm to help refugees to cross borders, we realized we needed more recognition for our Nation from legacy entities, and Estonia\u2019s e-Residency program is famous for having an open mindset when it comes to \u2018global citizenship\u2019: hence we entered into a partnership with them to build a Blockchain Notary, and thus we became the first Virtual Nation in the world to be recognized by a Nation State. To put it in e-Estonia\u2019s own words:</p>\n<p><br>\n<em>\"In Estonia we believe that people should be able to freely choose their digital/public services best fit to them, regardless of the geographical area where they were arbitrarily born. We're truly living in exciting times when nation states and virtual nations compete and collaborate with each other on an international market, to provide better governance services.\"</em> - Kaspar Korjus, Estonia\u2019s e-Residency Director<br>\n</p>\n<p>And thus, the Public Notary was built a few weeks later, including login and digital signatures, and has since been used for everything from Marriages to Wills, to Birth Certificates, to Business Deals, Employment Contracts, and Lending Contracts, and the list goes on...</p>\n<p><br>\n<em><strong>3rd Party Applications and Services - Basicincome.co, Dragonfly and Exosphere</strong></em></p>\n<p><br>\nCore to the governance service proposition, is the aggregation of services, which includes selection and vetting of vendors and bulk price negotiations. To that end, we have identified and partnered with a few cutting edge organizations for peer-to-peer insurance, security, and education. We aim to increase the number of partnerships in the year ahead.</p>\n<p><br>\nThe Exosphere bootcamp program is on its second round, offering Bitnation citizens a 1000 Euro discount. Special thanks to Moritz Bierling from Exosphere for organizing it. You can read about the first round here. The first insurance component to be enabled is Johan Nygren\u2019s Basic Income protocol, based on voluntary participation, similar to that of a mutual insurance. Johan has worked on the protocol for several years, and has lately been developing it on Ethereum. We\u2019re preparing to run the first tests of a simplified version of the protocol within the Bitnation core contributors group.</p>\n<p><br>\n<strong>Challenges and Lessons Learned:</strong></p>\n<p><br>\n<em><strong>Technical Challenges I - Blockchains and Smart Contracts</strong></em></p>\n<p><em><strong><br>\n</strong></em>The foundational document for Bitnation stated our intention was to build on Ethereum, because of its near Turing completeness enabling Smart Contract functionalities. Ethereum at the time, however, was far from being released, and the community felt the urge to produce a proof-of-concept to get real world testing and usage of our idea. In retrospect, it might have been better to build on the Ethereum testnet right away, rather than using other blockchains. But social and financial pressure pushed us to choose the most suitable alternative out there at the time: the NXT/ Horizon technology, and make the best out of it until Ethereum became functional. We\u2019ve now switched over to Ethereum development, as originally planned.<br>\n</p>\n<p>However, Ethereum isn\u2019t a \u2018silver bullet\u2019 either - suffering from internal governance issues, security vulnerabilities inherent to Turing capabilities, and an immature infrastructure in terms of exchanges, wallets, etc. Hence, Ethereum is also a bit of a \u2018wild bet\u2019, albeit a very promising one - due to its original ideas, stellar implementation, and a large, vibrant community backing it.<br>\n</p>\n<p>Rootstock - a Bitcoin blockchain based smart contract platform - which will likely be publicly released this year and, from what I\u2019ve read, they\u2019ve pledged to use the same Smart Contract language as Ethereum - Solidity - to increase cross-platform portability. Ultimately, we would like to give people the choice of what blockchain to use for their agreements as easily as they can choose their code of law and arbitration method on Pangea. That\u2019s of course an optimistic ambition at this time, but if the crypto community stays as innovative and active as it currently is, I do dare to believe that some sort of bridge functionality we can incorporate into Pangea will emerge in the next year ahead.</p>\n<p><br>\nAnother platform we\u2019re keeping tabs on is Tauchain. Tauchain claims, among other features, to solve some of the security issues around smart contracts, through <em>not </em>being Turing complete. We\u2019re looking forward to see how it will pan out, once it\u2019s been released and tested on the market.</p>\n<p><strong><br>\n</strong><em><strong>Technical Challenges II - User Behavior (Chat versus Social Networking)</strong></em></p>\n<p><br>\nSocial networking platforms, such as Facebook and LinkedIn, has been the dominant social media arena over the last decade. Thus, it\u2019s intuitive to attempt to replicate that format. But the numbers don\u2019t match up -- in the fastest growing markets, the emerging markets around the world where our services are most needed, the so called \u2018next eleven\u2019, Facebook comes across as rather \u2018yesterday\u2019. Albeit a +1 billion person adoption, more and more people are switching over to chat applications to conduct their day-to-day bussines (special thanks to Gene Vangryeb from Tradle.io for his insightful thoughts on this). The change is largely due to the choice of smartphone rather than laptop as the go-to-device, and it turns out chat is more intuitive as a way to communicate on a smartphone, rather than a \u2018publishing platforms\u2019 such as social networks. Using social network platform as an inspiration was a significant mistake, indeed, our one most significant mistake. All transactions starts with a <em>conversation</em>. Whether getting married, or trading a real estate asset, it\u2019s all based on a dialogue between mutually consenting parties. More and more of these conversations take place online, as business as well as personal relationships increasingly move into the digital sphere.</p>\n<p><br>\nChatting with a blockchain as a backend infrastructure is incredibly expensive -- imagine paying miners\u2019 fees for every chat message you send. Sure, there are ways around it, like using a blockchain testnet instead of the live blockchain, and other fixes, but those are all rather clunky \u2018solutions\u2019. Hence, we decided to swallow our pride, ditch the code, and start from scratch again. This time around with a decentralized communications protocol as the source code (SSBC/ Patchbay) and integrate the blockchain functionalities (timestamping and smart contracts, more specifically) \u2018on top of it\u2019 instead, hence not being dependent on any one blockchain.</p>\n<p><strong><br>\n</strong><em><strong>Lack of Documentation</strong></em></p>\n<p><br>\nOne of our most fatal mistakes, in the first iteration of the Pangea software a year ago, was the lack of documentation. When we initially created Pangea, we were eager to produce a proof-of-concept, to make our idea more tangible to the community and early adopters. In the speed and enthusiasm that unfolded in the early stage of development, the documentation suffered. As much as we produced code, there was nearly zero documentation to support it. In an Open Source Software (OSS) environment, dependent on volunteers coming and going, on their own initiative, throughout different time zones, languages and cultures, it\u2019s key to be able to provide a direct, comprehensible and actionable overview of the software being built, so community members can instantly understand what needs to be done, and where their skills fit into the picture. However, we failed to do so. Hence, we became dependent on a few contributors, rather than the community at large, indeed a risky place to be in. Many volunteers wanted to contribute to Pangea, but there was no documentation to instruct them how to take it forward. In other words, the code was a jungle.</p>\n<p><br>\nIt was a hard lesson to learn, but I\u2019m happy we learned it early on in the process, and can change our \u2018modus operandi\u2019 for this Pangea iteration. We\u2019ll now put documentation at the highest priority, even if it means delivery speed might suffer as a consequence at times.</p>\n<p><strong><br>\n</strong><strong>Objectives For The Year Ahead:</strong></p>\n<p><br>\n<em><strong>Bitnation Pangea Development</strong></em></p>\n<p><em><strong><br>\n</strong></em><strong>Why Build A Jurisdiction?</strong></p>\n<p><br>\nA nation is a broad definition, covering several aspects, from its original term of \u2018people with shared culture and values coming together with some sense of political autonomy\u2019 - as per the Wikipedia definition - to our modern definition of governance service providers, and governance service aggregators.</p>\n<p><br>\nToday we expect governments to provide us with nearly everything - from education to energy infrastructure, food regulations to social security - and the list seems to grow by the day. However, if we break the government down to its essential functions, according to the \u2018Nightwatchman State model\u2019 as championed by Robert Nozick - the government's core purpose only really comes down to the protection of property - i.e. the provision of security and jurisdiction. Note: property is a broad term, not solely referring to property as in land, items, etc. Property starts with ownership of yourself, your body, your time, your aspirations, etc.</p>\n<p><br>\nIn the digital age, security and jurisdiction are increasingly becoming the same thing, as more of our assets (money, asset records, work etc) become digital. Furthermore, the extremely rapid development of Smart Contract technology opens new horizons in terms of creating online agreements with a range of built in automated functions (fund and token distribution, escrow, insurance, timestamping, decision making levels, etc). Hence, it makes sense for Bitnation to focus on building a Blockchain Jurisdiction as its core functionality.<br>\nWithin the smart contract functionality, sophisticated governance applications can already be built directly by end-users, such as mutual insurances, constitutions, etc.</p>\n<p><br>\nImagine solving a dispute by sending a heart <3 emoticon. An emoticon that calls upon Ethereum Smart Contract functionality - including an embedded escrow account - according to the code of law and the arbitration method that you have chosen for yourselves - and all of it in less than two minutes, from the comfort of your own phone. Our aim with the Pangea platform is to empower people to make sophisticated legal agreements simply through the use of emoticons in a smartphone chat interface. The frontend will be built using React.JS, as originally planned, because it\u2019s better suited for mobile first applications.</p>\n<p><br>\n<strong>Initial Technical Overview</strong></p>\n<p><br>\nThe codebase we\u2019re using is Secure Scuttelbutt (SSBC), a distributed and end-to-end encrypted messaging protocol, and its frontend application Patchbay. It\u2019s more decentralized than other chat applications currently on the market, including Signal.</p>\n<p><br>\nDecentralized storage will be done through integrating IPFS as well as Swarm (the Ethereum powered storage application) on the frontend layer. Initially our plan is to integrate functions calling on the Ethereum chain for smart contract creation and execution, but we hope we\u2019ll be able to use Rootstock and other protocols in the future, in addition to Ethereum. The platform however is <em>not</em> blockchain based.</p>\n<p><br>\nThe pseudo-anonymous ID/ Verification/ Reputation functions will be built from the ground up, on the advice of Dominic Tarr, the SSBC inventor, although we\u2019ll use some of the digital signature features developed for Bitnation\u2019s World Citizenship ID by Johan Paulsson, Andrew Golighty, Mawo, SGShankar and others. Additionally, we\u2019re drawing inspiration from the identi.fi philosophy, developed by Marrti Malmi.<br>\n</p>\n<p><strong>Participants, Messages &amp; Channels</strong><br>\n</p>\n<p>Pseudo-anonymous identities provide the critical separation between a citizen\u2019s thoughts and actions and the potential for coercion of their physical bodies in order to restrict or control those thoughts and actions. Pseudo-anonymous identities are thus, by design, a declaration of independence from centralised governance models. For them to have meaning they must have three elements. Firstly, and obviously, the protocol that enables pseudo-anonymous identities to to be created, secondly the process for verifying an identity (which can range from social network verification to uploading a copy of a utility bill, for instance), and lastly, and most importantly, the reputation system, which is built over time and represents the judgement of each citizen\u2019s community of their willingness and ability to honour and arbitrate contracts.</p>\n<p><br>\nFor internal management, BITNATION uses a holacratic governance model. The underlying principle is that all BITNATION citizens are free to create their own holons, and ultimately their own Nations, without any barrier to entry or need for technical knowledge. SSBC provides the means for BITNATION adherents to create their own holons and Nations without any requirement for centralised approval. &nbsp;&nbsp;&nbsp;</p>\n<p><br>\n<strong>Contracts, Contract Arbitration Models, Contract Enforcement Models and Incentives Models</strong><br>\n</p>\n<p>Sovereignty starts with the ability of individuals to make consensual agreements with others. We consent to give our sovereignty to Nation States by believing their rhetoric: that only Nation States can uphold those agreements. But what if we could make and enforce contracts without third party intermediaries who choose to use that power to enforce their methods upon us? Just as citizens can choose their own code of law, they must also be able to choose their own preferred method of arbitration. These can range from choosing a trusted arbitrator to mediate contract disputes to utilising a crowd jury to make final judgements. A voluntary contract must also mean that citizens can choose from a range of enforcement methods. These could include reputation, escrow or physical enforcement (peer-to-peer security). We anticipate that the most widely used form of contract enforcement will be the reputation system. &nbsp;</p>\n<p><br>\nWe believe that financial incentives hold promise for the future. To that end we are exploring a range of financially incentivised models for dispute resolution where participants get rewarded for honouring contracts, building their reputation, and providing arbitration services. However, there will be no \u2018dispute resolution\u2019 token anytime soon, although we\u2019re monitoring current token platform incentive models for potential future usage.<br>\n</p>\n<p><em><strong>Potential Synergies</strong></em></p>\n<p><br>\nIn light of the release of Ethereum, and the subsequent growing Smart Contract field, many initiative centered around peer-to-peer law, security and jurisdiction services are being experimented with. I would like to take the opportunity to mention a few of the most interesting ones in our field, whom I hope, moving forward, we\u2019ll be able to learn from, and potentially collaborate with.</p>\n<p><br>\nBitrated: Bitrated was the first well known attempt to implement Bitcoin based dispute resolution. They created a user-friendly, intuitive proof-of-concept, including basic escrow and reputation features. We\u2019ve always been impressed and inspired by Bitrated, and hope we can collaborate in the future.</p>\n<p><br>\nDecentralized Arbitration and Mediation Network (DAMN): DAMN is an Ethereum based dispute resolution protocol proposed by the well known Bitcoin expert Andreas Antonopoulos and the Attorney Pamela Morgan. The aim of DAMN differs from Bitnation, in the sense they aim to create a legal platform compatible with existing Nation State Jurisdictions, rather than creating an independent blockchain Jurisdiction. However, we\u2019re positive we can gain valuable insights from their work, and we will follow their progress closely.</p>\n<p><br>\nULEX: ULEX is an attempt by Chapman University Professor Tom W. Bell to code a simplified and modulable code of law, based on Common Law. While Bitnation firmly believes in Polycentric Legal Models, i.e. multiple competing codes of law, we recognize this particular code of law holds a lot of promise, and will work to integrate it as soon as there\u2019s a working version of it.&nbsp;</p>\n<p><br>\nReputation Systems: I would like to give a shout out to Steemit and Synereo for their work on token based reputation systems, which we\u2019ll study in depth for potential future usage, as well as identi.fi, a non-blockchain based reputation system, which we draw most of our ID/Rep inspiration from, specifically in terms of \u2018good anti-social behaviour strategy\u2019 in the context of whitelisting versus blacklisting methodology.</p>\n<p><br>\nThank you for the interesting technologies and the community contribution you\u2019re doing with your work.</p>\n<p><br>\n<strong>Join The Governance Decentralization Movement</strong><br>\n</p>\n<p><a href=\"slack.bitnation.co\">Slack</a></p>\n<p><a href=\"https://github.com/Bit-Nation\">GitHub</a></p>\n<p><a href=\"https://bitnation.co/\">Website</a></p>\n<p><a href=\"https://twitter.com/MyBitNation\">Twitter</a></p>\n<p><a href=\"https://www.facebook.com/MyBitnation/\">Facebook</a></p>\n<p><br>\n\"<em><strong>I am the seasoned traveler</strong></em></p>\n<p><em><strong>Of the Labyrinth.</strong></em></p>\n<p><em><strong>The genius of alacrity,</strong></em></p>\n<p><em><strong>Wizard of the impossible.</strong></em></p>\n<p><em><strong>My brilliance is yet unmatched</strong></em></p>\n<p><em><strong>In its originality.</strong></em></p>\n<p><em><strong>My heart\u2019s filled with potent magic</strong></em></p>\n<p><em><strong>That could cast a hundred spells.</strong></em></p>\n<p><em><strong>I am put together</strong></em></p>\n<p><em><strong>For mine own pleasure</strong></em></p>\n<p><em><strong>I am the Monkey\"</strong></em></p>\n<p><br>\nChinese poem on The Year of the Monkey - 2016<br>\n</p>\n</html>",
+    "body_length": 32391,
+    "cashout_time": "2016-10-13T10:32:09",
+    "category": "introduce-yourself",
+    "children": 29,
+    "created": "2016-09-12T07:21:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduce-yourself\",\"introduceyourself\",\"blockchain\",\"bitnation\",\"anarchy\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/11\\/susanneandalex088fc.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/x9UR7aVlF1A\\/0.jpg\"],\"links\":[\"https:\\/\\/docs.google.com\\/document\\/d\\/16HDB9AABa5rTOVFJj_8VLdOxgMguovLLAMviaTkZ1q4\\/edit?userstoinvite=fred.mazo@gmail.com,+btc@mundobitcoin.org&pli=1\",\"https:\\/\\/blog.bitnation.co\\/what-is-bitnation-the-googlement\\/\",\"https:\\/\\/docs.google.com\\/document\\/d\\/16HDB9AABa5rTOVFJj_8VLdOxgMguovLLAMviaTkZ1q4\\/edit\",\"https:\\/\\/docs.google.com\\/document\\/d\\/1r_VqWrKQw07E06XAtMv_cZnFyBZma4PFTBJpM5GuzbA\\/edit\",\"https:\\/\\/github.com\\/Bit-Nation\\/BITNATION-Constitution\",\"https:\\/\\/bitnation.co\\/\",\"https:\\/\\/bitnation.co\\/team-directory\\/\",\"https:\\/\\/bitnation.co\\/notary\\/\",\"https:\\/\\/bitnation.co\\/education-network-ben\\/\",\"https:\\/\\/bitnation.co\\/citizen-security\\/\",\"https:\\/\\/www.youtube.com\\/watch?v=x9UR7aVlF1A\",\"https:\\/\\/github.com\\/Bit-Nation\\/BITNATION-Constitution\\/blob\\/master\\/DBVN.sol\",\"https:\\/\\/github.com\\/Bit-Nation\\/BITNATION-Constitution\\/blob\\/master\\/profit-share.sol\",\"https:\\/\\/medium.com\\/@crypto_nation\\/report-recursive-call-vulnerability-in-dbvn-sol-471d99e30659#.skrvxtg4i\",\"slack.bitnation.co\",\"https:\\/\\/github.com\\/Bit-Nation\",\"https:\\/\\/twitter.com\\/MyBitNation\",\"https:\\/\\/www.facebook.com\\/MyBitnation\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T07:41:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 76342791473468,
+    "parent_author": "",
+    "parent_permlink": "introduce-yourself",
+    "pending_payout_value": "431.620 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "bitnation-yearly-summary-the-year-of-pangea-by-tarkowski-tempelhof",
+    "post_id": 928591,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "BITNATION  Yearly Summary - The Year Of Pangea - By Tarkowski Tempelhof",
+    "title": "BITNATION  Yearly Summary - The Year Of Pangea - By Tarkowski Tempelhof",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduce-yourself/@bitnation/bitnation-yearly-summary-the-year-of-pangea-by-tarkowski-tempelhof"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5321925318916",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2429032704",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7772229736",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33069335139",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148037431197",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8506200796",
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602713487",
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177054757",
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2158830848",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61529762717",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261811243723",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9809062257",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180705905",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6149920815",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18576486531",
+        "voter": "steemokto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2035306454",
+        "voter": "ansharphoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197268166",
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595968715",
+        "voter": "runrudy"
+      }
+    ],
+    "author": "ansharphoto",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "The Mausoleum of Hadrian, now known as Castel Sant'Angelo, housed the remains of the Roman Emperor Hadrian and his family. Unfortunately, when the castle was converted into a fort, the remains were scattered and building looted. We can only imagine the splendor of the decor and visiting the remains of the emperor.\n\n<a href=\"http://www.ansharphoto.com/Galleries/Cities/Italy/Rome/i-Wr4sGgX/A\"><img src=\"http://images.ansharphoto.com/2016/011-Ponte-Sant-Angelo-and-Castel-Sant-Angelo-in-the-Morning-Rome-Italy.jpg\" alt=\"Ponte Sant'Angelo and Castel Sant'Angelo in the Morning, Rome, Italy\" height=\"650\" width=\"976\" /></a>\nOctober 2013, single image, additional exposures for highlights, focal length 16mm, aperture f/11, shutter speed 131 seconds, ISO 100, ND 10-stop filter, tripod.\n\n<a href=\"http://www.ansharphoto.com/Galleries/Cities/Italy/Rome/i-Wr4sGgX/buy\">You can buy this photo as Fine Art Print >></a>\n\n<br>\nAs the plague rolled in during the dark ages, it is said Archangel Michael appeared atop the mausoleum sheathing his sword. Many saw this as a sign of the end of the plague of 590 AD. The rumor was prevalent enough for the powers at be to rename the Castel Sant\u2019Angelo. Other rumors propose the supposed angel was actually a statue as recorded by a traveler 1000 years later. Miracle or art, we\u2019ll never know. \n\nI spotted no angels on this shoot, but the morning and sunrise light were still good after my initials shots of the Saint Peter\u2019s Cathedral and Ponte Sant'Angelo. In a way, good light always seems like a miracle to a photographer! \n\nIt was starting to get bright out, but for some reason the lanterns and other artificial lights were still glowing. The lanterns offered some extra light to play with in my photo. Achieving long exposure in such a bright scene required me to put on my 10-stop neutral density filter. \n\nTo setup the scene I took the classic view from the embankment capturing the Castel Sant\u2019Angelo and Ponte Sant\u2019Angelo reflecting in the Tiber water. The wind did me a favor by pointing the cloud strikes to the castle creating a natural visual trail towards the main subject of this photo. All in all I was pleased with the results.\n\nThe post <a href=\"http://blog.ansharphoto.com/city-skyline/castel-santangelo-in-the-morning-rome/\">Castel Sant'Angelo in the Morning, Rome</a> appeared first in <a href=\"http://blog.ansharphoto.com/\">Anshar Photography Blog</a>.",
+    "body_length": 2410,
+    "cashout_time": "2016-10-14T17:40:06",
+    "category": "photography",
+    "children": 10,
+    "created": "2016-09-13T17:04:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"photo\",\"rome\",\"italy\"],\"image\":[\"http:\\/\\/images.ansharphoto.com\\/2016\\/011-Ponte-Sant-Angelo-and-Castel-Sant-Angelo-in-the-Morning-Rome-Italy.jpg\"],\"links\":[\"http:\\/\\/www.ansharphoto.com\\/Galleries\\/Cities\\/Italy\\/Rome\\/i-Wr4sGgX\\/A\",\"http:\\/\\/www.ansharphoto.com\\/Galleries\\/Cities\\/Italy\\/Rome\\/i-Wr4sGgX\\/buy\",\"http:\\/\\/blog.ansharphoto.com\\/city-skyline\\/castel-santangelo-in-the-morning-rome\\/\",\"http:\\/\\/blog.ansharphoto.com\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T17:00:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5885563872863,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "3.349 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "castel-sant-angelo-in-the-morning-rome",
+    "post_id": 941752,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Castel Sant'Angelo in the Morning, Rome",
+    "title": "Castel Sant'Angelo in the Morning, Rome",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@ansharphoto/castel-sant-angelo-in-the-morning-rome"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2335990917918",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4264215792115",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10777629083",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6712868855",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23970864155",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14164235921",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38479039013",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13783455248",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177791083963",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "465513298",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5464087765",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331008530659",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2951245559",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17777200295",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1109713884",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68329371870",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432427644",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469325828422",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363542460",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846603976",
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1323026542",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13619273328",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18411265425",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15102847791",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2691645867",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142606995374",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5889434360",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103271810744",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260302539827",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64267665611",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39447062051",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5556551220",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4258125630",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7190007754",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14954239965",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24743482353",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "366123878",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457985309",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10470017520",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12378481918",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1571820491",
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27485108289",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4563435793",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13507060611",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3747252228",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6133757988",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342458473",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8520078935",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11606099970",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254384994",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48586986232",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17157175949",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9184521617",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3552764483",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1686295563",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11598806594",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "429170927",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12855009836",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424647344",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181096282653",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12138251953",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28970926104",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12620381834",
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3297538199",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3376048529",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32295603566",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78638342533",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182394452705",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7816975456",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16392175633",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32490015482",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7733219398",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15696518203",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594272148",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "513627172",
+        "voter": "raphma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2523272811",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3052689593",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256865702",
+        "voter": "nat4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115507974",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120051981",
+        "voter": "cameron-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6664855932",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112980211",
+        "voter": "lawofattraction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87419990843",
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7847342189",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55748892682",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37985633549",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15226077019",
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1333225214",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322647983",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95518493",
+        "voter": "perduta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230299622",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982813675",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114992597",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55933129",
+        "voter": "gtrman58"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62391219",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61897843",
+        "voter": "geny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552679855",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1010019521",
+        "voter": "shinji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7026840204",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71551855",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1684251896",
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60661014",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58816907",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58064982",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56690841",
+        "voter": "steemhost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12977696308",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1018201237",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71292382077",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394178677",
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1916496604",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9090633934",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11143719415",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1678815917",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15543870326",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5737929384",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54632424",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2704806523",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54012814",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53990613",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103730281",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53764342",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106768414",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311658429",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50377764",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50196187",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59702540",
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594797908",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1543923067",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51877853",
+        "voter": "chrisdunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5340740672",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4866079102",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232427281",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78281569",
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1567288100",
+        "voter": "strong-ai"
+      }
+    ],
+    "author": "blueorgy",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "It's Simple... Promote This Post To Get Your Post Listed On This Post! \n***Promoted Content Experiment***\nSince the cost of getting your content to the top of the promoted tab is already growing up and beyond **$100 STEEM DOLLARS**... I thought it might be cool to create a new type of post, a post that would promote multiple users content while sharing the promotion costs.\n\nhttps://www.steemimg.com/images/2016/09/01/lets-Get-Promoted55ad7.png\n\n**HOW TO** \n- Starting at $1 STEEM DOLLAR - Simply Promote This Post. (Once Per User)\n- I will post the link you provide via a comment below\n- Posts will be listed from highest paid contributor and down\n- I will cut the list off at some point... depending on popularity.\n- Give me 10-15 Minutes to place your link on the list. \nPM me: @blueorgy on http://Steemit.Chat if you need help.\n\n<hr>\n\n<h1>THE LIST</h1>\n\nSD | User | Post\n--- | --- | ---\n$6 | @mikemacintire | <a href='https://steemit.com/introduceyourself/@mikemacintire/hi-steemit-i-m-mike-macintire-former-poker-pro-turned-photographer-and-i-m-on-a-mission-to-make-steemit-more-beautiful-drone'>Hi steemit! I'm Mike Macintire, former poker pro turned photographer, and I'm on a mission to make steemit more beautiful! Drone verification video included!</a>\n$5 | @blueorgy | <a href='https://steemit.com/aviewaday/@blueorgy/a-view-a-day-killian-court-mit-campus-cambridge-ma-usa'>A View A Day - Killian Court, MIT Campus, Cambridge MA USA</a> \n$5 | @cmtzco | <a href='https://steemit.com/blog/@cmtzco/ico-or-iro'>ICO or IRO</a>\n$5 | @cmtzco | <a href='https://steemit.com/steemit/@cmtzco/facebook-promotion-group'>Facebook Promotion Group</a>\n$4 | @shaka | <a href='https://steemit.com/photography/@shaka/the-breitachklamm-perpetual-stone-saw-at-work'>The Breitachklamm - Perpetual stone saw at work</a>\n$3.25 | @herpetologyguy | <a href='https://steemit.com/science/@herpetologyguy/this-is-not-a-prison-why-zoos-are-hugely-beneficial-for-animals'>This is Not a Prison: Why Zoos are Hugely Beneficial for Animals</a>\n$3 | @prufarchy | <a href='https://steemit.com/poetry/@prufarchy/although-original'>Although (Original)<a/> \n$3 | @knozaki2015 | <a href='https://steemit.com/banking/@knozaki2015/spotted-cardlab-one-card-to-rule-them-all'>SPOTTED: CARD_LAB (One card to rule them all)</a>\n$3 | @razvanelulmarin | <a href='https://steemit.com/tag/@razvanelulmarin/note-to-self-don-t'>Note to self: DON'T do this.</a>\n$2.40 | @the-future | <a href='https://steemit.com/lies/@the-future/the-best-sellers-on-the-planet-the-side-effects-killing-us-in-long-term-part-ii'>The best sellers on the planet - The side effects -(killing us in long term)! - Part II</a>\n$2.05 | @scaredycatguide | <a href='https://steemit.com/life/@scaredycatguide/real-talk-vol-3-how-prescription-pills-led-to-a-heroine-epidemic-in-america'>REAL TALK - Vol 3. - How Prescription Pills Led To A Heroine Epidemic In America</a>\n$2 | @heretickitten  | <a href='https://steemit.com/anarchy/@heretickitten/we-didn-t-like-our-money-so-we-invented-bitcoin-we-didn-t-like-our-markets-so-we-made-a-new-one-and-i-don-t-like-our-internet'>A New Internet</a> \n$1 | @steemhost | <a href='https://steemit.com/steemit/@steemhost/announcing-steemhost-com-if-you-love-steemit-we-love-you'>[ANNOUNCING: SteemHost.com] - If You Love Steemit, We Love You!</a> \n$1 | @steemswede | <a href='https://steemit.com/anarchy/@steemswede/freedom-how-is-regulations-killing-small-businesses'>[FREEDOM] How Regulation Kills - A Swedish Example</a>\n$1 | @bkkshadow | <a href='https://steemit.com/travel/@bkkshadow/some-photos-i-took-walking-around-brisbane'>Some photos I took walking around Brisbane...</a>\n$1 | @cryptos  | <a href='https://steemit.com/steemit/@cryptos/looking-for-more-test-subjects-no-i-m-still-not-kidding'>Looking for More Test Subjects... No, I'm Still Not Kidding</a>\n$1 | @streetstyle | <a href='https://steemit.com/steemit/@streetstyle/sunday-project-part-4-putting-some-skin-on-it-teem-work-does-it thanks full $teem ahead!'>Sunday Project - PART 4 - Putting Some Skin On It - TEEM WORK DOES IT!!</a>\n$1 | @streetstyle |<a href='https://steemit.com/story/@streetstyle/whale-vomit-and-why-would-i-want-it-you-would-if-you-could'>WHALE VOMIT & WHY WOULD I WANT IT?? -- [You Would If You Could!!]</a>",
+    "body_length": 4270,
+    "cashout_time": "2016-10-02T20:43:54",
+    "category": "promoted",
+    "children": 45,
+    "created": "2016-09-01T19:28:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"promoted\",\"steemit\"],\"users\":[\"blueorgy\",\"mikemacintire\",\"cmtzco\",\"shaka\",\"herpetologyguy\",\"prufarchy\",\"knozaki2015\",\"razvanelulmarin\",\"the-future\",\"scaredycatguide\",\"heretickitten\",\"steemhost\",\"steemswede\",\"bkkshadow\",\"cryptos\",\"streetstyle\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/lets-Get-Promoted55ad7.png\"],\"links\":[\"http:\\/\\/Steemit.Chat\",\"https:\\/\\/steemit.com\\/introduceyourself\\/@mikemacintire\\/hi-steemit-i-m-mike-macintire-former-poker-pro-turned-photographer-and-i-m-on-a-mission-to-make-steemit-more-beautiful-drone\",\"https:\\/\\/steemit.com\\/aviewaday\\/@blueorgy\\/a-view-a-day-killian-court-mit-campus-cambridge-ma-usa\",\"https:\\/\\/steemit.com\\/blog\\/@cmtzco\\/ico-or-iro\",\"https:\\/\\/steemit.com\\/steemit\\/@cmtzco\\/facebook-promotion-group\",\"https:\\/\\/steemit.com\\/photography\\/@shaka\\/the-breitachklamm-perpetual-stone-saw-at-work\",\"https:\\/\\/steemit.com\\/science\\/@herpetologyguy\\/this-is-not-a-prison-why-zoos-are-hugely-beneficial-for-animals\",\"https:\\/\\/steemit.com\\/poetry\\/@prufarchy\\/although-original\",\"https:\\/\\/steemit.com\\/banking\\/@knozaki2015\\/spotted-cardlab-one-card-to-rule-them-all\",\"https:\\/\\/steemit.com\\/tag\\/@razvanelulmarin\\/note-to-self-don-t\",\"https:\\/\\/steemit.com\\/lies\\/@the-future\\/the-best-sellers-on-the-planet-the-side-effects-killing-us-in-long-term-part-ii\",\"https:\\/\\/steemit.com\\/life\\/@scaredycatguide\\/real-talk-vol-3-how-prescription-pills-led-to-a-heroine-epidemic-in-america\",\"https:\\/\\/steemit.com\\/anarchy\\/@heretickitten\\/we-didn-t-like-our-money-so-we-invented-bitcoin-we-didn-t-like-our-markets-so-we-made-a-new-one-and-i-don-t-like-our-internet\",\"https:\\/\\/steemit.com\\/steemit\\/@steemhost\\/announcing-steemhost-com-if-you-love-steemit-we-love-you\",\"https:\\/\\/steemit.com\\/anarchy\\/@steemswede\\/freedom-how-is-regulations-killing-small-businesses\",\"https:\\/\\/steemit.com\\/travel\\/@bkkshadow\\/some-photos-i-took-walking-around-brisbane\",\"https:\\/\\/steemit.com\\/steemit\\/@cryptos\\/looking-for-more-test-subjects-no-i-m-still-not-kidding\",\"https:\\/\\/steemit.com\\/steemit\\/@streetstyle\\/sunday-project-part-4-putting-some-skin-on-it-teem-work-does-it thanks full $teem ahead!\",\"https:\\/\\/steemit.com\\/story\\/@streetstyle\\/whale-vomit-and-why-would-i-want-it-you-would-if-you-could\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T16:16:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9715289706809,
+    "parent_author": "",
+    "parent_permlink": "promoted",
+    "pending_payout_value": "12.938 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "let-s-get-promoted-a-must-see-collection-of-awesome-posts",
+    "post_id": 827044,
+    "promoted": "49.697 HBD",
+    "replies": [],
+    "root_title": "\u2705 Let's Get Promoted! - A Must See Collection Of Awesome Posts!",
+    "title": "\u2705 Let's Get Promoted! - A Must See Collection Of Awesome Posts!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/promoted/@blueorgy/let-s-get-promoted-a-must-see-collection-of-awesome-posts"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74987247876",
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39743318413",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536058620425",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1240756601",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19284742253",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6961794786",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7025761057",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3756163870",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8545727888",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17552390586",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5955133750",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "22535574872",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238284822415",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5640235072",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5953214668",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6273879949",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199720892",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11295142705",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377174816",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5494723000",
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5378684534",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112669609",
+        "voter": "awaking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43048257466",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53644401270",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11667500745",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5178989051",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4065065477",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290635154",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15410799404",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69572705",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71766021",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172718134",
+        "voter": "aksinya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127642699",
+        "voter": "bromejs"
+      }
+    ],
+    "author": "lpfaust",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://s25.postimg.org/r3xo3fhhb/living_without_eating.jpg</center>\n\nFeasting on the bounty of the sun; forty four minutes of direct sun gazing each day for spiritual and biological nourishment along with subsistence on water, air and love so the body can metabolize all the nutrients it needs and sustain oneself off the Hindu vital life force, *Prana*. \n\nIt is an international movement of people who believe true health can only be achieved by giving up all solid food and subsisting only on energy, light and in some cases water.\n\nWelcome to the subculture of the Breathairian.\n\n### A Brief History of Breathairians\n\n<center>https://s25.postimg.org/g0i6s74n3/knowledge_1052011__180.jpg</center>\n\nModern Brethairianism is not a novel and unique invention of modern day subculture. The roots of extreme fasting, and by extension Bretharianism, can be traced back to the 1670s Rosicrucian Enlightenment Movement. In the Rosicrucian text *Comte de Gabalis*, extended fasting and renunciation of food and water is attributed to a 16th century physician and occultist, Paracelsus who was said to have lived, \u201c\u2026several years by taking only one half scruple of Solar Quintessence.\u201d\n\n**The Rise of Breathairianism to the Minstream**\n\nThe Brethairian Institute of America was founded by Wiley Brooks in the early 1980s, after he appeared on the American Television Show, *That\u2019s Incredible!*. This spawned an entire subculture with Jasmuheen rising to the fore in 1990, claiming she could go for month and months without anything but a cup of tea. In 1999, she was featured on the television news series 60 minutes. \n\nHira Ratan Manek has laid claims he has subsisted only regular sungazing in addition to  water and occasionally tea, coffee and buttermilk since 1995.\n\nPrahlad Janti was an Indian sadhu, who claimed both that he had managed to live for 70 years without food or water and claimed he was investigated by doctors in both 2003 and in 2010.\n\nBreathairianism has also laid claim to main stream celebrities. Michelle Pfeiffer, during an interview for The Sunday Telegraph\u2019s Stella Magazine, revealed after moving to Los Angeles at the age of 20, she was swept up into the subculture. While filming the movie, The Moonies (about the Reverend Moon Sun-Myung\u2019s Unification Church), \u201c\u2026she said that while she was helping him with research \u2018on this cult\u2019 she realized: \u2018I was in one.\u2019\u201d Madonna was reportedly a practitioner of Breathairianism as well.\n\n**Leadership Hypocrisy and the Fall of Breathairianism to the Fringe**\n\nIn every movement steeped in deep spirituality, a question of conviction arises at some point. Breathairianism would be no different. The personalities most key to the rise of this subculture would hold the keys to the fall of this subculture and its relegation to a fringe cult.\n\nAfter **Wiley Brooks** reportedly left a Santa Cruz 7-Eleven with a Slurpee, a hot dog and some Twinkies in 1983, the Breathairian Institute of America suffered mass resignations within the organization. Wiley Brooks subsequently modified the central tenant of the Brethairian subculture and on the 5D Q & A section of his website Mr. Brooks stated that,\n\n*\u201c\u2026 cows are fifth-dimensional (or higher) beings that help mankind achieve fifth-dimensional status by converting three-dimensional food to five-dimensional food (beef).\u201d*\n\nLater in the same section of the website, Mr. Brooks went into further detail regarding the special properties of the McDonalds Double Quarter Pounder with Cheese and Diet Coke,\n\n*\u201c\u2026the \u2018Double Quarter-Pounder with Cheese\u2019 meal from McDonald's possesses a special \u2018base frequency\u2019 and that he thus recommends it as occasional food for beginning [B]reatharians. He then goes on to reveal that Diet Coke is \u2018liquid light\u2019. Prospective disciples are asked after some time following the junk food/magic word preparation to revisit his website in order to test if they can feel the magic.\u201d*\n\n I think McDonalds coined the phrase, \u201cBig Mac Attack\u201d for that 5D base frequency. \n\nDuring that 60 minutes interview with **Jasmuheen**, interviewers discovered her house was stocked with food. She claimed the food was for her husband and daughter. She was subsequently monitored by the 60 minutes crew for a one week period. By day 3, she was having difficulty and asked to be moved from the city, blaming polluted air as the reason she could not absorb nutrients. \n\nThe crew relocated her to the countryside, and by the fourth day Doctor Berris Wink of the Queensland branch of the Australian Medical Association had to stop the test, due to severe dehydration (about 11%) and threat of kidney failure. \n\nOn the positive side, Jasmuheen was awarded the Bent Spoon Award by Australian Skeptics in 2000. The award is presented to the perpetrator of the most preposterous piece of paranormal or pseudoscientific piffle.\n\n**Hira Ratan Manek** was caught on camera, in the 2011 documentary *Eat the Sun* feasting on a large meal in a San Francisco restaurant and questions would swirl around the \u201cresults\u201d of the tests from **Prahlad Janti**. It was discovered he was allowed to meet with devotees, leave the sealed test room to sunbathe and move out of the view of the CCTV camera views at certain points during the experiment.\n\nIn the immortal words of Darth Vader, a Jedi devotee, \u201cI find your lack of faith disturbing.\u201d\n\n**The Second Coming of Breathairianism**\n\n<center>https://s25.postimg.org/b4f0jvlfj/breatharian_barbie.jpg</center>\n\nAfter being relegated to second tier cults (below cults such as The Heaven\u2019s Gate Society and Aum Shinrikyo), in recent times, the subculture has experienced a rebirth and received a spokesperson in living doll, Valeria Lukyanova- The Human Barbie. \n\nWith her endorsement and the explosion of social media, Breathairianism had a small rebirth within a niche fringe movement of pro-anorexia.\n\n### What exactly are Breathairians? \n\n<center>https://s25.postimg.org/ia6rmbuin/Breatharian_Diet.jpg</center>\n\nThere is a long and deep history of voluntary fasting across all strata of religion with varying rules. The single, unifying thread is the voluntary fast is temporary for very specific spiritual significance or for political reasons, such as a hunger strike out of protest. The key difference with the Breathairian subculture is the period of voluntary fast is for the complete life of the individual.\n\n**The Dark Side of Breathairianism and Its Endorsement by the Pro-Anroexia Nervousa Subculture**\n\nThroughout the pro-anorexia community, forums are dedicated to the Bretharian subculture. The popular belief appears to be Breathairianism has revealed humans do not consume food for nutritional value, but rather it serves only to provide pleasure and sensation. \n\nIt would appear the consensus belief is,\n\n*\u201cBreathairianism is about having the choice of whether to eat or not to eat. To never hunger or starve when food is not around, to never feel dependency or attachment to food, and to have found what is there once food is no longer in the way of our perception and focus. This is what Breatharianism is about. True happiness, and a full freedom of choices. To feel fully alive, safe, independent, and happy.\u201d*\n\nFrightening.\n\n**The Brethairian Subculture in the Media**\n\nThe Breathairian subculture has received some mainstream media attention over the years:\n\n* **VICE Media**, March 16, 2014 (http://www.vice.com/read/breatharian-leader-wiley-brooks-lives-on-light-air-and-quarter-pounders) \n* **The Daily Beast**, March 2, 2014 (http://www.thedailybeast.com/articles/2014/03/02/introducing-breatharianism-the-dumbest-diet-of-all-time.html) \n* **Esquire Magazine**, February 28, 2014 (http://www.esquire.com/news-politics/news/a27563/human-barbies-are-coming-with-diet/) \n* **The Inquisitr**, November 5, 2013 (http://www.inquisitr.com/1019725/breatharianism-cult-leader-jasmuheen-advocates-living-without-food-or-water-but-why/) \n* **LiveScience**, May 10, 2010 (http://www.livescience.com/8224-indian-mystic-claims-eat-70-years.html) \n* **The Guardian**, September 28, 1999 (https://www.theguardian.com/world/1999/sep/28/millennium.uk) \n\nOut of respect for how deeply linked this subculture is with pro-anorexia nervosa and the danger of extreme fasting, I will not perform an analysis of, or include links to, social media or marketplaces which would perpetuate this subculture.\n\n### References\n\nWikipedia. \u201cInedia.\u201d August 29, 2016. https://en.wikipedia.org/wiki/Inedia\n\nBrooks, Wiley. \u201cBreathairian Institute of America. Np. http://www.breatharian.com/wileybrooks.html\n\nNeputin, Matt. \u201cLiving Without Eating? A Skeptical Look at Breatharianism and Sungazing.\u201d RealtivelyInterestig.com. April 18, 2013. http://www.relativelyinteresting.com/skeptical-look-at-breatharianism-and-sungazing/\n\nDuffin. Claire. \u201cMichelle Pfeiffer: The Day I Realized I was Part of a Cult.\u201d The Telegraph. November 2, 2013. http://www.telegraph.co.uk/news/picturegalleries/celebritynews/10422883/Michelle-Pfeiffer-The-day-I-realised-I-was-part-of-a-cult.html \n\nCampbell, Christopher. \u201c\u2019Eat the Sun\u2019 is an Extremely Fascinating Doc About the Unbelievable World of Sungazing.\u201d Indie Wire. June 21, 2011. http://www.indiewire.com/2011/06/eat-the-sun-is-an-extremely-fascinating-doc-about-the-unebelievable-world-of-sungazing-226777/\n\nMcCasker, Toby. \u201cBreathairian Leader Wiley Brooks Lives on Light, Air and Quarter Pounders.\u201d VICE Media, LLC. March 16, 2014. http://www.vice.com/read/breatharian-leader-wiley-brooks-lives-on-light-air-and-quarter-pounders\n\nThe Guardian. \u201cLet Them Eat Air\u2026\u201d. September 28, 1999. https://www.theguardian.com/world/1999/sep/28/millennium.uk \n\nAna Belles, The. \u201cReasons Not to Eat.\u201d Blogspot. August 16, 2015. http://theanabelles.blogspot.com/2005/08/reasons-not-to-eat.html \n\n### Image References\n\nNeputin, Matt. *Living Without Eating? A Skeptical Look at Breathairianism and Sungazing*. Relatively Interesting. April 8, 2013. http://www.relativelyinteresting.com/skeptical-look-at-breatharianism-and-sungazing/ \n\nSitterson, Aubrey.*Breathairian Barbie*. Geek.com. November 23, 2015. http://www.geek.com/news/11-of-the-best-new-religions-of-the-last-century-1640078/\n\nSupplementCentre. *Portrait of a Beautiful Arab Woman Breathing Fresh Air*. Np. May 5, 2014. http://blog.supplementcentre.com/bonkers-diets-2014/portrait-of-a-beautiful-arab-woman-breathing-fresh-air-with-raised-arms/",
+    "body_length": 10379,
+    "cashout_time": "2016-10-08T17:51:27",
+    "category": "subculture",
+    "children": 7,
+    "created": "2016-09-07T03:21:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"subculture\",\"food\",\"health\",\"beauty\",\"life\"],\"image\":[\"https:\\/\\/s25.postimg.org\\/r3xo3fhhb\\/living_without_eating.jpg\",\"https:\\/\\/s25.postimg.org\\/g0i6s74n3\\/knowledge_1052011__180.jpg\",\"https:\\/\\/s25.postimg.org\\/b4f0jvlfj\\/breatharian_barbie.jpg\",\"https:\\/\\/s25.postimg.org\\/ia6rmbuin\\/Breatharian_Diet.jpg\"],\"links\":[\"http:\\/\\/www.vice.com\\/read\\/breatharian-leader-wiley-brooks-lives-on-light-air-and-quarter-pounders\",\"http:\\/\\/www.thedailybeast.com\\/articles\\/2014\\/03\\/02\\/introducing-breatharianism-the-dumbest-diet-of-all-time.html\",\"http:\\/\\/www.esquire.com\\/news-politics\\/news\\/a27563\\/human-barbies-are-coming-with-diet\\/\",\"http:\\/\\/www.inquisitr.com\\/1019725\\/breatharianism-cult-leader-jasmuheen-advocates-living-without-food-or-water-but-why\\/\",\"http:\\/\\/www.livescience.com\\/8224-indian-mystic-claims-eat-70-years.html\",\"https:\\/\\/www.theguardian.com\\/world\\/1999\\/sep\\/28\\/millennium.uk\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Inedia\",\"http:\\/\\/www.breatharian.com\\/wileybrooks.html\",\"http:\\/\\/www.relativelyinteresting.com\\/skeptical-look-at-breatharianism-and-sungazing\\/\",\"http:\\/\\/www.telegraph.co.uk\\/news\\/picturegalleries\\/celebritynews\\/10422883\\/Michelle-Pfeiffer-The-day-I-realised-I-was-part-of-a-cult.html\",\"http:\\/\\/www.indiewire.com\\/2011\\/06\\/eat-the-sun-is-an-extremely-fascinating-doc-about-the-unebelievable-world-of-sungazing-226777\\/\",\"http:\\/\\/theanabelles.blogspot.com\\/2005\\/08\\/reasons-not-to-eat.html\",\"http:\\/\\/www.geek.com\\/news\\/11-of-the-best-new-religions-of-the-last-century-1640078\\/\",\"http:\\/\\/blog.supplementcentre.com\\/bonkers-diets-2014\\/portrait-of-a-beautiful-arab-woman-breathing-fresh-air-with-raised-arms\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T03:21:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 1156404848163,
+    "parent_author": "",
+    "parent_permlink": "subculture",
+    "pending_payout_value": "0.549 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "subcultures-and-social-trends-breatharians-and-sungazers-when-all-you-need-is-a-little-air-sunshine-and-an-occasional-double",
+    "post_id": 878570,
+    "promoted": "46.500 HBD",
+    "replies": [],
+    "root_title": "Subcultures and Social Trends: Breatharians and Sungazers \u2013 When All You Need Is a Little Air, Sunshine (and an Occasional Double Quarter Pounder With Cheese) to Live",
+    "title": "Subcultures and Social Trends: Breatharians and Sungazers \u2013 When All You Need Is a Little Air, Sunshine (and an Occasional Double Quarter Pounder With Cheese) to Live",
+    "total_payout_value": "0.000 HBD",
+    "url": "/subculture/@lpfaust/subcultures-and-social-trends-breatharians-and-sungazers-when-all-you-need-is-a-little-air-sunshine-and-an-occasional-double"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098264029",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3761241627",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697163959",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5995285453375",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53861287574",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660445252",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213637114",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2006740845230",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622584873",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "966958517",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300386822966",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28399614285",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288099188",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82664750052",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23512090937",
+        "voter": "klye"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787559864",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18374494537",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38846045193",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501242325",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649863857",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1458070113770",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686865536242",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5144476703",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6591597330",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1901149350",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8528672662",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1323509077",
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5826412643",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3165194873",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5517904010",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39864624930",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62235479896",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26407408585",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6137063530",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10433211509",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836463003",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21363924390",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470865927",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10489765263",
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229654538",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8409725906",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6197081170",
+        "voter": "corinnestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1367822475",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2179662711",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3235671738",
+        "voter": "begstreets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4663116063",
+        "voter": "madillorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6820819905",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9969587892",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22963130568",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7290424918",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31231380762",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5819849141",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2612689846",
+        "voter": "tjpezlo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5054170210",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12718954821",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5507906695",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25310106112",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90923980710",
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1347913567",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2007081676",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16238481694",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5874641515",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1064884591",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651986872",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1797269610",
+        "voter": "alitas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10934414249",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10524500228",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5210280082",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4916507708",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4989320123",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10018253562",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62312186",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17411909771",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75387763",
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6017454300",
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53584970",
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13862215329",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11825860265",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2835774608",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4305929006",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54859471",
+        "voter": "jod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54615840",
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1699203610",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988075153",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51616527",
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155267761",
+        "voter": "terrano"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>As a follow up to my <a href=\"https://steemit.com/photography/@thecryptofiend/some-painterly-and-expressionistic-photo-work\">last post</a> here are some more painterly and expressionistic shots. &nbsp;Please feel free to have your say and comment - it is always appreciated.</p>\n<p>I hope you like them.</p>\n<p><br></p>\n<h1>The Photos</h1>\n<p><br></p>\n<p><img src=\"https://i.imgsafe.org/30a8657754.jpg\" width=\"800\" height=\"534\"/></p>\n<p>\"Sensuality\" . &nbsp;A natural light shot with backlighting. This required a lot of care to ensure skin texture was preserved after retouching. Model: Alex Oke.</p>\n<p><br></p>\n<p><br></p>\n<p><img src=\"https://i.imgsafe.org/30a8bbef87.jpg\" width=\"799\" height=\"571\"/></p>\n<p>An outdoor summery shot. &nbsp;The palette here was quite bright and vibrant. Model : Rachelle Summers.</p>\n<p><br></p>\n<p><br></p>\n<p><img src=\"https://i.imgsafe.org/43ceb61ad2.jpg\" width=\"721\" height=\"1080\"/></p>\n<p>\"Gothik\" - &nbsp;This was a very expressionistic piece. &nbsp;I used extensive painting to remove extraneous detail and simplify the image. &nbsp;Model: Alice Beauvoisin</p>\n<p><br></p>\n<p><br></p>\n<p><img src=\"https://i.imgsafe.org/30a795b010.jpg\" width=\"799\" height=\"571\"/></p>\n<p>This is like a beauty shot but with a more cross-processed kind of look than you would normally see with this type of portrait. &nbsp;Model: Axel Von Rosencoff</p>\n<p><br></p>\n<p><em>You can see more of my work @thecryptofiend - hope you enjoy.</em></p>\n<p><em>(Verification for me here: </em><a href=\"You can see more of my work @thecryptofiend - hope you enjoy.  (Verification for me here: http://www.aapicture.com/about-me)\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n</html>",
+    "body_length": 1740,
+    "cashout_time": "2016-09-30T02:20:51",
+    "category": "photography",
+    "children": 23,
+    "created": "2016-08-29T13:50:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"photo\",\"art\",\"portrait\",\"painterly\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/30a8657754.jpg\",\"https:\\/\\/i.imgsafe.org\\/30a8bbef87.jpg\",\"https:\\/\\/i.imgsafe.org\\/43ceb61ad2.jpg\",\"https:\\/\\/i.imgsafe.org\\/30a795b010.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/photography\\/@thecryptofiend\\/some-painterly-and-expressionistic-photo-work\",\"You can see more of my work @thecryptofiend - hope you enjoy.  (Verification for me here: http:\\/\\/www.aapicture.com\\/about-me)\",\"http:\\/\\/www.aapicture.com\\/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T13:50:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11322027176665,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "18.046 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "painterly-and-expressionistic-photography-part-2",
+    "post_id": 789382,
+    "promoted": "46.000 HBD",
+    "replies": [],
+    "root_title": "Painterly and Expressionistic Photography Part 2",
+    "title": "Painterly and Expressionistic Photography Part 2",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/painterly-and-expressionistic-photography-part-2"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2328830993",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15932372603",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5009612932",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39743318413",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7922731001",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249623979672",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4477691887",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2025915666",
+        "voter": "alexft"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "22535574872",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238284822415",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1779605539",
+        "voter": "rambogoham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247192136",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25652673779",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161393135930",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94491949853",
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7293079434",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67736501170",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38544425093",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39909694566",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "5400",
+        "reputation": 0,
+        "rshares": "1606998205",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13665721836",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117290694",
+        "voter": "famunger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7324572409",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22178033390",
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234370116",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3509986623",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "165721966",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "670709305",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99252024709",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87025673",
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354657306",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3038795792",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197022257",
+        "voter": "ratidor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14067849393",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54457374",
+        "voter": "ppan08162016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860146710",
+        "voter": "kingarbinv"
+      }
+    ],
+    "author": "knircky",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "#### Summary: Steem solves one key monetization issue of the internet by creating a new way of paying for content via dilution of its coin supply. This requires organic growth similar to the dilution percentage or higher if the ecosystem is to not deflate. Recently Bounties have been introduced to finance certain initiatives on steem. However I believe this misses the strategic potential of the tool. Bounties could be used to create cash-inflows that will allow growth and value without sending away value of the ecosystem. Instead of just giving money to content creators via a set dilution budget everyday, we can allow users to ask question or support certain topics by adding bounties to their posts. Users might do this because they are seeking a certain type of content. Anyone could ask the internet a question, put a bounty on it and the world would compete for the best answer. As such bounties could be a whole new way information exchange on the internet can be rewarded. By implementing bounties the right way, steem can create one more new monetization layer for the internet and become much more valuable than just with one way of monetizing its content.\n\n#### The recently proposed bounty system falls short of its potential for steem. I want to outline why bounties can be a game changer for the internet and how steem could implement them for mutual benefit.\n\n\n<a target='_BLANK' href='https://ipfs.pics/Qmc4RuamRq4g6qRoemtcSDz6cZ1CQYqY8VoBEZ3WyugDt7'><img src='https://ipfs.pics/ipfs/Qmc4RuamRq4g6qRoemtcSDz6cZ1CQYqY8VoBEZ3WyugDt7'/></a>\n[Photo by pixabay](https://pixabay.com/en/dog-eat-biscuit-reward-843800/)\n\n\n# The monetization issue of the internet\n\nThe internet has a monetization issue. There are pretty much three ways content is monetized:\n\n- Ad model: sites provide advertisement and every view is worth a tiny amount of money. For instance 1000 minutes on youtube tends to be wort about $1  or even less. \n- Subscription: because the above only works for very cheap and mass media content well there are subscription where customer may pay a monthly fee: examples are Netflix or poker training site.\n- Pay per View: customer pay for a particular content such as a movie or news article.\n\nAll of these monetizations have issues. The ad model only works if your content is valuable for a mass audience and ads are annoying. Some people also hate the way sites like google and Facebook are using private data of their customers. The subscription makes it hard for people to sign up, because it creates a monthly bill and once customers have signed up you are stuck with a limit to your revenue. Pay per view has the challenge that many people are used to getting their content for free and create a barrier to consume it because of its price. Subsriptions and pay per view additionally have the problem of having a planned price, while we know planning the correct price leads always to a sub-optimal solution.\n\n# The limit of the internet with bad monetization\nThe internet connects everyone in the world and should make it easy for any information to float freely. However that is not the case. The reason is that while information can be exchanged freely value cannot be exchanged so easily. This is because to provide information to the web, it only makes sense if it fits into the limited monetization channels described above. You may still need to consult regular specialist when having an advanced or specific question. You can't ask the internet to solve a problem for you, unless it is something simple that some nice guy or gal will answer for you on a forum like reddit or if many people have the exact same question.\n\nThe internet needs a better way to exchange information for value via an efficient market for content and information. Imagine you want to go on a trip and want to know what is the best way to vacation for you personally at a wonderful spot like Machu Picchu. You can ask @heiditravels since she has been there in the comments of one of her post, but she is likely going to give you an artificial answer, because consulting you on how to travel there requires work and understanding your requirements. So you probably have to research this yourself by reading articles, books and finding youtube videos that help you. This is all much easier because of the internet, but still the internet does not allow you to actually get a direct exchange of information for you, even if you are willing to pay for it. I had this problem last year when I visited the Galapagos and the fact that I did not know certain things cost me a bit of money, because the way I booked things was not optimal. I.e. I should have booked my day trips on the island instead of going through my travel agency in the US. I also could have saved money 1/2 of the cost by booking the boat cruise on the island, I just did not know this was possible.\n\nSubscription, pay per view and ad based monetization suffer from the fact that only content that happens to be as valuable as many people are ready to pay for it can be exchanged fluidly. That means instead of the market determining the price of content, the information that is the right price finds its way to the internet. The rest of the knowledge we hold stays away. It does not fit the rigid and limited pricing model of the internet.\n\nAs a result most of our knowledge actually does not get exchanged via the internet because there is no good way of valuing that exchange. Imagine what untapped potential the internet has. In other words what would happen if you could just ask the internet for any information or question and it would spit it out for the right price. \n\n\"For the right price\" has not been implemented and thus most of the stuff you can find on the internet is not that valuable, unless it is to help you generate revenue for someone else (like specification of a product) or concerns the masses (news) or cost what many people want to pay for it (blockbuster movie).\n \n# The problem steemit solved and did not solve\n\nSteemit is an amazing solution to the broadcasting of mass information. It has solved the problem of rewarding and paying for content without needing ads, subscription or payments. That is an amazing accomplishment. I have written several articles here and brought some friends to this site that have also written articles, they would have otherwise not published. It allows content to be valued if people appreciate it, instead of if they click on banners, which is a much more direct and better way of exchanging  value. I'd be surprised if many news outlets are either not going to be put out of business by steem or are going to adopt steem somehow in the next few years.\n\nHowever steem still requires a certain amount of people to like content. For instance if you know something that is really valuable for one person on steemit, you will not get  rewarded, even if the information is very valuable to few. So why bother, or give it away when you can probably charge for it? However if you write something that many people like, you will be rewarded very well. So steem in its current form still only works for content of a certain price, that many people want to consume. Of course the whale aspect changes this a bit, but not fundamentally.\n\n# Bounties can be a new way of monetizing the internet\nTo make steem more powerful in this regard we can use bounties. Because bounties can be set at different price levels we can now value content higher, even if only one person needs or wants the information. \n\nSo back to my question of how to best vacation at Machu Picchu: I can ask the question on steem and will probably not get many upvotes to my question. Because it is not very valuable content for many. I will probably also not get the greatest answers because my vote alone won't entice people to do the work of answering my question. However if I put a bounty on my question this changes the game fundamentally. People that can answer the question will now compete for the bounty and thus will have to put effort into providing a good answer. If a good answer will likely safe me a few hundred dollars, why not put this question on steem with a $100 or $200 bounty? The difference is that it used to be smart not to provide an answer, while now it is profitable to provide information.\n\nBounties could also be used to promote certain topics. I.e. if steem wanted to generate a certain type of content like i.e. cat-videos, there could be a bounty on cat-videos. The creators would get additional rewards, in addition to all the existing people that love cat-videos on steem and therefore would vote for them anyway, and thus would be enticed to publish even more cat videos on steem. This could then attract new cat lover users and generate growth for steem.\n\nBounties could be a great way to support the creation of new communities on steam. For instance if we wanted to have daily bitcoin chart analysis on steem and bring traders onto the site, this could be facilitated with the creation of a specific tag and corresponding bounty for traders.\n\nThe difference of this ad campaign would be that instead of giving value to an outside eco-system like google we would grow the steem economy by creating internal value (the money creators will receive from the bounties) instead of burning the marketing budget to some external service.\n\n# Steemit needs cash-inflow\nSteem gives content providers rewards. It pays for these rewards by creating more coins, which dilutes the value of the existing coin holders. In order for the economy to be sustainable, cash-inflow is required to be higher or at least similar to this outflow of money. The balance of these two forces happens via an exchange market. New investors or users of steem buy steem tokens to either power them up or use them otherwise, while content creators tend to cash out at least some of the coins they receive. In addition existing coin holders may also decide to liquidate their steem by selling. In short we need new users or investments to join the ecosystem and buy coins in order for it to not deflate, due to the cash-outflows generated by the reward system continuously. Investors are banking on the fact that the money they put into the system will attract content that is more valuable than the money they are investing and thus will create a positive ROI. \n\nIn addition to the inflow via investments, steem has also just recently created a way to create inflows via promotions. Since the money used to promote post gets burned and thereby reduces the coin supply, it effectively creates cash-inflow to the ecosystem. \n\nBounties would create yet another channel of cash-inflows, since users would directly give other users money without going thru the cycle of investment which has to attract great content that will attract more users, which will invest more to overall grow the steem economy. You can see how that a bounty system would create a financial cycle that would be much more direct.\n\nBoth the promotional cash and the bounty cash will have a much more immediate effect and ROI and thus the flow of money and new users will likely be easier. Overall these different ways of creating cash-inflows will complement and support each other.\n\nI believe that bounties would create value for the steem ecosystem because it would attract new users that possess certain knowledge but do not have the ability to land the big hits via writing great blog posts. Additional users with need for information and questions would be attracted to the site.\n\n# The key competitors of steem use pay per view and transaction fees\nThe key competitors of steem use direct payments for content. In synereo one can pay for the attention of a specific user. In LBRY one can pay directly for a particular content. Similarly Yours plans to use micro transactions to pay for content and charge a fee for these transactions. The way steem pays for content is very new and unique and I think it will do very well vs. these cash flow strategies. Still I think it will be beneficial to have more than one monetization channel in order for steem to compete with these new social media blockchain ecosystems. Providing a way to pay for content more directly than via dilution will simply make steem more competitive and double its potential for growth.\n\n<a target='_BLANK' href='https://ipfs.pics/QmVYwtW1t4DTUfBh3r6iotRZdooFBRjeqDsqEPsKmP1ZqT'><img src='https://ipfs.pics/ipfs/QmVYwtW1t4DTUfBh3r6iotRZdooFBRjeqDsqEPsKmP1ZqT'/></a>\nThe above is a diagram of how I would envision the cash in- and out-flows for the steem economy with bounties and promotions. \n\n\n# Functional requirements of a bounty system for steem\n\nI want to quickly outline how I envision bounties to work on steem\n\n### The bounty button\nSimilar to the promotion button, there should be a bounty button next to every post that allows anyone to put a bounty on a post. The bounty should be paid in SB only, just like the promotions. In addition to the ability to put bounties on one article there should be the ability to put a bounty on a hashtag. This dialog could be accessible via the menu bar. Potentially the promotion and bounty menu could also be integrated.\n\nWhen selecting a bounty, there should be a timeline that defines when the bounty is being paid. I think it would make sense to allow intervals up to the 30 days after the post was created, due to the functionality of steem. It might also make sense to have 3 time intervals such as 1 day, 1 week and 1 month.\n\nAll the bounty payments per pay period should be escrowed by the blockchain and the cumulative amount should be displayed on the post and the distribution of it on each post respectively in parallel how the reward money is visualized.\n\n### Paying out bounties\nThe bounty should be paid out to all the comments of a post according to how readers of the post have voted for it. If the bounty is for a hashtag than all level 1 post with that hashtag will receive the reward. The users that have paid for the bounty thereby should get a higher weight of their votes relative to how much of the bounty they have contributed, so that they define the majority of payout (i.e. 75%). Notice that flagging or negative votes are possible in the same way as for regular votes. \nExample: Assuming two users A and B with the same amount of SP and a bounty that has been placed by B for 1000 SD and user A voting for comment x and user B voting for comment y.  When the time for the payout arrives, the bounty should be distributed as 75% or 750SD to comment y and 250 SD or 25% to comment x and y such that comment y receives 875SD and comment x 125SD. If the SP of the users where different, than the 25% would be distributed according to SP weight in the same manner that steem distributes posting rewards.\nThis is to entice everyone to evaluate the solution to the bounty even if they have not paid for it and to ensure that a bounty can be paid even if some of the bounty posters do not vote for a solution.\n\nThe reward of the bounty of course should be in addition to the regular voting rewards steem pays out anyway.\n\nI don't think there is any reason to use part of the bounty as curation reward, since curation reward is already paid anyway and the bounty provider have intrinsic incentive to distribute the bounty fairly.\n\nI would also suggest to convert 50% of the payout into steem and distribute them via SP. This will decrease the SD supply and keep the steem ecology healthy.\n\n# Please provide feedback\n\nThis proposal for bounties has been thought out by myself and as such, I am sure it can be optimized and might have flaws. So please provide feedback. I will read and assess every comment and if needed make adjustment to this post. I hope @Dantheman @Dan and @Ned will find the time to read and comment on this as well.\n\n# Conclusion\n\nI think bounties could propel the value of steem for its users and greatly improve the economics of steem. It seems to me that bounties would fit naturally into the reward and voting system of steem so that introducing them would come very intuitively to users. I can think of many use cases where I would use them and happily put significant value into the ecosystem to get a particular answer. The key value of bounties is that users can define how much certain information is worth to them and thus solve a key issue of the exchange of value via the internet.\n\nSteemit could leverage the functionality for marketing purposes, for instance to support a new language or a new topic and users we want to attract the site by putting bounties on hashtags.\n\nI hope this proposal is being read and optimized by many steem users and ultimately by the steemit team, so that it has a chance to be integrated into the blockchain.  I hope that on my next big trip or when I have specific technical question, I can just put up a bounty and have the internet generate the answer for me personally.\n\nThanks for reading, commenting and upvoting. Please follow me and check out my other post if you think this was valuable.",
+    "body_length": 17079,
+    "cashout_time": "2016-10-08T12:56:27",
+    "category": "steemit",
+    "children": 9,
+    "created": "2016-09-06T17:09:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"bounty\",\"improvement\",\"bounties\"],\"users\":[\"heiditravels\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/Qmc4RuamRq4g6qRoemtcSDz6cZ1CQYqY8VoBEZ3WyugDt7\",\"https:\\/\\/ipfs.pics\\/ipfs\\/QmVYwtW1t4DTUfBh3r6iotRZdooFBRjeqDsqEPsKmP1ZqT\"],\"links\":[\"https:\\/\\/ipfs.pics\\/Qmc4RuamRq4g6qRoemtcSDz6cZ1CQYqY8VoBEZ3WyugDt7\",\"https:\\/\\/pixabay.com\\/en\\/dog-eat-biscuit-reward-843800\\/\",\"https:\\/\\/ipfs.pics\\/QmVYwtW1t4DTUfBh3r6iotRZdooFBRjeqDsqEPsKmP1ZqT\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T21:11:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 1192318491712,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "0.549 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-potential-of-bounties-an-improvement-proposal-for-steem-to-double-its-value",
+    "post_id": 873762,
+    "promoted": "46.000 HBD",
+    "replies": [],
+    "root_title": "The potential of bounties: An improvement proposal for Steem to double its value",
+    "title": "The potential of bounties: An improvement proposal for Steem to double its value",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@knircky/the-potential-of-bounties-an-improvement-proposal-for-steem-to-double-its-value"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30339908020562",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "178437811858",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9858079005892",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "640654355933",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4663779658656",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392188822906",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26831705803",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5648204354987",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7861629418",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8804243088",
+        "voter": "richman"
+      },
+      {
+        "percent": "5555",
+        "reputation": 0,
+        "rshares": "1766932742",
+        "voter": "murh"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "538270552185",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687331665034",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179628130136",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24315043804",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12247109267",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17987570914",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243649644994",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142113759518",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "396653488",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417321311214",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16003756503",
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138604353",
+        "voter": "bsgomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4727846020",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102847910",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35921591072",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64689794435",
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26626009473",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6213600532",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55022014",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213172829",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5280462938",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290245577",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "9928506420",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36239398705",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6388049881",
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2900241397",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8773593905",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2053712672",
+        "voter": "chef.cook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2221778916",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "654379209",
+        "voter": "edgarsart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71205623",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5099701604",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1289493888",
+        "voter": "portuguesinha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247184",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50263480",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111267933",
+        "voter": "patricklemarie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310077144",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167973342",
+        "voter": "blimey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155210544",
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79570919",
+        "voter": "mikerano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121564475",
+        "voter": "bromejs"
+      }
+    ],
+    "author": "french.fyde",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Hi friends, today I propose to make caviar! Yes, you heard right, make caviar! This idea came to me after a personal note (after my first upvote of @dollarvigilante) : I imagined the different destinations and the restaurants where went the @dollarvigilante, these places where they serve the best food, but also caviar !!!\n------------------------------------------------------------------------\n*Salut les amis, aujourd'hui je propose de faire du caviar ! Oui vous avez bien entendu, faire du caviar!*\n*Cette id\u00e9e m'est venu apr\u00e8s une remarque personnel suite \u00e0 mon premier upvote de @dollarvigilante*  : *j'imagin\u00e9 les diff\u00e9rentes destinations et les restaurants o\u00f9 va le @dollarvigilante, des endroits o\u00f9 l'on sert les meilleurs plats,* mais *aussi du caviar !!!* \n\n![](http://image.noelshack.com/fichiers/2016/37/1473682632-imag2096.jpg)\n\nAnd the idea of this article had become obvious : I give you how to make caviar with a technique of molecular cooking to everyone. Anyone can do it in the kitchen and all that is required is that very easily.\n------------------------------------------------------------------------\n*Et puis l'id\u00e9e de cette article \u00e9tait devenu une \u00e9vidence :  je vous donne la fa\u00e7on de faire du caviar avec* *une technique de cuisine mol\u00e9culaire \u00e0 la port\u00e9e de tous. Tout le monde peut le faire dans sa cuisine et* *tout ce qui est n\u00e9cessaire ce trouve tr\u00e8s facilement.*\n\n> The term caviar corresponds to the fact to transform a liquid into small beads that give the appearance or illusion of a real caviar.\n*Le terme caviar correspond au fait de transformer un liquide en petites billes qui donnerons l'apparence* *ou l'illusion d'avoir un vrai caviar.*\n\nIn this recipe I made chocolate, but you can give you pleasure in replacing chocolate with a red fruit, coffee or vegetable, let your imagination soar!\n------------------------------------------------------------------------\n*Dans cette recette j'ai pris du chocolat, mais vous pourrait vous faire plaisir rempla\u00e7ant le chocolat par un* *fruit rouge, du caf\u00e9 ou un l\u00e9gume, laisser votre imagination s'exprimer !*\n\nWe start by taking everything one needs. :\n--------------------------------------------\n*On commence en r\u00e9unissant tous ce dont on a besoin :*\n\n![](http://image.noelshack.com/fichiers/2016/37/1473681352-55.jpg)\n\nEverything is mixed, at the same time, cook (without stirring constantly) and stops when there is the first bubbles of boiling.\n------------------------------------------------------------------------\n*On m\u00e9lange le tout en m\u00eame temps, on fait cuire (sans jamais arr\u00eater de remuer) et on arr\u00eate quand il y a les premiers bulles d\u2019\u00e9bullition.* \n\n![](http://image.noelshack.com/fichiers/2016/37/1473681356--.jpg)\n\nNow let cool a few minutes and in the meantime, put oil in a glass. Take any oils other than rapeseed.\n------------------------------------------------------------------------\n*Maintenant laisser refroidir quelques minutes et pendant ce temps, on mets de l'huile dans un r\u00e9cipient. On peut prendre toute les huiles sauf celle au colza.* \n\n> ![](http://image.noelshack.com/fichiers/2016/37/1473681373-imag1981.jpg)\nI took a very big glass so you can see well, but this is not necessary, a simple glass will do.\n*J'ai pris un tr\u00e8s grand verre pour que vous puissiez bien voir, mais ce n'est pas n\u00e9cessaire, un simple verre suffit.*\n\n\nAlors on va prendre le materiel n\u00e9cessaire, c'est \u00e0 dire une seringue. Ce qui compte c'est le trou de de la seringue ne soit pas trop petit. Moi, par exemple, j'ai pris celle du sirop pour enfant.\nSo we will take the necessary equipment: a syringe. What matters is the syringe hole is not too small. I, for example, I took the syrup for children.\n![](http://image.noelshack.com/fichiers/2016/37/1473681651-seringue.jpg)\n\nHere we go !\n------------\n*Et c'est parti !*\n\nPutting our preparation in the syringe and quietly pour in oil\n--------------------------------------------------------------\n*On met notre pr\u00e9paration dans la seringue et on verse gentillement dans l'huile*\n\n![](http://image.noelshack.com/fichiers/2016/37/1473679598-gifpal-20160912132605.gif)\n\nYou like it !?\n--------------\n*C'est pas mal, non !?*\n\n![](http://image.noelshack.com/fichiers/2016/37/1473681979-111.jpg)\n\nFinally, take a strainer and pour your oil in the bottle. All balls come at once at the end: ATTENTION not to pour too fast !Let drain 1 or 2 minutes.\n------------------------------------------------------------------------\n*Pour finir, prenez un \u00e9gouttoir et verser votre huile dans sa bouteille.*\n*Toutes les billes viendrons en une seule fois \u00e0 la fin : ATTENTION de ne pas aller trop vite !*\n*Laisser \u00e9goutter 1 ou 2 minutes.**\n\n> ![](http://image.noelshack.com/fichiers/2016/37/1473682563-12.jpg)\nin the end, the oil doesn't rest on the small balls and oil leaves no taste\n*au final, l'huile ne reste pas sur les petites billes et l'huile ne laisse aucun go\u00fbt*\n\n\n\nJe met tout dans un verre ou une tasse avant de dresser mon plat\nI put everything in a glass or cup before preparing my dish\n\n![](http://image.noelshack.com/fichiers/2016/37/1473682574-1111.jpg)\n\nThe result is perfect: when you look, we get our illusion and when you have in your mouth, I can not tell you ...Hmmm !!!!!\n------------------------------------------------------------------------\n*Le r\u00e9sultat est parfait : \u00e0 l\u2019\u0153il c'est \u00e0 s'y m\u00e9prendre et quand vous l'avez en bouche, je ne vous raconte pas...Hummm !!!!!*\n\nHave fun and Let Your Imagination Go!\n=====================================\n\n![](http://image.noelshack.com/fichiers/2016/37/1473682601-imag2087.jpg)\n\nAmusez-Vous et Laissez Aller Votre Imagination !\n================================================\n\n![](http://image.noelshack.com/fichiers/2016/37/1473682608-imag2092.jpg)\n![](http://image.noelshack.com/fichiers/2016/37/1473682616-imag2095.jpg)\n![](http://image.noelshack.com/fichiers/2016/37/1473682622-imag2099.jpg)\n![](http://image.noelshack.com/fichiers/2016/37/1473682632-imag2096.jpg)\n![](http://image.noelshack.com/fichiers/2016/37/1473687685-signature.jpg)",
+    "body_length": 6046,
+    "cashout_time": "2016-10-14T01:33:39",
+    "category": "food",
+    "children": 4,
+    "created": "2016-09-12T13:47:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"food\",\"recipe\",\"molecularcooking\",\"steemit\",\"fr\"],\"users\":[\"dollarvigilante\"],\"image\":[\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473682632-imag2096.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473681352-55.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473681356--.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473681373-imag1981.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473681651-seringue.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473679598-gifpal-20160912132605.gif\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473681979-111.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473682563-12.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473682574-1111.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473682601-imag2087.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473682608-imag2092.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473682616-imag2095.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473682622-imag2099.jpg\",\"http:\\/\\/image.noelshack.com\\/fichiers\\/2016\\/37\\/1473687685-signature.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T14:02:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 54266708173296,
+    "parent_author": "",
+    "parent_permlink": "food",
+    "pending_payout_value": "188.548 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "eng-fr-steemitmolecularcooking-or-chocolate-caviar",
+    "post_id": 930563,
+    "promoted": "46.000 HBD",
+    "replies": [],
+    "root_title": "[ENG/FR] SteemitMolecularCooking | Chocolate Caviar",
+    "title": "[ENG/FR] SteemitMolecularCooking | Chocolate Caviar",
+    "total_payout_value": "0.000 HBD",
+    "url": "/food/@french.fyde/eng-fr-steemitmolecularcooking-or-chocolate-caviar"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27526380368282",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "493904989137",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7731774323941",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30963340603502",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376251845809",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38628577663382",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "39215528449249",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4574316664480",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6733379560466",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3066681879675",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "477966998971",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4555198258386",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1119290177600",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099134162323",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995902544214",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308753515461",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5113121585969",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726575642",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524583713",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821038130",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7061101034251",
+        "voter": "complexring"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "5152147344752",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66101488132",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996734414",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256577770",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79845179316",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63621891156",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7132023384",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5793517039266",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1201733691140",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37842725376",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750187822",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168126713",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23459060358",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10498292387",
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31824886550",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9588709514",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346070380",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3109456055",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8209280181",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153296056627",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10960361335",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14994955404",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15051023882",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78234456691",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16968715703",
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "6280",
+        "reputation": 0,
+        "rshares": "388803010656",
+        "voter": "eeks"
+      },
+      {
+        "percent": "700",
+        "reputation": 0,
+        "rshares": "6569044104",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61054775",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6453496039",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "735229559",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2154161049",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336024528357",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1300",
+        "reputation": 0,
+        "rshares": "4002829527",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "1200",
+        "reputation": 0,
+        "rshares": "1377965630",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "3046417496",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156573687746",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47413658846",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40699583041",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982799520",
+        "voter": "coar"
+      },
+      {
+        "percent": "1509",
+        "reputation": 0,
+        "rshares": "706760886",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150734011",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413982599009",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "37933469992",
+        "voter": "tinfoilfedora"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68637687828",
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24892673749",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10437999499",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418622798",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375186691312",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "22203455044",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "33744098418",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4581604470",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79211060582",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22806229743",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32998689739",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173891397847",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2747282701",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5441964146",
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6742343806",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "4664732981",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6406633281",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65327029498",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6466238081",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "2190216920",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5891286972",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7865292102",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510560493",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13966313707",
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52006965472",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20199692434",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369419860",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5480390590",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280810708",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160654406646",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322161583283",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5190612986",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51172289637",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73669227443",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039910629",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5263874133",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122425882381",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5478937966",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48661612606",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5773781115",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8195186985",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154748925594",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748609254",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29982688838",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15620672312",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550066409600",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10594766057",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98865572073",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16387519197",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164113821182",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4633652827",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61949102847",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "4648828220",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13786736208",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241151752567",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33649569687",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19899950500",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "664533963",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30406359089",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24966175354",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10633723041",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72122373888",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10116801758",
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349333115852",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503362754",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104275514857",
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "585128034",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21251528152",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41875574687",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91926117",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13498626934",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23642062334",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202466740034",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3432105137",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7168108020",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7665805497",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3067643706",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1514733088",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "32299149356",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6499288255",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428253908",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24289041861",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98784441443",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77100966",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19393495828",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436229754",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5115308538",
+        "voter": "favorit"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2725832001",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664224643",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1403214907",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283260879",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114849934",
+        "voter": "fsip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45674978438",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3699079514",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15825218986",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37392922224",
+        "voter": "smailer"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "116118859",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "862222696",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18456599281",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27770435610",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6474324531",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177738817",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71964844842",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1378717807",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235438675",
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24362034190",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4890113111",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65204048",
+        "voter": "cechirik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26122931456",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26100683859",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26110010937",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588607112049",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17279737369",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17727013483",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "6280",
+        "reputation": 0,
+        "rshares": "10306119254",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6907625180",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26105523826",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26103248276",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26100183826",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26096640233",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8291369593",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26092206591",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26090029262",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7963549449",
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376887643",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21044216417",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11354441708",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107983601750",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62556433",
+        "voter": "internistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14254306379",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1729954252",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80357718252",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1726441518",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43384212188",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275026678",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10739953721",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68550569",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3769464721",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39390555456",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77220767",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "254680718",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9679928412",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1489069575",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59750246",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273211506",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13665635092",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59992769",
+        "voter": "shuklix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7727181529",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26082953024",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3083989123",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2978336615",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5945926381",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42909923528",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16339966378",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8041485878",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1401458089",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59261081",
+        "voter": "disletti"
+      },
+      {
+        "percent": "5800",
+        "reputation": 0,
+        "rshares": "24655449762",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69721598",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2149430985",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258844947",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2230320600",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58025713",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3079600558",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "913227198",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117344778",
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57881817",
+        "voter": "novrik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52053227",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12007897380",
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2028200120",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57664781",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12089632983",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25202992641",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9593336727",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86165076",
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1532461481",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7426008331",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174713024",
+        "voter": "rusla"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "130992658952",
+        "voter": "cornerstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54391689",
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56582615",
+        "voter": "minihelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3335975740",
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633489640",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1162848474",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65457046",
+        "voter": "forest-revealed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "808370638",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54726577",
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115556600090",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646861838",
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453351131",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52088375",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369323003",
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2913602897",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59275415100",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54272135",
+        "voter": "mpmajo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3135075242",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54232595",
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1250337518",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568011923",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3312524129",
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84516562",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1195193402",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9640083850",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1173837106",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52549133",
+        "voter": "janeth111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52800226",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52864017",
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53548226",
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51615039",
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7301503729",
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2019020353",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1977855772",
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56856217",
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120476926",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9289382445",
+        "voter": "luzcypher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511233308",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82287966",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1317647622",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116937238",
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153687209",
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "508743849",
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155910854",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3795801841",
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146534462",
+        "voter": "nekrasov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166431444",
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10549884113",
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159048846",
+        "voter": "manuelgarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155110756",
+        "voter": "matteopoole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158170239",
+        "voter": "spacedout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474962663",
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157332453",
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157111992",
+        "voter": "emisfer2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311030765",
+        "voter": "aldentan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144468196",
+        "voter": "roman.est"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153571614",
+        "voter": "petrroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156505647",
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156489923",
+        "voter": "novium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156452773",
+        "voter": "yahooshua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135270873",
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156347190",
+        "voter": "wizardcrying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147091838",
+        "voter": "alkindi31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156226986",
+        "voter": "kmichaelkills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153075466",
+        "voter": "william007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116295959",
+        "voter": "mikerano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155748226",
+        "voter": "karles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152655283",
+        "voter": "jahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155688834",
+        "voter": "nathanael540"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155680732",
+        "voter": "rupelto"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I know many people have been very concerned with the block on NSFW content from all categories, and have been concerned about the chance of the platform continuing to block other content.\n\nI think Steemit are doing a great job, and I understand some of their position if they end up censoring content. Being a US business means they will quickly run into legal issues with the content on their site, and may have to do some censorship. \n\nOf course thanks to the blockchain, it's never truly censored, and sites like UnderSteem can show it.\n\nThis is a follow up to my post from a few days ago, where [I launced the first TOR RPC and SEED node for STEEM.](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy).\n\n**As people should know by now, I'm strongly concerned about privacy and freedom.** In the past week:\n\n - I set up a TOR node for the STEEM network (link above)\n -  [raised almost $200 USD for RiseUP](https://steemit.com/steem/@someguy123/proof-of-riseup-donation)\n -  Set up a site for [fully anonymous steem accounts](https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media)\n\n----\n\n\n![](https://i.imgur.com/UPxM1Jf.png)\n\n\nWhat is UnderSteem?\n-----\n\nTL;DR\n\n - Uncensored - UnderSteem promises to have no censorship, including on pornography and piracy\n - Private - UnderSteem is only accessible over TOR. This means your IP address is never disclosed, so you're protected\n - Secure - Because UnderSteem is over TOR, the server locations are unknown. This makes it much harder to be hacked, because the attackers do not know the IP address of the servers, and they're only able to access the website\n - [Open Source](https://github.com/Someguy123/understeem/)\n\nUnderSteem is \"Underground Steem\". It is a fork of Steemit (not STEEM. It's on the same network), and is fully [open source, available here](https://github.com/Someguy123/understeem/). UnderSteem promises to avoid censorship on the client level, and operates it's servers within a safe jurisdiction, **since just like steemit, it does not store any content at all, and cannot be held responsible for any illegal activity.**\n\nTo allow the safest, most private experience, it's only available over TOR. I strongly recommend [downloading TOR Browser](https://torproject.org) - it's free, open source, and available on nearly every platform, **even Android and iOS**. (Don't worry, TOR is completely legal almost everywhere, including the US, practically every European country + the UK)\n\nOnce you have TOR browser, you can just enter the following URL into the address bar, and you'll be on UnderSteem:\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\nIf you just want to take a quick look *without TOR*, you can access the site through a gateway such as ONION.TO, however the site will not function fully through a gateway because of the JavaScript trying to communicate with [my TOR node](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy):\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n\nWant to remember this URL? Just split the words up!\n\n<center>`usteem pc coap good`</center>\n\nDo I need to sign up?\n-----\n\n**You don't need to.** If you already have an account made on Steemit, or AnonSteem, you can log into the website with your username and password just like normal.\n\nIs it legal to access this site and use TOR?\n-----\n\nUnderSteem is not designed for illegal content any more than Steemit is, however the laws vary in every country. \n\nUnderSteem believes that the content should be free for the person to decide if they should view it or not, rather than their governments laws.\n\nWhile UnderSteem will avoid any form of censorship at all costs, **there's nothing illegal about using TOR** (in most countries), **or UnderSteem** unless you are purposely trying to access illegal content.\n\n----\n\n<center>Try it out!</center>\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n----\n\n**Frequently Asked Questions**\n\n**Why can't I see the upvote button?**\n\nYour security settings on TOR browser are too high. On the \"high\" setting, SVGs are blocked, which means the upvote button and other icons can't work. \n\nClick the TOR icon in the top left, and press \"Privacy and Security Settings\", and turn it down to at least Medium-High.\n\n**Why can't I log in?**\n\nYou probably need to enable javascript. Click the NoScript icon in the top left and whitelist the site.\n\n**Why are other categories/tags broken?**\n\nYou probably have Javascript disabled. Click the NoScript icon in the top left and whitelist the site.\n\nBe aware that the clearnet gateway (onion.to or onion.cab) isn't fully functional because of the javascript used on UnderSteem. To get a proper experience on UnderSteem, [download TOR](https://torproject.org)\n\n**I don't trust UnderSteem with my password, can I still use this service some other way?**\n\nYES. You can use your posting key as your password. Go to your Steemit account, click on \"Wallet\", then \"Permissions\". Click \"Show Private Key\" on your posting key, and paste that into the password box of UnderSteem. \n\nThis will only give the site the ability to make posts/comments, and upvote. It will not be able to access your wallet, or change your keys/password.\n\n**Is there an NSFW filter?**\n\nNO. We do not approve of any of the filtering. If you want filtered content (or are in a family/work setting), continue to use Steemit.\n\n\n---\n\nDo you like what I'm doing for STEEM/Steemit?\n----\n[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. \n----\nDon't forget to follow me for more like this.\n-------",
+    "body_length": 5830,
+    "cashout_time": "2016-10-12T21:37:15",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-11T16:40:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"censorship\",\"privacy\"],\"image\":[\"https:\\/\\/i.imgur.com\\/UPxM1Jf.png\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@someguy123\\/steem-tor-node-protecting-your-privacy\",\"https:\\/\\/steemit.com\\/steem\\/@someguy123\\/proof-of-riseup-donation\",\"https:\\/\\/steemit.com\\/steemit\\/@someguy123\\/anonsteem-create-anonymous-steem-accounts-without-social-media\",\"https:\\/\\/github.com\\/Someguy123\\/understeem\\/\",\"https:\\/\\/torproject.org\",\"http:\\/\\/usteempccoapgood.onion\",\"http:\\/\\/usteempccoapgood.onion.to\",\"https:\\/\\/steemit.com\\/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T22:43:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 200808528786505,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3050.626 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "understeem-steemit-without-censorship-nsfw-filter-removed-via-tor",
+    "post_id": 922912,
+    "promoted": "45.000 HBD",
+    "replies": [],
+    "root_title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520098232581",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14578836542539",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2482055809",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013424240",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552662812",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43649459756",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330064009",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171009273",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1365996941130",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499845540",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "775709423",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230642309",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11556829072",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "886822486398",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1638222754037",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40299209243",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623593533",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425383800",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386982638085",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70382374681",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13249527549",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012427662",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20531699161",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86272166575",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15962662083",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "80206942745",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249020721",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370944375",
+        "voter": "tahriq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36912169977",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342618400",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2030462552",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2937944308",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3786614861",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "429459071",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39483084653",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454984734",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10849529390",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483322416",
+        "voter": "raphma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24460059681",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29794491605",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8190688617",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5708364182",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115523854",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13229757929",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114402874",
+        "voter": "venuspcs1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225034404",
+        "voter": "steemitdude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27129614744",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3624449018",
+        "voter": "hornytrucker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1036500158",
+        "voter": "stormblaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50335383247",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "472162487313",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8117853119",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282929283",
+        "voter": "riosparada"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "18584578406",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6891964038",
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20772861575",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339050685",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230347891",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11009179622",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1147003326",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115008476",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61167862",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6622871124",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60661014",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73975374",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64453409753",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3160987433",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1443290254",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10075258049",
+        "voter": "scifiwriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58816907",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58064982",
+        "voter": "zite"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "2977610188",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429328557",
+        "voter": "the-how-to-guy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2921761313",
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "813530163",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184399167",
+        "voter": "hornytrucker1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53451619",
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221181360",
+        "voter": "jaredandanissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54632424",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1208004939",
+        "voter": "ateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54012814",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53764342",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106768414",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53531096",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807251193",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1827939594",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1477822277",
+        "voter": "pakganern"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52591574",
+        "voter": "julianoneill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67560303",
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162804079",
+        "voter": "hornyasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129862184",
+        "voter": "rarcntv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91692568",
+        "voter": "nikomah"
+      }
+    ],
+    "author": "venuspcs",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<h1>Why I was such a tool and kept rage quitting and freaking out!</h1>\n\nWatch these two video's I posted a week or two ago:\n\n<center>(https://www.youtube.com/watch?v=KTsOvdSVWaI)</center>\n<center>&</center>\n<center>(https://www.youtube.com/watch?v=qztAKXU83Fg)</center>\n\nThe short of the story is this:\n\nOn July 4th, only a few days after starting a new truck driving job, my mother passed away. On the 6th of July I picked up her ashes and she almost immediately started haunting me whenever I would try and sleep. For almost 7 weeks I went with only approximately 1 hour a night sleep because of her. Now I normally only sleep 2-3 hours a night so it took a while for the effects of this to really hit me. But about 5 weeks ago it did and I didn't even realize it. I had become an absolute monster.\n\nOnce I was able to get a load to the ocean (Miami, FL) and \"feed her to the fishies\" she left me alone and I have been back to my normal 2-3 hours a night sleep. I should note that I have a lot of injuries that prevent me from sleeping more than a few minutes at a time. Hence the reason I sleep so little.\n\nNow ordinarily I would say \"but that is no excuse\" and I would be right.....but the truth is seldom as black-and-white as that. In fact, in this case, it is an excuse and a damn good one IMHO. During that 7 weeks of averaging 1 hour a night sleep there were 10 nights with absolutely zero sleep. Guess what days I flipped out the worst....that's right on the nights I got no sleep at all. Between the pain I live with daily (which is 10 fold when I don't get sleep), the haunting by my mother, the lack of work (not driving or making any money) and the untold stress I was under because of all of the above I was quite literally \"not myself\".\n\nI will admit that I should have \"been aware of the way things were\" and avoided public interactions, however, the effects crept up slowly over roughly 4 weeks and went unnoticed. In fact I had no idea why I was acting the way I was until after I buried mom at sea. I knew something was wrong but thought Steemit had turned against me.....no idea in my head at the time that it was actually my fault, my behavior that had pushed Steemians away.\n\nBefore I could even realize what I was doing and that I was at fault I was banned from Steemit.Chat, multiple times on different accounts. For weeks I was unable to get on chat (for more than a few minutes before getting banned again) and if it weren't for my bestie (@steemitqa) I still wouldn't be on chat.\n\n<h1>The Apology!</h1>\n\nTo everyone I pissed off, offended, hurt, embarrassed or made think less of me <b>I AM TRULY SORRY!</b> I wasn't being myself and I assure you that it will never happen again. My stress level is still high and my wallet empty but I have learned from the past and my past mistakes and now recognize when I am becoming a tool and step away as I did earlier today when I was involved in a small disagreement with @noisy and it got under my skin. I didn't flip out, or rage quit. I just left Chat for an hour or two and went and did other things.\n\nI promise that you will never see any more Public Tantrums, Rage Quits or other asinine behavior from me. \n\n<h1>How not to act on Steemit & Steemit.Chat!</h1>\n\nFirst let me say that \"Free-Speech is a double-edged sword\" which is a lesson I learned the hard way. Yes you are free to say whatever you want on Steemit and Steemit.Chat, but just like IRL there are consequences to your actions. This is a quick guide, Steemit Etiquette if you will:\n\n<ul>\n<li>Treat Others the Way You Want to be Treated - I know this is an old adage but it is the most important thing I can impart to anyone and it doesn't just apply to Steemit/Chat!</li>\n<li>Telling the whale that has repeatedly upvoted your content and made you tons of SP to \"go f*&k yourself\" repeatedly in a public chat room is also REALLY REALLY not a good idea. Even after he \"forgave\" me and told the mods to let me back on Chat I fear I will never regain his trust or his upvotes. Thankfully he wasn't a vengeful person and didn't flag everything I ever posted. Not going to call him by name as he asked to be \"left alone\" and I respect that.....but if you read this I REALLY AM SORRY MAN!</li>\n<li>Remember when posting or commenting on Steemit.com or in Steemit.Chat that you aren't the only one who is going to read what you write. There are people of all ages, genders, ethnicities, educational levels, languages and income levels (both on Steemit and IRL) that will see your post/comment.....so be mindful of what you say and more specifically HOW IT WILL BE INTERPRETED!</li>\n<li>Just because your post/comment doesn't make tons of money doesn't mean it wasn't Quality Content. It just means that no one saw it. (Unless you do like me and piss everyone off then it doesn't matter how good your writing is it still won't make any money!)</li>\n<li>Spamming your posts (links) to people on Steemit.Chat will turn them against you so when you do make a mistake they will be even more likely to complain and have you banned or worse flag your posts.</li>\n<li>The secret to becoming successful on Steemit is simple, really: Spend time getting to know people in Chat, voting and commenting (Curating) other's posts and when you do Promote your content do it in the proper rooms. Also make sure you encourage people who do find your posts to \"follow me\" with a link to your Blog (https://steemit.com/@venupscs).</li>\n</ul>\n\n<h1>Summary!</h1>\n\nIf you let stuff bother you, get under your skin and don't step away from the situation you will wind up in my shoes, ignored by Steemians and destined to never again make any money or get any help from them, even when you need it the most.\n\n<h2>SO DON'T BE LIKE ME, BE BETTER!</h2>\n\n<hr>\n\nOh and make sure you <a href=\"https://steemit.com/@venuspcs\">Follow Me</a>!",
+    "body_length": 5839,
+    "cashout_time": "2016-10-07T01:23:57",
+    "category": "steemit",
+    "children": 30,
+    "created": "2016-09-05T17:25:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"blog\",\"writing\",\"life\",\"apology\"],\"users\":[\"noisy\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/KTsOvdSVWaI\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/qztAKXU83Fg\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=KTsOvdSVWaI\",\"https:\\/\\/www.youtube.com\\/watch?v=qztAKXU83Fg\",\"https:\\/\\/steemit.com\\/@venupscs\",\"https:\\/\\/steemit.com\\/@venuspcs\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T17:25:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 20674014672496,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "47.827 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "yes-i-was-a-tool-for-a-few-weeks-and-here-is-why-with-a-formal-apology-also-how-not-to-act-on-steemit-and-steemit-chat",
+    "post_id": 864506,
+    "promoted": "44.743 HBD",
+    "replies": [],
+    "root_title": "Yes I was a tool for a few weeks and here is why WITH A FORMAL APOLOGY - also - how not to act on Steemit & Steemit.Chat",
+    "title": "Yes I was a tool for a few weeks and here is why WITH A FORMAL APOLOGY - also - how not to act on Steemit & Steemit.Chat",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@venuspcs/yes-i-was-a-tool-for-a-few-weeks-and-here-is-why-with-a-formal-apology-also-how-not-to-act-on-steemit-and-steemit-chat"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/max_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/max_limit.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..d9eb017edd9359b63c1d04177abe2011d48bbba6
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/max_limit.pat.json
@@ -0,0 +1,101602 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "-10000",
+        "reputation": 145171381514207,
+        "rshares": -28338941273774,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 446491524573,
+        "rshares": -56560374008,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17094999940,
+        "rshares": 515865522774,
+        "voter": "panadacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 591238736691,
+        "voter": "barrie"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 32455846463901,
+        "rshares": -31244889730986,
+        "voter": "smooth"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 14765040488827,
+        "rshares": -25869425303440,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "8900",
+        "reputation": 13270505121655,
+        "rshares": 56923627230317,
+        "voter": "ned"
+      },
+      {
+        "percent": "-4000",
+        "reputation": 0,
+        "rshares": -61162327823,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 5861402538757,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "3500",
+        "reputation": 8358591595454,
+        "rshares": 2012701974707,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1105925638130,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1595196737607,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 986803208166,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5034399699326,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103422054,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767892961,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690943799,
+        "voter": "bunny"
+      },
+      {
+        "percent": "4900",
+        "reputation": 59074616588451,
+        "rshares": 3573913851034,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6282474172783,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54717838235,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662987228,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213785292,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 209038160029,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 12928765689257,
+        "rshares": 7692488765,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 3455872549975,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1241362310762,
+        "rshares": 6781848343,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1387859952,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250001478305,
+        "rshares": 106098683047,
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 855490468340,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 115524100455,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8261386990,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2104057003,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 83941319998,
+        "rshares": -5694232013608,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 988597560715,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 564763376378,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 168058097416,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 61457593326,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 29414306405,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624912728,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "100",
+        "reputation": 7458354230246,
+        "rshares": 902943814,
+        "voter": "stoner19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 971397151,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 400674324536,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 821205239311,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "1000",
+        "reputation": 8963739580468,
+        "rshares": 16122243298,
+        "voter": "team"
+      },
+      {
+        "percent": "2100",
+        "reputation": 37454101478493,
+        "rshares": 68140066479,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327447579267,
+        "rshares": 335329901210,
+        "voter": "lighthil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288337653,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 84761882611,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 221378412917,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 156355134109,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 125237012083,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 384189354393,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78953157492,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 24177692381,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 47071100260,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5380704535,
+        "rshares": 182161233136,
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 27507445535,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15043635029,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1091318863571,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3913661416,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 537679658162,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 477297643,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "100",
+        "reputation": 35537325381339,
+        "rshares": 19875326051,
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5373300397,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 31632644129,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2191644256,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1709548184767,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 292403125620,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 91790166084,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 15755437221598,
+        "rshares": 6782998784,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 134023949190,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 32871946754,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 490595494,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 67870898638,
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 60877390332151,
+        "rshares": 286727574871,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425998946,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16325478562,
+        "rshares": 1703165248,
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 7184649989,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 584817224,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 79084857477,
+        "voter": "theshell"
+      },
+      {
+        "percent": "3000",
+        "reputation": 16234753830016,
+        "rshares": 22641839395,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 51307800519,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 5388661415,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3915776982262,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 403407002721,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 426836364,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 372600185,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 147474797358,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 370486042445,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "100",
+        "reputation": 62345041692781,
+        "rshares": 6226063990,
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "100",
+        "reputation": 20763505296686,
+        "rshares": 4666893911,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53642020280,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 112536244257,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 18290477525,
+        "voter": "samether"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5888717170887,
+        "rshares": 20435826971,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4477973596,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13353893819,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19195451431,
+        "voter": "ziv"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2676865682314,
+        "rshares": -37886485933,
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 814177904,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "7500",
+        "reputation": 1331218317408,
+        "rshares": 6651057809,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 187723859372,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5901731263,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "0",
+        "reputation": 2419162524790,
+        "rshares": 13475779704,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 106662592446,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 46106881411,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2879418324,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 36344377648,
+        "rshares": 22456450828,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6740408834,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 90461089451,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 70695307715,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 14764907307,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 73424982025,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "900",
+        "reputation": 6767512298331,
+        "rshares": 4332771254,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17687843258,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 18766219906,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 5157854283,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17552893571,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 283436852,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 288748933789,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52215058764,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 331004446932,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4775693686,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 62198582831,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 249608253,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 86432384761,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3299480410,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254364900,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 22617124650,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122156869592,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 48022035978,
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866922528456,
+        "rshares": 977288096,
+        "voter": "lontong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 135562023252,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 13300237653,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 124913925653,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 26683327851,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573516438,
+        "rshares": 2707813985,
+        "voter": "wintrop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 514388137239,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 25581639649,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1344524912605,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 155010079441,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727668809534,
+        "rshares": 5523230874,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 71594122778,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 16832656768,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 42564757970,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1268462097,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 8279675078,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40069670306,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1632266140,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 55667692,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4524453413,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4046708005,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4687463894,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 40136504296,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3759809896,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 2630980347,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 27635550326,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24959867898,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10845979381,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 228465690,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 296045327034,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 79351054414,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 13957994657,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 12385010041,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 400742354,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 484888225,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 5747716426,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 75001817111,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44353154247,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7146190847,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 9028095567,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3710621464,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "1000",
+        "reputation": 51478739136,
+        "rshares": 5254853525,
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13560062590,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3175676972,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2552560220,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 189609178496,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "1400",
+        "reputation": 9709066337974,
+        "rshares": 4380569189,
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 296100567501,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 20078314404,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "4900",
+        "reputation": 224144957883,
+        "rshares": 7161559782,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8247905495,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18706560189,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 4078813249,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 13966407599,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 23276095473,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5317355087,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 9242725695,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1878917499597,
+        "rshares": 5575772867,
+        "voter": "sharker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182819821534,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 1103176661,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 977888223951,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101628344707,
+        "rshares": 818040957,
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 39295777834,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 1428031362,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1782690382,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82922763538,
+        "rshares": 125979055,
+        "voter": "kottai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269576627,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269980297,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156093986,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156975275,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89476508,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 56769328536,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 115403915,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9802713874,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 4554249461,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078296488269,
+        "rshares": 10450628476,
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27988491601746,
+        "rshares": 25772328103,
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 13637653306,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 15826604583,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 455136533,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "2300",
+        "reputation": 568560955800,
+        "rshares": 8541510354,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15580395475,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639099484,
+        "voter": "curator"
+      },
+      {
+        "percent": "8200",
+        "reputation": 7172977970558,
+        "rshares": 2410557662,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 432302630,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1634018670,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 231618512,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 13498521499,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81028161,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1713978326,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "0",
+        "reputation": 5571312226030,
+        "rshares": 165045645,
+        "voter": "beanz"
+      },
+      {
+        "percent": "100",
+        "reputation": 6545561317919,
+        "rshares": 273280899,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 31769283842,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 149502446,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 4564708091,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 2873988066,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1454976935454,
+        "rshares": 3459421629,
+        "voter": "carlas10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1493719735,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 4189235490,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7874311492,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 689524426,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5394692942,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 4481547788,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 61911147,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 7265644466,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 61700262,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 46418159604,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 588460890536,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 8609049381,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 14224054622,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "0",
+        "reputation": 6887127798781,
+        "rshares": 655589667,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 2090553241,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4256758523,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8452120116,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 519457263879,
+        "rshares": 60138244071,
+        "voter": "poteshnik83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 99476907271,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 392193612,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 112411845286,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1348324437,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21004018124,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11270713350,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 150794650,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 83986507131,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5527031256,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 57523014,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2512217855,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 493960660,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 63555792,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 58453204,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3401416945201,
+        "rshares": 3015124995,
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439786891,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151272123831,
+        "rshares": 219039434,
+        "voter": "xcepta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 748990287,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 57914427,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 19865005311,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 56535984,
+        "voter": "steema"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4130836907564,
+        "rshares": 5769564425,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 73061236,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "0",
+        "reputation": 237071800963,
+        "rshares": 65927774,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 71228043,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28924632850,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 74898697,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 58639072,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 102741069,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 78765183,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 10750764390,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2816953736,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1399636656,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59750246,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5927843564,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587729701840,
+        "rshares": 890579467,
+        "voter": "crazycow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 998787616929,
+        "rshares": 3977281078,
+        "voter": "lamech-m"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 9470181501,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": -52839282898,
+        "rshares": 382699085,
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 12003456501,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55399493,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56575537,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56570509,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387660,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 10109582992,
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 88078809749,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 192287988,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1592064374,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 23660021285,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5932358367,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 48131519933,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9053611702217,
+        "rshares": 4001380728,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "1000",
+        "reputation": 11490547563070,
+        "rshares": 2391702679,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73481598898,
+        "rshares": 101945845,
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 433370384966,
+        "rshares": 1679360131,
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58631508,
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 915016,
+        "rshares": 57412782,
+        "voter": "drsamkhan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54999739,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 105180541620,
+        "rshares": 103040256,
+        "voter": "adrevel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 61202458,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 2894276750,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31060848452,
+        "rshares": 64070582,
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1559083086,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1893166639,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 9771811576,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 4912386907,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 947456313,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227415344771,
+        "rshares": 69985187,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 80557869,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 2475119042,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 99564797338,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 7076299362,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 61715783,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 3325599818,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11968284833,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961187,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2455208676,
+        "rshares": 56665974,
+        "voter": "viktorriver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 7018683565,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 3103345545,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1652709870,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 6919572472,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 53966805,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54730557,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 12191050487,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15497139800,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3938044420,
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54362089,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 2032879970,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5655677010,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54019345,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54017499,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305485265118,
+        "rshares": 56837113,
+        "voter": "blogx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 17788079417,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1089484775,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53640464,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 85546636,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53331040,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117903399171,
+        "rshares": 537067064,
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53324520,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318865,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287913287,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1697516350,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2664939129,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52988378,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 732461217,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573818727139,
+        "rshares": 220578638,
+        "voter": "mamo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 1706277109,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 860146710,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039974,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4841952237,
+        "voter": "burnin"
+      },
+      {
+        "percent": "3300",
+        "reputation": 563927807986,
+        "rshares": 558512952,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 206212756,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4652459969,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2770826537,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 1336513482,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 390796425,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327349908318,
+        "rshares": 357202147,
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 55826263,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 2339486479,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 50852949,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 9400577403,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 70358845,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": -519870545601,
+        "rshares": 52648858,
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 330163263,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4796038584,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161389518041,
+        "rshares": 147415673,
+        "voter": "flowergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51141851,
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1150196390848,
+        "rshares": 101153586,
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1693077690,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 846735133,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50798322,
+        "voter": "breeze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50796122,
+        "voter": "factom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50794039,
+        "voter": "autodesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50570250,
+        "voter": "ziggo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50482289,
+        "voter": "connection"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 50317220,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1289521305818,
+        "rshares": 1824788165,
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663398753211,
+        "rshares": 1161216291,
+        "voter": "ayim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3675242983,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192046357763,
+        "rshares": 346259703,
+        "voter": "julia26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 488963228,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843039218853,
+        "rshares": 696884040,
+        "voter": "ziogio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 77637243,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312902704,
+        "rshares": 80800689,
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630535104158,
+        "rshares": 79083956,
+        "voter": "silverbackjonz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 506147790,
+        "rshares": 23984282056,
+        "voter": "abdullar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1204472546,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157643687,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8423377122,
+        "rshares": 162128433,
+        "voter": "cebymaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2064615506,
+        "rshares": 143818142,
+        "voter": "eunnykim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 374016850,
+        "rshares": 162785391,
+        "voter": "olga4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675589247639,
+        "rshares": 1065182434,
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3319016,
+        "rshares": 161974443,
+        "voter": "zapply"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158642800,
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678509864471,
+        "rshares": 282877474,
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585181578869,
+        "rshares": 975048251,
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161212160,
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161205518,
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160973134,
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157801695,
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 157654556,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11669657116,
+        "rshares": 125721183,
+        "voter": "rubenkusters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7559361841,
+        "rshares": 160269480,
+        "voter": "adpipop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 103667189,
+        "voter": "charli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33427042566,
+        "rshares": 147606365,
+        "voter": "laskovskiy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147145004,
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2492569,
+        "rshares": 159524423,
+        "voter": "radent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10568161397,
+        "rshares": 125821091,
+        "voter": "jasonxg"
+      }
+    ],
+    "author": "ned",
+    "author_reputation": 13270505121655,
+    "beneficiaries": [],
+    "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards.  One prime use for this could be the @steemit account.  @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator.  This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool.  Now they each have 4, 4, and 4 SP to be used to curate.  Better curation would earn them more curation rewards.  \n\nA side effect of delegated voting pools could be voting markets.  Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence.  This could make the system very clear in the regard that stake is either in or it is out.  Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence.  Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?",
+    "body_length": 2399,
+    "cashout_time": "2016-09-14T15:44:51",
+    "category": "steem",
+    "children": 315,
+    "created": "2016-09-07T15:44:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T15:50:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21098346399884,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "47.466 HBD",
+    "percent_hbd": 10000,
+    "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction",
+    "post_id": 1160043,
+    "promoted": "500.000 HBD",
+    "replies": [],
+    "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction",
+    "title": "Increasing Curation, Demand for Steem Power and Community Interaction",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2880158649350,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20297981245452,
+        "rshares": 6687374255890,
+        "voter": "abit"
+      },
+      {
+        "percent": "1000",
+        "reputation": 89703349977794,
+        "rshares": 200447957857,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 210935138158,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34834219645,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4698991891366,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 26220797410,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 21778271226,
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 77911793572,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24461868889,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78937661777,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5545238056434,
+        "rshares": 36121015938,
+        "voter": "shawn-brewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 596707334180,
+        "rshares": 3904360862,
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 26249875274,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6578969489361,
+        "rshares": 248316250061,
+        "voter": "streemian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2099078596,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 337675588507,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5414208804644,
+        "rshares": 17248438039,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 18755603275,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 165650897784,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 25097559512,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 76844247566,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432241835,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 410319999929,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 37377306695,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 511460192391,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10327600289,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12946826891,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 52936065000,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 73185813892,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 77537857911,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 197195881315,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2749451100,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 138950405749,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 221091582746,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 64268303501,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12851721450,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 38550537913,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 9611538383,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 58347816344,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 151155773,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 51525374588,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 7787278104,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 7679056409,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 198782719642,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 42477391661,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 60016404960,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 14939382244,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2764181865,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 34512234336,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10505948257,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 14166466386,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2806857550600,
+        "rshares": 6881801299,
+        "voter": "jholmes91"
+      },
+      {
+        "percent": "5000",
+        "reputation": 19111656178138,
+        "rshares": 28518514026,
+        "voter": "furion"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9142611234,
+        "rshares": 343839867,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3871042,
+        "rshares": 318227536,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 154307229509,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 13857572685,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 91679183298,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 11951646778,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 248223472,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 738272708,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 975960321,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 880403645,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 173814887348,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4881725425,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 35473257372,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4407297625,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 361354120568,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 12578911205,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 4155445347,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 42323621045,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2046548687,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1282893744,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 51736048406,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 40699637402,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 21204167062,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 20794627117,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373589253,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1897082508,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3782713987,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12702349860,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19973266240,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 73266692391,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203808871678,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 130741738,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 28054457341,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7719299049,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18462677959,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 618911664,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17164865565,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 2338655401,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 2230891004,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 9306232081,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5112788044,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2083171497,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2988238537,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 4975171514,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 27754515242,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2714089163,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4074243459,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 124647783712,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 52649085689,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9229282677,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 762973534,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 6316770118,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1127651626964,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 16114519862,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "500",
+        "reputation": 124802744033,
+        "rshares": 1589064570,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590577254,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1591154960,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2871713285,
+        "rshares": 66201979,
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 29198785189,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 262739616418,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1877080082,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 4399726965,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 15388176810,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 35537072494,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 5846804532,
+        "voter": "minion"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590888018,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590810612,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590655993,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590488698,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590312457,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590215340,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5836792362,
+        "rshares": 65973534,
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3352971280,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6111268639849,
+        "rshares": 2660556388,
+        "voter": "elfkitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2029364582916,
+        "rshares": 167413728,
+        "voter": "fishingvideos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3936367661,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 110699909,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4437884870,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 625756089,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1386125077,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118144531,
+        "rshares": 62207936,
+        "voter": "gregnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 36481801064,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 9153157264,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1709263095,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 81479984950,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51186720,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 62726567,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7173232709,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 11671890531,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 61414862,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61408183,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 101234990659,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 644629048075,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 10749879159,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 4435768463,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 2087199282,
+        "voter": "levycore"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1589879876,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 375942824,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 58573454,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166185808108,
+        "rshares": 88566696,
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 67820611671,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 7130857719,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 13266479333,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 11988797227,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3530818614,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58124470,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "500",
+        "reputation": 85132342011,
+        "rshares": 1566284561,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2497221434587,
+        "rshares": 4058499790,
+        "voter": "jaytaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 50765978,
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 354598090,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1648532870,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 176893913250,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 4503913660,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287896907,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58659918189,
+        "rshares": 96766264,
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 94397808,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 40194954027,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51449632,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 237684324298,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8671572242235,
+        "rshares": 3317000337,
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 68637860285,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 20473094261,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1607854693,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5277939809,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 3169237670,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50523318,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50470409,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50468091,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 687487630,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 160840003,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74154890902,
+        "rshares": 52767110,
+        "voter": "littlemorelove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26962533558,
+        "rshares": 59859092,
+        "voter": "fukako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51238118,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      }
+    ],
+    "author": "laonie",
+    "author_reputation": 10771708337101,
+    "beneficiaries": [],
+    "body": "<h3>  </h3> | <h3>What Is The RobinHood Whale?</h3>\r\n------------ | -------------\r\nhttps://img1.steemit.com/0x0/http://i.imgur.com/zk4a0fC.jpg | The @robinhoodwhale (RHW) is the community's solution to an essential problem that plagues Steemit: how to get noticed and upvoted before you have a big enough following. Right now, if you are not upvoted by a \"whale\" account, it is very difficult to get exposure and any substantial rewards, which leads to many great authors leaving Steemit. Robin Hood wants to be the \"whale\" that finds and helps a diverse set of talented, yet unrecognized authors. \r\nMore Info Here -> <a href=https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed>The RobinHood Whale Initiave</a>   |  [Announcing RobinHoodWhale](https://steemit.com/robinhoodwhale/@robinhoodwhale/announcing-robinhoodwhale-the-steemit-deep-sea-savior)\n<h3> Voting History (Real-Time Update) </h3> \n<li>01-09 <a href=https://steemit.com/introduction/@leahlindeman/what-do-we-do-when-life-gets-in-the-way-of-our-dreams>What Do We Do When Life Gets in the Way of Our Dreams?</a> by @leahlindeman in <a href=https://steemit.com/trending/introduction>introduction</a></li>\n<li>01-09 <a href=https://steemit.com/savings/@sgnsteems/a-tale-of-a-couponer-the-beginning>A Tale of a Couponer- The Beginning</a> by @sgnsteems in <a href=https://steemit.com/trending/savings>savings</a></li>\n<li>01-09 <a href=https://steemit.com/politics/@heretickitten/abortion-your-body-your-choice-or-is-it-the-child-s-body-that-you-are-choosing-for>Abortion: Your body, your choice? Or is it the child's body that you are choosing for?</a> by @heretickitten in <a href=https://steemit.com/trending/politics>politics</a></li>\n<li>01-09 <a href=https://steemit.com/story/@randomstories/my-experience-partying-with-tai-lopez-the-here-in-my-garage-guy>My Experience Partying with Tai Lopez (The \"Here In My Garage\" Guy)</a> by @randomstories in <a href=https://steemit.com/trending/story>story</a></li>\n<li>01-09 <a href=https://steemit.com/life/@delphia16/the-power-of-fear-an-original-poem>The Power of Fear  (An Original Poem)</a> by @delphia16 in <a href=https://steemit.com/trending/life>life</a></li>\n<li>01-09 <a href=https://steemit.com/life/@lesliestarrohara/toilet-fires-marilyn-manson-and-my-introduction-to-the-sweet-sweet-taste-of-satire>Toilet Fires, Marilyn Manson, and My Introduction to the Sweet, Sweet Taste of Satire</a> by @lesliestarrohara in <a href=https://steemit.com/trending/life>life</a></li>\n<li>01-09 <a href=https://steemit.com/mathematics/@hanshotfirst/i-have-one-word-for-you-math-sucks-how-i-convince-my-students-with-special-needs-that-algebra-is-important>I have one word for you...\"Math Sucks!\" How I Convince My Students with Special Needs That Algebra is Important.</a> by @hanshotfirst in <a href=https://steemit.com/trending/mathematics>mathematics</a></li>\n<li>01-09 <a href=https://steemit.com/cryptography/@norbu/the-adam-and-eve-of-cryptography-meet-alice-and-bob>The Adam and Eve of Cryptography, Meet Alice and Bob!</a> by @norbu in <a href=https://steemit.com/trending/cryptography>cryptography</a></li>\n<li>01-09 <a href=https://steemit.com/fitness/@chhayll/the-best-exercise-for-longevity-great-health-and-a-great-body>The best exercise for longevity, great health and a great body</a> by @chhayll in <a href=https://steemit.com/trending/fitness>fitness</a></li>\n<li>31-08 <a href=https://steemit.com/introduceyourself/@ashe-oro/hello-steemit-i-interviewed-ceo-ned-scott-on-steemit-com-the-future-of-social-media-liberty-entrepreneurs-podcast>Hello Steemit!  I interviewed CEO Ned Scott on \"Steemit.com - The Future of Social Media\" [Liberty Entrepreneurs Podcast]</a> by @ashe-oro in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>31-08 <a href=https://steemit.com/writing/@strangerarray/taking-the-mask-off-steemit-does-steemit-work-for-you-or-do-you-work-for-steemit>Taking the Mask off Steemit: Does Steemit Work for You or Do You Work for Steemit?</a> by @strangerarray in <a href=https://steemit.com/trending/writing>writing</a></li>\n<li>31-08 <a href=https://steemit.com/introduceyourself/@melisalerue/hello-steemit-welcome-to-my-world-may-the-adventure-begin>Hello Steemit! Welcome to my world\u2026 may the adventure begin!</a> by @melisalerue in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>31-08 <a href=https://steemit.com/steemit/@mattclarke/the-new-normal>The new normal</a> by @mattclarke in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>31-08 <a href=https://steemit.com/life/@sarahjordan/a-totally-different-life-in-one-year>A Totally Different Life in One Year</a> by @sarahjordan in <a href=https://steemit.com/trending/life>life</a></li>\n<li>31-08 <a href=https://steemit.com/family/@papa-pepper/why-children-are-like-pit-bulls-part-1>Why Children are Like Pit Bulls - Part 1</a> by @papa-pepper in <a href=https://steemit.com/trending/family>family</a></li>\n<li>31-08 <a href=https://steemit.com/music/@steemitpatina/this-year-a-dj-s-saving-my-life-meet-david-olam>This Year, a DJ's Saving My Life - Meet David Olam</a> by @steemitpatina in <a href=https://steemit.com/trending/music>music</a></li>\n<li>31-08 <a href=https://steemit.com/life/@contentjunkie/tips-and-tricks-to-winning-at-blackjack-lessons-learned-by-a-solo-card-counter>Tips and Tricks to Winning at Blackjack - Lessons Learned by a Solo Card Counter</a> by @contentjunkie in <a href=https://steemit.com/trending/life>life</a></li>\n<li>30-08 <a href=https://steemit.com/science/@mione/how-english-was-made-one-language-s-long-journey-from-humble-to-honorificabilitudinitatibus>How English was Made: One Language\u2019s Long Journey from Humble to Honorificabilitudinitatibus</a> by @mione in <a href=https://steemit.com/trending/science>science</a></li>\n<li>30-08 <a href=https://steemit.com/programming/@cristi/most-voted-authors-by-whales-this-week-s-data-aug-22-aug-29>Most Voted Authors by Whales - This Week's Data (Aug. 22 - Aug. 29)</a> by @cristi in <a href=https://steemit.com/trending/programming>programming</a></li>\n<li>30-08 <a href=https://steemit.com/steemstats/@furion/steem-analysis-ownership-distribution-and-the-whale-selling-pressure>STEEM Analysis :: Ownership Distribution and the Whale Selling Pressure</a> by @furion in <a href=https://steemit.com/trending/steemstats>steemstats</a></li>\n<li>30-08 <a href=https://steemit.com/sciencefiction/@gonzo/the-dark-side-of-the-blockchain-chapter-eight-ned>The Dark Side of the Blockchain - Chapter Eight - Ned</a> by @gonzo in <a href=https://steemit.com/trending/sciencefiction>sciencefiction</a></li>\n<li>30-08 <a href=https://steemit.com/politics/@emsenn/is-it-better-to-starve>Is It Better to Starve?</a> by @emsenn in <a href=https://steemit.com/trending/politics>politics</a></li>\n<li>30-08 <a href=https://steemit.com/real-talk/@creationlayer/synereo-analysis-let-s-do-it-right-this-time>Synereo Analysis - Let's do it right this time.</a> by @creationlayer in <a href=https://steemit.com/trending/real-talk>real-talk</a></li>\n<li>30-08 <a href=https://steemit.com/life/@aaronburt/how-i-made-bank-selling-my-school-s-wifi-password>How I made Bank Selling My School's WiFi Password</a> by @aaronburt in <a href=https://steemit.com/trending/life>life</a></li>\n<li>30-08 <a href=https://steemit.com/life/@kainmarx/child-abuse-and-my-experiences-dealing-with-it-as-a-child-the-actions-effects-and-outcomes>Child Abuse and my experiences dealing with it as a child. (The actions, effects and outcomes.)</a> by @kainmarx in <a href=https://steemit.com/trending/life>life</a></li>\n<li>30-08 <a href=https://steemit.com/poetry/@tltran/15-year-old-regret-is-laid-to-rest-a-poem>15-Year-Old Regret is Laid To Rest:  A Poem</a> by @tltran in <a href=https://steemit.com/trending/poetry>poetry</a></li>\n<li>30-08 <a href=https://steemit.com/art/@diana.catherine/benetton-the-creativity-the-controversy-and-the-reality-that-we-try-to-avoid>Benetton: the creativity, the controversy and the reality that we try to avoid.</a> by @diana.catherine in <a href=https://steemit.com/trending/art>art</a></li>\n<li>30-08 <a href=https://steemit.com/writing/@artist1989/the-creation-of-the-book-beatrix-percival-inspiration-and-creative-process>The Creation of The Book \"Beatrix Percival\" - Inspiration & Creative Process</a> by @artist1989 in <a href=https://steemit.com/trending/writing>writing</a></li>\n<li>30-08 <a href=https://steemit.com/robinhoodwhale/@robinhoodwhale/announcing-robinhoodwhale-the-steemit-deep-sea-savior>Announcing RobinHoodWhale, the Steemit Deep Sea Savior</a> by @robinhoodwhale in <a href=https://steemit.com/trending/robinhoodwhale>robinhoodwhale</a></li>\n<li>28-08 <a href=https://steemit.com/life/@mada/buying-organic-tobacco-leaves-as-an-agricultural-commodity-to-make-your-own-affordable-high-quality-cigarettes-a-guide-in>Buying organic tobacco leaves as an agricultural commodity to make your own affordable, high-quality cigarettes: a guide in pictures</a> by @mada in <a href=https://steemit.com/trending/life>life</a></li>\n<li>28-08 <a href=https://steemit.com/technology/@sauravrungta/quantum-computers-the-future-of-computing>Quantum Computers: The Future of Computing</a> by @sauravrungta in <a href=https://steemit.com/trending/technology>technology</a></li>\n<li>28-08 <a href=https://steemit.com/robinhoodwhale/@lukestokes/trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale>Trusting the Hive Mind: Building My Own Voting Bot for Robinhoodwhale</a> by @lukestokes in <a href=https://steemit.com/trending/robinhoodwhale>robinhoodwhale</a></li>\n<li>28-08 <a href=https://steemit.com/art/@lukmarcus/wicker-heart-with-roses-made-from-paper-and-ribbon-beautiful-present-from-my-wife-to-hers-grandmother-on-70th-birthday>Wicker heart with roses made from paper and ribbon! Beautiful present from my wife to hers grandmother on 70th birthday!</a> by @lukmarcus in <a href=https://steemit.com/trending/art>art</a></li>\n<li>28-08 <a href=https://steemit.com/science/@owdy/color-for-the-color-blind-the-science-behind-the-enchroma-glasses>Color for the color blind - The science behind the EnChroma glasses</a> by @owdy in <a href=https://steemit.com/trending/science>science</a></li>\n<li>28-08 <a href=https://steemit.com/introduceyourself/@anahilarski/graphic-design-and-social-media-pro-from-panama>Graphic Design and Social Media Pro from Panama</a> by @anahilarski in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>28-08 <a href=https://steemit.com/life/@sitaru/yes-you-are-right-to-fear-and-hate-islam-there-are-1-7-billion-potential-criminals-out-there>Yes, you are right to fear and hate Islam. There are 1.7 billion potential criminals out there.</a> by @sitaru in <a href=https://steemit.com/trending/life>life</a></li>\n<li>28-08 <a href=https://steemit.com/art/@kiddarko/time-lapse-daisy-painting-start-to-finish-in-4-minutes>Time Lapse Daisy Painting, Start to finish in 4 minutes</a> by @kiddarko in <a href=https://steemit.com/trending/art>art</a></li>\n<li>28-08 <a href=https://steemit.com/education/@dorit-israeli/experimental-learning-space-education-by-dr-dorit-israeli>Experimental Learning - Space Education; By Dr. Dorit Israeli</a> by @dorit-israeli in <a href=https://steemit.com/trending/education>education</a></li>\n<li>28-08 <a href=https://steemit.com/steemit/@webosfritos/thoughts-on-steemit-power-distribution-and-steempower-an-anthropology-based-approach>Thoughts on Steemit power distribution and SteemPower. An anthropology based approach!</a> by @webosfritos in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>28-08 <a href=https://steemit.com/anarchism/@naquoya/sometimes-we-just-need-to-rage-against-the-machine>Sometimes We Just Need To Rage Against The Machine</a> by @naquoya in <a href=https://steemit.com/trending/anarchism>anarchism</a></li>\n<li>28-08 <a href=https://steemit.com/science/@kazumba/modern-day-edgar-cayce-nostradamus>Modern Day Edgar Cayce/Nostradamus</a> by @kazumba in <a href=https://steemit.com/trending/science>science</a></li>\n<li>28-08 <a href=https://steemit.com/photography/@jaytaylor/on-international-dog-day-be-more-dog>On International Dog Day - Be More Dog</a> by @jaytaylor in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>27-08 <a href=https://steemit.com/life/@kateblack/a-rant-about-a-germ-obsessed-parent-and-outdoor-play>A Rant about a Germ Obsessed Parent and Outdoor Play</a> by @kateblack in <a href=https://steemit.com/trending/life>life</a></li>\n<li>27-08 <a href=https://steemit.com/money/@josephknowles/the-economics-of-ponyville>The Economics of Ponyville</a> by @josephknowles in <a href=https://steemit.com/trending/money>money</a></li>\n<li>27-08 <a href=https://steemit.com/groups/@tonypeacock/join-a-niche-online-community-here-s-10-reasons-why>Join a Niche Online Community - Here's 10 Reasons Why</a> by @tonypeacock in <a href=https://steemit.com/trending/groups>groups</a></li>\n<li>27-08 <a href=https://steemit.com/steem/@picokernel/alpha-squeek-io-twitter-alternative-for-the-steem-blockchain>[Alpha] Squeek.io - Twitter alternative for the steem blockchain</a> by @picokernel in <a href=https://steemit.com/trending/steem>steem</a></li>\n<li>27-08 <a href=https://steemit.com/introduceyourself/@robinhoodwhale/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore>Hi, I Am RobinHoodWhale And Here is My Story From The Blockchain Folklore</a> by @robinhoodwhale in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>28-08 <a href=https://steemit.com/steemit/@invisiblegorilla/rewarding-broken-english-has-steemit-become-a-platform-for-practicing-english-as-a-foreign-language>Rewarding Broken English: Has Steemit become a platform for practicing English as a foreign language?</a> by @invisiblegorilla in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>27-08 <a href=https://steemit.com/underground/@vermillion666/ghosts-of-croatia-part-ii-abandoned-underground-airport>GHOSTS OF CROATIA - PART II: Abandoned Underground Airport</a> by @vermillion666 in <a href=https://steemit.com/trending/underground>underground</a></li>\n<li>27-08 <a href=https://steemit.com/life/@kain-jc/meditation-the-art-and-benefits-of-freeing-your-mind>MEDITATION: The Art and Benefits of Freeing Your Mind</a> by @kain-jc in <a href=https://steemit.com/trending/life>life</a></li>\n<li>27-08 <a href=https://steemit.com/music/@cherish/rachmaninoff-big-hands-me-small-hands>Rachmaninoff \u2013 BIG HANDS. Me - small hands</a> by @cherish in <a href=https://steemit.com/trending/music>music</a></li>\n<li>27-08 <a href=https://steemit.com/travel/@blinova/amsterdam-a-dream-city-with-no-boundaries>My Trip to Amsterdam, a Dream City with No Boundaries. Including a Sensation White Party.</a> by @blinova in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>26-08 <a href=https://steemit.com/science/@stephmckenzie/four-generations-of-silence-how-i-solved-a-long-standing-family-mystery-with-dna>Four Generations of Silence--How I Solved a Long-Standing Family Mystery with DNA</a> by @stephmckenzie in <a href=https://steemit.com/trending/science>science</a></li>\n<li>26-08 <a href=https://steemit.com/life/@chrisadventures/journey-to-samos-greece-the-island-where-is-refugees-don-t-go-anymore-by-chrisadventures>Journey to Samos (Greece), the island where IS refugees don't go anymore - by chrisadventures</a> by @chrisadventures in <a href=https://steemit.com/trending/life>life</a></li>\n<li>26-08 <a href=https://steemit.com/blog/@doitvoluntarily/impressing-people-by-living-on-credit>Impressing People By Living On Credit</a> by @doitvoluntarily in <a href=https://steemit.com/trending/blog>blog</a></li>\n<li>26-08 <a href=https://steemit.com/blog/@arrowj/apparently-that-deserves-a-round-of-applause>Apparently That Deserves A Round Of Applause</a> by @arrowj in <a href=https://steemit.com/trending/blog>blog</a></li>\n<li>27-08 <a href=https://steemit.com/forex/@senseiteekay/how-to-forex-a-beginners-guide-to-forex-trading-part-3-forex-trading-strategies>How to Forex - A Beginners Guide to Forex Trading - Part 3: Forex Trading Strategies</a> by @senseiteekay in <a href=https://steemit.com/trending/forex>forex</a></li>\n<li>26-08 <a href=https://steemit.com/introduceyourself/@marissah/changing-the-way-the-world-views-breasts-my-intro>Changing the Way the World Views Breasts - My Intro</a> by @marissah in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>27-08 <a href=https://steemit.com/life/@menta/my-life-ended-when-i-was-25-years-old-part-1>My Life Ended When I Was 25 Years Old \u2013 Part 1</a> by @menta in <a href=https://steemit.com/trending/life>life</a></li>\n<li>26-08 <a href=https://steemit.com/photography/@justyna/why-ginger-is-new-black-violet-beard-stories-collaboration-with-wingz>Is Ginger The New Black? Lavender Beard Adventure  \u2014 collaboration with @wingz</a> by @justyna in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>25-08 <a href=https://steemit.com/science/@elemenya/why-invest-in-fusion-energy>Why Invest in Fusion Energy</a> by @elemenya in <a href=https://steemit.com/trending/science>science</a></li>\n<li>25-08 <a href=https://steemit.com/anarchy/@johan-nygren/law-memes-and-mental-illness-towards-a-new-psychiatry>Law, memes and mental illness: Towards a New Psychiatry</a> by @johan-nygren in <a href=https://steemit.com/trending/anarchy>anarchy</a></li>\n<li>25-08 <a href=https://steemit.com/introduceyourself/@krishnasuperstar/robots-are-sexy-let-me-introduce-myself>Robots are sexy! Let me introduce myself.</a> by @krishnasuperstar in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>25-08 <a href=https://steemit.com/photography/@thecryptofiend/how-colour-can-change-the-feel-of-a-photograph>How Colour Can Change the Feel of a Photograph</a> by @thecryptofiend in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>25-08 <a href=https://steemit.com/life/@quickfingersluc/how-to-build-self-confidence-and-learn-to-be-successful>How to build self confidence and learn to be successful</a> by @quickfingersluc in <a href=https://steemit.com/trending/life>life</a></li>\n<li>25-08 <a href=https://steemit.com/photography/@kommienezuspadt/unpublished-doris-mayday-fashion-editorial-steemit-exclusive>Unpublished Doris Mayday fashion editorial! STEEMIT EXCLUSIVE!</a> by @kommienezuspadt in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>25-08 <a href=https://steemit.com/philosophy/@krnel/the-power-to-create-good>The Power to Create Good</a> by @krnel in <a href=https://steemit.com/trending/philosophy>philosophy</a></li>\n<li>25-08 <a href=https://steemit.com/politics/@juvyjabian/war-against-drugs-the-intensive-campaign-of-the-newly-elected-president-of-the-republic-of-philippines>War Against Drugs, The Intensive Campaign of the Newly Elected President of the Republic of Philippines</a> by @juvyjabian in <a href=https://steemit.com/trending/politics>politics</a></li>\n<li>24-08 <a href=https://steemit.com/life/@omfedor/mistakes-discipleship-and-the-school-of-life-response-to-onetree-s-post>Mistakes, Discipleship and The School Of Life. [Response to @onetree's post]</a> by @omfedor in <a href=https://steemit.com/trending/life>life</a></li>\n<li>24-08 <a href=https://steemit.com/technology/@pulpably/are-we-using-our-free-time-to-shorten-our-lives>Are We Using Our Free Time to Shorten Our Lives?</a> by @pulpably in <a href=https://steemit.com/trending/technology>technology</a></li>\n<li>25-08 <a href=https://steemit.com/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream>Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!</a> by @steemdrive in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>24-08 <a href=https://steemit.com/photography/@jessica-miller/military-aircraft-original-photography-part-ii-up-close-and-personal-at-macdill-usafb>Military Aircraft [original photography] - Part II - Up Close and Personal at MacDill USAFB</a> by @jessica-miller in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>25-08 <a href=https://steemit.com/steem/@oumar/steemlocator-com-locate-businesses-accepting-steem-my-contribution-to-this-community>[STEEMLOCATOR.COM] Locate Businesses accepting Steem all over the World! My contribution to this community.</a> by @oumar in <a href=https://steemit.com/trending/steem>steem</a></li>\n<li>24-08 <a href=https://steemit.com/recipe/@lauralemons/my-five-favorite-alcoholic-beverages-of-all-time>My five absolute favorite alcoholic beverages.</a> by @lauralemons in <a href=https://steemit.com/trending/recipe>recipe</a></li>\n<li>24-08 <a href=https://steemit.com/steem/@lantto/steem-api-explorer>Steem API Explorer</a> by @lantto in <a href=https://steemit.com/trending/steem>steem</a></li>\n<li>24-08 <a href=https://steemit.com/business/@bitcalm/open-plan-offices-are-a-nightmare>Open plan offices are a nightmare</a> by @bitcalm in <a href=https://steemit.com/trending/business>business</a></li>\n<li>24-08 <a href=https://steemit.com/life/@kryptik/parts-of-me-how-i-learned-to-become-a-parent-at-12-years-old-part-2-the-sheltered-life>Parts of Me: How I learned to become a parent at 12 years old (Part 2) The sheltered life.</a> by @kryptik in <a href=https://steemit.com/trending/life>life</a></li>\n<li>24-08 <a href=https://steemit.com/gardening/@veronikapmy1989/here-are-some-frequently-asked-questions-about-topsoil-in-gardens>Here are some frequently asked questions about topsoil in gardens.</a> by @veronikapmy1989 in <a href=https://steemit.com/trending/gardening>gardening</a></li>\n<li>24-08 <a href=https://steemit.com/fun/@deanliu/a-dear-wang-letter-how-i-miss-you-and-steemit>A Dear Wang Letter - how I miss you and Steemit</a> by @deanliu in <a href=https://steemit.com/trending/fun>fun</a></li>\n<li>24-08 <a href=https://steemit.com/photography/@trisnawati/28nf1y-hunting-today-with-phone-camera-10-photos-include>Hunting today, with phone camera [10 photos include]</a> by @trisnawati in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>23-08 <a href=https://steemit.com/travel/@phenom/virtual-travelling-or-five-interesting-places-that-can-be-visited-with-google-street-view>Virtual Travelling or Five interesting Places that Can Be Visited with Google Street View</a> by @phenom in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>23-08 <a href=https://steemit.com/story/@dwinblood/innate-sense-of-rebellion-attacking-perceived-wrongness-first-step-towards-anarchism>Innate sense of rebellion.   Attacking perceived wrongness.   First step towards Anarchism.</a> by @dwinblood in <a href=https://steemit.com/trending/story>story</a></li>\n<li>24-08 <a href=https://steemit.com/yoga/@yogi.artist/stranded-in-the-alps-an-earthly-offering-and-the-magic-of-the-ganesh-mantra>Stranded In The Alps, An Earthly Offering & The Magic Of The Ganesh Mantra</a> by @yogi.artist in <a href=https://steemit.com/trending/yoga>yoga</a></li>\n<li>23-08 <a href=https://steemit.com/radiator/@inertia/how-to-write-a-ruby-on-rails-app-for-steem>How to Write a Ruby on Rails App for STEEM</a> by @inertia in <a href=https://steemit.com/trending/radiator>radiator</a></li>\n<li>24-08 <a href=https://steemit.com/photography/@webdeals/taking-steemit-to-the-end-of-the-land-land-s-end-cornwall-england-part-1>Taking Steemit to the end of the Land: Land\u2019s End, Cornwall, England [part 1]</a> by @webdeals in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>23-08 <a href=https://steemit.com/life/@marrywiger/steemit-will-change-the-world>Steemit will change the world ?</a> by @marrywiger in <a href=https://steemit.com/trending/life>life</a></li>\n<li>23-08 <a href=https://steemit.com/steemit/@thebatchman/steemit-is-on-fire-and-i-am-celebrating-in-three-dimentions>Steemit is on fire and I am celebrating... In three dimensions!</a> by @thebatchman in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>24-08 <a href=https://steemit.com/economics/@jasonstaggers/why-the-federal-reserve-can-never-raise-interest-rates>Why the Federal Reserve Can NEVER Raise Interest Rates</a> by @jasonstaggers in <a href=https://steemit.com/trending/economics>economics</a></li>\n<li>23-08 <a href=https://steemit.com/travel/@myfirst/my-photography-countryside-travelling>My Photography Countryside Travelling / \u604b\u4e0a\u90a3\u67ff\u5b50\uff0c\u60f3\u5403\u4f60\u5f97\u6709\u53e3\u597d\u7259</a> by @myfirst in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>23-08 <a href=https://steemit.com/writing/@masonmiler/lost-in-time-an-original-poem-vol-1>LOST IN TIME  ( An Original Poem - Vol.1)</a> by @masonmiler in <a href=https://steemit.com/trending/writing>writing</a></li>\n<li>23-08 <a href=https://steemit.com/steemcleaners/@steemcleaners/the-steemcleaners-guide-for-dealing-with-abuse-on-steemit>The SteemCleaners Guide for Dealing with Abuse on Steemit</a> by @steemcleaners in <a href=https://steemit.com/trending/steemcleaners>steemcleaners</a></li>\n<li>23-08 <a href=https://steemit.com/steemcleaners/@steemcleaners/announcing-steemcleaners-the-steemit-abuse-fighting-team>Announcing SteemCleaners, the Steemit Abuse Fighting Team!</a> by @steemcleaners in <a href=https://steemit.com/trending/steemcleaners>steemcleaners</a></li>\n<li>23-08 <a href=https://steemit.com/photography/@lat-nayar/beach-scenes-malaysia-port-dickson-beach>BEACH Scenes Malaysia - Port Dickson Beach</a> by @lat-nayar in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>23-08 <a href=https://steemit.com/steem/@kafkanarchy84/perpetual-motion-machines-and-cryptocurrency-bootstrapping-how-i-commissioned-my-own-portrait-with-steem-dollars>Perpetual Motion Machines and Crypto-Bootstrapping: How I Commissioned My Own Portrait with Steem Dollars</a> by @kafkanarchy84 in <a href=https://steemit.com/trending/steem>steem</a></li>\n<li>22-08 <a href=https://steemit.com/photography/@nicoledphoto/why-do-you-use-photoshop-why-i-photoshop-my-images>Why Do You Use Photoshop?! Why I Photoshop My Images.</a> by @nicoledphoto in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>22-08 <a href=https://steemit.com/ufc/@daut44/ufc-202-mcgregor-vs-diaz-prefight-history-and-postfight-analysis>UFC 202: McGregor vs Diaz Prefight History and Postfight Analysis</a> by @daut44 in <a href=https://steemit.com/trending/ufc>ufc</a></li>\n<li>22-08 <a href=https://steemit.com/programming/@noisy/how-i-bankrupt-my-first-startup-by-not-understanding-the-definition-of-mvp-minimum-viable-product>How I bankrupt my first startup by not understanding the definition of MVP - Minimum Viable Product, and how I will avoid it next time :)</a> by @noisy in <a href=https://steemit.com/trending/programming>programming</a></li>\n<li>22-08 <a href=https://steemit.com/introduceyourself/@dannystravels/hey-i-m-danny-join-me-on-my-wildlife-adventures-through-africa>Hey I\u2019m Danny! Join me on my wildlife adventures through Africa!</a> by @dannystravels in <a href=https://steemit.com/trending/introduceyourself>introduceyourself</a></li>\n<li>22-08 <a href=https://steemit.com/photography/@chris.roy/1-abu-dhabi-the-arrival>#1 Abu Dhabi - The Arrival</a> by @chris.roy in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>22-08 <a href=https://steemit.com/travel/@thenakedgod/channel-island-occupation-atlantic-seawall-bunkers-germany-s-concrete-battleships>Channel Island Occupation: Atlantic Seawall Bunkers - Germany's Concrete Battleships</a> by @thenakedgod in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>22-08 <a href=https://steemit.com/marketing/@kreativ/the-dirty-little-secret-some-copywriters-just-don-t-want-you-to-know>The Dirty Little Secret Some Copywriters Just Don\u2019t Want You To Know.</a> by @kreativ in <a href=https://steemit.com/trending/marketing>marketing</a></li>\n<li>22-08 <a href=https://steemit.com/philosophy/@infinitor/existentialism-and-nihilism-why-i-myself-am-an-existentialist>Existentialism and Nihilism - Why I, myself, am an existentialist.</a> by @infinitor in <a href=https://steemit.com/trending/philosophy>philosophy</a></li>\n<li>22-08 <a href=https://steemit.com/philosophy/@kyriacos/the-myth-of-selfishness>The Myth of Selfishness</a> by @kyriacos in <a href=https://steemit.com/trending/philosophy>philosophy</a></li>\n<li>22-08 <a href=https://steemit.com/money/@steemingnow/schroedinger-s-cat-paradox-both-rich-and-poor-recovering-after-a-series-of-knockdowns>Schr\u00f6dinger's Cat Paradox: Both Rich and Poor - Recovering After a Series of Knockdowns</a> by @steemingnow in <a href=https://steemit.com/trending/money>money</a></li>\n<li>22-08 <a href=https://steemit.com/photography/@mweich/wait-is-that-a-blue-bee-steemit-colours>Wait, is that a BLUE BEE!  Steemit Colours!</a> by @mweich in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>22-08 <a href=https://steemit.com/steemit/@renzoarg/bot-baiting-a-basic-analysis-is-there-such-thing-as-a-bot-threat>Bot-baiting, a basic analysis. - Is there such thing as a bot threat?</a> by @renzoarg in <a href=https://steemit.com/trending/steemit>steemit</a></li>\n<li>22-08 <a href=https://steemit.com/health/@tanata/why-do-women-gain-more-weight-than-men>Why do women gain more weight than men?</a> by @tanata in <a href=https://steemit.com/trending/health>health</a></li>\n<li>21-08 <a href=https://steemit.com/bitshares/@nxtblg/bitshares-trading-diary-day-7-attack-of-the-short-sellers>Bitshares Trading Diary, Day 7: Attack Of The Short Sellers</a> by @nxtblg in <a href=https://steemit.com/trending/bitshares>bitshares</a></li>\n<li>21-08 <a href=https://steemit.com/writing/@wadepaterson/the-popular-depression-chapter-1>The Popular Depression: Chapter 1</a> by @wadepaterson in <a href=https://steemit.com/trending/writing>writing</a></li>\n<li>21-08 <a href=https://steemit.com/travel/@kennyskitchen/from-montana-to-guatemala-in-2-weeks-3500-miles-with-no-car-and-usd200-to-start-hitch-hiking-border-patrol-hare-krishnas>From Montana to Guatemala in 2 weeks, 3500 miles with no car & $200 to start! Hitch-hiking, border patrol, Hare Krishnas,</a> by @kennyskitchen in <a href=https://steemit.com/trending/travel>travel</a></li>\n<li>21-08 <a href=https://steemit.com/printing3d/@cryptos/3d-printing-what-types-of-3d-printer-filament-are-available>3D Printing: What Types of 3D Printer Filament Are Available</a> by @cryptos in <a href=https://steemit.com/trending/printing3d>printing3d</a></li>\n<li>21-08 <a href=https://steemit.com/story/@steemitwithstu/the-story-of-troye-a-young-entrepreneur-is-born>The Story Of Troye - A Young Entrepreneur Is Born</a> by @steemitwithstu in <a href=https://steemit.com/trending/story>story</a></li>\n<li>21-08 <a href=https://steemit.com/news/@fat-like-buddha/death-penalty-is-needed-in-all-societies-even-in-an-anarchism-society-here-is-why>Death Penalty is Needed in all Societies  - Even in an Anarchism Society - Here is why ...</a> by @fat-like-buddha in <a href=https://steemit.com/trending/news>news</a></li>\n<li>20-08 <a href=https://steemit.com/life/@newandold/the-monkey-mind-and-the-inner-child-how-i-get-back-on-track>The monkey mind and the inner-child. How I get back on track.</a> by @newandold in <a href=https://steemit.com/trending/life>life</a></li>\n<li>20-08 <a href=https://steemit.com/photography/@timelapse/sony-90mm-macro-vs-lensbong-setup>Sony 90mm Macro vs Lensbong Setup</a> by @timelapse in <a href=https://steemit.com/trending/photography>photography</a></li>\n<li>20-08 <a href=https://steemit.com/life/@kus-knee/the-old-dog-investigates-roads-is-there-a-better-way>The Old Dog Investigates: Roads, is There a Better Way?</a> by @kus-knee in <a href=https://steemit.com/trending/life>life</a></li>\n<li>20-08 <a href=https://steemit.com/food/@jed78/locally-grown-food-and-you-farmer-s-markets-some-info-for-healthy-food>Locally Grown Food and You: Farmer's Markets!  Some Info For Healthy Food</a> by @jed78 in <a href=https://steemit.com/trending/food>food</a></li>\n<li>20-08 <a href=https://steemit.com/psychology/@cristi/things-make-sense-in-retrospect-the-hindsight-bias>Things Make Sense in Retrospect - The Hindsight Bias</a> by @cristi in <a href=https://steemit.com/trending/psychology>psychology</a></li>\n<li>20-08 <a href=https://steemit.com/life/@freiheit/what-they-did-tell-you-about-chemtrails-but-you-weren-t-listening-3-minutes-read>What they DID tell you about chemtrails. But you weren't listening! [3 minutes read]</a> by @freiheit in <a href=https://steemit.com/trending/life>life</a></li>\n",
+    "body_length": 32905,
+    "cashout_time": "2016-09-08T08:54:45",
+    "category": "robinhoodwhale",
+    "children": 20,
+    "created": "2016-09-01T08:54:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"robinhoodwhale\",\"life\",\"writing\",\"story\",\"cn\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T22:36:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 23131290433028,
+    "parent_author": "",
+    "parent_permlink": "robinhoodwhale",
+    "pending_payout_value": "62.612 HBD",
+    "percent_hbd": 10000,
+    "permlink": "robinhoodwhale-01-09-2016",
+    "post_id": 1081967,
+    "promoted": "271.000 HBD",
+    "replies": [],
+    "root_title": "Real-Time Update of RobinHood Whale Project \u7f57\u5bbe\u9cb8\u706b\u8d34\u5b9e\u65f6\u66f4\u65b0 01-09",
+    "title": "Real-Time Update of RobinHood Whale Project \u7f57\u5bbe\u9cb8\u706b\u8d34\u5b9e\u65f6\u66f4\u65b0 01-09",
+    "total_payout_value": "0.000 HBD",
+    "url": "/robinhoodwhale/@laonie/robinhoodwhale-01-09-2016"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2900",
+        "reputation": 176979684007,
+        "rshares": 10680230250228,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6757100093988,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "5000",
+        "reputation": 25104157850610,
+        "rshares": 1118902601491,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5925537844699,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 3828633672665,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099954800,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 210935138158,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3763461212,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690406462,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54134101721,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661302953,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213684579,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10777629083,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622843501,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967387415,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 21550256405,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392405354610,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 279111662172,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 196163592993,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288174518,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 74205930982,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2859098472,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5349082417,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59226109387,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1154102439,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432421152,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 1506024470,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 370098823461,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 917932650,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 516144252764,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1350589595,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 7658293419,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 314968895861,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 22791323090,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2596798738,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1490143673659,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687044369011,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2797012370034,
+        "rshares": 2277766230,
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 265741725388,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 392842631094,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 41240110326,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 8970769157,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3125302080,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 55677464852,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156169282296,
+        "rshares": 282967064,
+        "voter": "sonyanka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 54720712494,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 10312089759,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 457654847,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 75271969902,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12378378533,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4569401045,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 36245526538,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3967602880,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 15604637635,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1282893744,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 317446577,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 17676726210,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 79327997987,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37118933112,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 11621730593,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19174335590,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "8000",
+        "reputation": 6467956247739,
+        "rshares": 17229683384,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1449783634,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182392593276,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1639613775527,
+        "rshares": 3475085906,
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 7258620066,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 38490866307,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15696374746,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 722574736,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 96847284284,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19410587962,
+        "rshares": 1955550774,
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26465755082,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 31250845331,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8308751917,
+        "voter": "taker"
+      },
+      {
+        "percent": "8000",
+        "reputation": 3194641726781,
+        "rshares": 18077487422,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1312318561,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3138994752,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 133044304,
+        "voter": "luke490"
+      },
+      {
+        "percent": "8000",
+        "reputation": 11122126920308,
+        "rshares": 3155521800,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 2330702675,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 687222192,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1367410476,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 982813675,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "8000",
+        "reputation": 4637390447698,
+        "rshares": 932742778,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 54210250128,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18105338219923,
+        "rshares": 16517911072,
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3442234051,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 10969248240,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 2119284500,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 21912805745,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 39122672915,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 10587465402,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 6511663813,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 12934893314,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23294106,
+        "rshares": 57027057,
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57022706,
+        "voter": "cloud1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8298658614343,
+        "rshares": 5899789038,
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329317015182,
+        "rshares": 316012583,
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 3648819614,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3893409579,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57896578,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18873434262,
+        "rshares": 57588741,
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 362203207,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 966857371343,
+        "rshares": 1659124232,
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2582438657,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282251870,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 217739533,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 103730281,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50603364,
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25713525688,
+        "rshares": 54376435,
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 367433800,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4408882617025,
+        "rshares": 2283906005,
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 60123439,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 74117002,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726273314822,
+        "rshares": 511475810,
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 55357981,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 96292269,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23031447736,
+        "rshares": 52610096,
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20789357061,
+        "rshares": 56130433,
+        "voter": "jessica.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1715232698,
+        "rshares": 83347013,
+        "voter": "flourishing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 227374514,
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207621757319,
+        "rshares": 714843637,
+        "voter": "earthtodr01d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57563330721,
+        "rshares": 51409471,
+        "voter": "drherhel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1780315,
+        "rshares": 50290667,
+        "voter": "elena-guseva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15629621723,
+        "rshares": 82372906,
+        "voter": "doctorkot873"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286727,
+        "rshares": 80735872,
+        "voter": "dumpz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 164330251,
+        "voter": "rogelio11"
+      }
+    ],
+    "author": "kafkanarchy84",
+    "author_reputation": 18105338219923,
+    "beneficiaries": [],
+    "body": "# Happy September. #\n<a href='https://postimg.org/image/3wokqy0mf/' target='_blank'><img src='https://s15.postimg.org/3jx6kricr/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/'>\n\n**I know others on this website have said this, so I'm not the first, but yeah, I quit my job to write for Steemit.** \n\nActually, though, that's not entirely true. It's kind of true. I quit my job because something shifted inside of me. When the job was gone, Steemit, on the selfsame day, rose up into my focus immediately to fill the void like it was just waiting for me to finally get real. To do this stuff I've always been wanting to do. And always *have been doing* at the expense of sleep, money, time, etc. I was now beginning to get *paid for it.* What the!?!\n\n**The first half of August was bliss.** After some initial discouragement, I found some good verbs in the mouth of one Sterlin Luxan, and was inspired to actually dig down inside of myself and make a more [honest post.](https://steemit.com/steemit/@kafkanarchy84/why-i-have-quit-five-jobs-in-the-past-six-years-a-steemit-confessional) I finally made twenty bucks on the site. From there I thought, hell, I'll just do this full time. I began to make significant sums of cash for an honest day's worth of work writing, and felt that with my side job,  as long as I hammered down, I would be able to cover my family's usual expenses by the time September rolled around.\n\n\nhttps://s22.postimg.org/wk9d1kjsx/image.jpg\n*Spending time with my son has been one of the biggest bonuses of leaving my 9-5.*\n# **Well. August 31st. Paying all my bills with SBDs? No such luck, my friend.** # \n\nBut I will tell you one thing. I never dreamed I could pull down 2Gs cold, hard cash through writing in less than a month, even if one half of it is still vested in Steem Power (I am happy about this). I was sick to my stomach, though. I have a wife and a child. Playing games at this point was not an option. Still....I had heard something that was very lovely and very clear.\n\nIt was a kind of feeling I have never had before, but which was also at once very perfectly familiar. As my kid is playing on the Octopus slide behind me, and I am staring out at the sea, it hits me:  ***It's over. You will never teach kids again.***\n\n<a href='https://postimg.org/image/4xqdopsip/' target='_blank'><img src='https://s16.postimg.org/dfztt1z1h/image.jpg' border='0' alt='image'/><br />\n\n**Weird. It's like my wish, but this time I am not even wishing for it. It comes to me. I just know that that chapter of my life is completed. That was the day after I quit my job.**\n\n**Fast forward to the end of the month.** I haven't made enough money like I had hoped....I pray to someone or something over my Matsuya beef bowl in the sketchy back alley district of the burlesque dancers: *what should I do?* I was really, really feeling low and full of doubts and self-accusations.\n\nImmediately that silly voice came back again: \n # *(Keep doing what you're doing)* #\n\nI haven't been eating this month. Haven't been sleeping. Have had headaches. Upset stomach. Welcome to fear. Welcome to the real shit. You were so cocky! Are you lazy!? You didn't like your job but so what!? You've got a family!!! Son comes home from daycare. *DAAAAADDDYYYYYY!!!!!!! Let's play!!!!!*\n\nPull yourself together.\nDon't show your frayed nerves.\n\n**My wife is equally worried.**\nShe needs security. She wants to get into massage. Vocal training school. So many dreams. Here I am sitting around the house in my underwear when all I really want to do is hand her a big fat envelope full of money.\n\nhttps://s17.postimg.org/56h7g4qxb/image.jpg\n\n**I've never been lazy. I will work my ass off when I care, and when I need to.** Fuck sleep. Fuck food. Fuck everything but the goal. \n\n# I just can't seem to give a damn about most shit that everybody else says is important. #\nWell, a lot of shit, at least. Still. Mouths to feed, my friend. But that \"voice,\" didn't it mean something? And despite the nerves, hasn't this been one of the happiest, most productive months of my life? Yes. Yes, and yes. Besides, the other job was no good. Bad, unsustainable situation. You know that, Graham.\n\nhttps://s15.postimg.org/i7lfk6hzv/image.jpg\n*My buddy Kevin shows up to the Local.*\n\n**Back to now, August, 31st, 2016. Evening. I went to my friend Craig's bar tonight.** At the depth of my despair, on the bus ride over, I received a mail from my other friend, Aidan. There might be some part time work at his school. Mail sounds promising. \n\nAfter a couple beers at Craig's place it is settled I will work Saturdays mixing booze and playing guitar. I am starting to feel good again. It is starting to seem possible that I can build my own, full-time, part-time \"Steem-lance\" schedule. [Fake priest weddings](https://steemit.com/religion/@kafkanarchy84/my-life-as-a-fake-priest-true-believer), English classes, serving beer and singing....and....\n\n# STEEEEEEEEEEEEMMMMMM!!!!!!! #\n\nAnd you know what? \n\nI am going to document it every step of the way. This is the first episode. Hope to see you next time, from my first day on the job as a bartender. \n\nhttps://youtu.be/jasziAzaiZ4\n\n<a href='https://postimg.org/image/rjlhw49rp/' target='_blank'><img src='https://s18.postimg.org/aj2lnfwqh/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/'>\n\nhttps://s17.postimg.org/yb9pkx39b/image.jpg\n*Basically how I feel now that I have discovered Steemit.com*\n\nPeace, Love, and Anarchy,\n\n~KafkA\n\nP.S. Another thing I have never been good at is keeping a consistent diary. I'm too private, and can't be bothered, even for myself. Should \"My Steemit Life\" transform into an existentialist thought stream ramble resembling a blog-turned-extended-acid trip, please forgive me. Maybe I will commit to  5 episodes. That sounds like a good number to me. Deal?\n\n***\n*Graham Smith is a Voluntaryist activist residing in Niigata, Japan.*",
+    "body_length": 5976,
+    "cashout_time": "2016-09-08T18:17:12",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-01T18:17:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"blog\",\"life\",\"money\",\"writing\"],\"image\":[\"https://s15.postimg.org/3jx6kricr/image.jpg\",\"https://s22.postimg.org/wk9d1kjsx/image.jpg\",\"https://s16.postimg.org/dfztt1z1h/image.jpg\",\"https://s17.postimg.org/56h7g4qxb/image.jpg\",\"https://s15.postimg.org/i7lfk6hzv/image.jpg\",\"https://img.youtube.com/vi/jasziAzaiZ4/0.jpg\",\"https://s18.postimg.org/aj2lnfwqh/image.jpg\",\"https://s17.postimg.org/yb9pkx39b/image.jpg\"],\"links\":[\"https://postimg.org/image/3wokqy0mf/\",\"https://postimage.org/\",\"https://steemit.com/steemit/@kafkanarchy84/why-i-have-quit-five-jobs-in-the-past-six-years-a-steemit-confessional\",\"https://postimg.org/image/4xqdopsip/\",\"https://steemit.com/religion/@kafkanarchy84/my-life-as-a-fake-priest-true-believer\",\"https://youtu.be/jasziAzaiZ4\",\"https://postimg.org/image/rjlhw49rp/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T19:21:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34863582559813,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "141.758 HBD",
+    "percent_hbd": 10000,
+    "permlink": "my-new-steemit-life-ep-1-write-write-write-and-fill-me-up-barkeep",
+    "post_id": 1088170,
+    "promoted": "250.000 HBD",
+    "replies": [],
+    "root_title": "My New Steemit Life, ep. 1. Write, write, write and fill me up, barkeep",
+    "title": "My New Steemit Life, ep. 1. Write, write, write and fill me up, barkeep",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@kafkanarchy84/my-new-steemit-life-ep-1-write-write-write-and-fill-me-up-barkeep"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7670216559865,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 31876585090724,
+        "voter": "smooth"
+      },
+      {
+        "percent": "6600",
+        "reputation": 85602977273,
+        "rshares": 317914133749,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "6600",
+        "reputation": 8151223409709,
+        "rshares": 11008788408007,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2750965758653,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8047618620631,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2008425648912,
+        "voter": "hr1"
+      },
+      {
+        "percent": "6600",
+        "reputation": 18336382560162,
+        "rshares": 124866338524,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3102984335,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767302471,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690894989,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54620023708,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662776232,
+        "voter": "mini"
+      },
+      {
+        "percent": "6600",
+        "reputation": 8717425187,
+        "rshares": 3996811840503,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213775837,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2005461457928,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 448048632495,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 454605188433,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 940178035364,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 123564024708,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5795927037577,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 742120382574,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 11483504721,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624865483,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969733311,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6733117454,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288326627,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 25303423950,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1783656248,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81300407183,
+        "rshares": 560134332,
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1077809816193,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 641506711463,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 19601271761,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5372083616,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 26442946448,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "7600",
+        "reputation": 15755437221598,
+        "rshares": 12146782657,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 150002721014,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7438851067,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 579113009,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 74162623116,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425432026,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2580300343,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 386963068010,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "8100",
+        "reputation": 1598588545490,
+        "rshares": 12725367383,
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 6091161879,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 13249527549,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3914878687602,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 377929170961,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 54758222958,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 53397004453,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1457401312,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1012427662,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 33797995673,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5955519251,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 673760893866,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 46085881971,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 5847907620,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2501960006,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 5901639288,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3144695333,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 7178411426,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 536577431,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 43623897139,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5002312350,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 86290120409,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 259005241756,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 4737797461,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 94941542765,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5362675333,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 114790527271,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5000700321,
+        "voter": "vote"
+      },
+      {
+        "percent": "1700",
+        "reputation": 14661458923663,
+        "rshares": 60427141792,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 5270059157,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 123955936289,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 60646225326,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 4223413440,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 485248462,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 531093989,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 499019869,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1412946901,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1682718699,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 16124466765,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3978176479,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 13703431601,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 11306954567,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 7758574000,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 354410763772,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 43462674468,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 15104308075,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 96640276,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3786816110,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 4131960392,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64244086005,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 30425039030,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5934713344,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3139297205,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 193450379454,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 39208641632,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 16286433521,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 699114314,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 542854211690,
+        "rshares": 510988681,
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 19511243271,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 764587130,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 464463583,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 10849845352,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 16486935205,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 644938467,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 24460059681,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1788332586,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 537151647,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 502370811,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 36980045409,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 6269241467,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 29622795026,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19410587962,
+        "rshares": 1916768690,
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2508005666,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 22568372246,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1228556126,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8330954811,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 16536123177,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 7778902595,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 46120509168,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 93179996002,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1228318050,
+        "voter": "paynode"
+      },
+      {
+        "percent": "3400",
+        "reputation": 73944659327428,
+        "rshares": 61953313410,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 8390933191,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 2332480922,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 282475333,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9800700626,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 11703925092,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 9478532876,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1310860944,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "4500",
+        "reputation": 13325577893779,
+        "rshares": 7922688868,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3789939590477,
+        "rshares": 5258185581,
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3416878313147,
+        "rshares": 3152432234,
+        "voter": "abarefootpoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1106918787,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 244133529,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 5604020976,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1472156059,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1811437634,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 47544190219,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6942985003,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 256121543428,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4503423419,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 4294437615,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 2169254983,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 717820732,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 7312796092,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2138560797,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56265756,
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1686379746,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17751314058,
+        "rshares": 57099237,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 6917765207,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 32095690690,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15628558049,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 22447321617,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5768322041,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136191934687,
+        "rshares": 93669300,
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 222354480,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2718313646,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 6021996039,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59424037971,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "1800",
+        "reputation": 26215514,
+        "rshares": 5327999017,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 54408230,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 1236939246,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1484844103,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 9128684631,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 59621226,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4891777366,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3966465,
+        "rshares": 51376153,
+        "voter": "eagleeye7850"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575228,
+        "rshares": 51343959,
+        "voter": "simonakindle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10024209538,
+        "rshares": 57266113,
+        "voter": "technium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46150823,
+        "rshares": 51215236,
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51141851,
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113438289,
+        "rshares": 50949641,
+        "voter": "poemandres"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39516054142,
+        "rshares": 61035542,
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50907857,
+        "voter": "oxygen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50568084,
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50565798,
+        "voter": "penthouse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50543061,
+        "voter": "rabobank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50487909,
+        "voter": "opticalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50482289,
+        "voter": "connection"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 50317220,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 8222386076,
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3044306684,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162904624,
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 610439007851,
+        "rshares": 160034557,
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108412302232,
+        "rshares": 160128119,
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4857670,
+        "rshares": 158617835,
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158610679,
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585181578869,
+        "rshares": 101178006,
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": -565298235179,
+        "rshares": 107496727,
+        "voter": "elsi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165924295987,
+        "rshares": 154281152,
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156864426,
+        "voter": "pyroveso"
+      }
+    ],
+    "author": "timsaid",
+    "author_reputation": 25724194555647,
+    "beneficiaries": [],
+    "body": "<html>\n<center><img src=\"https://s12.postimg.org/64c1pstcd/senseseye.jpg\"/></center>\n<p>Many things around us and with us happen we take for granted. We see, feel, taste, hear and smell unknowingly how it works. As we were children we called anything into question and now accept reality as it is. We lost the magic in all these wonderful things. This series addresses the wonder of natures and will bring its magic back to light. The first part of the <strong>Life Explorers - The Human Senses </strong>starts with the sense of sight. We see forms and colors, see bright and dark. But why?<br>\n&nbsp;</p>\n<p>To be able to answer this question we first need to have look at the nature off light. Light is a form of electromagnetic (EM) radiation, to be accurate we need to speak of visible light because only a small portion of the actual EM spectrum is visible to the human eye. The following illustration shows the EM spectrum. Frequency and wavelength are inversely proportional, the shorter the wavelength the higher the frequency. With higher frequencies the amount of energy is rising, this is for instance the reason why Gamma Rays are deadly. The high energy of the gamma rays are devastating for biological cells as they are ionizing and cause secondary radiation like X-Rays or electron diffraction. E= h \u2022 f is formula which depicts the proportionality of <strong>E</strong> energy and <strong>f</strong> frequency (<strong>h</strong> stands for the Planck constant). &nbsp;&nbsp;&nbsp;Here a little example for the energy of a short and a long wavelength.&nbsp;</p>\n <table>\n      <tr>\n        <td>red</td>\n        <td>E=h \u2022 f = 6,626 070 040 \u00b7 10\u221234 J*s * 384 THz</td>\n        <td>1,59 eV</td>\n      </tr>\n      <tr>\n        <td>violet</td>\n        <td>E=h \u2022 f = 6,626 070 040 \u00b7 10\u221234 J*s * 789 THz</td>\n        <td>3,26 eV</td>\n      </tr>\n    </table>\n<center><img src=\"https://s14.postimg.org/uajq64zo1/emspectrumvis.jpg\" width=\"1280\" height=\"766\"/></center>\n<center><em>Fig. 1. The electromagnetic spectrum. Source: </em><a href=\"http://www.livescience.com/32344-what-are-x-rays.html\"><em>Livescience</em></a></center>\n<p>As shown above the visible light is only a tiny portion of the EM spectrum. The human eye is able to see colors from red to violet, which is equivalent to wavelengths from 780nm to 380nm (nm = nanometer).</p>\n<h3>&nbsp;<br>\n<strong>Why do is the Steemit logo blue and not red?</strong></h3>\n<center><img src=\"https://s10.postimg.org/isgrqldc9/steemitlogo.png\" width=\"800\" height=\"800\"/></center>\n<p>Sure because @dantheman and @ned decided so :) But on a scientific base, how come we see blue and not another color?&nbsp;</p>\n<p>Now that we know what visible light is let\u2019s have a look at the interaction of EM radiation and the objects we see. The actual color we perceive depends on the physical principle of reflection and adsorption. &nbsp;<br>\n<br>\nMost objects reflect light but before that happens they adsorb part of the light they receive. The wavelength they adsorb determines what your eye will process later. For instance when all wavelengths expect red (780nm) are adsorbed the object will reflect red. Same goes for a blue steemit logo for instance. The logo absorbs all wavelengths expect the blue. &nbsp;&nbsp;</p>\n<p>More than one wavelength can be reflected the same time, this therefore is why we see shades of the same color. &nbsp;&nbsp;</p>\n<center><img src=\"https://s15.postimg.org/eajm6sv8r/prismandrgb.jpg\" width=\"800\" height=\"337\"/></center>\n<p>We can see purple color when blue and red are reflected wavelengths. We see white when an object absorbs no light. &nbsp;<br>\nIsaac Newton showed that white light contains all colors. He used a prism to separate the colors of spectrum of visible light. &nbsp;&nbsp;&nbsp;</p>\n<h3>How does reflection and adsorption work? &nbsp;&nbsp;&nbsp;&nbsp;</h3>\n<p>To understand how adsorption works we need to have a closer look into the chemistry of molecules. As described light hitting an object, here molecule, is adsorbed and we see the complementary color as a result. The following abbreviations will be used: HOMO = Highest occupied molecule orbital and LUMO = Lowest unoccupied molecule orbital. Carrots are orange, but why? &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<center><img src=\"https://s14.postimg.org/5q33u4jup/steemcarrot.jpg\" width=\"634\" height=\"800\"/></center>\n<p>Electrons are moving in a certain space around the nucleus, called orbitals. The energy of light promotes an electron from a bonding or non-bonding orbital into an empty anti-bonding orbital, from HOMO to LUMO. The gap between these two orbitals is equivalent to the amount of energy that is needed to promote the electrons. A larger gap therefore requires light with more energy, for instance blue or violet. The chemical molecule that gives the carrot its orange color is called beta-carotene. Beta-carotene absorbs light between 400nm and 500nm with a peak at 470nm. Having a look at our additive color schema we will see that the complementary color of blue is yellow. Now is that not only blue, but a wide range of light between 400nm and 500nm is absorbed. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<center><img src=\"https://s21.postimg.org/h90irk9s7/carotene.gif\" width=\"518\" height=\"150\"/></center>\n<p>So when light hits the electrons of beta-carotene the electrons move from HOMO to LUMO and adsorb the light between 400nm and 500nm. This is the wavelength needed to promote the electron with the exact amount to energy needed. &nbsp;</p>\n<center><img src=\"https://s17.postimg.org/uot71t3j3/homolumo.png\" width=\"619\" height=\"217\"/></center>\n<p>Note: The electron moves back from LUMO to HOMO. The energy from the light used to promote the electron from HOMO to LUMO can be emitted in form of radiation or heat. In summer we all notice that black material gets warmer than bright. This is because the complete wavelength of the VIS is absorbed and emitted as heat. &nbsp;&nbsp;&nbsp;&nbsp;</p>\n<h3>Transforming waves to information &nbsp;</h3>\n<p>Now that we know how the light is absorbed by objects we need to examine how our eyes work. Without the human eye we wouldn\u2019t see anything, that\u2019s for sure. But how are we able to distinguish colors and brightness? Our retina has approximately 6 million cones and 120 million rods. When the reflected light hits our retina these cells become active. <br>\n We have three different type of cone cells, S(-hort), M-(medium) and L-(ong) cones. Short, medium and long refer to the wavelength the cell is responding to. The rods however can work with different wavelengths and thus do not matter when it comes to color. They are responsible for brightness and become active when there is less light. While the cones are active and working we speak of photopic vision, responsible for color sight. Scotopic vision is the terminus for sight in low light and only seeing in shades of gray. &nbsp;&nbsp;</p>\n<center><img src=\"https://s18.postimg.org/vi5wzz509/retina.jpg\" width=\"914\" height=\"430\"/></center><center><em>Fig. 2. Eye and retinal profile. Source: </em><a href=\"http://cdn.kevinmd.com/blog/wp-content/uploads/retina.jpg\"><em>Kevinmd</em></a></center>\n<p>As described the human retina has three kinds of cones. Each sensitive to a different wavelength. The following illustrations depicts the relation of wavelength and cones. These three cones together make it possible that we see colors. By combining cones we are able to see over 200 million different colors. &nbsp;</p>\n<center><img src=\"https://s17.postimg.org/jxtaq6apr/conesrods.jpg\" width=\"1225\" height=\"800\"/></center><center><em>Fig. 3. Spectral sensitivity of the receptor (rods and cones). Source: </em><a href=\"https://en.wikibooks.org/wiki/Sensory_Systems/Visual_System\"><em>Wikibooks; Sensory Systems</em></a><em>&nbsp;</em></center>\n<h3><strong>So when light hits a cone it becomes activated. How does this activation work?</strong><br>\n&nbsp;</h3>\n<p>This is a very complex biochemical process I will try to explain without going too much into detail since we could do several posts just about this process. However we will have a look at the basic. &nbsp;&nbsp;</p>\n<p>Both, cones and rods contain a light-sensitive receptor protein called Rhodopsin, also known as visual purple. Under the influence of light Rhodopsin decomposes into Opsin and trans-Retinal. This process repeats and creates a cascade. The end of the processes results in regulating a molecule named Glutamat. The cells behind the retina turn these signals into nerve impulses to make it processable for the human brain. &nbsp;&nbsp;</p>\n<p><br></p>\n<p><em>Thank you for reading the first part of </em><em><strong>Life Explorers - The Human Senses,</strong></em><em> Don't miss the next part. <br>\nDo you have an questions or suggestions? Want to know about a scientific topic? Leave a comment.<br>\n<br>\nTim Said</em></p>\n</html>",
+    "body_length": 8892,
+    "cashout_time": "2016-09-12T21:02:51",
+    "category": "science",
+    "children": 19,
+    "created": "2016-09-05T21:02:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"science\",\"lifeexplorers\",\"life\",\"nature\",\"health\"],\"users\":[\"dantheman\",\"ned\"],\"image\":[\"https://s12.postimg.org/64c1pstcd/senseseye.jpg\",\"https://s14.postimg.org/uajq64zo1/emspectrumvis.jpg\",\"https://s10.postimg.org/isgrqldc9/steemitlogo.png\",\"https://s15.postimg.org/eajm6sv8r/prismandrgb.jpg\",\"https://s14.postimg.org/5q33u4jup/steemcarrot.jpg\",\"https://s21.postimg.org/h90irk9s7/carotene.gif\",\"https://s17.postimg.org/uot71t3j3/homolumo.png\",\"https://s18.postimg.org/vi5wzz509/retina.jpg\",\"https://s17.postimg.org/jxtaq6apr/conesrods.jpg\"],\"links\":[\"http://www.livescience.com/32344-what-are-x-rays.html\",\"http://cdn.kevinmd.com/blog/wp-content/uploads/retina.jpg\",\"https://en.wikibooks.org/wiki/Sensory_Systems/Visual_System\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T05:35:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 88758332960581,
+    "parent_author": "",
+    "parent_permlink": "science",
+    "pending_payout_value": "734.855 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemit-explorers-the-human-senses-part-i-sight",
+    "post_id": 1139334,
+    "promoted": "202.020 HBD",
+    "replies": [],
+    "root_title": "Life Explorers - The Human Senses Part I: Sight",
+    "title": "Life Explorers - The Human Senses Part I: Sight",
+    "total_payout_value": "0.000 HBD",
+    "url": "/science/@timsaid/steemit-explorers-the-human-senses-part-i-sight"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 145171381514207,
+        "rshares": 566627757523,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 172935370348,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 979750467824,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3720488193,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4516841735,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 828581067,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 65037632700,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1993835727,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256442875,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 398407857501,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 405156538906,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2578424778892,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 11606677474,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747493846,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1161008754,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327846425796,
+        "rshares": 5042513512,
+        "voter": "sammy007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 21127702358,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392330736044,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 303917950005,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345836633,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 22047833256,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3366382061,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 596707334180,
+        "rshares": 3904360862,
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 177791083963,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8045649981,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 22595244740,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5586884897,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3532411814632,
+        "rshares": 22786454650,
+        "voter": "teatree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34313430362,
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432715390,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 917851920,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "0",
+        "reputation": 5904057835766,
+        "rshares": 912434705,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6960979873594,
+        "rshares": 56501870239,
+        "voter": "aenor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 13177382319,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10327600289,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2217132176566,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85870977835,
+        "rshares": 6799266998,
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 233230107272,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 13833394447,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4387565307,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 323509837196,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 128856964990,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30097018787,
+        "rshares": 309032139,
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1877846106598,
+        "rshares": 30230668820,
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 179192996861,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1960155455032,
+        "rshares": 4045665201,
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2799169786,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 3512092095,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 4636329916,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 12972939718,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 5755812898,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3490323117,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 7000480953,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 58365810442,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 12820500774,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4997920619,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3125302080,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 55677464852,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4258098520,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 4959284136,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2737885092,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5115172637,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14515244254,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 5265412146,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 11343270265,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 512168285,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 15963348720,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2806857550600,
+        "rshares": 7022246224,
+        "voter": "jholmes91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 1646087329,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 943863353,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 151052306779,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 91676883571,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 11951646778,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "100",
+        "reputation": 5463774640621,
+        "rshares": 429990873,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19032649381,
+        "rshares": 181322915378,
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 18940589315,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 6198566354,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "8000",
+        "reputation": 338909620445,
+        "rshares": 9117162454,
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133430062956,
+        "rshares": 15663282979,
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 167157550959,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4564314455,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16814465318,
+        "rshares": 247212033,
+        "voter": "swaghetti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 5507864316,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 79012264189,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 7477138730,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1705318675121,
+        "rshares": 2927449570,
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 399177345,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 11984005559,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1254384994,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11216247387925,
+        "rshares": 123279502731,
+        "voter": "kevinpham20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 120671854452,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3840860910,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241600128334,
+        "rshares": 10218475734,
+        "voter": "kewpiedoll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 3021913571,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3022743349,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147627391,
+        "voter": "apptrade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33167351,
+        "rshares": 2109841036,
+        "voter": "applesauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4831185704,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2503443057,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 570936521,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 463879581,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7617108667,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17164865565,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3052689593,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 879507428,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 551563663183,
+        "rshares": 478035225,
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 30896278536,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2688248291,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2405411059,
+        "rshares": 152695761,
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 83547862361,
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4887223428,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2871713285,
+        "rshares": 64903901,
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 30591994425,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1838865673,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 2944662227,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 165604593,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3138994752,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 133044304,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134345349682,
+        "rshares": 7190135631,
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9322960051,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3507463169,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 11871680838,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 73603234,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 101244129774,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1418847949,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 249904869,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1237440732,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 7130857719,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 6300363201553,
+        "rshares": 13905458489,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 14291678999,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1624044881,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329317015182,
+        "rshares": 309692332,
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 1103360772,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103763051875,
+        "rshares": 58645215,
+        "voter": "dubloon135"
+      },
+      {
+        "percent": "0",
+        "reputation": 7258302306624,
+        "rshares": 305607086,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 9551786749,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17751314058,
+        "rshares": 55979644,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177940547303,
+        "rshares": 1890040933,
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 115499462203,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29018448461,
+        "rshares": 70310629,
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25835980056,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1565604150,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 41962066513,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 75599342,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 206212756,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 68932158,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4020037945,
+        "rshares": 53873853,
+        "voter": "mike1911"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 329313117,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73687899905,
+        "rshares": 55773949,
+        "voter": "alyssasanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 78982323,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 50182215,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 818498504,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1626480492,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 444262969,
+        "rshares": 72030714,
+        "voter": "rawbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151518932812,
+        "rshares": 4191984521,
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112287621,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1309073721476,
+        "rshares": 673845983,
+        "voter": "reddust"
+      }
+    ],
+    "author": "leavemealone",
+    "author_reputation": 177940547303,
+    "beneficiaries": [],
+    "body": "As we all sit here trying to build steem and support the project, Ned and Dan (two founders of Steemi) are transferring to Poloniex and dumping all over the buy orders killing the price.  Why are they doing this?  This needs to be stopped!!!\n\n![dumping](https://puu.sh/qWKV3/dde86c2c45.png)\n\nAnyone have any ideas what is going on here?  Is it time to get out while we can?",
+    "body_length": 373,
+    "cashout_time": "2016-09-08T22:49:21",
+    "category": "steemit",
+    "children": 116,
+    "created": "2016-09-01T22:49:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"market\",\"price\",\"steem\",\"poloniex\"],\"image\":[\"https://puu.sh/qWKV3/dde86c2c45.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T22:49:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11370017153084,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "18.273 HBD",
+    "percent_hbd": 10000,
+    "permlink": "ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on",
+    "post_id": 1091486,
+    "promoted": "201.352 HBD",
+    "replies": [],
+    "root_title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@leavemealone/ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4264801627311,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6355020214373,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 210935138158,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4513752148837,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10777629083,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392405354610,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23476395882,
+        "voter": "yefet"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 404897958,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 376960001789,
+        "rshares": 4615942497,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 36761459891,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3148612688,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 976605325,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432543138,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 469385562681,
+        "voter": "cyber"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 316201719,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12858141661,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52123584116,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 7907158390,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 320412905,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657547218546,
+        "rshares": 6444619088,
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3472486489,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 154306980856,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 36245526538,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3748211699,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 8368454072,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1282893744,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19174335590,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1501784652,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 28355737154,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2179414806836,
+        "rshares": 10210797077,
+        "voter": "exyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 171701958057,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 435478790,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15699815948,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 14043989668,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 2338655401,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2991165818,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26465755082,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7849492736,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 165769057,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3138994752,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 97274422829,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 764960163,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10002818,
+        "rshares": 57930015,
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11628203002,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 586319380,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 235011136772,
+        "rshares": 172932392,
+        "voter": "ezrabcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 69498750,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7034398796,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3640096656,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 17334568050,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949895649943,
+        "rshares": 615797359,
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 13680199584,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 197982642374,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9213852022,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27027586,
+        "rshares": 51454384,
+        "voter": "wanglai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      }
+    ],
+    "author": "pinkisland",
+    "author_reputation": 6264990277085,
+    "beneficiaries": [],
+    "body": "<html>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"http://i.onionstatic.com/onion/2738/1/16x9/565.jpg\" width=\"565\" height=\"318\"/></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Behind the desk, every student sits and observes every teacher and how they address the lesson. They look at one figure inside the class within their vision and that make the view limited in their eyes. But let switch the roles and try to see how the teacher look at their student in that big vision. Looking to a speaker is different than observing the reader. Chapter one in the book \u201cTeachers, Schools, and Society\u201d by David Miller Sadker and Karen R. Zittleman, discuss how teacher scenery is different from that of student and it guides the reader to find the positive and negative points for a teacher to encounter in his career; it will help reader to discover whether they should complete aiming for to become a teacher.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The goal for every reader is to find and choose the best career that will find happiness and bring the joy while practicing it. That\u2019s what makes the chapter more comfortable to read in; it didn\u2019t force the material on the reader but instead, it gives suggestions and real life examples about how being a teacher would look like. \u201cYou be the Judge\u201d is whole examples for a student to know how being a teacher could have a negative or positive impact on their lives, and it\u2019s a good way to them clarify their position whether to continue with being a teacher as a career meant to them or not convinced by. Also, there was a survey in the chapter that shows how many teachers get paid yearly in different states; it\u2019s a good side to the students to know that being a teacher could provide a decent life for them as a job.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Teachers need to have a bunch of specification in orders to be called a successor. Preparing a teacher to this career and guiding them to be effective to his class is an important step that could impact the whole future of both teachers and learner. That idea of preparation considers as an informative process and not implicit, and it\u2019s a good topic that's been clarified in that chapter. Moreover, another idea that been addressed at the end of the chapter is how the student could improve his skills and concepts of the learning process before graduation, and that been shown with listing several steps that the student should put into consideration in order to become successful and creative. It does not only help the learner himself in the long run but also give a chance to make his future classes more creative and cooperative at the time. For instance, some of the steps say that the teacher should study their courses that the handle carefully and planned for them ahead to make sure it\u2019s clear to him and would be to students at the time. Also, they should have a good impression during their learning process and to keep on building it on. That\u2019s how a student could have some ideas to consider and to begin with if they are struggling with what to start with or improve while they are still learning about their career.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Students should figure out if the teaching career is the one that meant to them and they will enjoy practicing end for most of their life. That chapter did a good job in discussing some topic that will help the student take their decision regarding this career and if they willing to take that challenge and start filling and building their knowledge. It does not only help the student to become successful teachers but also prepare them to make a more bright future for the generation they will be willing to teach, and to be creative with their work and thoughts. So, after knowing and considering what a teacher need to handle and think of, the student will start to find their own way to teach and make their job process different from other teachers they encounter before.&nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 4322,
+    "cashout_time": "2016-09-09T01:14:12",
+    "category": "writing",
+    "children": 7,
+    "created": "2016-09-02T01:14:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"writing\",\"analysis\",\"steemit\",\"life\"],\"image\":[\"http://i.onionstatic.com/onion/2738/1/16x9/565.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T01:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17239525786043,
+    "parent_author": "",
+    "parent_permlink": "writing",
+    "pending_payout_value": "37.412 HBD",
+    "percent_hbd": 10000,
+    "permlink": "teaching-as-a-career-or-analysis-of-the-book-teachers-schools-and-society",
+    "post_id": 1092931,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Teaching As A Career  | Analysis of the Book : \u201cTeachers, Schools, and Society\u201d",
+    "title": "Teaching As A Career  | Analysis of the Book : \u201cTeachers, Schools, and Society\u201d",
+    "total_payout_value": "0.000 HBD",
+    "url": "/writing/@pinkisland/teaching-as-a-career-or-analysis-of-the-book-teachers-schools-and-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3500",
+        "reputation": 145171381514207,
+        "rshares": 10188876905486,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 3830035846987,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3720292037,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 215423119821,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4516598968,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 828540282,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 65013129899,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1993734736,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256433164,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 731040242281,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747456946,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160950489,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392405354610,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 285682873005,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345823038,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432554801,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 399788237,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1460925170254,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 221213340693,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 11592975842,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 67555883079,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 392842631094,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 261495678,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3125302080,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 61289877049,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 154306980856,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 89328435008,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 152897742927,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1410670651,
+        "rshares": 2212025362,
+        "voter": "johnnydollar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 36245526538,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1282893744,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37122522843,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19174335590,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 12483663020,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 2461729572,
+        "voter": "ace108"
+      },
+      {
+        "percent": "3800",
+        "reputation": 17698439393799,
+        "rshares": 12032742765,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26465755082,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161798129127,
+        "rshares": 159607688,
+        "voter": "naomi-louise"
+      },
+      {
+        "percent": "1900",
+        "reputation": 10771708337101,
+        "rshares": 250847007495,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2300",
+        "reputation": 18027204457681,
+        "rshares": 7631325795,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 262882640828,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206355094166,
+        "rshares": 9839187353,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 58103637174,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3138994752,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "1900",
+        "reputation": 3016325652890,
+        "rshares": 28138748642,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311638758804,
+        "rshares": 314141984,
+        "voter": "rusteller"
+      },
+      {
+        "percent": "3900",
+        "reputation": 1851205309677,
+        "rshares": 1775190239,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 687222192,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 9157721462,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 603283562,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61110411,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 97274422829,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2551239163442,
+        "rshares": 7816453178,
+        "voter": "johnnyyash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10002818,
+        "rshares": 57930015,
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 10290925854,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1773143509,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 23001901442,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740952354750,
+        "rshares": 282840398,
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 477616797,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1373853332548,
+        "rshares": 269346417,
+        "voter": "serioustruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4408882617025,
+        "rshares": 2238227885,
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 75599342,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189363957513,
+        "rshares": 66091870,
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23031447736,
+        "rshares": 51578525,
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 2169778252,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13744830964,
+        "rshares": 50828978,
+        "voter": "mocat15"
+      }
+    ],
+    "author": "serioustruth",
+    "author_reputation": 1373853332548,
+    "beneficiaries": [],
+    "body": "<html>\n<p><em><strong>Yesterday I added a really crappy post on Steemit</strong></em>. Although it was a bit of a <em><strong>negative post</strong></em>, I received some <em><strong>positive feedback</strong></em>. I realised that I have been looking at Steemit from the wrong perspective.&nbsp;</p>\n<p><img src=\"https://s20.postimg.org/m18fyrqb1/download_1.png\" width=\"225\" height=\"225\"/></p>\n<p>You see... <em><strong>I am a teacher</strong></em>, and to look at something from a teacher's perspective, is totally different than looking at something from a parent's point of view, or even a fellow steemit writer. &nbsp;I would like to thank @RHW for listening, and I am very glad to be part of this community. Many projects are being launched, &nbsp;and the whales are putting in a lot of effort to notice the new aspiring writers.</p>\n<p>I have changed my view on things now, &nbsp;I make a point to read as many posts as possible. I comment if needed, and I upvote a post if I find it interesting. We are not in a race here. We are after all in the business of finding new undiscovered talent and to be heard. Now, also said, that what interests me, <em><strong>might not be interesting to you at all.&nbsp;</strong></em></p>\n<p>What I have noticed is that there are quite a few nasty people on steemit. I am certainly not going to call them by their names, but I really feel sorry for these people, as they would not give someone the time of day.</p>\n<p><em>I felt very offended by some of the comments made about my post, but realised that negative feedback can be changed into a positive view.&nbsp;</em></p>\n<p><strong>I do not promote or upvote a post just for the sake of upvoting.&nbsp;</strong></p>\n<p><strong>I &nbsp;do my fair share by reading as many posts as possible about my interests.&nbsp;</strong>Now, also said, that what interests me, <em><strong>might not be interesting to you at all.&nbsp;</strong></em></p>\n<p><em><strong>But people are just people.</strong></em>............people&nbsp;should try and upvote the good posts and promote these writers, so we can have new and exciting reading material here on Steemit.&nbsp;</p>\n<p>If you do not succeed today, tomorrow is a new day. Try harder. Do not let negative comments make you lose your way. Don't give up. <em><strong>Stay positive.&nbsp;</strong></em></p>\n<p><em><strong>Because if you are noticed by the right person, then your posts will mean something. Then you will have a voice.</strong></em></p>\n<p>I am totally up for a good debate and if you don't agree with me on posts, then&nbsp;feel free to contact me and we can discuss your opinion. Everyone is entitled to their own opinion. If you like my posts please follow me on<a href=\"https://steemit.com/@serioustruth\">@serioustruth</a><br>\nTogether we can change the world. Feel free to share or promote my posts. I want to make a difference to the way people think.</p>\n<p>&nbsp;\u2764<strong>Keep on steeming!</strong></p>\n</html>",
+    "body_length": 2969,
+    "cashout_time": "2016-09-08T23:53:00",
+    "category": "success",
+    "children": 12,
+    "created": "2016-09-01T23:53:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"success\",\"steemit\",\"life\"],\"image\":[\"https://s20.postimg.org/m18fyrqb1/download_1.png\"],\"links\":[\"https://steemit.com/@serioustruth\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T00:01:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 19268044087375,
+    "parent_author": "",
+    "parent_permlink": "success",
+    "pending_payout_value": "46.997 HBD",
+    "percent_hbd": 10000,
+    "permlink": "why-we-can-all-succeed-in-life",
+    "post_id": 1092128,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Why we can all succeed in life",
+    "title": "Why we can all succeed in life",
+    "total_payout_value": "0.000 HBD",
+    "url": "/success/@serioustruth/why-we-can-all-succeed-in-life"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6865708718794,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8391155265950,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3188661987634,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2237699549801,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 6043095568756,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 416502630611,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1066502666030,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320974092378,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3820544781800,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099309721,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762638572,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697337991,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54024389057,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660983664,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213666660,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34042532834,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622745754,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967227764,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 21561714956,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288146820,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11534784730,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "300",
+        "reputation": 4931834878069,
+        "rshares": 1007351350,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 37107803041,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 330891318789,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "300",
+        "reputation": 5414208804644,
+        "rshares": 1326334522,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9650753116,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3540844593,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7574954620,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 14461373144,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 76817142068,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 562838812114,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 254728253114,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 20539948938,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37511548124,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9361058328,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488865370830,
+        "rshares": 845745510,
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 107750896479,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 199343900741,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1295463489,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1487859268399,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "3900",
+        "reputation": 598181152117,
+        "rshares": 86220818173,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5386184962985,
+        "rshares": 78303382465,
+        "voter": "leta-blake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811919161664,
+        "rshares": 5298507505,
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 404148397580,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 237530501,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3447344111,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 204013843843,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4614780233,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 32544390735,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 127352923071,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570848703227,
+        "rshares": 13192961002,
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 573324811634,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 268679076,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 215319310,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 82930683818,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 15941974086,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81102912,
+        "rshares": 231868639,
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 823925676,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 11193710521,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 836675772,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 210282477056,
+        "rshares": 298314520,
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 19777501932,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4300172344,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2142200192,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 38216574755,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4185538732,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 29701247281,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6500609847,
+        "rshares": 384335950,
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 744526625,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 349944185,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42932326495,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3270221316,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12426328804,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 2976132321,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3409584558,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 18771327082,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 28727446047,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203718333639,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 1076818897,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207787451268,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 452080638,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 10990758206,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 859954354,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7262356354,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18455105687,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 221727119,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "3500",
+        "reputation": 17698439393799,
+        "rshares": 10247978573,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5344357822,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19410587962,
+        "rshares": 1993799598,
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456070989,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 52649085689,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8764708303,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 731831758,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "300",
+        "reputation": 10771708337101,
+        "rshares": 62607001675,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2648592275,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 29014739933,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771092702547,
+        "rshares": 2037352685,
+        "voter": "roy.batty"
+      },
+      {
+        "percent": "3900",
+        "reputation": 5776723480371,
+        "rshares": 102471576654,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3835736527,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 97845484474,
+        "rshares": 19820536682,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "400",
+        "reputation": 3016325652890,
+        "rshares": 7023685973,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 48570688158,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14437662629,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1851205309677,
+        "rshares": 1438674885,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41231458058,
+        "rshares": 56250267,
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3401416945201,
+        "rshares": 1253580623,
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": -451593763871,
+        "rshares": 3236349620,
+        "voter": "blow"
+      },
+      {
+        "percent": "3900",
+        "reputation": 4195733833721,
+        "rshares": 3570064064,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 73603234,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 71506742,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145609627,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83679447269,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18005755634,
+        "rshares": 63303346,
+        "voter": "rmach"
+      },
+      {
+        "percent": "3900",
+        "reputation": 730408370151,
+        "rshares": 235318349,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 73290501683,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 68023298566,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 801075067,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 17823984520,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 51095992,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21156422,
+        "rshares": 58132384,
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5688444338,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 7913107817,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2484336960082,
+        "rshares": 2921015416,
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24069417896,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1987750394564,
+        "rshares": 154945190,
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55633002031,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 561774262537,
+        "rshares": 1200772644,
+        "voter": "maryfromsochi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23712596958,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 93769724,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 60796067,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 68442517,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5550981381,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50523318,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454788,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50468091,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2454253,
+        "rshares": 50357208,
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22546106632,
+        "rshares": 52315645,
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 50878690,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2093855721226,
+        "rshares": 56535034,
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50821675,
+        "voter": "blck"
+      }
+    ],
+    "author": "sean-king",
+    "author_reputation": 48542961182602,
+    "beneficiaries": [],
+    "body": "<html>\n<blockquote>You shall no longer take things at second or third hand, nor look through the eyes of the dead, nor feed on the specters in books, You shall not look through my eyes either, nor take things from me, You shall listen to all sides and filter them from your self. &nbsp;--Walt Whitman, Song of Myself&nbsp;</blockquote>\n<p><br></p>\n<blockquote>The whole history of these books [the Gospels] is so defective and doubtful that it seems vain to attempt minute enquiry into it: and such tricks have been played with their text, and with the texts of other books relating to them, that we have a right, from that cause, to entertain much doubt what parts of them are genuine. In the New Testament there is internal evidence that parts of it have proceeded from an extraordinary man; and that other parts are of the fabric of very inferior minds. It is as easy to separate those parts, as to pick out diamonds from dunghills. &nbsp;--Thomas Jefferson, letter to John Adams</blockquote>\n<p><br></p>\n<blockquote>There is no coming to consciousness without pain. &nbsp;--Carl Jung</blockquote>\n<p><br></p>\n<p><br></p>\n<p>_______________________________________________________</p>\n<h1>Redeeming Christ, Part II, Chapter 5, How We Got Our Bibles</h1>\n<p><br></p>\n<h3>Below is Chapter 4 of \"Redeeming Christ\". &nbsp;Some of what I say below may not make sense unless you've read the <a href=\"https://steemit.com/philosophy/@sean-king/redeeming-christ-an-indispensable-introduction\">Indispensable Introduction</a>, <a href=\"https://steemit.com/philosophy/@sean-king/redeeming-christ-part-i-chapter-i-deconstructing-faith\">Chapter 1</a>, <a href=\"https://steemit.com/bible/@sean-king/redeeming-christ-part-i-chapter-2-the-perplexing-power-of-paradigms\">Chapter 2,</a> <a href=\"https://steemit.com/bible/@sean-king/the-bible-isn-t-mainly-history\">Chapter 3</a> and <a href=\"https://steemit.com/christianity/@sean-king/early-christianities-weren-t-orthodox\">Chapter 4</a>. &nbsp;</h3>\n<p><br></p>\n<p>_______________________________________________________</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Official_Presidential_portrait_of_Thomas_Jefferson_by_Rembrandt_Peale_18003f466.jpg\" width=\"1024\" height=\"1221\"/></p>\n<p>(Jefferson's official portrait. &nbsp;Source: &nbsp;Wikipedia)</p>\n<h2><br></h2>\n<h2>Divine Inspiration</h2>\n<p><br></p>\n<p>If the earthly Jesus didn\u2019t authorize our Bibles, and if Christians argued for centuries over its makeup, how did history finally settle on \u201cthe\u201d Bible? Well, as we shall come to see, it didn\u2019t. But, to the extent that some modern Literalists believe that there is a single agreed-upon, infallible book of scripture, it is due, in their view, to the concept of \u201cdivine inspiration\u201d\u2014the idea that God\u2019s hand directed both the writing and the compilation of the Bible over hundreds of years.</p>\n<p><br></p>\n<p>But, is this idea of divine inspiration a reasonable one? As suggested in the prior chapter, if God had intended for us to look to a history book for our spiritual salvation, he certainly should have, dare I say would have, made his intentions plainer, no? As Professor Ehrman notes:</p>\n<p><br></p>\n<blockquote>It is one thing for believers to affirm, on theological grounds, that the decisions about the canon, like the books themselves, were divinely inspired, but it is another thing to look at the actual history of the process and to ponder the long, drawn-out arguments over which books to include and which to reject. The process did not take a few months or years. It took centuries. And even then there was no unanimity. (Lost Christianities at 230)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Because few lay Christians have ever done so, let\u2019s examine this drawn-out process in more detail.&nbsp;</p>\n<p><br></p>\n<p><br></p>\n<h2>The Gospels</h2>\n<p><br></p>\n<p>Much of the early arguments over the Bible centered upon which gospels should be included, and which excluded, from the New Testament. After all, as previously noted, there were far more gospels in circulation than merely the four known to our Bibles today:</p>\n<p><br></p>\n<blockquote>The greatest difficulty was in choosing the Gospels, and after much controversy, four were chosen: three, those of Matthew, Mark, and Luke, are synopses of Jesus\u2019 life, while John\u2019s Gospel concentrates on a few specific miracles performed by Christ. (Solomon J. Schepps, Foreward to the 1979 edition of Lost Books of the Bible at 9)</blockquote>\n<p><br></p>\n<p><br></p>\n<p><strong>Limiting the Gospels to only four was very important to some early Literalist leaders, although other Literalists and most Gnostics opposed this limitation, and the rationale for it was strained at best.</strong> Irenaeus, who we met in the last chapter, was one of the earliest and most vehement proponents of a four gospel canon, arguing that, \u201cit is not possible that there can be more or fewer than four\u201d for \u201c just as there are four regions of the universe, and four principal winds\u201d there must be only four gospels. Though hardly compelling, this rationale has been frequently cited over the centuries.&nbsp;</p>\n<p><br></p>\n<h3>Later orthodox Literalists, who ultimately assumed control over the selection process (as we will discuss below), did offer more rational justifications for limiting the gospels to four: They deemed some of the additional ones to be merely supplementary or redundant and therefore unnecessary, while they viewed others, particularly those without a Literalist bent, as outright heretical:</h3>\n<p><br></p>\n<blockquote>Of the accounts of the life of Jesus that were rejected by the Fathers, many were considered supplementary rather than false. Such was the case with the Gospels of Peter and Nicodemus and the two accounts of Christ\u2019s infancy (I and II Infancy)\u2026.</blockquote>\n<p><br></p>\n<p>***</p>\n<p><br></p>\n<blockquote>Peter\u2019s Gospel, which was once held as high as those of Matthew and Mark, and more highly than those of Luke and John, was ultimately rejected because it differs too much in its details from the three chosen synopses. The Gospel of Thomas, one of the Nag Hammadi documents, was rejected for a very different reason. It opens by saying that he who understand the words of Jesus will be saved. This, of course, is in direct contradiction to the chosen Gospels\u2026which say that it is he who believes that will be saved\u2026. (Forward to the 1979 edition of Lost Books of the Bible at 9-10)</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>The last of the \u201cchosen\u201d gospels, often called the fourth gospel, was that of John. But the modern reader may be surprised to learn that many early Christians disapproved of it selection:</h3>\n<p><br></p>\n<blockquote>Even its first generation of readers disagreed as to whether John was a true gospel or a false one\u2014and whether it should be part of the New Testament. John\u2019s defenders among early Christians revered it as the \u201clogos gospel\u201d\u2014the gospel of the divine word or reason (logos, in Greek)\u2014and derided those who opposed it as \u201cirrational\u201d (alogos, lacking reason). Its detractors, by contrast, were quick to point out that John\u2019s narrative differs significantly from those of Matthew, Mark, and Luke. [A]t crucial moments in its account, for example, John\u2019s gospel directly contradicts the combined testimony of the other New Testament gospels. (Elaine Pagels, Beyond Belief: The Secret Gospel of Thomas at 34-35)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Even so, because it can be bent to a Literalist interpretation, John\u2019s gospel came to be accepted as canon.&nbsp;</p>\n<p><br></p>\n<p>By way of contrast, the Gospel of Peter--a book much prized by most early Christians, rivaling in popularity the Gospels of Matthew and Mark and exceeding Luke and John--was ultimately rejected because it lent itself to a potentially \u201cheretical\u201d interpretation known as <a href=\"https://en.wikipedia.org/wiki/Docetism\">docetism</a>. Although it came in a variety of forms, docetism can be understood for purposes of this book as the belief that Christ\u2019s divine nature kept him from experiencing true pain and suffering during his life and death. Serapion (c. 199), the orthodox Bishop of Antioch, (c. 199), concluded that because the Gospel of Peter could be interpreted in a manner inconsistent with orthodox teachings (which held that Jesus suffered in the ordinary sense), it could not have been written by the Apostle Peter.&nbsp;</p>\n<p><br></p>\n<h3>While modern scholarship has confirmed that the Gospel of Peter was not written by the historical Peter, Serapion\u2019s rationale for dismissing it should concern those who assert the Bible\u2019s infallibility. Serapion discarded the book simply because he disagreed with it, not because he had any actual evidence or knowledge of forgery. Thus, in Serapion\u2019s approach we see the beginnings of an orthodox \u201clitmus test\u201d for determining the authenticity of early Christian manuscripts\u2014those that largely agreed with the orthodox position, or could be interpreted or easily edited to do so, were frequently held to be authentic, while those that outright contradicted orthodox views were always discarded as forgeries.&nbsp;</h3>\n<p><br></p>\n<h3>Renowned scholar Bruce M. Metzger, PhD, acknowledges that the compilers of the Bible applied just such a litmus test. According to Metzger, for a book to be considered canonical it must have met three tests:</h3>\n<h3><br></h3>\n<h3>First, the books must have had apostolic authority\u2014that is, they must have been written either by apostles themselves, who were eyewitnesses to what they wrote about, or by followers of apostles.</h3>\n<h3><br></h3>\n<h3>[S]econd, there was the criterion of conformity to what was called the rule of faith. That is, was the document congruent with the basic Christian tradition that the [orthodox] church recognized as normative?&nbsp;</h3>\n<h3><br></h3>\n<h3>And third, there was the criterion of whether a document had had continuous acceptance and usage by the church at large. [Quoted in The Case For Christ at 66]</h3>\n<h3><br></h3>\n<h3><br></h3>\n<h3>Other scholars have noted that the litmus test came in four parts rather than three, recognizing an additional requirement that the book be \u201cancient\u201d. But regardless, it is the second test, the \u201crule of faith\u201d, that is most intriguing to critical scholars.&nbsp;</h3>\n<p><br></p>\n<p><strong>The \u201crule of faith\u201d, sometimes called the \"standard of faith\" rested on the now questionable assumption that the orthodox view of Christianity represented the exclusive authentic tradition.</strong> Under this standard, any early Christian document that contradicted the orthodox understanding was considered by the orthodox Literalists of the second and third centuries to be a forgery. <strong>For instance, the Gospel of Peter met every prong of the orthodox litmus test noted above save one\u2014the \u201crule of faith\u201d. After all, it was ostensibly written by the Apostle Peter and it was widely used and considered authentic by a great number of Christians, proving itself to be even more popular than Luke or John. The simple fact is that we don\u2019t read the Gospel of Peter in our Bibles today only because parts of it could not be reconciled with certain orthodox teachings and, as we shall see, it was the orthodox who compiled our Bibles.&nbsp;</strong></p>\n<p><br></p>\n<p>Perhaps this rationale for excluding the Gospel of Peter and other books is acceptable to those who take it on faith that the orthodox tradition was the true and complete one, but it is troublesome for those who know otherwise. After all, <strong>the reasoning employed by the early orthodox is circular: \u201cWe\u2019re right and they are wrong\u201d, contended the orthodox leaders who compiled our Bibles. \u201cSo those manuscripts that agree with us are obviously authentic, while those that do not are certainly forgeries. Therefore we shall create a collection of the \u2018authentic\u2019 teachings, and then we can point to the authenticity of this collection as proof that our interpretation of Christianity is the right one.\u201d One doesn\u2019t have to be a logician to find the holes in that reasoning.</strong></p>\n<p><br></p>\n<p><br></p>\n<h2>The Letters</h2>\n<p><br></p>\n<p>Not surprisingly, the debate over the Bible wasn\u2019t limited to the Gospels alone, but included the New Testament letters (epistles) as well. Several of the epistles in our present-day Bibles were not well respected by important early Christians, even some Literalist ones. <strong>In Origen\u2019s (c. 210) catalogue of New Testament scriptures, the Epistles of James and Jude are omitted, and Origen notes that many Christians were skeptical of 2 Peter and 2 and 3 John. More than a hundred years later, Eusebius (c. 315) states that some Christians of his time still doubted or outright rejected the authenticity of these same five books. Eusebius himself considered Revelation to be spurious. Jerome (c. 382) spoke dubiously of the epistle to the Hebrews. As late as the fifth century, the Syrian church venerated only 22 books, excluding 2 Peter, 2 and 3 John, Jude and Revelation. By contrast, the present day Ethiopian church accepts all twenty-seven books of our present day New Testament, but adds four more.&nbsp;</strong></p>\n<p><br></p>\n<p><strong>The famous fourth century teacher known as Didymus the Blind was among those who believed that 2nd Peter was a forgery. Interestingly though, he cited the Shepard of Hermas and other noncanonical books favorably.&nbsp;</strong></p>\n<p><br></p>\n<p><strong>The last book of the Bible, Revelation, is not included in the various catalogues of the New Testament offered by such notable early Christians as Cyril, Bishop of Jerusalem (c. 340); the Bishops at the Council of Caudices (c. 364); Gregory Nazianzen, Bishop of Constantinople (c. 375); and Philastrius, Bishop of Brixia in Venice (c. 380).&nbsp;</strong></p>\n<p><br></p>\n<p><strong>In short, as late at 400 CE there was no accepted, universal canon of Christian scripture. And, as we shall soon see, there still isn\u2019t even today.&nbsp;</strong></p>\n<p><br></p>\n<p><br></p>\n<h2>Forgery, Forgery Everywhere</h2>\n<p><br></p>\n<p><strong>Forgery was commonly practiced in ancient times, so early Christians had reason to be skeptical when their opponents pointed to various manuscripts to \"cinch\" their argument. And as we shall see, we have even more reasons to be skeptical of these same manuscripts today.&nbsp;</strong></p>\n<p><br></p>\n<h2>Arguing in support of the integrity of our modern Bibles, Literalists often cite the research of critical scholars who have proven many of the excluded texts, such as the once-prized Gospel of Peter, to be forgeries (i.e., it was not really written by the historical Peter). But, these Literalists overlook the fact that these very same scholars have also shown several of our New Testament letters to be forgeries:</h2>\n<p><br></p>\n<blockquote>Scholars have long recognized that even some of the books accepted into the canon are probably forgeries. Christian scholars, of course, have been loathe to call them that and so more commonly refer to them as \u201cpseudonymous\u201d writings. Possibly this is a more antiseptic term, but its does little to solve the problem of a potential deceit, for an author who attempts to pass off his own writing as that of some other well-know person has written a forgery. That is no less true of the book allegedly written to Titus that made it into the New Testament (Paul\u2019s Letter to Titus) than of the book allegedly written by Titus that did not (Pseudo-Titus), both claiming to be written by apostles (Paul and Titus), both evidently written by someone else. (Ehrman, Lost Christianities at 9)</blockquote>\n<p><br></p>\n<p><br></p>\n<p><strong>In fact, all of Paul\u2019s New Testament \u201cPastoral letters\u201d--1 and 2 Timothy and Titus--are now known to have been written long after Paul\u2019s death, very likely in the late first century. &nbsp;Among the New Testament books attributed to Paul, only Galatians, 1 and 2 Corinthians, 1 Thessalonians, Philippians, Romans, and Philemon are universally recognized by critical and \u201cfaithful\u201d scholars alike as authentic.</strong> Ephesians, Colossians and 2 Thessalonians are sometimes disputed, but the definite consensus of critical scholars is that they are either fabrications or severely edited versions of some now lost originals.&nbsp;</p>\n<p><br></p>\n<p>Although I cannot document here all of the various, compelling reasons why critical scholars are so sure that many New Testament epistles are faked, I will take a moment here discuss the Pastorals.&nbsp;</p>\n<p><br></p>\n<p>In addition to the skepticism expressed by early prominent Christians and church fathers like those noted in the previous section above, the earliest extant catalogue of Paul\u2019s letters makes no mention at all of the Pastorals. Indeed, there is no evidence of their existence prior to c. 190 when Irenaeus conveniently makes mention of them. And yet, even despite these references by Irenaeus, Eusebius (c. 300), the so-called \u201cFather of Church History\u201d, does not include the Pastorals in his catalogue of the books of sacred scripture, even though he definitely knew of them.&nbsp;</p>\n<p><br></p>\n<p>But modern scholars have many additional reasons for doubting the authenticity of the Pastorals. For one, they curiously reference aspects of church structure and hierarchical governance that, although favored by the orthodox, did not exist during Paul\u2019s lifetime. The structure of church governance discussed in the Pastorals (a top-down hierarchy) is in many ways inconsistent and irreconcilable with the organizational structure of Paul\u2019s churches described in his authentic writings (which took a more democratic, bottom-up presbyterian approach).</p>\n<p><br></p>\n<p>Additionally, the vocabulary and tone of the Pastorals is curious. They use a number of words not found elsewhere in Paul\u2019s authentic writings, and specifically contradict the teachings of the known authentic writings on many points. Not surprisingly, these points of contradiction typically advance an orthodox understanding of Christianity, with the Pastorals apparently serving to \u201cclarify\u201d those parts of Paul\u2019s authentic writings that lent themselves to a Gnostic, \"heretical\" interpretation.&nbsp;</p>\n<p><br></p>\n<p>For these and other reasons, critical scholars are in near unanimous agreement that the Pastorals are second century forgeries, and rather poor ones at that.&nbsp;</p>\n<p><br></p>\n<p><br></p>\n<h2>Circumstantial Evidence of Forgery</h2>\n<p><br></p>\n<p>Although the most \u201cfaithful\u201d of Literalist attempt to dispute the direct evidence of forgery noted above--rationalizing, for example, that the unusual vocabulary of the Pastorals might be attributable to the fact that Paul may have dictated his various letters at different times to different scribes who sometimes paraphrased him (while nonetheless perfectly preserving his \"divinely inspired\" message, we are assured)--<strong>there can be no dispute on the following point: To advance their cause, certain highly educated proto-orthodox forgers authored letters in the names of the Apostles or their followers, letters that their descendants eventually excluded from the Bible for one reason or another. </strong>For example, as mentioned previously, some orthodox sympathizer forged a letter from Titus, now called \u201cPseudo-Titus\u201d (meaning \u201cfalse Titus\u201d), that is not found in our New Testament. Extra-biblical documents forged in the name of the Apostle Paul include 3 Corinthians (created in the second century largely in order to undermine the docetic \u201cheresy\u201d, it was eventually accepted as canonical only by the Armenian church and certain Syrian churches), several letters from Paul to the Roman philosopher Seneca (designed to cast Paul as a great philosopher), and at least one to the church at Laodicea. Yet other known Pauline forgeries are lost to history\u2014we know them only because they are referenced in ancient writings that have been preserved.&nbsp;</p>\n<p><br></p>\n<h3>Faithful readers should not be surprised that all these letters were being forged in Paul\u2019s name. After all, 2 Thessalonians (2:2) records that Paul was concerned that people were forging letters in his name even in his own time. However:</h3>\n<p><br></p>\n<blockquote>In an interesting twist, scholars today are not altogether confident that 2 Thessalonians itself was written by Paul. And so we have a neat irony: either 2 Thessalonians was written by Paul and someone else was producing forgeries in Paul\u2019s name, or 2 Thessalonians itself is a forgery that condemns the production of forgeries in Paul\u2019s name. Either way, someone was forging books in Paul\u2019s name. (Lost Christianities at 10)</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>Although these undisputed forgeries weren\u2019t included in our New Testaments, to the relief of many Literalists, their mere existence casts additional doubt on many of the books that did. These extra-biblical forgeries prove indisputably that some early, highly-educated proto-orthodox sympathizers--members of the very group whose spiritual descendants ultimately organized and canonized the New Testament as Holy Writ (as we shall see)--were ready, willing, and able to employ deceit to advance their cause and to undermine the authority of their Christian opponents, going even so far as to forge letters in the name of key Apostles. Even the Catholic Encyclopedia admits as much: \"Both Catholics and Gnostics were concerned in writing these fictions. The former had no motive other than that of pious fraud.\" Gnostic forgeries were then presumably \"impious frauds.\"&nbsp;</h3>\n<p><br></p>\n<h3>Combine this known and admitted propensity for forgery with the doctrine-based litmus test later adopted by their descendants for purposes determining the authenticity of ancient Christian documents, and it would be a divinely inspired miracle indeed if some forgeries didn\u2019t make it into our New Testaments.&nbsp;</h3>\n<p><br></p>\n<p><strong>So, even if we ignore the all-but-conclusive direct evidence of forgery within our New Testament, we have compelling circumstantial evidence as well: We know with certainty that the Literalist Church had the means to commit forgery, as evidenced by, among other things, their extant forgeries that did not make it into the New Testament. We also know that the Literalists had the motive to forge documents and include them in the canon (e.g., by forging documents in Apostles\u2019 names and designating those documents as the infallible Word of God, Literalists would gain an advantage in the battles for the heart and soul of early Christianity). Finally, Literalists had the opportunity to include forged documents in the Bible: A century or two after these documents were forged, the spiritual descendants of these Literalist forgers attempted to \"close the cannon\" and adpoted a doctrine-based litmus test of authenticity that all but assured some forged documents would be canonized.&nbsp;</strong></p>\n<p><br></p>\n<p>In light of this evidence, it is only the most \u201cfaithful\u201d of Christians who deny that parts of the New Testament are obvious forgeries. Sadly, such \u201cfaithfulness\u201d borders on irrationality: It is not merely \u201cevidence of things unseen\u201d (as Paul defined faith), but the irrational rejection of things seen plainly. It is not merely an acceptance of the unprovable, but acceptance in spite of overwhelming evidence to the contrary. Why should anyone have such faith? More importantly, why would a benevolent, loving God have made such irrational faith a precondition of salvation? I can think of no reason at all, but I can, and have, identified many reasons why less than benevolent, power-driven humans did so.&nbsp;</p>\n<p><br></p>\n<p><br></p>\n<h2>Bibles, Bibles Everywhere</h2>\n<p><br></p>\n<p>Even if we ignore the known forgeries in the New Testament, there are many other problems with Literalist claims of the Bible's infallibility. One is that, as previously alluded, there is simply no such thing as the Bible. <strong>Over centuries what we now call the Bible has undergone numerous changes, and \"the\" church has never enjoyed a definitive version. </strong>For example, the identity of the books comprising the Old Testament has changed over the years, the Apocrypha was dropped from the Protestant Bible altogether after the Council of Trent (1545-1563) and, as we have seen, the books of the New Testament weren\u2019t fixed until the late fourth century or early fifth century, and even then there still wasn\u2019t complete unanimity in Christendom. <strong>The Catholic Encyclopedia admits, \"The idea of a complete and clear-cut canon of the New Testament existing from the beginning...has no foundation in history.\"&nbsp;</strong></p>\n<p><br></p>\n<p>Another problem with claims of biblical infallibility is that, even today (and ignoring disputes over which books are canonical) we have numerous versions of \u201cthe\u201d Bible. <strong>Just since the King James Version was first published in the early 1600\u2019s, English speaking peoples have seen more than three hundred English translations of the Bible alone! </strong>A trip to the local bookstore will acquaint the reader with some of these, and a somewhat more comprehensive listing can be found here.</p>\n<p><br></p>\n<h3>So, why the need for so many Bibles?</h3>\n<h3><br></h3>\n<h3>Well, different versions exist for two primary reasons: (1) scholars disagree about which of the ancient manuscripts should be translated into our modern Bibles, and (2) translators disagree as to how to properly translate a given manuscript into a language understandable by modern audiences. Let\u2019s discuss each of these disagreements, beginning with the last one first.</h3>\n<p><br></p>\n<p><br></p>\n<h2>Difficult Translations</h2>\n<p><br></p>\n<p>Jesus and his immediate followers, like most Jews of Palestine for centuries before them, spoke Aramaic, a language that is all but dead today. However, the oldest complete New Testament manuscripts still in existence are all written in an ancient form of Greek, called \u201cKoine\u201d, and all of these oldest manuscripts are \u201cuncials\u201d, meaning that they are written in only capital Greek letters with no spaces between words, no line breaks, and almost no punctuation marks\u2014i.e., no periods, no commas, no page breaks, and no exclamation points.&nbsp;</p>\n<p><br></p>\n<p><strong>These facts are important for several reasons. First, they demonstrate that, with only a few exceptions, even the oldest existing copies of the New Testament capture the words of Jesus and the Apostles only in translated form. </strong>We do not know the actual words that were originally spoken by Jesus and his Apostles in Aramaic, rather we have only a Greek hearsay translation. And, unfortunately, something is always lost in translation: As Rabbi Judah eloquently stated, \u201cHe who translates a biblical verse literally is a liar, but he who elaborates on it is a blasphemer.\u201d&nbsp;</p>\n<p><br></p>\n<p>The translator\u2019s job is to express in language understandable to his audience the meaning of words originally spoken or written by someone else using a different language. Given linguistic differences in grammar, syntax, punctuation and figures of speech, this is no easy task under the best of circumstances\u2014but, Bible translators face additional complications. NAMELYTHEYARECHARGEDWITHACCURATELYTRANSLATINGANCIENTMANUSCRIPTSTHATAREWRITTENINALLCAPSDEVOIDOFPUNTUATIONORSPACESANDTHATWEREWRITTENTHOUSANDSOFYEARSAGOINLANGUAGEORDIALECTSTHATHAVEBEENDEADFORCENTURIES.</p>\n<p><br></p>\n<p>If that last \"all caps\" sentence didn\u2019t make any sense, it is only because I wrote it in uncial form in hopes of giving the reader some appreciation for the difficult task of translating ancient uncials. Here\u2019s what I actually said: \u201cNamely they are charged with accurately translating ancient manuscripts that were written in all caps, which are virtually devoid of punctuation marks or spaces, and that were written thousands of years ago in languages or dialects that have been dead for centuries.\" If the reader had difficulty making sense of the \"all caps\" phrase above (even though it was written in modernEnglish), imagine how much greater the difficulty of interpreting a dead, foreign language written in such a manner.&nbsp;</p>\n<p><br></p>\n<p>The first step in any translation of an ancient document is to develop an understanding of the original author\u2019s intent. As anyone who has ever attempted to interpret a document knows, this is more art than science, especially when the original author has been dead for two millennia, came from a foreign culture, and spoke a dead language. Given the difficultly that each present day generation has in understanding the next one (and vice versa), imagine how much more difficult it must be for a modern translator to truly see the world through the eyes of a first century writer from another culture.&nbsp;</p>\n<p><br></p>\n<h3>In short, despite their best efforts, a translator\u2019s presuppositions (paradigms) affect his or her understanding of the original writer\u2019s intent, and therefore taint his or her interpretation of the original writer\u2019s words. The Preface to the New King James Version of the Bible, which is itself \u201cthe fifth revision of a historic document translated from specific Greek texts\u201d, is to be commended for acknowledging as much explicitly:</h3>\n<p><br></p>\n<blockquote>[T]he most important differences in the English New Testaments of today are due\u2026to the way in which translators view the task of translation: How literally should the [original] text be rendered? How does the translator view the matter of biblical inspiration? Does the translator adopt a paraphrase when a literal rendering would be quite clear and more to the point?\u201d [parentheticals and emphasis added]</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>In other words, as the preface to the New King James version makes clear, the meaning of the translated Bible varies according to the particular translator\u2019s presuppositions, including whether or not the translator presupposes that the Bible is a spiritual book written by mortals, or a divinely inspired book of history. Or, said another way, the Paradigm of Historicity affects the translation! In this manner, centuries of translator bias (until very recently, almost exclusively Literalist ones) have been not-so-subtly incorporated into the substance of the most Bible versions available to us today. We will expose many of these as we proceed.&nbsp;</h3>\n<p><br></p>\n<p>Assuming a translator can overcome the first challenge of truly understanding the intent of the original writer, the second step in translation is to then render the that understanding in language comprehensible to the translator\u2019s audience. The Christian William Tyndale was the first translator to offer an English Bible (c. 1526) derived from the most ancient Greek manuscripts available at the time (rather than later Latin manuscripts that had served as the basis for most previous translations). For this, he was eventually burned at the stake for heresy. Even so, many of his words survive to this day. It was Tyndale who, via artful translation, created from whole cloth many of the most memorable words and phrases found in our modern Bibles:</p>\n<p><br></p>\n<blockquote>It was Tyndale who established \u2026that the Bible should not be in the language of scholars but in the spoken language of the people. [H]e coined such words as \u201cPassover,\u201d \u201cscapegoat,\u201d \u201cmercy seat,\u201d and \u201clong-suffering.\u201d</blockquote>\n<blockquote><br></blockquote>\n<blockquote>Many expressions of Tyndale are also unforgettable, cherished by countless readers of the English Bible: \u201cthe kingdom of heaven is at hand\u201d (Matt. 3:2); \u201cthe pinnacle of the temple\u201d (Matt. 4:5); \u201cthe salt of the earth\u201d (Matt. 5:13); \u201cdaily bread\u201d (Matt. 6:11); \u201cConsider the lilies of the field, how they grow\u201d (Matt. 6:28); \u201cmeek and lowly in heart\u201d (Matt 11:29); \u201cshepherds abiding in the field\u201d (Luke 2:8); \u201ceat, drink, and be merry\u201d (Luke 12:19); \u201cfatted calf\u201d (Luke 15:23); \u201conly begotten son\u201d (John 1:14, 18); \u201cin my Father\u2019s house are many mansions\u201d (John 14:2); \u201cin whom we live and move and have our being\u201d (Acts 17:28); \u201cGod forbid\u201d (Rom 3:4); \u201csounding brass\u201d and \u201ctinkling cymbal\u201d (1 Cor. 13:1); \u201cin the twinkling of an eye\u201d (1 Cor. 15:52); \u201csinging and making melody (Eph. 5:19); \u201coffice of a bishop\u201d (1 Tim. 3:1); \u201cthe pleasures of sin for a season\u201d (Heb. 11:25); \u201can advocate with the Father\u201d (1 John 2:1); and \u201cBehold, I stand at the door and knock\u201d (Rev 3:20). (How We Got the Bible at 178-179)</blockquote>\n<p><br></p>\n<p>Despite their familiarity, the above expressions do not appear in the original Greek, at least not in so many words:&nbsp;</p>\n<p><br></p>\n<blockquote>[I]t is noteworthy that these expressions could have been translated differently from the Greek text, yet because Tyndale had such an ear for the English language, these [para]phrases live on. [parentheticals added]. (How We Got the Bible at 179)</blockquote>\n<p><br></p>\n<p>In short, as previously stated, something is always lost (and sometimes added)in translation.&nbsp;</p>\n<p><br></p>\n<p><br></p>\n<h2>An Important Diversion to Discuss Misleading Translations&nbsp;</h2>\n<p><br></p>\n<p>Before moving on to discuss the second primary reason that there are so many versions of the Bible\u2014namely, disagreements over which ancient documents to translate,--its worth pausing here to explore the significance of translator bias. <strong>Until very recently, virtually all Bible translations were overseen by committed Christians steeped in the Literalist, orthodox tradition. Even most of the so-called heretics of the last thousand years were, like William Tyndale, Literalists. Consequently, the Paradigm of Historicity, and all orthodox doctrines derived therefrom, weighed heavily on their efforts, and the biases of these original translators have influenced subsequent translations ever since.&nbsp;</strong></p>\n<p><br></p>\n<p><strong>Translators who presuppose that the Bible is the \u201cinspired\u201d word of God naturally \u201cview the task of translation\u201d, if only unconsciously, as supporting this idea.</strong> <strong>Such translators assume that God\u2019s inspired Word simply can\u2019t contradict itself or contain error. Thus, centuries of translators have adopted interpretations and translations that seek to reconcile or downplay inconsistencies or discrepancies that are evident in the original tongue. For example:</strong></p>\n<p><br></p>\n<blockquote>All of the Gospels present but one view of Jesus, that he is the Son of God. Yet in presenting this view their individual descriptions of him and his sayings often employ different words. Through the years, these verbal distinctions, either intentionally or unintentionally, tended to be \u201charmonized\u201d by the scribes. Thus it is a sound conclusion that in parallel accounts the text which preserves the minute verbal differences is generally the [more authentic] text. (How We Got the Bible at 93)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>The result of this translator and scribal bias for consistency is that some parts of our modern Bibles appear to modern readers to be more of a coherent whole than they actually are, while other parts appear to less of a whole than they should. The following pages will provide numerous examples of the former, but here I will note one very basic example of the latter:&nbsp;</p>\n<p><br></p>\n<p>\u201cJesus\u201d is the Greek rendering of the Hebrew name \u201cJoshua\u201d, meaning \u201csavior.\u201d It was a very common name among first century Jews. And yet it has become customary among translators to render the name of the Old Testament hero of Exodus as \u201cJoshua\u201d and that of the New Testament hero of the same name as \u201cJesus\u201d. Inconsistently translating these names adds to Jesus\u2019 uniqueness while at the same time obscuring certain similarities in the lives and actions of the two biblical heroes that may otherwise be obvious. The differing nomenclature discourages the reader from drawing analogies between the lives of the two figures, analogies that the authors of the gospels almost certainly intended.&nbsp;</p>\n<p><br></p>\n<h3>Translator bias has also served to obscure some striking similarities between the New Testament and other Gnostic scriptures. The Bible is almost always rendered in the familiar \u201cchurch speak\u201d originally adopted by Literalist translators over the centuries. However, it\u2019s important to understand that identical Greek words and ideas appearing in surviving Gnostic writings are typically rendered in unfamiliar \u201cpagan\u201d, heretical language, or simply left un-translated altogether, making these works seem more foreign, bizarre, and incredible than they should. To illustrate the point, let\u2019s consider just how strange, dare I say Gnostic, parts of the New Testament sound if we translate them from the Greek using the same principles often employed when translating Gnostic manuscripts.</h3>\n<p><br></p>\n<p>The Greek word for wisdom is \u201cSophia\u201d, which is also the name of the Greek goddess that personified the same. In Gnostic mythology, Sophia was the companion and lover of the Logos (often translated as \u201cword\u2019, which we will discuss more below), which all Christians equate with Christ (thanks to the opening chapter of the fourth gospel). This may be one reason why translators almost always translate the Greek word \u201cSophia\u201d as simply \u201cwisdom\u201d in the New Testament, but as \u201cSophia\u201d in most Gnostic texts. But is such inconsistent treatment justified? <strong>What happens, for example, when we translate some familiar Bible passages using principals of translation traditionally applied to Gnostic texts? Let\u2019s begin with words attributed to Paul in Colossians 1:8 (highlighted words are those that have been reworded using more consistently applied principles of translation, as is done with non-canonical books from the time):</strong></p>\n<p><br></p>\n<blockquote>We proclaim [Christ]\u2026teaching every man in the ways of Sophia that each may become an initiated member of Christ. (Colossians 1:28)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Translated in this manner, and remembering that in Gnostic theology, Sophia was the lover of the Logos (Christ), Paul sounds\u2026well\u2026radical. In essence, Paul teaches that we become one with Christ (that is, \u201cmembers\u201d of Christ) by learning the ways (i.e., assuming the role) of his mythical lover, Sophia. Though strange, this lesson is actually consistent with orthodox doctrine that the church is the \u201cbride of Christ\u201d, and it is also indistinguishable from the Gnostic teaching on this subject.</p>\n<p><br></p>\n<p>Continuing:&nbsp;</p>\n<p><br></p>\n<blockquote>My purpose is that they may\u2026become one in love, so that they may\u2026experience the Gnosis of God\u2019s mystery, namely, Christ, in whom are hidden all the treasures of Sophia and Gnosis. [emphasis added] (Colossians 2:2-3)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Here Paul teaches that mystical \u201coneness\u201d is achieved through Gnosis (or experiential knowledge) of God\u2019s \u201cmystery\u201d, which he defines as Christ. Christ is not discussed as an historical personage, but as a higher consciousness that, once identified with to the exclusion of our ego (i.e., once we become one with it), leads to spiritual insight\u2014hidden wisdom (Sophia) and knowledge (gnosis). This is pure Christian Gnosticism, plain and simple. Only the common misleading translation keeps us from seeing it as such.&nbsp;</p>\n<p><br></p>\n<p>Proceeding further:</p>\n<p><br></p>\n<blockquote>We speak of Sophia among the initiated; not the Sophia of this aeon, nor of the rulers of this aeon, who are passing away; but we speak of God\u2019s Sophia in a mystery. (1 Corinthians 2:6)</blockquote>\n<p><br></p>\n<p><br></p>\n<p>And:</p>\n<p><br></p>\n<blockquote>It is central to our faith that in the end we will all attain Oneness through Gnosis of God\u2019s Son, becoming fully initiated human beings, equal to nothing less than the pleroma of Christ. (Ephesians 4:13)</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>\u201cGod\u2019s Sophia\u201d, \u201cinitiated\u201d, \u201cmystery\u201d, \u201caeons\u201d, \u201coneness\u201d and \u201cpleroma\u201d, all of these are quintessentially Gnostic terms, terms one would find repeated over and over in most any Christian Gnostic texts such as those found at Nag Hammadi. And yet, although they are expressed in the original Greek manuscripts of our Bibles, these terms are foreign to most Christians simply because bias, primarily the doctrine of divine inspiration and the Paradigm of Historicity, keeps translators from expressing Paul in this way. Rather than use the word \u201cinitiated\u201d, which is a more proper and accurate translation of the original Greek, and one they surely would have used if translating the same word in a Gnostic text, translators substitute the word \u201cmature.\u201d Rather than use the Greek word \u201cGnosis\u201d, which describes subjective, experiential knowledge (like knowing how to ride a bike) as opposed to objective, intellectual knowledge (like one plus one equals two), translators just use the more antiseptic (if somewhat misleading) English word \u201cknowledge\u201d, which has the added benefit of obscuring Paul\u2019s Gnostic tendencies.</h3>\n<p><br></p>\n<p>Another example of a translation that obscures the similarities between the Gnostic texts and the New Testament is the rendering of logos in many Gnostic texts as logos, but in the New Testament as \u201cWord\u201d (such as in John 1:1) The Greek word logos, which is the root of the English word \u201clogic\u201d, has no strict English equivalent. It can be alternatively translated as \u201cword\u201d, \u201creason\u201d, or \u201cidea\u201d depending upon context, but it actually contains elements of all three, plus more. No one English word captures the true essence of the Greek logos.&nbsp;</p>\n<p><br></p>\n<p>In the centuries before and immediately after Jesus, \"logos\" was a term of art used by pagan philosophers and adepts of the Mysteries Religions, including the Christian Gnostics. They generally used it to describe the thoughts of God\u2019s Mind through which God created and sustains the universe, or said another way, the objects of God\u2019s consciousness. To put it in terms readily understandable to most present-day Literalist Christians, before God spoke the words \u201cLet there by light\u201d (Genesis 1:3), God had to first have the idea (logos) of light in mind, else his words would have had no meaning or effect. Because thought, which is made manifest in words, must precede action, Gnostics came to view God\u2019s thoughts/ideas/words as the true source and sustainer of all Creation, present with God \u201cin the beginning\u201d, for creation could not exist prior to God conceiving of it. These divine thoughts or ideas, which are separate from God and yet one with Him (in the same sense that our thoughts are separate from our minds yet have no existence outside of them) are the divine logos. It will serve our purposes sufficiently if we conceptualize the divine logos for now as God\u2019s consciousness.&nbsp;</p>\n<p><br></p>\n<p>In Gnostic mythology, which the reader will recall contains much figurative language, creation is the result of the one transcendent God becoming consciousness of Himself. Exactly how this happened is a mystery symbolized in numerous and varying myths, but Gnostics reasoned rightly that consciousness requires both a subject and an object\u2014that is, there must be a witness (the person or thing that is conscious\u2014i.e., the \u201cmind\u201d) as well as the witnessed (i.e., the person or thing of which on is conscious, or the \u201cthought\u201d). In the Gnostic allegorical myths that seek to encode this truth, Gnostics often referred to the original witness (i.e., the \u201cmind\u201d of God) as \u201cthe Father\u201d. Likewise, they referred to the thoughts of that Divine Mind, the ideas which God\u2019s Mind contemplates, as \u201cthe Son\u201d or \u201cthe Logos\u201d (Word). Thus, thoughts (the Son) were conceptualized as the \u201coffspring\u201d or \u201cfirst born\u201d or \u201cbegotten\u201d of the mind (the Father), present with God at the dawn of creation. Before God thought, nothing was, for consciousness did not exist. Thus, Father and Son are as inseparable as thought is from mind. The Athanasian Creed expresses these ideas perfectly:</p>\n<p><br></p>\n<blockquote>The Father is made of none, neither created nor begotten, The Son is of the Father alone, neither made nor created, but begotten. [N]one is afore or after the other, none is greater or less than another.</blockquote>\n<p><br></p>\n<p><br></p>\n<p>And, as Origen once noted, \u201cThe Father did not beget the Son, but ever is begetting him.\u201d</p>\n<p><br></p>\n<h3>The experience of this simple idea was almost certainly part of the fundamental Inner Mystery taught by all Gnostic Mystery Schools in the centuries before and after Jesus. Centuries before Christ the pagan Gnostic Heraclitus (c. 600 BCE) wrote, \u201cThe Father and Son are the same.\u201d According to Clement of Alexandria, the pagan Gnostic Euripides had years before \u201cdivined as in a riddle that the Father and the Son are one God.\u201d The legendary pagan sage Orpheus, who lived, if at all, thousands of years before Christ, is quoted by the Christian Clement of Alexandria as having taught:&nbsp;</h3>\n<p><br></p>\n<blockquote>Behold the Logos divine. Tread well the narrow path of life and gaze on Him, the world\u2019s great ruler, our immortal king. (Quoted in The Jesus Mysteries at 83)</blockquote>\n<p><br></p>\n<p>Clement of Alexandria himself writes:</p>\n<p><br></p>\n<blockquote>The Son is the Consciousness of God. The Father only sees the world as reflected in the Son. (Quoted in The Jesus Mysteries at 84) [parentheticals added]</blockquote>\n<p><br></p>\n<p><br></p>\n<p>Continuing with this idea for a moment, it is important to note that Gnostics sought to explain the mystery of human consciousness by characterizing it as fragmented, dispersed pieces of the One Divine Consciousness\u2014that is, of the Son or logos, which Christians specifically equate with Christ. How portions of the One Divine Consciousness came to be dismembered and encapsulated within each of us, how we lost our ability to \u201caccess\u201d or \u201crely on\u201d it in our daily lives, and how we can regain it, are all mysteries described allegorically in many Gnostic and Christian myths. For Christians, the most important of these myths are those describing the Incarnation of Christ (God\u2019s consciousness becoming encapsulated in man), the Fall of Man (man losing his ability to rely on that consciousness and instead being ruled by his unconscious paradigms and passions, which Paul called \u201cthe flesh\u201d), and Christ\u2019s Crucifixion and Resurrection (describing the way back to union with God, or oneness with the cosmic consciousness).&nbsp;</p>\n<p><br></p>\n<p>These Gnostic teachings about the dispersion of human consciousness, and its reunion with God, may seem quite strange to Literalists, so I will again remind the reader of just a few of Paul\u2019s words on this subject:</p>\n<p><br></p>\n<blockquote>For just as the body is a unity and yet has many members, and all the members, though many , form only one body, so it is with Christ\u2026.[i.e., the logos or Son]. For by means of one shared Spirit [or consciousness] we were all baptized into one [spiritual] body\u2026.&nbsp;</blockquote>\n<p><br></p>\n<blockquote>Now you (collectively) are Christ\u2019s body [i.e., the Logos, the One Divine Consciousness], and individually members [i.e., dispersed pieces] of it. (1 Corinthians 12:11-27)</blockquote>\n<p><br></p>\n<blockquote>It is inherent in our faith that in the end we will all attain Oneness through Gnosis of God\u2019s Son, becoming fully initiated human beings, equal to nothing less than the pleroma [fullness] of Christ. [Ephesians 4:13 as rendered in Jesus and the Lost Goddess at 149))</blockquote>\n<p><br></p>\n<p><br></p>\n<p>In Ephesians 4:25, Paul writes \u201c[w]e are all parts of one body and members one of another.\u201d In Colossians 1:25-28, Paul writes that his purpose in life is to reveal to us the Mystery that was hidden in past ages--namely, that Christ (i.e., the logos) is in us! In Galations 1:15, Paul writes that \u201cGod revealed his Son in me\u201d [emphasis added]. Demonstrating that he had come to identify completely with this higher consciousness within him, and ceased identifying with his ego, Paul states, \u201c[I]t is no longer I [i.e., my ego or \"flesh\"] who live, but Christ [the logos] lives in me; and the life I now live in this body I live by faith\u2014by reliance on and complete trust in the Son of God\u2026.\u201d&nbsp;</p>\n<p><br></p>\n<p>As we have previously noted, Jesus offers the same teachings, most explicitly in the Gospel of John (17:19-26). There, Jesus prays that his followers will come to know their true nature. He prays that they will be \u201csanctified by the Truth\u201d so that they:</p>\n<p><br></p>\n<blockquote>all may be One--just as You, Father, are in Me and I in you, they also may be One in Us. [I] in them and You in Me, in order that they may become One and perfectly united....</blockquote>\n<p><br></p>\n<p><br></p>\n<h3>And nowhere is this pre-Christian, Gnostic teaching of creation emerging from the oneness of God through the facility of the logos (which is then dispersed among all peoples) better illustrated than in the opening Chapter of the Gospel of John (v. 1-4):&nbsp;</h3>\n<p><br></p>\n<blockquote>In the beginning was the Logos [i.e., Divine Consciousness, or thoughts of God, confusingly translated as \u201cthe Word\u201d], and the Logos was with God, and the Logos was God. He was with God in the beginning. All things came into being by Him, and apart from him nothing came into being [i.e., nothing existed prior to God becoming conscious]. In him was the life and that life was the light [i.e., consciousness] of men.</blockquote>\n<p><br></p>\n<p><br></p>\n<p>I could continue with innumerable examples of how misleading translations, warped as they are by the Paradigm of Historicity and doctrine of divine inspiration, have served to obscure similarities between Gnostic and Literalist texts. But the above is hopefully sufficient evidence for now that, properly translated and freed of the Paradigm of Historicity, large parts of the New Testament support, indeed demand, a Gnostic interpretation.&nbsp;</p>\n<p><br></p>\n<p>(to be continued in Chapter 5, <a href=\"https://steemit.com/god/@sean-king/reading-the-bible-is-like-picking-out-diamonds-from-dunghills-part-2\">Part 2</a>)</p>\n<h2><br></h2>\n</html>",
+    "body_length": 50292,
+    "cashout_time": "2016-09-07T16:07:33",
+    "category": "god",
+    "children": 28,
+    "created": "2016-08-31T16:07:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"god\",\"bible\",\"christianity\",\"religion\",\"\"],\"image\":[\"https://www.steemimg.com/images/2016/08/31/Official_Presidential_portrait_of_Thomas_Jefferson_by_Rembrandt_Peale_18003f466.jpg\"],\"links\":[\"https://steemit.com/philosophy/@sean-king/redeeming-christ-an-indispensable-introduction\",\"https://steemit.com/philosophy/@sean-king/redeeming-christ-part-i-chapter-i-deconstructing-faith\",\"https://steemit.com/bible/@sean-king/redeeming-christ-part-i-chapter-2-the-perplexing-power-of-paradigms\",\"https://steemit.com/bible/@sean-king/the-bible-isn-t-mainly-history\",\"https://steemit.com/christianity/@sean-king/early-christianities-weren-t-orthodox\",\"https://en.wikipedia.org/wiki/Docetism\",\"https://steemit.com/god/@sean-king/reading-the-bible-is-like-picking-out-diamonds-from-dunghills-part-2\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T16:33:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 38788362396320,
+    "parent_author": "",
+    "parent_permlink": "god",
+    "pending_payout_value": "158.804 HBD",
+    "percent_hbd": 10000,
+    "permlink": "reading-the-bible-is-like-picking-out-diamonds-from-dunghills",
+    "post_id": 1072528,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Reading the Bible is \"Like Picking Out Diamonds from Dunghills\"--Part 1",
+    "title": "Reading the Bible is \"Like Picking Out Diamonds from Dunghills\"--Part 1",
+    "total_payout_value": "0.000 HBD",
+    "url": "/god/@sean-king/reading-the-bible-is-like-picking-out-diamonds-from-dunghills"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28641756642483,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3066676253333,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 487525338167,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1099055663468,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 308752978889,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1082239289637,
+        "rshares": 253681914004,
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2477287329,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14775784097,
+        "voter": "valtr"
+      },
+      {
+        "percent": "1700",
+        "reputation": 1339573287588,
+        "rshares": 1796764686,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11342117893,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 50302545642,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 177514135302,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1461417595362,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687321345894,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "3300",
+        "reputation": 336763673779,
+        "rshares": 57002255623,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 11956530261,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 14341272017,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1564158061,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 11161280105659,
+        "rshares": -96239619605,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692822335938,
+        "rshares": 216367037,
+        "voter": "keyser"
+      },
+      {
+        "percent": "0",
+        "reputation": 3033861094190,
+        "rshares": 306787589,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1386339611284,
+        "rshares": 2696646453,
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3354581940,
+        "voter": "bones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 14082581305,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078296488269,
+        "rshares": 10010962986,
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 102801288,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16793516,
+        "rshares": 433341900,
+        "voter": "berrysmok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6080328266,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 3984549669,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 6629256416,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 880020741,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 328735209616,
+        "rshares": 1799932641,
+        "voter": "gaitan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92225510961,
+        "rshares": 134257660,
+        "voter": "yulia98"
+      },
+      {
+        "percent": "4400",
+        "reputation": 4964569405579,
+        "rshares": 3176805655,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3019606487614,
+        "rshares": 7813639088,
+        "voter": "cmp2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 588526896696,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 454046245625,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 222660119,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 14557324469,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 148150446,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62205973,
+        "voter": "rinaa"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 21000271255,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9679881459,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "2500",
+        "reputation": 13325577893779,
+        "rshares": 7140129001,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 118527119002,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "5000",
+        "reputation": 64878458203,
+        "rshares": 728479455,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8041154071,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 50403837,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 59995797,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 41404629211,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 2731168114,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3074503409423,
+        "rshares": 9751538745,
+        "voter": "benadapt"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -53957255,
+        "voter": "predko777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 52381149,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121767758976,
+        "rshares": 68608664,
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113497877984,
+        "rshares": 175172738,
+        "voter": "jucbitcoin"
+      },
+      {
+        "percent": "5100",
+        "reputation": 414609406210,
+        "rshares": 1631179533,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10707780055,
+        "rshares": 172120554,
+        "voter": "darkminded153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 909903901,
+        "rshares": 104999885,
+        "voter": "bosjaya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108412302232,
+        "rshares": 166960400,
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 130504358563,
+        "rshares": 116692269,
+        "voter": "dresden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 158081936,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2455451,
+        "rshares": 157148891,
+        "voter": "hamed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158983971,
+        "voter": "wade1970"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -159024498,
+        "voter": "messi10"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -159020694,
+        "voter": "sunny1"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158267372,
+        "voter": "me86ljj3wy"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158262346,
+        "voter": "csg0q82iul"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158234006,
+        "voter": "ljkvnzgpvq"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158231877,
+        "voter": "wstqotyddi"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158230192,
+        "voter": "ufvosobdfb"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158228488,
+        "voter": "glxmgiqrgj"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158219074,
+        "voter": "rsgmslegyx"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158211582,
+        "voter": "nkroyzrjgf"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158209558,
+        "voter": "imoqhlzemr"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158207874,
+        "voter": "qiqyyqvzhj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174395287082,
+        "rshares": 155094591,
+        "voter": "blend"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158192224,
+        "voter": "alexurex"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158186686,
+        "voter": "ashbuille"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158183923,
+        "voter": "auberenne"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158176291,
+        "voter": "belialis"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158172542,
+        "voter": "boyaconehou"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158169693,
+        "voter": "brandmar"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158165782,
+        "voter": "breageoa"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158156198,
+        "voter": "canixfuny"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158153164,
+        "voter": "cassachex"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158150021,
+        "voter": "ceticalwo"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158147243,
+        "voter": "commenth"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158144137,
+        "voter": "cootekel"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158140507,
+        "voter": "dinexavi"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158137183,
+        "voter": "footidie"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158134585,
+        "voter": "gwenood"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158131515,
+        "voter": "headlinez"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158128326,
+        "voter": "insellias"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158125936,
+        "voter": "janetekitan"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158122441,
+        "voter": "kluglainno"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -158120034,
+        "voter": "lullishoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 474962663,
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229297648,
+        "rshares": 157452140,
+        "voter": "kravmaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156731952,
+        "voter": "scarspro"
+      }
+    ],
+    "author": "benadapt",
+    "author_reputation": 3074503409423,
+    "beneficiaries": [],
+    "body": "<strong><em>Shoutout to <a href=\"https://steemit.com/@jacor\">@jacor</a>, for featuring my post <a href=\"https://steemit.com/life/@jacor/rent-a-fire-tower-and-camp-in-the-sky-featuring-new-author-benadapt\">here</a>.</em></strong>\n\n<strike><strong>Following on from this, I will now be featuring other authors to help promote a diversity of content and new authors. All STEEM Dollars for these posts go to the featured author.</strong></strike>\n\n<strike><strong>If you are looking to be featured as an author, please contact me via email - ben.adaptnetwork@gmail.com</strong></strike>\n\n<strong>Edit: From the comments, it seems that this type of author promotion is not the way to go. A 're-steemit' button has been suggested and I think this is a great idea.</strong>\n\n<hr>\n\n<center><img src=\"http://i.imgur.com/6z5In5y.jpg\"/></center>\n\nIf you've played the indie-hit video game <a href=\"http://www.firewatchgame.com/\">FireWatch</a>, by Campo Santo, then chances are that you fell in love with the idea of staying in a fire tower, just as I have.\n\nThe American novelist and poet, Jack Kerouac, famously spent the summer of 1956 manning a fire tower on Washington\u2019s Desolation Peak, in the northern Cascades. Even though he was alone with pencil and paper by design, he didn\u2019t get much writing done. I don\u2019t blame him, the views from the tower are incredible and there\u2019s plenty to fill an adventurer\u2019s time for 63 days.\n\nSo, if the idea of a few days in the sky in a cool-looking fire tower is appealing, you\u2019ll be pleased to know that you can actually rent one of these bad boys.\n\nSince Jack Kerouac\u2019s stay in the 50s, new technologies have made fire lookouts mostly obsolete, some were even torn down. Others were left to rust and splinter, becoming squatter\u2019s dens and canvases for high-altitude graffiti artists. But dozens around the US have survived and are available for rent, evolving into modest sources of revenue for the U.S. Forest Service\u2019s depleted accounts. The Forest Fire Lookout Association maintains a list of available towers; many are available for as little as $20 a night.\n\n<strong>Lets take a look at a few below:</strong>\n\n<h2>1. Black Mountain Lookout, California</h2>\n\n<center><img src=\"http://i.imgur.com/tbHIiBQ.jpg\"/></center>\n\nBlack Mountain Lookout is located on the eastern edge of the Beckwourth Ranger District, 10 miles from Highway 395, near Milford, California.\n\nThe lookout was constructed in 1934 and is a great example of Civilian Conservation Corps (CCC) architecture. The C-3-type lookout is situated on a single story 10 foot tower and is extremely well-preserved.\n\nThe one-room lookout cabin is set on a tower, rising 10 feet above the ground. It is furnished with two single beds with mattresses, but can accommodate up to four people. There is also space for tent camping adjacent to the lookout, for up to four visitors.\n\n<strong>A closer look in pictures:</strong>\n\n<center><img src=\"http://i.imgur.com/NX0S10Y.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/HgS38WU.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/ULzb0dV.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/ljj8y7X.jpg\"/></center>\n\n<h2>2. Hirz Mountain Lookout, California</h2>\n\n<center><img src=\"http://i.imgur.com/6z5In5y.jpg\"/></center>\n\nThis fire tower sits atop Hirz Mountain, California at an elevation of 3,540 feet, offering 360-degree views of Mt. Shasta\u2019s snow-laced peak to the north.\n\nThe McCloud River Wintu tribe held Hirz Mountain in reverence and had a name for it in their own language. But it was a miner, Henry Hirz, who gave the mountain its modern name.\n\nWhen the lookout was built, it was originally a structure that sat on the ground. The mountain was a strategic location for detecting fires because it had a direct view into the headwaters of the McCloud River and most of its tributaries. In 1937, the Forest Service and the Civilian Conservation Corps rebuilt the Hirz Mountain Lookout cabin and included a garage and outhouse. It was one of the last CCC-era lookouts to be built. In 1949, a steel tower was added, constructed of a steel K-brace tower that stands 20 feet above ground level.\n\n<strong>A quick look inside the tower:</strong>\n\n<center><img src=\"http://i.imgur.com/uZq8dZ5.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/ZCHllVy.jpg\"/></center>\n\n<h2>3. Hornet Lookout, Montana</h2>\n\n<center><img src=\"http://i.imgur.com/bD8F1wJ.jpg\"/></center>\n\nThe Hornet Lookout is as old school as it gets and features a two-story construction. The ground level provides a living space for two guests and the second story is a small loft used solely for full views of the region. The lookout\u2019s rustic accommodations include a propane cook stove, propane lantern and a small wood stove for heat.\n\nThe lookout provides astounding 360-degree views of the surrounding terrain, including Glacier National Park and Kintla Lake on clear days. Apparently, on some nights, the Northern Lights may be seen from the lookout.\n\n<strong>A 'slightly' more modern look:</strong>\n\n<center><img src=\"http://i.imgur.com/fbAMzHn.jpg\"/></center>\n\n<h2>4. Fall Mountain Lookout Cabin, Oregon</h2>\n\n<center><img src=\"http://i.imgur.com/EyIpkj8.jpg\"/></center>\n\nFall Mountain Lookout Tower is situated about 20 miles from John Day, in central Oregon. It provides 360-degree views of the surrounding Strawberry Mountain Wildness, as well as the towns of Seneca and Mt. Vernon.\n\nThe tower was built in 1933 and sits at an elevation of 5,949 feet. Before satellite surveillance systems, lookout personnel monitored the forest from this 18-foot perch for signs of smoke, alerting fire guards when necessary. Today guests can watch the sun rise and set, spot wildlife from the catwalk and witness dramatic thunderstorms that traverse the territory during summer months.\n\nThe one-room, 14-by-14 cabin sits atop an 18-foot tower and sleeps two. The cabin is furnished with a futon bed and a table and chairs. It has electricity and in the kitchen area, an electric stove and refrigerator.\n\n<strong>Here's a few more snaps:</strong>\n\n<center><img src=\"http://i.imgur.com/fVoStKq.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/sUrDl58.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/3CrgXdi.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/LejQWOZ.jpg\"/></center>\n\n<h2>5. Indian Ridge Lookout, Oregon</h2>\n\n<center><img src=\"http://i.imgur.com/861cU5N.jpg\"/></center>\n\nThe Indian Ridge Lookout sits at an elevation of 5,405 feet in the Willamette National Forest. Indian Ridge was named for the old Indian hunting trail that runs along the summit.\n\nBuilt in 1958, the lookout was used for firefighting by Forest Service personnel until 1973 and is still staffed occasionally during emergencies.\n\n<strong>A closer look inside the tower:</strong>\n\n<center><img src=\"http://i.imgur.com/vBd3iLs.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/DKt5G2z.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/FJePMYG.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/ULzb0dV.jpg\"/></center>\n\n<h2>6. Little Guard Lookout, Idaho</h2>\n\n<center><img src=\"http://i.imgur.com/ifhnbPK.jpg\"/></center>\n\nThe newest tower on this list, the Little Guard Lookout is located about 9 miles north of Shoshone Camp, was one of the last remaining fire lookouts used in the Coeur d\u2019Alene River area and has only just recently become inactive.\n\nThe structure standing today on Little Guard Peak is the third in a series of lookout buildings that originated back to 1919. In October 1990, Little Guard Lookout was accepted for listing in the National Historic Lookout Register and the first for Idaho.\n\nThe fully furnished two-story fire lookout has dimensions of 14 x 14 feet, an external cat walk, and a gabled roof. It sleeps four guests, but space is tight. The kitchen is on the ground floor and is equipped with a small propane refrigerator, propane cook stove, table, chairs and basic cooking utensils.\n\n<strong>A few more photos:</strong>\n\n<center><img src=\"http://i.imgur.com/NXtu1ZE.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/pPy4Dxj.jpg\"/></center>\n<center><img src=\"http://i.imgur.com/wuBRx3w.jpg\"/></center>\n\n<h2>7. Spruce Mountain Fire Lookout Tower</h2>\n\n<center><img src=\"http://i.imgur.com/dkazLmP.jpg\"/></center>\n\nPerched atop a forested mountain, Spruce Mountain Fire Lookout Tower offers panoramic views that include Medicine Bow Peak, Rob Roy Reservoir, Jelm Mountain and the southern end of the Snowy Range. After being occupied as a fire lookout, the 55-foot tall structure was renovated and opened to the public for overnight rental in 1977.\n\nThe lookout cabin is furnished with two single beds with mattresses and can accommodate up to four guests. Inside amenities include a table with chairs, cookware, dishes, utensils, cleaning supplies, a propane heater, propane cook stove and oven, propane refrigerator and propane lights.\n\n<em>All photos: courtesy <a href=\"http://www.recreation.gov/\">Recreation.gov</a></em>\n\n<strong>For more information on renting one of these towers visit <a href=\"http://www.firelookout.org/lookout-rentals.html\">firelookout.org</a>. But first, let me know which one is your favourite?</strong>\n\n<hr>\n\n<strong><em>Please follow me on my blog <a href=\"https://steemit.com/@benadapt\">@benadapt</a> if you enjoy my topics and content. I will also follow back so that we can build a community together.</em></strong>\n\n<strike><strong><a href=\"https://steemit.com/@benadapt\">@benadapt</a> features authors to promote a diversity of content and new authors. All STEEM Dollars for these posts go to the featured author.</strong></strike>\n\n<strike><strong>If you are looking to be featured as an author, please contact me via email - ben.adaptnetwork@gmail.com</strong></strike>\n\n<strong>Shoutout to <a href=\"https://steemit.com/@jacor\">@jacor</a>, for featuring my post <a href=\"https://steemit.com/life/@jacor/rent-a-fire-tower-and-camp-in-the-sky-featuring-new-author-benadapt\">here</a> and passing on this idea.</strong>\n\n<strong>Edit: From the comments, it seems that this type of author promotion is not the way to go. A 're-steemit' button has been suggested and I think this is a great idea.</strong>\n\n<hr>",
+    "body_length": 10188,
+    "cashout_time": "2016-09-17T16:28:45",
+    "category": "life",
+    "children": 21,
+    "created": "2016-09-10T16:28:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"photography\",\"camping\",\"outdoors\"],\"image\":[\"http://i.imgur.com/6z5In5y.jpg\",\"http://i.imgur.com/tbHIiBQ.jpg\",\"http://i.imgur.com/NX0S10Y.jpg\",\"http://i.imgur.com/HgS38WU.jpg\",\"http://i.imgur.com/ULzb0dV.jpg\",\"http://i.imgur.com/ljj8y7X.jpg\",\"http://i.imgur.com/uZq8dZ5.jpg\",\"http://i.imgur.com/ZCHllVy.jpg\",\"http://i.imgur.com/bD8F1wJ.jpg\",\"http://i.imgur.com/fbAMzHn.jpg\",\"http://i.imgur.com/EyIpkj8.jpg\",\"http://i.imgur.com/fVoStKq.jpg\",\"http://i.imgur.com/sUrDl58.jpg\",\"http://i.imgur.com/3CrgXdi.jpg\",\"http://i.imgur.com/LejQWOZ.jpg\",\"http://i.imgur.com/861cU5N.jpg\",\"http://i.imgur.com/vBd3iLs.jpg\",\"http://i.imgur.com/DKt5G2z.jpg\",\"http://i.imgur.com/FJePMYG.jpg\",\"http://i.imgur.com/ifhnbPK.jpg\",\"http://i.imgur.com/NXtu1ZE.jpg\",\"http://i.imgur.com/pPy4Dxj.jpg\",\"http://i.imgur.com/wuBRx3w.jpg\",\"http://i.imgur.com/dkazLmP.jpg\"],\"links\":[\"https://steemit.com/@jacor\",\"https://steemit.com/life/@jacor/rent-a-fire-tower-and-camp-in-the-sky-featuring-new-author-benadapt\",\"http://www.firewatchgame.com/\",\"http://www.recreation.gov/\",\"http://www.firelookout.org/lookout-rentals.html\",\"https://steemit.com/@benadapt\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T21:13:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 37590191304904,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "95.817 HBD",
+    "percent_hbd": 10000,
+    "permlink": "rent-a-fire-tower-and-camp-in-the-sky-featured-author-announcement",
+    "post_id": 1197660,
+    "promoted": "160.000 HBD",
+    "replies": [],
+    "root_title": "Rent a Fire Tower and Camp in the Sky - Featured Author Announcement",
+    "title": "Rent a Fire Tower and Camp in the Sky - Featured Author Announcement",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@benadapt/rent-a-fire-tower-and-camp-in-the-sky-featured-author-announcement"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3100",
+        "reputation": 13270505121655,
+        "rshares": 20239809995861,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2483542411,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3015329123,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 547232718,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43930884813,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1330754717,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 171038238,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 500018940,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 778548508,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230687619,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13761624031,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "1300",
+        "reputation": 1339573287588,
+        "rshares": 1397418866,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1643701455969,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1412760168,
+        "voter": "murh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 251048621093,
+        "rshares": -2780072713,
+        "voter": "scalextrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 47117681972,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 31290973763,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 484320925,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 368035021,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 212415964626,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 57006230591,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 177813527539,
+        "voter": "knircky"
+      },
+      {
+        "percent": "3100",
+        "reputation": 8017093633272,
+        "rshares": 4336063701,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 796302428,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19767774986,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 89569037,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2974404080988,
+        "rshares": -130370985044,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3868061659,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 113490249,
+        "voter": "rossh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 921642016,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 7978492751,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794157244,
+        "rshares": 61261066,
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1332538563,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59697439,
+        "voter": "ritadey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61434762,
+        "voter": "jers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61427046,
+        "voter": "nyoba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50027573,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 111526086994,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1005947450655,
+        "rshares": 195160565,
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 3037040993,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 47338695487,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 7674997899,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2484336960082,
+        "rshares": 9321802893,
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 56115613811,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52754410,
+        "voter": "tekez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 441974426668,
+        "rshares": 52732096,
+        "voter": "horizonkinetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 92222492,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 330193907,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 521874035,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 130634157,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 136721054,
+        "voter": "insight2incite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2421364,
+        "rshares": 148768653,
+        "voter": "rnrador"
+      }
+    ],
+    "author": "horizonkinetics",
+    "author_reputation": 441974426668,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"http://www.horizonkinetics.com/images/horizon_kinetics_logo_blue_Small.jpg\"/></p>\n<p>Horizon Kinetics LLC is a NY-based investment firm and author of numerous research reports with increasing experience in the cryptocurrency space. &nbsp;We have been authoring research on cryptocurrencies, and bitcoin in particular, since late-2015. &nbsp;Since our founding over 20 years ago, we have continuously received invaluable feedback on our research from our subscribers. &nbsp;We now share some of our work on cryptocurrencies with the Steem community. &nbsp;&nbsp;Here is our first piece. &nbsp;Additional information on Horizon Kinetics LLC is available at <a href=\"http://www.horizonkinetics.com\">www.horizonkinetics.com</a>. We can be reached via email at info@horizonkinetics.com.&nbsp;</p>\n<p>We look forward to your comments!&nbsp; &nbsp;\u2013Hugh Ross, COO Horizon Kinetics</p>\n<p><br></p>\n<p>When the colony of Virginia made tobacco legal tender, the first problem was that the incentive was created to increase production. The second problem was the creation of very low-grade tobacco that some people refused to accept as payment. The policy ultimately created low tobacco prices for farmers. In 1682, there were riots and the tobacco crops of various farms were destroyed.</p>\n<p>The non-uniformity of a currency (apart from paper) is a not a trivial problem. Throughout history, it has been a significant issue. In colonial Plymouth, Massachusetts, the Wampanoag Tribe\u2019s wampum was made legal tender at the rate of six white beads or three purple beads per penny. Unfortunately, supply of beads was limited. It was hard for prices to rise in the sense that the bead, as an instrumentality, was not divisible.<sup>(1)</sup></p>\n<p>Historically, therefore, the government really needed to take over responsibility for coinage. That created another problem. How does one prevent the government from abusing the privilege by basically destroying the value of the currency by issuance?</p>\n<p>Enter Bitcoin. It is very hard to counterfeit since all Bitcoin in existence are always visible in the Blockchain ledger. Supply of Bitcoin is fixed; it is hardwired in the code. This is a possible revolution in currency design. If nothing else, it is a new asset class.</p>\n<p><em><sup>(1)</sup>Barry Eichengreen, Exorbitant Privilege: The Rise and Fall of the Dollar and the Future of the International Monetary System (New York: Oxford University Press, 2011), 9-10</em></p>\n<p>---------------------</p>\n<p><em>Disclaimers:</em></p>\n<p><em>Horizon Kinetics LLC (\u201cHorizon Kinetics\u201d) is the parent holding company to several SEC-registered investment advisors including Horizon Asset Management LLC, Kinetics Asset Management LLC, and Kinetics Advisers, LLC. Horizon Kinetics authors research reports based on information available to the public. &nbsp;No representation is made with regard to the reports\u2019 accuracy or completeness and all expressions of opinion reflect judgment as of the date set forth and are subject to change. This document is neither an offer, recommendation nor solicitation to buy or sell securities. Horizon Kinetics and each of its respective employees and affiliates may have positions in securities of companies mentioned herein. &nbsp;You may visit our website at </em><a href=\"http://www.horizonkinetics.com\"><em>www.horizonkinetics.com</em></a><em> to find additional information on Horizon Kinetics. &nbsp;All views expressed in these research reports accurately reflect the research analysts\u2019 personal views about any and all of the subject matter, securities or issuers. No part of the research analysts\u2019 compensation was, is, or will be, directly or indirectly, related to the specific recommendations or views expressed by the research analysts in the research reports. Reproduction and dissemination of these reports outside the constraints of this social media space is strictly prohibited. \u00a9Horizon Kinetics LLC\u00ae 2016.</em></p>\n</html>",
+    "body_length": 3989,
+    "cashout_time": "2016-09-16T18:05:18",
+    "category": "bitcoin",
+    "children": 13,
+    "created": "2016-09-09T18:05:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"bitcoin\",\"crypto-news\",\"money\"],\"image\":[\"http://www.horizonkinetics.com/images/horizon_kinetics_logo_blue_Small.jpg\"],\"links\":[\"http://www.horizonkinetics.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T18:05:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 22622590051384,
+    "parent_author": "",
+    "parent_permlink": "bitcoin",
+    "pending_payout_value": "50.779 HBD",
+    "percent_hbd": 10000,
+    "permlink": "technical-problems-of-a-fixed-money-supply",
+    "post_id": 1187069,
+    "promoted": "150.000 HBD",
+    "replies": [],
+    "root_title": "Technical Problems of a Fixed Money Supply",
+    "title": "Technical Problems of a Fixed Money Supply",
+    "total_payout_value": "0.000 HBD",
+    "url": "/bitcoin/@horizonkinetics/technical-problems-of-a-fixed-money-supply"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 535956001874,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 376210910452,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "300",
+        "reputation": 13270505121655,
+        "rshares": 2530030733798,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6868791504690,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726151150,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 229262004927,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524044786,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 820975377,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7162998420481,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66022454227,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996536940,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256574080,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1316552393,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 107564523042,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7511884959,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1813913350,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1281991226298,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 424835962491,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 761501110340,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1131940785371,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 29824545969,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750134298,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1196536230119,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168025207,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2745281235040,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3593784049076,
+        "rshares": 35404297187,
+        "voter": "joshua"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 406975103750,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47033692888,
+        "rshares": 1424182557,
+        "voter": "jbradford"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 9180689311,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346059306,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 15938088337,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76633033946568,
+        "rshares": 753663976673,
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 375482272962,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "1700",
+        "reputation": 1339573287588,
+        "rshares": 1796764686,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 73847143577,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 76668352353,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 190169312803,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8604717232,
+        "rshares": 489465667,
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": 50872817,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "900",
+        "reputation": 376960001789,
+        "rshares": 612581945,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 309142566089,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9534901206,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 666331594856,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "500",
+        "reputation": 15755437221598,
+        "rshares": 1827793190,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 205903307851,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 39833240245,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1027351719,
+        "voter": "coar"
+      },
+      {
+        "percent": "666",
+        "reputation": 2902053059801,
+        "rshares": 353351990,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 17601176156,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 405843973774,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 10341217409,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 57144356191,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 260079987946,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 75980218281,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 13518268974,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16316471180830,
+        "rshares": 140526207453,
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 412467399967,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2170379596106,
+        "rshares": 22430460071,
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 418622798,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2274330399691,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771738440035,
+        "rshares": 4190059511,
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4260826979219,
+        "rshares": 7998622846,
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 105851824009,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 18555285556,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 382747136304,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 487099978706,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23735859481,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1130181250,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19586514634,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 16087619085,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173891397847,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "7800",
+        "reputation": 598181152117,
+        "rshares": 145235686062,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2745357590,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "400",
+        "reputation": 5571311902261,
+        "rshares": 282225162,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 6545907918,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2249535177,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6606808474,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 375067125844,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 6022204460,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8036262291,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 7122827147,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 68386703441,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5599529516,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 280810708,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3576117505,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "3300",
+        "reputation": 336763673779,
+        "rshares": 57002255623,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 33046735905,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 5149116277,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5303452399,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 75826571301,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5263073872,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 24175712542,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2715996666,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 119977364734,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5598045313,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 342395061261,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 5899298096,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 15365648590,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1631145568,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 14995507254,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 6317322640,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1501769437,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1353291463754,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 97164483535,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 43603809494,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 740422795,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 18303819148,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11146913938,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 176060985385,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 29810248025,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10859176140,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 66112176064,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 13884859240,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 416152871,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 12348118332,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1311079777932,
+        "rshares": 1907615672,
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 806370035,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 53708107979,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 417250555684,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42186828341,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5699385361,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "0",
+        "reputation": 9999779221262,
+        "rshares": 827785579,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2553460193,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 194516421502,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 32130489151,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3423042796,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 9367946580,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2314406420479,
+        "rshares": 2224818881,
+        "voter": "earnest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3576934262,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3446220471,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 14106406643,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 2314291578,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 27102377358,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5468461567,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7815470684,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1019125915486,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 24288681391,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 10888263743,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 102801288,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16793516,
+        "rshares": 424845000,
+        "voter": "berrysmok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39913884914319,
+        "rshares": 37652543503,
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 940261675,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639471735,
+        "voter": "curator"
+      },
+      {
+        "percent": "7800",
+        "reputation": 17698439393799,
+        "rshares": 23270267458,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1480528431,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 6376633931,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 10123028535,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 584752369,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 15817307763,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 156369688,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 862061134,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 4090189555,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2666801113,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40835071879,
+        "rshares": 2238357029,
+        "voter": "dirty.hera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92225510961,
+        "rshares": 131625157,
+        "voter": "yulia98"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3278418228934,
+        "rshares": 512229631,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "1500",
+        "reputation": 988942038058,
+        "rshares": 10720241925,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 61911147,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 63085782,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "7800",
+        "reputation": 10771708337101,
+        "rshares": 793861382304,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 1928457089,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447426144854,
+        "rshares": 942093795,
+        "voter": "transhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 21837989409,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22352782004,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22360931482,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 24149442143,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "7800",
+        "reputation": 18027204457681,
+        "rshares": 27629185020,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "7800",
+        "reputation": 5776723480371,
+        "rshares": 167928825704,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 16350272739,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "7800",
+        "reputation": 206355094166,
+        "rshares": 6522124565,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 6185106786,
+        "voter": "brendio"
+      },
+      {
+        "percent": "7800",
+        "reputation": 97845484474,
+        "rshares": 38527719167,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 63541793,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 473946643269,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4176872896,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6623452381,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1577306627,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22357085584,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22355328422,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22352611343,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22349767400,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22346006171,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22344294392,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "8000",
+        "reputation": 3016325652890,
+        "rshares": 92513391118,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46067925183928,
+        "rshares": 263105171887,
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 20622142384,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 20350336517,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5369683283,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "7800",
+        "reputation": 1851205309677,
+        "rshares": 3013299405,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 56650918931,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 63570195,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 59738641,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10973358869,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 57914427,
+        "voter": "steemo"
+      },
+      {
+        "percent": "7800",
+        "reputation": 4195733833721,
+        "rshares": 6073118497,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 22043736930,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 57765027,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1590670250,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849623403126,
+        "rshares": 1127808427,
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 10157142611,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 74494304,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3933354492,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1568155549,
+        "rshares": 61296223,
+        "voter": "strangedays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 84406705123,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 58653788,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "7800",
+        "reputation": 730408370151,
+        "rshares": 398349859,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 77220767,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1760257480,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 29749490788,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3789939590477,
+        "rshares": 5897804656,
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 7980606923,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 273211506,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58947349,
+        "voter": "wendelribeiro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55414210,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55396880,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55406673,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56566121,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 86327402421,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 9149533951,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57439383,
+        "voter": "wholefoods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22338332510,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 68437243690,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "3000",
+        "reputation": 18890223518661,
+        "rshares": 12648203513,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "1500",
+        "reputation": 11490547563070,
+        "rshares": 4009964661,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2214821974,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2500078806,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 261579534201,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4161934026,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54999739,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 153032594,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 446928899,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 2774307105,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 103203866500,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 22008008063,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961187,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 41405284088,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7270618086,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 53966805,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53613607,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 494664136,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 2731168114,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53252658,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54293199,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 9161548599,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52915101,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 92326483945,
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 992040757,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16147984004,
+        "rshares": 56897224,
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52560790,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52242652,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52230725,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 7295907898,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51922012,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1871240031576,
+        "rshares": 2377534516,
+        "voter": "lilmisjenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 341097233,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 620954332,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51994517,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 99072246,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5320196521,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 2437884565,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4765768150,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 1835091693,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50569452,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50516543,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50514225,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 67956001,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23031447736,
+        "rshares": 71092472,
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51484593,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 8066814624,
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22253174707,
+        "rshares": 52176950,
+        "voter": "saiku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 2856393738,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76034330,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154501261,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33159895743,
+        "rshares": 156889025,
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251629303655,
+        "rshares": 9342188316,
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79770443777,
+        "rshares": 155204122,
+        "voter": "budgiebee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18731007381,
+        "rshares": 155180811,
+        "voter": "majes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1309073721476,
+        "rshares": 154551739,
+        "voter": "reddust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 474962663,
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156136975,
+        "voter": "william007"
+      }
+    ],
+    "author": "tuck-fheman",
+    "author_reputation": 147478489309626,
+    "beneficiaries": [],
+    "body": "https://s18.postimg.org/aid72t4nt/too_old.png\n\n# [I'm Too Old For This](https://youtu.be/MqBNSMbEzI0)\n\nYou youngin's holding onto your new age Eckhart Tolle \"live in the now\" Aleister Crowley regurgitated belief systems and rah rah sycophant always positive philosophies (so long as the handouts are still being raked in), all while rewarding, if not exalting, people with a complete disregard for human decency amaze me and give me pause to think ...  **what in the $@#! happened to this world?!**\n<br>\n\nhttps://i.imgflip.com/1adksj.jpg\n\n# Back In My Day\n\nDuring my heyday, people were able to speak their mind, so long as they did so with respect and allowed others to voice their opinion as well. Everyone was different, and that's what made each individual interesting. Nowadays, it seems most people just want to be like everyone else and fit in. Don't rock the boat, else you won't get your reward! It's like being in a Kindergarten class full of 20-30 somethings.\n\nThis younger generation seems to worry more about figuring out how to make themselves into a Gawd, while at the same time arguing over which psychopathic authoritarian they are going to vote for as their supreme leader. They do more thinking about who to vote for to control their lives than they do how they are going to survive on their own for the next 40 years or more.\n\nhttps://s16.postimg.org/dqbzdofj9/OK_dees_1_Copy.jpg \n\nWhich one of these \"leaders\" (and I must quote that) is going to do more for me, seems to be the biggest question of younger generations. While at the same time they hold onto the belief that everything was created just for them and everyone else is merely a part of them; their own personal sock puppets of pleasure who must reward them when they do something they consider to be worthwhile.\n<br>\n\nhttps://cdn.meme.am/instances/57755618.jpg\n\n# Vaporware Is Skeery\n\nOne of my biggest disappointments in this community came when @stellabelle, the person with the highest reputation on the site, made a post about an announced feature she liked in another decentralized blogging platform that doesn't even exist. \n\n### The horror! \n\nMany were quick to point out that the other platform was \"vaporware\", yet felt so threatened by her post about this \"vaporware\" that they created fictional stories to apparently discredit her. Others jumped on the bandwagon at every chance in the comments section. For what? For pointing out an announced feature in \"vaporware\"? Some even called this apparent \"vaporware\" a \"competitor\"!?\n\nhttps://s11.postimg.org/e5699gp5v/cover_ears.jpg\n\n# [Faith No More](https://youtu.be/3yVI3UgtvwU)\n\nThis says a lot about the faith these people actually have in Steemit. The fact that a piece of  \"vaporware\" can be considered a \"competitor\" to Steemit, along with the fact that these people feel threatened by this \"vaporware\" would make Leon Festinger roll over in his grave; **because he's dead ... just like this generations ability to debate on a topic without their favorite psychology book in front of them to fashion a response from someone else's thoughts.**\n\nWe even have one of the largest whales on Steemit flagging comments that dare mention a non-existent \"competitor\" or anyone saying anything that, in their mind, is considered \"divisive\" to the community. A flag from this person will all but hide a comment from anyone's view without seeking it out at the bottom of the page. \n\nhttps://s15.postimg.org/820q6kvkr/safe_space.jpg\n\n# [In Muh Safe Space](https://youtu.be/sXQkXXBqj_U)\n\n\nSo much for being a place to discuss anything openly. And yet, people here complain about Facebook and Reddit, yet I can mention Facebook all day on Reddit, and vice versa, and never have to worry that my comment will be hidden by a single individual. Even worse, Facebook and Reddit are some of the most censored platforms in existence.\n\n### Put that in your **[hash pipe](https://youtu.be/_9BGLtqqkVI)** and smoke it!\n\nSome here are taking it upon themselves to create a safe space for everyone else, because apparently the competition from these non-existent platforms is so strong we must hide their non-existent features very mention from the fragile masses. Back in my day, there was a saying ... \"competition is good\", but apparently that's no longer the case.\n\nhttps://s22.postimg.org/cal6wr4tt/manstuff.jpg\n\n# [Smells Like Teen Spirit](https://youtu.be/hTWKbfoikeg)\n\nHere on Steemit, it's hard to find anyone that appreciates sports, guns, hunting, cars or anything that my generation considers to be laced with testosterone. Sure I find computer/programming talk interesting, but it's rare these days to find people online that can talk the 4 basic man groups as well. I've found a few, but for the most part they are hiding within the Steemit caves of obscurity.\n\nSteemit advertises that \"original content\" is rewarded, yet anyone that can speak in great detail on any of those 4 basic man groups will rarely, if ever, be rewarded for doing so. There are a few of these well written articles on these topics here on Steemit, but you will be hard pressed to find one earning more than $5. Why Is that? \n\n### I'll tell you why ... because Steemit, for the most part, is lacking testosterone. \n# (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b\n<br>\n\nhttps://s13.postimg.org/oou4yaqp3/Grinds_my_gears1.jpg\n\n# [What Grinds My Gears](https://youtu.be/Q685Ko2DHDs)\n\nYou know what really grinds my gears? Steemit. **Steemit really grinds my gears.** Why? Because I'm too old for this shit! And for that reason, **this will be my last post on Steemit**. I will be relinquishing my posting key access for this account and leave it to the younger generation of Tuck Fheman's, so they can post happy thoughts about all things Steemit and be rewarded untold fortunes for doing so. I am just holding them back.\n\nI did my best to be a part of this generations next big thing, but generation Steemit is just too namby-pamby for this old codger. \n\n<div class=\"pull-left\">\nhttps://s22.postimg.org/9mkkeg19t/giphy.gif\n</div>\n<div class=\"pull-right\">\nhttps://s20.postimg.org/bcrfwvml9/mic_drop.gif\n</div>\n\n<br/>",
+    "body_length": 6089,
+    "cashout_time": "2016-09-17T22:42:27",
+    "category": "philosophy",
+    "children": 141,
+    "created": "2016-09-10T22:42:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"philosophy\",\"rant\",\"steemit\",\"new-age\",\"mic-drop\"],\"users\":[\"stellabelle\"],\"image\":[\"https://s18.postimg.org/aid72t4nt/too_old.png\",\"https://i.imgflip.com/1adksj.jpg\",\"https://s16.postimg.org/dqbzdofj9/OK_dees_1_Copy.jpg\",\"https://cdn.meme.am/instances/57755618.jpg\",\"https://s11.postimg.org/e5699gp5v/cover_ears.jpg\",\"https://s15.postimg.org/820q6kvkr/safe_space.jpg\",\"https://s22.postimg.org/cal6wr4tt/manstuff.jpg\",\"https://s13.postimg.org/oou4yaqp3/Grinds_my_gears1.jpg\",\"https://s22.postimg.org/9mkkeg19t/giphy.gif\",\"https://s20.postimg.org/bcrfwvml9/mic_drop.gif\"],\"links\":[\"https://youtu.be/MqBNSMbEzI0\",\"https://youtu.be/3yVI3UgtvwU\",\"https://youtu.be/sXQkXXBqj_U\",\"https://youtu.be/_9BGLtqqkVI\",\"https://youtu.be/hTWKbfoikeg\",\"https://youtu.be/Q685Ko2DHDs\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T22:42:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 42002060944755,
+    "parent_author": "",
+    "parent_permlink": "philosophy",
+    "pending_payout_value": "144.429 HBD",
+    "percent_hbd": 10000,
+    "permlink": "when-concerning-steemit-i-ve-come-to-realize-i-m-too-old-for-this",
+    "post_id": 1201658,
+    "promoted": "138.990 HBD",
+    "replies": [],
+    "root_title": "When Concerning Steemit, I've Come To Realize ... I'm Too Old For This",
+    "title": "When Concerning Steemit, I've Come To Realize ... I'm Too Old For This",
+    "total_payout_value": "0.000 HBD",
+    "url": "/philosophy/@tuck-fheman/when-concerning-steemit-i-ve-come-to-realize-i-m-too-old-for-this"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2878128126837,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6998734695522,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 6042719173062,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120838362492,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 991013934194,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 918527955423,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3719055998,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4515019251,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836782064,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64817001772,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1993119622,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256394111,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 210347006215,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34042532834,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 401713935140,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 398896422515,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 17157086215,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747273339,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160639989,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 21561714956,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 302719926634,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345768342,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14351424587,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 77086206429,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78070381820,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 95730853785,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 12739865723,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9785915976,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15462863713,
+        "voter": "jademont"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 7554806704,
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 376960001789,
+        "rshares": 1455984309,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2098982781,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 340907048790,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 9947116773,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9650580617,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 2950703828,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 89884543659,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 17260900202,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 14125062140,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 22046139567,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 79658049745,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431852861,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 368696007081,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 586286811332,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 96224456283,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37451164846,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 4597420837,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 8881004054,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3596528108285,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 388823990187,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 391275913,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 362378288951,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 52998773109,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488865370830,
+        "rshares": 863365208,
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 59069076379,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 124185870189,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8333460340,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 266442266951,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 500746650031,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48671150838,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 138353237297,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1863788514,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2434631651,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 100534891530,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 43181755485,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 403540320598,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6767512298331,
+        "rshares": 40797153099,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 18543754999,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": -781106253,
+        "rshares": 289162489,
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 302683064,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17546278068,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 264522603,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8820348623,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 204013843843,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 300446841809,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3112471750,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4707075837,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 15801611273,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 32544390735,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2870229595,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 133098789385,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 599975985871,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 32961215897,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 283810485,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25445457118,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380128900631,
+        "rshares": 259486897,
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1625153964,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8892666616,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 15616629499,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 499156305959,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3613581209,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 198330012,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 183568347,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147240421388,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12022855311,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793209170784,
+        "rshares": 1571508493,
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 885891994,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 919965160,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10802622782,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4405634199,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24942066295,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1367833704,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 669199844401,
+        "rshares": 10301497593,
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 356943865,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8911872385291,
+        "rshares": 47927575572,
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6500609847,
+        "rshares": 384335950,
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 793082709,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 367441394,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 47406569721,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 70372093790,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42927707223,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3422295233,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5725254373,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 2064928807,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3782713987,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12974410735,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 2976001628,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 252357240414,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3477776250,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3556231334,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 59941579508,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3433845802,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 19157179302,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 3987315202,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 35138047991,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 12019513269,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 73099576639,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 8132763030,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 214418183330,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 373770800,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 26816500737,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6113574314,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1683378197,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255303484,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255686119,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147914638,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148750003,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84813726,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 4164065341,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 18119834837,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4911895513371,
+        "rshares": 11673305563,
+        "voter": "quickfingersluc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 220766396409,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 11219620297,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 859954354,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20113164016,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7430932441,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 203965977,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18453282331,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 618560648,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 408950035,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 219368610,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 274335473,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76805770,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 10590243337,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19116185390,
+        "rshares": 126426805,
+        "voter": "ipopular"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 74356260,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8561737881023,
+        "rshares": 18695991236,
+        "voter": "pixielolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 1840946810,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 861558297,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1526231546,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456054658,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19988784545,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 5647038859,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 139439065521,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9225459807,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 731723236,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5553712976,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1951944925,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 1515473458,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552713989475,
+        "rshares": 15130676889,
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8140603858,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1759071342,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9623723965,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 4010159410,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3565700998,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1146725005,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7063527946,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 512286246,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3424311094,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14726415882,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10366372843,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12931796143,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311638758804,
+        "rshares": 293812470,
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 85386694477,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795134,
+        "rshares": 55591289,
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 411872432,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1467824207,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 253738615,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849623403126,
+        "rshares": 1030648559,
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145609627,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83673051926,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58499109,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 62332619,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 7624079651,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 9995207527,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 73290501683,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 50094162,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2594661721428,
+        "rshares": 4390594623,
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 89766690138,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3574771803,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 4346734216,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 18099477167,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 51095992,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 467996430,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 390670616718,
+        "rshares": 201888000,
+        "voter": "tlarsen2080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11457714027,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4621091782,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 433370384966,
+        "rshares": 1609584914,
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126370178809,
+        "rshares": 194564074,
+        "voter": "arty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 88366627,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 709285853,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013640486,
+        "rshares": 56583285,
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 581299661,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 82668168,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 262718397,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2209122623,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24239498471,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 346099916175,
+        "rshares": 223746762,
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 55278008,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 117140255,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 57522774,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 311627797,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 1524816681,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 594706072,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1645692763,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5550458547,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50523318,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454788,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50468091,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53474283,
+        "voter": "barbosabarros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 51583902,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 71766021,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 1631761737,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843039218853,
+        "rshares": 177106697,
+        "voter": "ziogio"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 111391460708814,
+    "beneficiaries": [],
+    "body": "<center><img src=\"https://stakepool.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-31-at-07.58.21.png\"></center>\n\n<center><h2>We are now 600+ users registered and 20-30 active hosts at any time of the day talking about steemit, crypto and news 24/7 live on air and this is how you do it to become a host on steemspeak radio stakepool</h2></center>\n\n<h1><center>WE WANT TO HEAR YOU TOO!</center></h1>\n\n<b>First</b>, make sure you have a GOOD Microphone and a GREAT Headset. When you are on air talking about your latest steemit-post or something else that is on your mind, you want to sound great and make sure you don\u00b4t transmit echo, so if you don\u00b4t have headphones - buy some before you join.\n\n<b>Second</b>, Download the Teamspeak 3 Client that works for your Operative System or Phone from <a href=\"http://teamspeak.com/downloads\">Official Teamspeak Download</a>.\n\n<b>Third</b>, Connect your TeamSpeak 3 Client to this server: <b>ts.steemspeak.com</b>\n\n---\n<center>It is THAT Simple!</center>\n---\n\n---\nOK, Now that you have logged in, you need to set your <b>Push To Talk Button!</b> And to do that I have included a good youtube-tutorial for you here so that you can easily figure out how to do it in settings->capture->push to talk->hotkeys\n\n<h1>Setting up the Push to Talk button!</h1>\nhttps://www.youtube.com/watch?v=u89aMcyfr2s\n\n<h4>The Mac Version settings are found in the Teamspeak 3->Preferences ->Capture</h4>\n\n---\n<center>If you just want to listen, go to <a href=\"http://steemspeak.com\">steemspeak.com</a>24/7 all year!</center>\n---",
+    "body_length": 1552,
+    "cashout_time": "2016-09-07T13:26:54",
+    "category": "steemit",
+    "children": 31,
+    "created": "2016-08-31T13:26:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"life\",\"freedom\",\"news\",\"music\"],\"image\":[\"https://stakepool.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-31-at-07.58.21.png\",\"https://img.youtube.com/vi/u89aMcyfr2s/0.jpg\"],\"links\":[\"http://teamspeak.com/downloads\",\"https://www.youtube.com/watch?v=u89aMcyfr2s\",\"http://steemspeak.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T13:26:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31741689374910,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "120.057 HBD",
+    "percent_hbd": 10000,
+    "permlink": "how-to-connect-and-be-a-host-on-steemspeak-radio-and-let-your-voice-be-heard-across-the-world",
+    "post_id": 1070639,
+    "promoted": "125.000 HBD",
+    "replies": [],
+    "root_title": "How to CONNECT and be a HOST on SteemSpeak Radio and let your VOICE be HEARD across the WORLD!",
+    "title": "How to CONNECT and be a HOST on SteemSpeak Radio and let your VOICE be HEARD across the WORLD!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/how-to-connect-and-be-a-host-on-steemspeak-radio-and-let-your-voice-be-heard-across-the-world"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4900",
+        "reputation": 145171381514207,
+        "rshares": 14287655717809,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 372316824459,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7292928003093,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6712692598434,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8748358954886,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5924081466216,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 20671106684513,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 118417933788,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 923945830721,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 898909637848,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2479218792,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3009798108,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 557836382,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7335421547210,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43175636897,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1328665238,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170926788,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 214530506030,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 391741109003,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 389075404441,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1331361114912,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 77471889244,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 253801568876,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 20262312121,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 498161277,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 773724643,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 399862483868,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 411408907897,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6821654706,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230509608,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 14466370135,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 48090324970,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 82688369456,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13170169522,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11072341222,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 80028506637,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419229125146,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 81246195312,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 13405317241,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 535527459153,
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 3020965065,
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 376960001789,
+        "rshares": 1454961783,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 19097994036,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056146398,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 340794336001,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 5414208804644,
+        "rshares": 3315032051,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9613892204,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 847659311,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 18234332542,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 156478008187,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 16814582950,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57941109413,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 32680055185,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11952915931943,
+        "rshares": 105824577331,
+        "voter": "amartinezque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 24012631923,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 54102266581,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 973588246,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73938949282,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1430756403,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19203629337,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7452226457,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 12917828173,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 11828369962,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10554741746,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3518424323798,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 363217648620,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 342038785,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1376656930605,
+        "rshares": 5613435698,
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 362364795494,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51869215030,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 186263884937,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4565655246,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 258065486703,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13619124411,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 138324583233,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1184500561,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 140244128104,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 636647277,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 100470233346,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 41356310366,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 13787125963,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 385584242228,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6767512298331,
+        "rshares": 40796944760,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632946346,
+        "rshares": 28959157027,
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": -781106253,
+        "rshares": 289162489,
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17893924588,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 266425807,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 9856964632,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 20384429842,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 300446841809,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 38998845686,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3043909864,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4522484628,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4911853013,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 15159309172,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2763332921,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 31283265272,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 14006522484,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2928756549,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 13606146685,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 8236654789,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 28836579075,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8672589523,
+        "rshares": 266065805,
+        "voter": "nurev"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1559706980,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8358639536,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 74156962501,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12165590095,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17820220099,
+        "rshares": 1366301565,
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10585603645,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3610761428,
+        "voter": "owdy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 80089524,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 73425371,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1350155707,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 1206462597,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 143979313132,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10020572535,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14094648142,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 127923097868,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15306226751,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 864077460,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 15904625406,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4206277713,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11502422370,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 165119969029,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33632847618,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 89059288467,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 34393459049,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 348823659599,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 11225967160,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4183969872,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8674367887,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 389393307,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8911872385291,
+        "rshares": 46987819188,
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 61876999450,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 43998433342,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19908734998,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15095626509,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 19208995641,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2026353384,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3346143159,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5604949614,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1811685903,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4617586503531,
+        "rshares": 7735024258,
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12972669244,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 8412249152,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40018503599,
+        "rshares": 3449406742,
+        "voter": "kimmar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 188704962743,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3409584558,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3485025335,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1432554908,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 61134908757,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 25467461905,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8079581131,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6737481039,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3227799659,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18031572419,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 7960988445,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3143648302,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 23784532545,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 3982662435,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 40963637365,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 67031280822,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116058250,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1492718093,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1861971243,
+        "rshares": 534037396,
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 100131242,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 8132697646,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 192890960021,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 365818230,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111304161,
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 25060291197,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "2000",
+        "reputation": 10519849768972,
+        "rshares": 4073521267,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1646370099,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 249753408,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 250127725,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144699103,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 145516307,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82969949,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 10146325450,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207780137797,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 200189709,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1089072756,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4458162709,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 461290417,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1912624362,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 11673105366,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20532124227,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 8105938340,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17523357805,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 568834437,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 400045064,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 214599727,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 268956346,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 75136080,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 108154560,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13159019704,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 125670168,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4182979272,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 897211578,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1283349286,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2406933564,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 24693180396,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1483559041,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2713256489,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5150829096,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 5533183281,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11454886978,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1099605749,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 48206857966,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8761147948,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5886582033,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5495724559,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 2131190527,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 52489886,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 38671084581,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 52102443,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552713989475,
+        "rshares": 15130676889,
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 22839801085,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1711191717,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 15561021463,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9238067538,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 4004906164,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2266924190,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3564833888,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 5902111209,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 162194218,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 724724078,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 574381549,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 93392827573,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14148411388,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 15893252296,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10083212488,
+        "rshares": 63829521,
+        "voter": "dedushkadiesel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 56272514,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 93243566220,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 559711438,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 70682332,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1361293312,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 52502611,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 52099594,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": -451593763871,
+        "rshares": 3235630451,
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 323509012,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 51753317,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110840095927,
+        "rshares": 148403993,
+        "voter": "steem-engine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1200202101,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 51619811,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 59896309,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28469021518,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1963729757,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83587645574,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 29373154668,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 52400873,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61094018,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 10543706281,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 71357161,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2331044924,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93571901011,
+        "rshares": 405029117,
+        "voter": "noor818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51863356,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51860909,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51856300,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51852278,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156837664557,
+        "rshares": 92671420,
+        "voter": "how2steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3502906874,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8121800981,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1941499119,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51481279,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 59465570,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42570834630,
+        "rshares": 454956115,
+        "voter": "steemhorizon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 18096899554,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 2511369735,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11435132110,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6205342073,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4298995859,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 22500043307,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51562255,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 85421073,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 615508801,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 55750195,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 666955368,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3206505571198,
+        "rshares": 8515004507,
+        "voter": "ironwood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 79669298,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 13864037687,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 2155153681,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51712804,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133411660608,
+        "rshares": 109805573,
+        "voter": "maxfuchs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 20656731535,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51388276,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51379706,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 53537748,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51814474,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51812703,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 607135202,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 13828807095,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51451058,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 262391495,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2146314155,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51148009,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 154743752672,
+        "rshares": 54349843,
+        "voter": "lynceus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24762164330,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52015504,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 190473967,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 140568307,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54949117,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 304997419,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54665234,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 582022660,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51979174,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 50812926,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1579487626,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5683012749,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 71251561,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2979879533,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2439471741,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50507607,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454788,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 287801947294,
+        "rshares": 65292516,
+        "voter": "paketkita.net"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127848310425,
+        "rshares": 73815531,
+        "voter": "conspiracynut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 52710031,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 143043369,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 1869420478,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3302532614,
+        "rshares": 66920614,
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1366333355,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 607607141,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82374501,
+        "voter": "alexclarkbarry"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 111391460708814,
+    "beneficiaries": [],
+    "body": "<center>Ladies and Gentlemen Welcome to the STEEMIT SHOW! 100% Pure Entertainment ONLY FOR YOU!</center>\n---\nhttps://www.youtube.com/watch?v=0SMMo7aQnPY\n\n\n---\n<center>Welcome to @fyrstikken I am so happy to see you! Leave a comment below so I know you have been here :)</center>\n---",
+    "body_length": 282,
+    "cashout_time": "2016-09-06T19:19:30",
+    "category": "steemit",
+    "children": 56,
+    "created": "2016-08-30T19:19:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"funny\",\"comedy\",\"fyrstikken\",\"entertainment\"],\"users\":[\"fyrstikken\"],\"image\":[\"https://img.youtube.com/vi/0SMMo7aQnPY/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=0SMMo7aQnPY\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T19:19:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 88601715868403,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "809.229 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-steemit-show-fresh-entertainment-directly-to-you-because-we-need-a-good-laugh-d",
+    "post_id": 1060237,
+    "promoted": "122.000 HBD",
+    "replies": [],
+    "root_title": "THE STEEMIT SHOW! - FRESH ENTERTAINMENT DIRECTLY TO YOU! - BECAUSE WE NEED A GOOD LAUGH :D",
+    "title": "THE STEEMIT SHOW! - FRESH ENTERTAINMENT DIRECTLY TO YOU! - BECAUSE WE NEED A GOOD LAUGH :D",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/the-steemit-show-fresh-entertainment-directly-to-you-because-we-need-a-good-laugh-d"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3100531233,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 224361742775,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3764189886,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690498765,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6143394622323,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54237110459,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661583090,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213702396,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 724454198454,
+        "rshares": 149450248229,
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6580261519,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 79094601875,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10777629083,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622922850,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967529916,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392331448467,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288200426,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3475466942,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 46099177392,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 21457200657,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404519920935,
+        "rshares": 3643243484,
+        "voter": "kenmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 263657666737,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5349082417,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 868009462,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3898446152,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 14465314654,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432626059,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1460925170254,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687032102605,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8578280196,
+        "voter": "cannav"
+      },
+      {
+        "percent": "8800",
+        "reputation": 1402029831983,
+        "rshares": 12348648799,
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9824421122,
+        "rshares": 247087647,
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3181753819665,
+        "rshares": 9892359288,
+        "voter": "jay4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 243640107,
+        "voter": "sekoorane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1343937139914,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 151103722616,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982686864185,
+        "rshares": 5530655167,
+        "voter": "secom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4569401045,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1410670651,
+        "rshares": 2212025362,
+        "voter": "johnnydollar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 45220437401,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3120668012,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 189075416368,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19174335590,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 9133228344,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 109445777,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 9700063815,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18091703755,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2871713285,
+        "rshares": 64903901,
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 16678639301,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 152609578,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 17231154057,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": -257389679751,
+        "rshares": 122437504,
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 646216243,
+        "rshares": 62928860,
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6587662692,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40099820081,
+        "rshares": 69829863,
+        "voter": "qq553937961"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10002818,
+        "rshares": 57930015,
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 7130857719,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3749012705250,
+        "rshares": 6785162040,
+        "voter": "alexandre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 628286793,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14762167320947,
+        "rshares": 41225084978,
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4447885148,
+        "rshares": 56995776,
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 363138694,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 16414058791,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1649052287,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 168496112075,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287896907,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 22669235593,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 259672323,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1030128184,
+        "rshares": 639848102,
+        "voter": "kharn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 221475776781,
+        "rshares": 50833490,
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 192620865,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768451347973,
+        "rshares": 314717764,
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 53488939,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 233517378,
+        "rshares": 51915855,
+        "voter": "apexnine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013164758868,
+        "rshares": 109667822,
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 756228937,
+        "rshares": 76027456,
+        "voter": "motsna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161012229,
+        "voter": "gunbread"
+      }
+    ],
+    "author": "woo7739",
+    "author_reputation": 4874033031398,
+    "beneficiaries": [],
+    "body": "![29637d.jpg](https://www.steemimg.com/images/2016/09/01/29637d.jpg)\n\nThis photo seems real. Because it IS REAL!\n\nTeam CSL, one of the most famous cosplay group in Korea, posted unbelievable photos about Silent Hill.\n\nLet's take a look at the rest of photos.\n\n![4b7c8d.jpg](https://www.steemimg.com/images/2016/09/01/4b7c8d.jpg)\n\n![52cdcc.jpg](https://www.steemimg.com/images/2016/09/01/52cdcc.jpg)\n\n![6ef4bd.jpg](https://www.steemimg.com/images/2016/09/01/6ef4bd.jpg)\n\n![9e4d4f.jpg](https://www.steemimg.com/images/2016/09/01/9e4d4f.jpg)\n\n![103f314.jpg](https://www.steemimg.com/images/2016/09/01/103f314.jpg)\n\n![11eef23.jpg](https://www.steemimg.com/images/2016/09/01/11eef23.jpg)\n\n![12aaa03.jpg](https://www.steemimg.com/images/2016/09/01/12aaa03.jpg)\n\n![13cbf58.jpg](https://www.steemimg.com/images/2016/09/01/13cbf58.jpg)\n\nAnd a YouTube video here.\n\nhttps://www.youtube.com/watch?v=KaBzFJnziVs\n\nYou see quality of their cosplay? I think they are so awesome.\n\nI am trying to convince them to post their contents by themselves.\n\n![005751a.jpg](https://www.steemimg.com/images/2016/09/01/005751a.jpg)\nhttps://www.steemimg.com/images/2016/09/01/11296c4.md.jpg\n\nTheir reaction regarding Steemit, is positive.\n\nBut they're not completely convinced yet. You know, it's too good to be true.\n\nWith that said, I need your support.\n\nAll Steem Dollar reward will go to them, I am sure they will find how fascinating Steemit is.",
+    "body_length": 1420,
+    "cashout_time": "2016-09-09T05:15:42",
+    "category": "cosplay",
+    "children": 4,
+    "created": "2016-09-02T05:15:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"cosplay\",\"photography\",\"horror\",\"art\",\"kr\"],\"image\":[\"https://www.steemimg.com/images/2016/09/01/29637d.jpg\",\"https://www.steemimg.com/images/2016/09/01/4b7c8d.jpg\",\"https://www.steemimg.com/images/2016/09/01/52cdcc.jpg\",\"https://www.steemimg.com/images/2016/09/01/6ef4bd.jpg\",\"https://www.steemimg.com/images/2016/09/01/9e4d4f.jpg\",\"https://www.steemimg.com/images/2016/09/01/103f314.jpg\",\"https://www.steemimg.com/images/2016/09/01/11eef23.jpg\",\"https://www.steemimg.com/images/2016/09/01/12aaa03.jpg\",\"https://www.steemimg.com/images/2016/09/01/13cbf58.jpg\",\"https://img.youtube.com/vi/KaBzFJnziVs/0.jpg\",\"https://www.steemimg.com/images/2016/09/01/005751a.jpg\",\"https://www.steemimg.com/images/2016/09/01/11296c4.md.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=KaBzFJnziVs\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T05:43:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11724772371579,
+    "parent_author": "",
+    "parent_permlink": "cosplay",
+    "pending_payout_value": "19.642 HBD",
+    "percent_hbd": 10000,
+    "permlink": "unreleased-steal-cut-of-slient-hill-no-its-real",
+    "post_id": 1094652,
+    "promoted": "121.000 HBD",
+    "replies": [],
+    "root_title": "Unreleased steal cut of Slient Hill? No, its REAL!",
+    "title": "Unreleased steal cut of Slient Hill? No, its REAL!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/cosplay/@woo7739/unreleased-steal-cut-of-slient-hill-no-its-real"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6861504603453,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5924234483394,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099192085,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762483356,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697315118,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54010291270,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660921578,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213661759,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34042532834,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1305259200680,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622724514,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967195088,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 297041068093,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31488210815,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288140285,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 46091338521,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15147326440,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 29088869234,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2141819165,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 692261667883,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 91718922101,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 12107337047,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 236023250940,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 60750319225,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 79657198561,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431846323,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 602018562,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 586286811332,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 64284714678,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37511548124,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 8876135165,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 391275913,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62345041692781,
+        "rshares": 283907126703,
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1267900436,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30409765924218,
+        "rshares": 324237643911,
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 20461884222,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 929020048,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1946608196,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1429697273174,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686886224488,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840377473305,
+        "rshares": 2267977999,
+        "voter": "alefernandez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089233647296,
+        "rshares": 4224777539,
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 269921024,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 759728295534,
+        "rshares": 6602307370,
+        "voter": "emhaze222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 266592981,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 204013843843,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 31880219495,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14064842257,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25445573460,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 7049471118,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 105798664165,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147240421388,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 41975059972,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1131075798,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 910500105,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4487120677,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 37452179267,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17227141109,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 341993222983,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24443224969,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 237985094,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 6129221694,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6741143115703,
+        "rshares": 4162801602,
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19507833697,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3498346239,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 61164729955,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 16745418519,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 365818230,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841259695,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7093464346,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 268956346,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 4975171514,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6699598900,
+        "rshares": 112914306,
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 1909130025,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19410587962,
+        "rshares": 1993799598,
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456070989,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19988784545,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 731723236,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 15792261330,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127737479,
+        "rshares": 238353830,
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 88049981467,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3401416945201,
+        "rshares": 1253580623,
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3360204812,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795134,
+        "rshares": 54355927,
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 10079591501,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68479560828,
+        "rshares": 119439375,
+        "voter": "harrycoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 12237404949,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145609627,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 62332619,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7285753049,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 74755928437,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59512540,
+        "voter": "boatman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3307244480,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12186383861,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3724390017,
+        "rshares": 58931862,
+        "voter": "wesley399"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2918379629,
+        "rshares": 1763987441,
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8629294348,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 14595736783,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 7184799429,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 1604647373,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 14193492376,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 23042993006,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 110372559,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 84510824,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2523049726780,
+        "rshares": 1230797907,
+        "voter": "profitgenerator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3983778979,
+        "rshares": 55821108,
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 117787613687,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24239498471,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 140568307,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 56372318,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 269335193609,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2984877979,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329560640,
+        "rshares": 69255373,
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2597167689048,
+        "rshares": 51342868,
+        "voter": "steemitmag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 65057583,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164535440268,
+        "rshares": 3319272143,
+        "voter": "adilsontsilva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 136773607,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50245473,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3365771273,
+        "voter": "merlin"
+      }
+    ],
+    "author": "marketingmonk",
+    "author_reputation": 7404914959204,
+    "beneficiaries": [],
+    "body": "https://steemit-bucket-4a743ec2.s3.amazonaws.com/Getting%20More%20Attention%20By%20Using%20The%20Promote%20Button.jpg\n\nThis is the eighth installment of what will turn into a paid course called The Complete Steemit Course.\n\nHere is Steemit Tutorial 8: Getting More Attention By Using The Promote Button:\n\n**(please note that this video was updated with a corrected version 23 hours after the original post)**\nhttps://www.youtube.com/watch?v=ob9Zksnguzg\n\nPrevious lessons here:\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-1-creating-an-account-on-steemit-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-2-steemit-account-dashboard-overview-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-3-creating-our-first-ever-basic-post-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-4-reading-writing-decorating-and-voting-on-comments-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-5-voting-power-weighting-spying-and-managing-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-6-getting-paid-twice-from-the-steem-network-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-7-buying-steem-power-with-steem-dollars-or-bitcoin-video\n\nPlease upvote to show your support, I really appreciate it.\nhttps://img1.steemit.com/0x0/https://www.cryptoversity.com/wp-content/uploads/Steemit-upvote-cta-3.gif",
+    "body_length": 1407,
+    "cashout_time": "2016-09-07T12:33:12",
+    "category": "steemit",
+    "children": 18,
+    "created": "2016-08-31T12:33:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"tutorial\",\"howto\",\"steem\",\"video\"],\"image\":[\"https://steemit-bucket-4a743ec2.s3.amazonaws.com/Getting%20More%20Attention%20By%20Using%20The%20Promote%20Button.jpg\",\"https://img.youtube.com/vi/ob9Zksnguzg/0.jpg\",\"https://img1.steemit.com/0x0/https://www.cryptoversity.com/wp-content/uploads/Steemit-upvote-cta-3.gif\"],\"links\":[\"https://www.youtube.com/watch?v=ob9Zksnguzg\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-1-creating-an-account-on-steemit-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-2-steemit-account-dashboard-overview-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-3-creating-our-first-ever-basic-post-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-4-reading-writing-decorating-and-voting-on-comments-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-5-voting-power-weighting-spying-and-managing-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-6-getting-paid-twice-from-the-steem-network-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-7-buying-steem-power-with-steem-dollars-or-bitcoin-video\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T11:32:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21127721369166,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "55.734 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemit-tutorial-8-getting-more-attention-by-using-the-promote-button-video",
+    "post_id": 1070095,
+    "promoted": "121.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Tutorial 8: Getting More Attention By Using The Promote Button [VIDEO]",
+    "title": "Steemit Tutorial 8: Getting More Attention By Using The Promote Button [VIDEO]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@marketingmonk/steemit-tutorial-8-getting-more-attention-by-using-the-promote-button-video"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28865473791883,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 17174544934448,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6741398871343,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8391169619604,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5925252164516,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18336382560162,
+        "rshares": 187621512499,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099515402,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762904646,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697373904,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1585286495451,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54046050794,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661086507,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8717425187,
+        "rshares": 5907379161631,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213673190,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2142024197765,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33250846024,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 740067577802,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 253842278185,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622778402,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1120034999305,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967281634,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 823522090888,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31150917768,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 40749565179,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288158246,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 80058020962,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411023729959,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78077847939,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 173731843505,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7585671701,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 550644954644,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 36301508450,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 8059949925,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 14125062140,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33820692,
+        "rshares": 426969856,
+        "voter": "zheka-melnikov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 570227675922,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431967857,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 47661340196,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 195004765553,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 37374648233,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 511396696440,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3663597787321,
+        "rshares": 21926968622,
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 20539865673,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37511548124,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 11592122420,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9361058328,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 107752715191,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 13348057713,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 251383713111,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13352180210,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 20461698330,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37015270307,
+        "rshares": 334447067,
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 138950405749,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3900",
+        "reputation": 598181152117,
+        "rshares": 86227251302,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 14067763080,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 1170048458,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 16019230638,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 210538398,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3374026415,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 204013843843,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10364264135,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132657096959,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 240080589407,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 466928201309,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 296710962,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 210192659,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 36264884009,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 72257534352,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 113581011154,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 144039542662,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 13532699743,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 143380752469,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325589414514,
+        "rshares": 515148804,
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 14019560181,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2932258651,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 109188618706,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 8923261762,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 29701247281,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11929926137,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 12871286440,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3655676496603,
+        "rshares": 10289043539,
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116820988881,
+        "rshares": 7236481997,
+        "voter": "corinnestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 332446975,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2027442179,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3629922224,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089175666268,
+        "rshares": 1001662053,
+        "voter": "jsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 82686830113,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 59943852587,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 183660738363,
+        "rshares": 3219325103,
+        "voter": "moviefan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 3034936936,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3573419992,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 2030193955,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 17744271849,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5043336912,
+        "rshares": 1894056221,
+        "voter": "idan4326"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 74885413307,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958834221798,
+        "rshares": 3547300393,
+        "voter": "mastletter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 400623749,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 26243392108,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 929113870632,
+        "rshares": 333358949,
+        "voter": "valenttina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 261379803,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2997941608767,
+        "rshares": 6108553793,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 203458546034,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6960645822,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2564054618,
+        "rshares": 107496012,
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841259695,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 445706908,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7093464346,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 208498554,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 184772599,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17665762711,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "3500",
+        "reputation": 17698439393799,
+        "rshares": 10248653702,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 31943139423,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5344490062,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273478087406,
+        "rshares": 362618765,
+        "voter": "laurame86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 10175387109,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 69849820,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 4975171514,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 15053973666,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456070989,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19368137736,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1049062937,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1951944925,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "3400",
+        "reputation": 10771708337101,
+        "rshares": 375668517110,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23834697789,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2595700392,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47886131750712,
+        "rshares": 121563194275,
+        "voter": "bridgetbunchy"
+      },
+      {
+        "percent": "2200",
+        "reputation": 18027204457681,
+        "rshares": 6307916292,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 5776723480371,
+        "rshares": 102479436470,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3835982150,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 15650028306,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 35535725906,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "3700",
+        "reputation": 97845484474,
+        "rshares": 19821844477,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 5921167530,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3067653962,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "3500",
+        "reputation": 3016325652890,
+        "rshares": 45657317456,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 13118148961,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127737479,
+        "rshares": 228819677,
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 52521013,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 714188538,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1851205309677,
+        "rshares": 1438747070,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41231458058,
+        "rshares": 56250267,
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 687153403,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 773487823,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 10323552313,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013272646520,
+        "rshares": 510558795,
+        "voter": "galamirissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": -171959953,
+        "rshares": 61569261,
+        "voter": "hysmagus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 233196315,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "3900",
+        "reputation": 4195733833721,
+        "rshares": 3570294010,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 22911239981,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5838110908,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 4508841975,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 833401927651,
+        "rshares": 795125532,
+        "voter": "kateblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 63734270,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145609627,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396514667430,
+        "rshares": 174751392,
+        "voter": "florentina"
+      },
+      {
+        "percent": "3900",
+        "reputation": 730408370151,
+        "rshares": 235328801,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 10748521073,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20522445870,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 64551062343,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1258347207,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 51095992,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2976838803,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3077370360823,
+        "rshares": 2291984181,
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503220992718,
+        "rshares": 97567611,
+        "voter": "claudia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 35066739983,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12921415762,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 2006235920,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 7454987616,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11509373633,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 6671849990,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 23649624986,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 11380609295,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 420580334986,
+        "rshares": 76756531,
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133379152381,
+        "rshares": 111425803,
+        "voter": "jyezie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1181054867,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 85913014,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55633002031,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 72888933,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186924852752,
+        "rshares": 67994567,
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225178513133,
+        "rshares": 55443372,
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 1580324483,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 10800740085,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66311335718,
+        "rshares": 108822425815,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7184066856,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544245232901,
+        "rshares": 316281166,
+        "voter": "getonthetrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 56017401,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3639301731,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293042273,
+        "rshares": 56566110,
+        "voter": "minihelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 3319520861,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955050298650,
+        "rshares": 346743386,
+        "voter": "masonmiler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 16416762623,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 84510824,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55936364,
+        "voter": "minisupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708267266,
+        "rshares": 766025841,
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24770721231,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9370846764,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4836979493,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 93771031,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10408522028,
+        "rshares": 105329833,
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70707045777,
+        "rshares": 59536536,
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207506656,
+        "rshares": 53043871,
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1576328130,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 68442517,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2921775535,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2610482432,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1002683608,
+        "rshares": 52282021,
+        "voter": "pdavid000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14055702340,
+        "rshares": 54464967,
+        "voter": "mynameisricky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 89309975,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 5219360203,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20789357061,
+        "rshares": 55029837,
+        "voter": "jessica.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 50878690,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179388602625,
+        "rshares": 91297442,
+        "voter": "qezzit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2093855721226,
+        "rshares": 80288789,
+        "voter": "benberger"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_75367465_SMALLee110.jpg\" width=\"848\" height=\"565\"/></p>\n<p>I have found myself in a contemplative mood over the last few days. &nbsp;The main reason for this that I am due to have surgery on my left eye this Thursday (1st September) - sorry for constantly bringing it up and being such a wimp. &nbsp;</p>\n<p>The surgery is routine and is in some ways self-inflicted - it is due to a complication with having had laser eye surgery last year to correct my vision. &nbsp;</p>\n<p>Had I not had that done I wouldn't be in this position (although) I don't regret it. &nbsp;No procedure is without risk and since this is a second procedure the risk is increased. &nbsp;It is even greater because I am also a type I diabetic (on insulin) which slows healing down and makes complications more likely.</p>\n<p>My eyesight is very important to me particularly due to my artistic hobbies like photography. &nbsp;Luckily my right eye is absolutely fine at the moment.</p>\n<p>Anyway the natural anxiety over this has lead me to be quite introspective and think about life in general. &nbsp;I have been thinking back to some of the the things I have learned and how they might have helped me had I known them when I was younger.</p>\n<p>They are in no particular order. &nbsp;I make no apologies for some of them being quite obvious or even the sort of cheesy advice you would read on a greeting card.</p>\n<p>So here they are in no particular order:</p>\n<p><br></p>\n<h1>Money and your career are important but not that important</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Serbian-Dinar-and-another-Currency-000082274485_Smalla1ad2.jpg\" width=\"839\" height=\"571\"/></p>\n<p>When I was younger I was (like many kids) convinced that having lots of money would bring happiness. &nbsp;Having the latest Nike Air Jordans and most fashionable clothes, gadgets and the like was a matter of not only pride but vane necessity.</p>\n<p>It was only later that I started to realise that whilst money is a necessity for paying bills and the like it is only a tool. &nbsp;Above a certain level of comfort having more money doesn't really equate to being happier. &nbsp;It just equates to being able to have more \"things\" i.e. possessions. &nbsp;</p>\n<p>Depending on how you get the money it can also lead to a poverty of the more valuable commodity which is time. &nbsp;</p>\n<p>By similar extension whilst your career should be important it should not be the most important thing in your life. &nbsp;No matter what you do you aren't going to be able to buy yourself more time so don't waste it needlessly going after more money or a better position at work. &nbsp;</p>\n<p>It is a kind of Faustian pact where you get the worse end of the deal. &nbsp;</p>\n<h3>Time is the truly important commodity and sharing it with others is one of the most valuable uses of it.</h3>\n<h1><br></h1>\n<h1>Following the herd (or shoal) doesn't doesn't pay off</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_16631433_SMALLec951.jpg\" width=\"848\" height=\"565\"/></p>\n<p>We are all programmed by society and culture to follow what is \"normal\" and ordinary. &nbsp;This is especially true during those early teen years. &nbsp;Even though we pretend to rebel by picking subcultures like goth, emo, metalhead or whatever this is just a thinly veiled surface level of individuality. &nbsp;</p>\n<p>At it's base it is as conformist as anything else and is merely designed to massage our egos whilst still allowing us to be cocooned within the comfort of our own selected \"tribe\".</p>\n<h3>Truly great people, the kind that change the world don't follow herds or tribes or anything else. &nbsp;They set their own destiny and forge their own path. &nbsp;</h3>\n<p>They make the world follow them.</p>\n<p>I know what kind of person I would rather be and it isn't one of the sheep.</p>\n<p><br></p>\n<h1>Follow your own dreams not those of others</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_76511897_SMALL42a71.jpg\" width=\"848\" height=\"565\"/></p>\n<p>This is related to the idea of ignoring \"herd mentality\". &nbsp;We often have dreams and expectations placed upon us by our family, friends and teachers. &nbsp;I remember once telling one of my teachers that I wanted to be an artist or a film director and being told:</p>\n<h3>\"You are much too clever to waste your life on something like that. &nbsp;You should be a doctor or a lawyer.\"</h3>\n<p>It may seem like a complement but these kind of sentiments can be just as damaging as more obviously disparaging ones because they psychologically close down certain options in our lives. &nbsp;One can be made to feel that doing what we want would be letting our family, friends and educators down so we push those things aside and just do what is expected of us.</p>\n<p>This ultimately leads to dissatisfaction with our work and our lives. &nbsp;It is much harder to change this in your thirties or later and much easier in practical terms to do it when you are in your teen years and choosing your career. &nbsp;</p>\n<p>Paradoxically it seems harder in your teens to say no to the psychological pressure even though it is ultimately your choice.</p>\n<h3>Self confidence in your own ability to know what you truly want early one pays off in the long term. &nbsp;Don't live your life for other people.</h3>\n<p><br></p>\n<h1>People who agree with you all the time aren't helping you</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Better_an_open_enemy_false_friendb2a45.png\" width=\"794\" height=\"403\"/></p>\n<p>We naturally like to associate with people who have similar views to us and seem agreeable to us. &nbsp;This is part of human nature. &nbsp;Unfortunately what many of us don't realise when we are younger is that a good friend needs to be honest with us. &nbsp;</p>\n<p>Someone who is always a \"Yes-man\" can actually encourage us to stagnate and reinforce our negative behaviours. &nbsp;It is simply not healthy and it is dishonest. &nbsp;Your best friends are those who tell you the truth and call you out on your bullshit. &nbsp;</p>\n<p>Similarly in your work and acedemic life it is important to listen to conflicting opinions. &nbsp;Just reading material that agrees with what you already think prevents you from evolving both from a personal and an intellectual standpoint. &nbsp;</p>\n<p>We can see this in modern internet culture where people focus purely on material that agrees with their political or societal opinions. &nbsp;</p>\n<h3>Ultimately it leads to greater division, polarisation and entrenchment of attitudes.</h3>\n<p><br></p>\n<h1>There is no shame in changing your opinion</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/chinese-proverb-on-windmilla2b73.jpg\" width=\"800\" height=\"560\"/></p>\n<p>To some degree people who have very strong opinions may be respected. &nbsp;It is seen as a sign of confidence. &nbsp;</p>\n<p>It could also be a sign of inflexibility and inability to change. &nbsp;</p>\n<p>I believe now that life is all about change and evolution. &nbsp;If you stop moving you get left behind. &nbsp;</p>\n<p>When I was younger I would stubbornly hold on to opinions and beliefs as a matter of pride. &nbsp;There was a certain amount of machismo behind sticking to your opinions and not conceding to those of others. &nbsp;To change them would be seen as some sort of humiliation.</p>\n<p>This is a complete fallacy of course. &nbsp;</p>\n<h3>To stick to an opinion merely for the sake of not changing is not only foolish it is positively pathological. &nbsp;</h3>\n<p>Ultimately it means that you do not progress as a person. &nbsp;I now realise there is no shame in changing your position and admitting that you were wrong. &nbsp;</p>\n<p>In many ways it is a lot braver because you are sure to get flack from others who are unable to do the same for \"flip-flopping\".</p>\n<p><br></p>\n<p><br></p>\n<h1>Cherish your friends and family because you don't know how long you have with them</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Happy-multigeneration-family-walking-in-the-countryside-000073792689_Small8784a.jpg\" width=\"848\" height=\"565\"/></p>\n<p>I found this out the hard way in my early twenties. &nbsp;A friend of mine (let's call him John) who I had been with throughout Junior school went to a different college from me. &nbsp;This was in a different area of the country. &nbsp;Though we often made plans to get together they would often follow through for logistical reasons.</p>\n<h3>Over time our conversations and meetings became less and less frequent as \"life\" started to get in the way. &nbsp;</h3>\n<p>A few years later when I was home from University and I hadn't heard from him in a while I bumped into a mutual friend.</p>\n<p>Nothing in my life had prepared me for what I heard next. &nbsp;</p>\n<p>A year earlier John had been involved in a minor road accident whilst riding his motorbike. &nbsp;He had fallen off as a result and had received what seemed at the time like a minor knock to his head. &nbsp;Feeling fine he had decided that he didn't need to go to hospital. &nbsp;</p>\n<p>Unfortunately for him, that minor knock on his head had ruptured a small artery in his meninges, resulting in a slow but progressive increase in intracranial pressure. &nbsp;</p>\n<h3>A few hours later he literally dropped dead. &nbsp;He was only 21.</h3>\n<p>I felt so much guilt. &nbsp;</p>\n<p>This friend had been so close, like a brother to me. &nbsp;</p>\n<p>He had died so suddenly and I hadn't even known. &nbsp;</p>\n<p>I had so many regrets - maybe if we had gotten together before his death it could somehow have changed things just enough to prevent this from happening? &nbsp;</p>\n<p>I kept having such thoughts and I still have them from time to time.</p>\n<h3>I don't think I have every truly gotten over the trauma of this.</h3>\n<p>You assume that the people you care about and love will always be there just because you can't imagine life without them. &nbsp;</p>\n<p>The fact is life is fragile. &nbsp;Nobody knows how long they have to live.</p>\n<p>Life and death happen all around us all the time. &nbsp;</p>\n<h3>Appreciate and spend time with loved ones whilst you can because you never know when that time will be up, either for you or for them.</h3>\n<p><br></p>\n<h1>Your parents and grandparents were young too</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Photo-album---photos-of-children-000070298559_Small3feff.jpg\" width=\"848\" height=\"565\"/></p>\n<p>One of my teachers at school used to say that -</p>\n<h3>\"When you are young you know everything except your own ignorance.\"&nbsp;</h3>\n<p>&nbsp;This is so true. &nbsp;Once we become teenagers we tend to assume we know better than everyone else. &nbsp;</p>\n<p>When our parents and grandparents give us valuable advice we tend to ignore it because - what do they know? &nbsp;</p>\n<p>We tend to forget that they were once young and had the same kind of hopes and dreams we do. &nbsp;By being further on in their lives and having more experience they can give us a perspective that we lack.</p>\n<p>They are a resource that we ignore at our peril.</p>\n<p><br></p>\n<h1>Never give up on your hobbies and interests</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/painting-brush53238.jpg\" width=\"800\" height=\"530\"/></p>\n<p>We all know the saying that \"variety is the spice of life\". &nbsp;We all tend to get pushed for time as we get older and develop more responsibilities. &nbsp;</p>\n<p>It is very easy to give up on those simple hobbies that gave us so much pleasure when we were younger. &nbsp;</p>\n<p>Whether it was engaging in a particular sport, listening to music, enjoying nature or just travelling we tend to give less importance and priority to these activities.</p>\n<p>These kind of activities are very important for recharging our mental energy and helping us to get away from the worries and concerns of life. &nbsp;</p>\n<p>One could almost consider them to be like a from of activity based meditation.</p>\n<p>I gave up on my art work for many years due to the sheer workload I had during University and then in work. &nbsp;</p>\n<p>This was a mistake and it was only through being forced to re-enage with it through ill health that I realised how important and fulfilling a part of my life it was and now still is.</p>\n<h1><br></h1>\n<h1>My Final Point: Life is short make sure you actually experience it</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_89191645_SMALL0da25.jpg\" width=\"848\" height=\"565\"/></p>\n<p>As you get older you start to realise how quickly time passes by. &nbsp;We have a tendency to live in either the past or the future, rarely experiencing the present. &nbsp;</p>\n<p>Not only does this make time appear to pass more quickly but it also leaves us unable to appreciate what we have at the time only realising it later through the lens of hindsight. &nbsp;</p>\n<p>One of the principles of mindfulness is the idea of recapturing and experiencing the moment. &nbsp;</p>\n<p>I think we would all do well to follow this idea. &nbsp;</p>\n<h3>By reconnecting with our momentary existence we can become more aware of our own thoughts, feelings and what we ultimately want. &nbsp;</h3>\n<p>It can also allow us to readjust our focus on what is important and start to concentrate on it more whilst we still have time. &nbsp;</p>\n<p>So many of us simply drift through our lives without the kind of focus this could provide and you don't want to be the person who starts making these kind of observations when it is too late for you to be doing anything with them.</p>\n<h3>You don't want to end up feeling like you were just a passive bystander or a passenger in your own life.</h3>\n<p><br></p>\n<h1>Conclusion</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_57565926_SMALLac7bb.jpg\"/></p>\n<p>Thanks very much for reading. &nbsp;I hope you found it useful and interesting.</p>\n<h3>Do you have any similar things that you wished you had known when you were younger? Please share in the comments below.</h3>\n<p>This will probably be my last post for a while as I am due to have eye surgery tomorrow and will be recuperating for some days. &nbsp;</p>\n<p>If I have time I might put out another post before the operation but if I don't please all take care and I wish you all the best.</p>\n<p><br></p>\n<p><em>You can find more of my work by following me @thecryptofiend - thanks.</em></p>\n</html>",
+    "body_length": 14538,
+    "cashout_time": "2016-09-07T17:41:00",
+    "category": "life",
+    "children": 67,
+    "created": "2016-08-31T17:41:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"philosophy\",\"psychology\",\"writing\",\"steemsquad\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https://www.steemimg.com/images/2016/08/31/iStock_75367465_SMALLee110.jpg\",\"https://www.steemimg.com/images/2016/08/31/Serbian-Dinar-and-another-Currency-000082274485_Smalla1ad2.jpg\",\"https://www.steemimg.com/images/2016/08/31/iStock_16631433_SMALLec951.jpg\",\"https://www.steemimg.com/images/2016/08/31/iStock_76511897_SMALL42a71.jpg\",\"https://www.steemimg.com/images/2016/08/31/Better_an_open_enemy_false_friendb2a45.png\",\"https://www.steemimg.com/images/2016/08/31/chinese-proverb-on-windmilla2b73.jpg\",\"https://www.steemimg.com/images/2016/08/31/Happy-multigeneration-family-walking-in-the-countryside-000073792689_Small8784a.jpg\",\"https://www.steemimg.com/images/2016/08/31/Photo-album---photos-of-children-000070298559_Small3feff.jpg\",\"https://www.steemimg.com/images/2016/08/31/painting-brush53238.jpg\",\"https://www.steemimg.com/images/2016/08/31/iStock_89191645_SMALL0da25.jpg\",\"https://www.steemimg.com/images/2016/08/31/iStock_57565926_SMALLac7bb.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T00:56:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 87244901893478,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "778.040 HBD",
+    "percent_hbd": 10000,
+    "permlink": "things-i-wish-i-d-known-when-i-was-18",
+    "post_id": 1073636,
+    "promoted": "120.000 HBD",
+    "replies": [],
+    "root_title": "Things I wish I'd known when I was 18",
+    "title": "Things I wish I'd known when I was 18",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@thecryptofiend/things-i-wish-i-d-known-when-i-was-18"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28861578690,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14412308288396,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 35599225928876,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6594573987000,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2476131997,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3005703855,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 557354442,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 42724131990,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1327124837,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170849766,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25065017424303,
+        "rshares": 118280461284,
+        "voter": "stan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 21494373020,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 5527985680,
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1190401003512,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 363371081332,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 497724578,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 763596484,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1301587831477,
+        "rshares": 22561832145,
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59130509872662,
+        "rshares": 543033555368,
+        "voter": "kencode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230379526,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 23241074306,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 25655032627,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 312858109385,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57879936728,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2524835106,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 102093148701,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 324862068866,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 195268121,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 29357718372,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1376656930605,
+        "rshares": 5490718122,
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 236667071809,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61307724491,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1823741139572,
+        "rshares": 2988479142,
+        "voter": "ola-haukland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2676865682314,
+        "rshares": 35305921410,
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8413648946,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 118455323,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110873902249,
+        "rshares": 4601395327,
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 10101627148,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 23843407312,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 533041889998,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 57967426,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 10272873194,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1245155906,
+        "rshares": 3017052825,
+        "voter": "kaneen74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8127943798,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10625262501,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 1595194627,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 601083060,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30130564942,
+        "rshares": 337837874,
+        "voter": "illlefr4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1087530326,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 7156028317,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 145088625,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 100088553,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 1507018875,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 560201253,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1439465905530,
+        "rshares": 102635194703,
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3267939897968,
+        "rshares": 4838864543,
+        "voter": "scott.stevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89039117574,
+        "rshares": 15486997728,
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23815009326,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 16962531382,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44365270334,
+        "rshares": 71274014,
+        "voter": "always1success"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 24133776765,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2245652652,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3688644772,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2202673922,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60920134,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2594661721428,
+        "rshares": 4377312833,
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 59075696,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 38299804598,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 65497834210,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12113118520,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8755530417,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508004290970,
+        "rshares": 368182198,
+        "voter": "ukblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5178721808894,
+        "rshares": 5153403180,
+        "voter": "survivalist.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 11145915001,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 4533143507,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57371783,
+        "voter": "freegirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 54921657,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 158871581172,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 51884666,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51213903,
+        "voter": "jebat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 226128226,
+        "rshares": 51961738,
+        "voter": "chamujama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37804512,
+        "rshares": 51778924,
+        "voter": "alexdaroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2410362,
+        "rshares": 51759386,
+        "voter": "creolegenius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51660954,
+        "voter": "patrickwienefeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 789636,
+        "rshares": 50536722,
+        "voter": "hugues"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320585571,
+        "rshares": 50794905,
+        "voter": "alexrknight3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 677474147,
+        "rshares": 160726430,
+        "voter": "edlayne"
+      }
+    ],
+    "author": "scott.stevens",
+    "author_reputation": 3267939897968,
+    "beneficiaries": [],
+    "body": "<html>\n<p>August 25, 2016</p>\n<p>What happens when this ends?</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/DSC08614.jpg\" width=\"3648\" height=\"2736\"/></p>\n<p>Did we really need a scientific paper to tell us that there is \"no conspiracy\" with regards to chemtrails and geoengineering? Apparently, we did. The obvious--to most of us--is getting, well, too obvious. &nbsp;Some self-declared scientific types had to review some pictures and all agree (mostly, 76 of 77) that nothing of the sort is happening right in front of us.</p>\n<p>Really now?</p>\n<p>First, the published articles that I recently saw in the news referencing the <a href=\"http://iopscience.iop.org/article/10.1088/1748-9326/11/8/084011/pdf\">published paper</a>.&nbsp;</p>\n<p><a href=\"http://www.nytimes.com/2016/08/16/science/scientists-just-say-no-to-chemtrails-conspiracy-theory.html?partner=msft_msn&amp;_r=3\">The New York Times:&nbsp;</a></p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/Scientists-Just-Say-No-to-1.jpg\" width=\"841\" height=\"902\"/></p>\n<p>Now <a href=\"https://www.sciencedaily.com/releases/2016/08/160812103718.htm\">Science Daily:</a></p>\n<p><br></p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/Chemtrails-not-real-say-atmospheric-science-experts-ScienceDaily-2016-08-24-21-53-51.jpg\" width=\"776\" height=\"989\"/></p>\n<p>A quick excerpt to get us started:</p>\n<p><em>The authors of this study, including Carnegie's Ken Caldeira, conducted a survey of the world's leading atmospheric scientists, who categorically rejected the existence of a secret spraying program. The team's findings, published by Environmental Research Letters, are based on a survey of two groups of experts: atmospheric chemists who specialize in condensation trails and geochemists working on atmospheric deposition of dust and pollution.</em></p>\n<p><em>The survey results show that 76 of the 77 participating scientists said they had not encountered evidence of a secret spraying program, and agree that the alleged evidence cited by the individuals who believe that atmospheric spraying is occurring could be explained through other factors, such as typical airplane contrail formation and poor data sampling.</em></p>\n<p><em>The research team undertook their study in response to the large number of people who claim to believe in a secret spraying program. In a 2011 international survey, nearly 17 percent of respondents said they believed the existence of a secret large-scale atmospheric spraying program to be true or partly true. And in recent years a number of websites have arisen claiming to show evidence of widespread secret chemical spraying, which they say is linked to negative impacts on human health and the environment.</em></p>\n<p><em>\u2026</em></p>\n<p><em>\"The experts we surveyed resoundingly rejected </em><em><strong>contrail photographs</strong></em><em> </em>(emphasis mine)<em> and test results as evidence of a large-scale atmospheric conspiracy.\"</em></p>\n<p><em>---------------------</em></p>\n<p>Did you get that? \"Photographs\", that\u2019s (almost) all they looked at, studied or examined; that\u2019s it! Just some static pictures. In my \u201cscientific research\u201d I went a step further. How could I not? My job, my reputation, my incumbent responsibility to my employer and nightly audience was at stake. Instead of examining photographs, which I already had thousands of, I bought four cameras, two computers, and some time lapse software so that I could watch the entire day\u2019s weather happenings in under five minutes. These cameras would begin recording the sky, snapping a picture every five-seconds from sunup and finish at dark, day after day after day. Pictures were not good enough for me. I needed video just to see if there was something that I was missing!&nbsp;</p>\n<p>I would get home from doing the 10pm news, change my clothes, and go upstairs to begin rendering the four movies. I had one camera covering each of the cardinal directions and then watch each one.&nbsp;It is truly amazing what we don't see when we watch clouds without the aid of compressing time by 150 times or 300 times. At these speeds, it all makes sense. To be able to see all different layers of the atmosphere working together, or against each other, a fog that seems like and even feels calm, but is actually violently whipping around, even clouds&nbsp;retaining their shapes and sizes as they pass through each other, WTF!&nbsp;</p>\n<p>https://youtu.be/Yi4YFzyeEZ0</p>\n<p>What is quickly understood is that the wind does not carry the clouds, the water molecule is riding upon another force, another current, apart from the wind. This was a revelation to me and once realized by the wider atmospheric sciences community will utterly revolutionize the science. I lost count of the times I would see a cloud layer moving EXACTLY 90 or 180 degrees opposed to the layer immediately above or below. This is impossible in a natural setting.&nbsp;Now reflect on how many chemtrails you seen in the shape of a perfect \"T\" or \"X\". Think of alignments...&nbsp;</p>\n<p>An excerpt of me discussing when I started recording the sky with time lapse.</p>\n<p>https://youtu.be/LXsPhe9zWoA?t=8m18s</p>\n<p>I began this operation in January of 2005, just slightly more than six months after having my <a href=\"https://steemit.com/geo-engineering/@scott.stevens/wouldn-t-it-or-would-it-be-great-if-we-could-control-the-weather\">\u201cAh-ha\u201d moment</a>; in which I came to understand that all the planet\u2019s weather was profoundly impacted by man-made technology. Still, I had questions of where did all these planes, trails, and conspiracy fit into this complex story? It wasn\u2019t until I was four months into this project that I finally got my answer. Only then did I understand that these planes were tracing out geometric patterns while isolating perturbations, distortions, or gaps in already existing trails. It was freaking \u201cBrilliant!\u201d, was my exclamation.&nbsp;&nbsp;</p>\n<p>These revealed perturbations ARE the reason for the chemtrails!</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/sunset_arrowed.jpg\" width=\"480\" height=\"358\"/></p>\n<p><br></p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/DSC_0012.jpg\" width=\"500\" height=\"332\"/></p>\n<p>Watch an example in this narrated video of the planes unique flight patterns recorded by during those early days of my research.</p>\n<p>https://youtu.be/WVhbdhT9xoY</p>\n<p>How else would the weather makers know where to target, how much energy to target and the results of their work, without these straight chalk lines in the sky to gauge their effectiveness? If you\u2019re going to pulse the atmosphere with \u201csomething\u201d you\u2019ve then got to go figure out if you got it right! Was the \"input\" enough, or not enough? Was the intended impact sufficient to achieve the desired result, Yes-or-No?&nbsp;</p>\n<p>Straight lines across a moving fluid would allow for the direct observation of the atmospheric intervention and yet still appear to be just contrails to the masses below. It is an utterly elegant program that now with forty years under its belt has remained in the dark recesses of atmospheric sciences. A science that is so obsessed with the illusory CO2 issue that there is no intellectual capacity or energy available to see what\u2019s happening right of front of their faces.&nbsp;</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/EL-831-Marion-1976.bmp\" width=\"850\" height=\"526\"/></p>\n<p><strong>A train yard, &nbsp;1976 - Engine EL 831 Marion, Ohio &nbsp;-- Chemtrails already in the sky</strong></p>\n<p>Again, a very well played hand guys. Aircraft, in plain sight, some trails, but not too many, usually\u2026 Then get the program to use commercial aircraft (the most economical solution available versus military transport types) to do the work so it blends in with everything else up there, and then share the wealth that results from the program. The Military Industrial Complex makes a mint with all the planes, satellites, computers and esoteric technology perfected upon deployment. Those in the \u201cknow\u201d get to play in the energy, food &amp; agricultural, insurance, re-insurance and commodities futures markets making billion upon billions of dollars with foreknowledge of what is to come weather and climate wise.&nbsp;</p>\n<p>War, weather warfare is a racket and the population is told that we are experiencing \u201cclimate change\u201d when&nbsp;really it is \u201ceco-terrorism\u201d as Former Defense Secretary William Cohen termed these activities back in 1996, some twenty years ago!&nbsp;</p>\n<p><a href=\"https://en.wikiquote.org/wiki/William_S._Cohen\">The full quote:</a><em> \"...some scientists in their laboratories trying to devise certain types of pathogens that would be ethnic specific so that they could just eliminate certain ethnic groups and races; and others are designing some sort of engineering, some sort of insects that can destroy specific crops. Others are engaging even in an eco-type of terrorism whereby they can alter the climate, set off earthquakes, volcanoes remotely through the use of electromagnetic waves.</em></p>\n<p><em>So there are plenty of ingenious minds out there that are at work finding ways in which they can wreak terror upon other nations. It's real, and that's the reason why we have to intensify our efforts, and that's why this is so important.</em></p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/cohen3.gif\" width=\"165\" height=\"169\"/></p>\n<p>Another point to consider: With GLOBAL geoengineering now four decades active what is the true trend-line of the planet\u2019s surface temperature? I contend that this number has been totally lost and smeared by these activities. No one outside of those involved specifically with these activities knows the true state of Planet Earth\u2019s climate. It has been hijacked.. for some reason that is apparently worthy of this massive, expensive and covert operation.</p>\n<p>What we need is an Edward Snowden to emerge from the geoengineering programs to come forward and share the truth with humanity so we can make intelligent, informed and sane decisions about what to do to prepare for the coming decades. Is it an Ice Age as the <a href=\"https://astronomynow.com/2015/07/17/diminishing-solar-activity-may-bring-new-ice-age-by-2030/\">Sun is screaming</a> or is it a middling along like the past 20 years with little change in the surface temperatures or a resumption of the warming like we experienced during the first half of the 20th Century?&nbsp;</p>\n<p>Which is it?&nbsp;</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/article-2055191-0e974b4300000578-216_468x4731.jpg\" width=\"468\" height=\"473\"/></p>\n<p>We deserve to know, sooner than later.</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/gisp-last-10000-new.png\" width=\"829\" height=\"493\"/></p>\n<p>This global weather and climate engineering program WILL END. My question becomes, \"What happens then?\" &nbsp;This issue is the most important one facing all of us today. Not tomorrow or next year, but today.</p>\n<p>Keep looking up,</p>\n<p>@scott.stevens</p>\n<p><img src=\"http://weatherwars.info/wp-content/uploads/2016/08/Trail-finger.jpg\" width=\"2048\" height=\"1536\"/></p>\n</html>",
+    "body_length": 11277,
+    "cashout_time": "2016-09-01T22:55:03",
+    "category": "geoengineering",
+    "children": 23,
+    "created": "2016-08-25T22:55:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"geoengineering\",\"chemtrails\",\"\"],\"users\":[\"scott.stevens\"],\"image\":[\"http://weatherwars.info/wp-content/uploads/2016/08/DSC08614.jpg\",\"http://weatherwars.info/wp-content/uploads/2016/08/Scientists-Just-Say-No-to-1.jpg\",\"http://weatherwars.info/wp-content/uploads/2016/08/Chemtrails-not-real-say-atmospheric-science-experts-ScienceDaily-2016-08-24-21-53-51.jpg\",\"http://weatherwars.info/wp-content/uploads/2016/08/sunset_arrowed.jpg\",\"http://weatherwars.info/wp-content/uploads/2016/08/DSC_0012.jpg\",\"http://weatherwars.info/wp-content/uploads/2016/08/EL-831-Marion-1976.bmp\",\"http://weatherwars.info/wp-content/uploads/2016/08/cohen3.gif\",\"http://weatherwars.info/wp-content/uploads/2016/08/article-2055191-0e974b4300000578-216_468x4731.jpg\",\"http://weatherwars.info/wp-content/uploads/2016/08/gisp-last-10000-new.png\",\"http://weatherwars.info/wp-content/uploads/2016/08/Trail-finger.jpg\"],\"links\":[\"http://iopscience.iop.org/article/10.1088/1748-9326/11/8/084011/pdf\",\"http://www.nytimes.com/2016/08/16/science/scientists-just-say-no-to-chemtrails-conspiracy-theory.html?partner=msft_msn&_r=3\",\"https://www.sciencedaily.com/releases/2016/08/160812103718.htm\",\"https://youtu.be/Yi4YFzyeEZ0\",\"https://youtu.be/LXsPhe9zWoA?t=8m18s\",\"https://steemit.com/geo-engineering/@scott.stevens/wouldn-t-it-or-would-it-be-great-if-we-could-control-the-weather\",\"https://youtu.be/WVhbdhT9xoY\",\"https://en.wikiquote.org/wiki/William_S._Cohen\",\"https://astronomynow.com/2015/07/17/diminishing-solar-activity-may-bring-new-ice-age-by-2030/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T22:55:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 61303182921958,
+    "parent_author": "",
+    "parent_permlink": "geoengineering",
+    "pending_payout_value": "417.484 HBD",
+    "percent_hbd": 10000,
+    "permlink": "what-happens-when-it-ends",
+    "post_id": 989462,
+    "promoted": "119.000 HBD",
+    "replies": [],
+    "root_title": "What Happens When It Ends?",
+    "title": "What Happens When It Ends?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/geoengineering/@scott.stevens/what-happens-when-it-ends"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7600",
+        "reputation": 8151223409709,
+        "rshares": 12795811535287,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 372316824459,
+        "voter": "berkah"
+      },
+      {
+        "percent": "7600",
+        "reputation": 18336382560162,
+        "rshares": 143470451897,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 898984807435,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2479522245,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3010199699,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 557883458,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 471708497687,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43227563325,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1328824820,
+        "voter": "mini"
+      },
+      {
+        "percent": "7600",
+        "reputation": 8717425187,
+        "rshares": 4508768018730,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170935941,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34042532834,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 748581030023,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 258887406145,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 498208362,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 773801809,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 823317276751,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 302719926634,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230521375,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411375686313,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4500464238667,
+        "rshares": 26495887427,
+        "voter": "blackjincrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 74201402070,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34871878822,
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431720661,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 935697420,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37511548124,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10314861252,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2170379596106,
+        "rshares": 22856402506,
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 13346309453,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1138049559,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 129179648054,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3800",
+        "reputation": 598181152117,
+        "rshares": 80804852397,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 302683064,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 198782719642,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 7568897676,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 124699737174,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 246771748723,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 69581481372,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12190374285,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 143380752469,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 22868729155,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 614055241,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 192822819405,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 35158481984,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 10952411440,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 13738300392,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4088366345,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 365818230,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 13209938808,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841259695,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7093464346,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3700",
+        "reputation": 17698439393799,
+        "rshares": 11024739057,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 268956346,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 10075803326,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19988784545,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4933785537,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 3865257981,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "3500",
+        "reputation": 10771708337101,
+        "rshares": 402412698850,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 76821186326,
+        "voter": "twinner"
+      },
+      {
+        "percent": "2600",
+        "reputation": 18027204457681,
+        "rshares": 8809932426,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 5776723480371,
+        "rshares": 96034818561,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3834585662,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 97845484474,
+        "rshares": 19814357142,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "3600",
+        "reputation": 3016325652890,
+        "rshares": 45623458403,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "3400",
+        "reputation": 1851205309677,
+        "rshares": 1327717265,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41231458058,
+        "rshares": 63750303,
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795134,
+        "rshares": 54355927,
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3552896427510,
+        "rshares": 14055782855,
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3900",
+        "reputation": 4195733833721,
+        "rshares": 3569023089,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1227614779,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3900",
+        "reputation": 730408370151,
+        "rshares": 235297436,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6857054058,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 71823713867,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 50094162,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11509623311,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 54497132206,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12067433608,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 384999327,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2311621568,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 53351751,
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 84510824,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23711007445,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50196187,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4120769636,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1301309204,
+        "voter": "robotev"
+      }
+    ],
+    "author": "james-show",
+    "author_reputation": 5045406568403,
+    "beneficiaries": [],
+    "body": "Trading Steem is not hard. In that part steem(it) development team has done a great job. Compared to the establishment Steem is a huge step in the right direction of fairness and openness.\n# How the JS index works\nJS measures the net result of the buyers and sellers actions.\nEveryone buying Steem (or anything else) in any financial instruments market does it to profit. Interesting distinction is however if those buyers or seller do expect their profits short term or long term.\n\n## How short term Steem \u201cspeculators\u201d act?\nThey buy steem and expect return in a matter of days, weeks, months.\n## How long term Steem \u201cinvestors\u201d act?\nThey buy steem and expect return in a matter of years. They buy steem, and in this particular high devaluation environment that Steem is quickly power up .\n\nMeasuring the net result from the Steem \u201cspeculators\u201d and  Steem \u201cinvestors\u201d buying, compared to Steem owners selling can give us the ultimate tool to measure the future price movement of Steem (in  the short to medium term).\n\n# And it turns out to be incredible easy\nAll of the described above is nothing more than the \u2026 increase/decrease of the total Steem held by exchanges! (with a few caveats I will keep  proprietary for now)\n\n# How this matters\u2026 give me a practice example.\nOK here it is.\nSteem hit a local low of 0.001224 btc/steem on 08/29 4:30 UTC. Since then the price is generally higher. Should you buy (out of FOMO) or wait for the price to come down to even lower levels sometime in the near future.\nIf JS index has fallen down since  08/29 (as it has indeed) this means that all the buying (price increase) was by short time speculators. So, if no news justifie their buying exuberance, you can expect soon those speculative buyers to give up/cash out of their short term position and the price to continue following the long term trend of the JS index itself.\n\n# Initial JS index\nThe index is set at __1000.000__ as for 2016-07-26 12:56:12 UTC\n\n# Current  JS index\nAs of 2016-08-31 03:03 (UTC) the value is: __553.650__\n#\n[EDIT]\nBelow is a chart of JS Index and Steem price for July 27th to Aug 30th NB some days have more than one data point.\n#\n\n![Imgur](http://i.imgur.com/Ukazg7G.png)\n#\n#steemit #trading #finance #steem #money",
+    "body_length": 2239,
+    "cashout_time": "2016-09-07T04:11:24",
+    "category": "steemit",
+    "children": 18,
+    "created": "2016-08-31T04:11:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"trading\",\"finance\",\"steem\",\"money\"],\"image\":[\"http://i.imgur.com/Ukazg7G.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T15:07:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 24273347100904,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "68.636 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-only-index-you-should-know-to-successfully-buy-and-sell-steem-introducing-the-js-index",
+    "post_id": 1066137,
+    "promoted": "110.001 HBD",
+    "replies": [],
+    "root_title": "The only index you should know to successfully buy and sell Steem \u2013 Introducing the JS Index!",
+    "title": "The only index you should know to successfully buy and sell Steem \u2013 Introducing the JS Index!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@james-show/the-only-index-you-should-know-to-successfully-buy-and-sell-steem-introducing-the-js-index"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7376349250899,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 347165551187,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "7000",
+        "reputation": 13270505121655,
+        "rshares": 44274584365947,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104392312,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3769119494,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684036241,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54908039872,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663427874,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213797798,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185067624745,
+        "rshares": 2179781689511,
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 73521122782,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 425629339547,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 9028537022578,
+        "rshares": -2705241943122,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1131791016752,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 625020571,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973177874,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 830121840154,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288359524,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 392749106258,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 73536772482,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 18718327214,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 437226882,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 4895173431,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 26804675937,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2024361326,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 25288596864,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "9800",
+        "reputation": 15755437221598,
+        "rshares": 20099547557,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 147573839789,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1412747751,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 260051658583,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2663003206978,
+        "rshares": 13566797440,
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 341225233,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13354424579,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1200786297,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 31290973763,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 184732571490,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 188002796893,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6741772425,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 15700155766,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 497410679,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 26357168295,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 207235087440,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 328681996462,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55888461363,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254380477,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23563927691,
+        "rshares": 276540283,
+        "voter": "eugeney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9824421122,
+        "rshares": 237567730,
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 427726403899,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 10242467766,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 31087345031,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 63385860760,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 515128572920,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 451567923,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 501733856,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 464367728,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10267745462,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14937577469,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1081057545,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4587496780,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493380760,
+        "rshares": 222795356,
+        "voter": "pet1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629304079354,
+        "rshares": 19451642041,
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3541613089,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 3144302620,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24462414835,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 79393522553,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42141046380,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 89569037,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13235028002,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3403721399,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 172170120707,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 7072264218,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 15576505282,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 23812000153,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 48416629676,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 14672233176,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614745323,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 29931116488,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 14665762430,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 512358622,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 467497332,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 921642016,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "5300",
+        "reputation": 988942038058,
+        "rshares": 39800990412,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7347175730,
+        "voter": "taker"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10137266406870,
+        "rshares": 3321239318,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1014130741336,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 21154154829,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "500",
+        "reputation": 1407146536376,
+        "rshares": 488479148,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 23411380876,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23922770445,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23931515943,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 36590374553,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 232181512613,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206355094166,
+        "rshares": 8684796827,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1038813018744,
+        "rshares": 2766736973,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 51300024326,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23927381371,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23925693365,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23923074313,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23919971478,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 1377661260,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23916289883,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23914622519,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3016325652890,
+        "rshares": 117212658457,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794157244,
+        "rshares": 60010840,
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1368553119,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4012799516,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450498634848,
+        "rshares": 501320787,
+        "voter": "ricardoguthrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46947249,
+        "rshares": 61677203,
+        "voter": "diversesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 1625904484,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 8086511647,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58977371,
+        "voter": "jers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3195802403,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50027573,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 84334739073,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 530776888,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 58964015,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23908415458,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2976871874,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 7674971846,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "0",
+        "reputation": 8420918209808,
+        "rshares": 581734461,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 232089407,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118894339,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 1042033097,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 986609023336,
+        "rshares": 884230796,
+        "voter": "pollux.one"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 53608244,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 108931030653,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 647204061,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 3068876882,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 23554872251,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 44243439919,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 333300187103,
+        "rshares": -145412269,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 85242648206,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 56115613811,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 44213782610,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96725733083,
+        "rshares": 125198095,
+        "voter": "emeline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1379855528,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 100628450,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5175145781,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 3134124136,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50516543,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 92968218,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "5100",
+        "reputation": 414609406210,
+        "rshares": 1514029449,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 59746972,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 521874035,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78462337,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 130634157,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 139650528,
+        "voter": "danie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2471420,
+        "rshares": 155069498,
+        "voter": "silver-lyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2421364,
+        "rshares": 148768653,
+        "voter": "rnrador"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 136350043,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154135510,
+        "voter": "vlfl"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 5743108025054,
+    "beneficiaries": [],
+    "body": "<center>[![SteemyLogoHeadOnlyLarge00009.md.png](https://www.steemimg.com/images/2016/09/09/SteemyLogoHeadOnlyLarge00009.md.png)](https://www.steemimg.com/image/uGfn3)</center>\n\n# BETA AVAILABLE - Steemy for iOS and Android\n(*special shout out to @xeroc for his guiding hand during on-device tx signing implementation)\n\nWe're happy to announce that the first public beta of [Steemy](https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem) is available for iOS and Android!  If you'd like to participate in the beta, simply send an email to steemapp@gmail.com and which device (iOS or Android) so we can send you a beta invite.  We're utilizing hockeyapp.net (microsoft) to manage the beta. \n\n### Some important things about the beta:\n- *Use at your own risk - **period**.*  \n- Don't login with an account that has your life savings in STEEM. Why? Because this is a beta product!\n- Don't login with your password if you don't feel comfortable - you can still use the app without logging in. Key import options will be available in a future version.\n- Images you upload from your mobile device are publicly available to the world. \n- Image hosting providers could change during the beta and your images could be wiped out permanently without notice\n- We receive crash reports, analytics and other useful debugging information from HockeyApp\n- Once signed up, you will receive notifications to download all future versions of the beta\n- Are there known issues? Yup! Expect frequent beta versions with no announcement.\n- Hockey provides features to send us feedback directly. There's a 100% chance we'll get your feedback if you submit through hockey app or email us steemapp@gmail.com.\n\n# How You Can Help\nWe are developing at a feverishly-fast pace...as fast as two guys can who have day jobs and families to support.  If we could, we'd say adios to the day job and focus 100% on Steemy (that's a dream I have weekly).   That being said, the reality is that we are building this with our own time, energy and spare funds.   That makes us no less passionate or driven, but imposes real-world constraints on development.\n\nYou can help us by:\n1) Participating in the beta\n2) Giving us constructive feedback on crashes, design, and other app-specifics\n3) Of course, financial - any funds we receive via upvoting go directly to supporting our monthly server costs, red bull addiction, etc...\n\n# How to sign up for the beta\n- Email us at steemapp@gmail.com and tell us which device (iOS or Android) you want an invite for\n- Or, if you don't care who sees your email address, post a comment below and specify iOS or Android (or both)\n\n# What is Steemy?\n\n[Learn more about Steemy Here](https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem)",
+    "body_length": 2814,
+    "cashout_time": "2016-09-16T16:36:24",
+    "category": "steemit",
+    "children": 12,
+    "created": "2016-09-09T16:36:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemapp\",\"steemy\",\"steemmobile\"],\"users\":[\"xeroc\"],\"image\":[\"https://www.steemimg.com/images/2016/09/09/SteemyLogoHeadOnlyLarge00009.md.png\"],\"links\":[\"https://www.steemimg.com/image/uGfn3\",\"https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T17:25:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 59917201858253,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "334.065 HBD",
+    "percent_hbd": 10000,
+    "permlink": "ann-steemy-mobile-app-beta-available-for-ios-android",
+    "post_id": 1186151,
+    "promoted": "110.000 HBD",
+    "replies": [],
+    "root_title": "[ANN] Steemy Mobile App - Beta Available for iOS/Android",
+    "title": "[ANN] Steemy Mobile App - Beta Available for iOS/Android",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemapp/ann-steemy-mobile-app-beta-available-for-ios-android"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "300",
+        "reputation": 145171381514207,
+        "rshares": 1142978962513,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "6600",
+        "reputation": 8151223409709,
+        "rshares": 11448420090513,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 364395189896,
+        "voter": "berkah"
+      },
+      {
+        "percent": "4500",
+        "reputation": 16685610555705,
+        "rshares": 9508709074875,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "6600",
+        "reputation": 18336382560162,
+        "rshares": 123044549114,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099089014,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762354107,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697302029,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6014767671433,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53983143453,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660870860,
+        "voter": "mini"
+      },
+      {
+        "percent": "6600",
+        "reputation": 8717425187,
+        "rshares": 3922021405386,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213660123,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622713062,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967170547,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 289369412128,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288138648,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 84447696466,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 85956249019,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 596707334180,
+        "rshares": 3904328205,
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 8610771104,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 8927741511,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 38919363220,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1017842258,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1430747209,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 45074054027,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 14786864288,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37426402607,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10554741746,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12533000082,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48667206048,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1161275060,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 129179648054,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1487619435556,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "3600",
+        "reputation": 598181152117,
+        "rshares": 76156167058,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 256959483430,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 1263791020,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6053064579803,
+        "rshares": 24747939566,
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3296909724,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4441675640,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 58507331115,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 254327145,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 31283265272,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 466928201309,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 29863829277,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 15304296909,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147174247311,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 22929242435,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 531668806,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 464490860,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3655676496603,
+        "rshares": 10491849534,
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 541784069,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 2180586785,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2084249195,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1853818133,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 79019592212,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12446268254,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1432554908,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 748586302572,
+        "rshares": 381474126,
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 6226552994,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 139166640,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3217970214,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 97881305,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4192907964,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 67031181038,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 88204270,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 365818230,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 94953554,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 17983644771,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 216437643539,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27988491601746,
+        "rshares": 15964964625,
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6960449261,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 411306611,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 8137310213,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 1304825846,
+        "voter": "ace108"
+      },
+      {
+        "percent": "3500",
+        "reputation": 17698439393799,
+        "rshares": 10234168763,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 32596890764,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 268956346,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5595881940,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 901348001111,
+        "rshares": 2717408979,
+        "voter": "tjpezlo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 110407780,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5183764318,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 8747695392,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 879267346,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 27162065096,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5695919651,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8710090850955,
+        "rshares": 35670632627,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 2131121566,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 37382286273,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "1700",
+        "reputation": 10771708337101,
+        "rshares": 185560269563,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2400",
+        "reputation": 18027204457681,
+        "rshares": 7536188063,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 5776723480371,
+        "rshares": 89223422536,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 206355094166,
+        "rshares": 3354188843,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3500",
+        "reputation": 97845484474,
+        "rshares": 18393034294,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 910840493,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 7634458988,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 558857723,
+        "voter": "romancs"
+      },
+      {
+        "percent": "1700",
+        "reputation": 3016325652890,
+        "rshares": 21037601895,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 52521013,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 88063513040,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 435119516,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "3300",
+        "reputation": 1851205309677,
+        "rshares": 1215888442,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 10314553269,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 30784704904,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497045294796,
+        "rshares": 205842324,
+        "voter": "lordemau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013272646520,
+        "rshares": 451655907,
+        "voter": "galamirissa"
+      },
+      {
+        "percent": "3700",
+        "reputation": 4195733833721,
+        "rshares": 3083649499,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1390975245,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 62302798,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "3700",
+        "reputation": 730408370151,
+        "rshares": 205871498,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20118440636,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 6518572686,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 11188033553,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12107786940,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17390154,
+        "rshares": 57549944,
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 11636892671,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 420580334986,
+        "rshares": 73686270,
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5788018857372,
+        "rshares": 6017454300,
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 85421073,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3885757245,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908980564,
+        "rshares": 56694448,
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325308438373,
+        "rshares": 247142134,
+        "voter": "wizwom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225178513133,
+        "rshares": 57706367,
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11826084936,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 581299661,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2146314155,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24235309770,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 54576373,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119198828550,
+        "rshares": 147854463,
+        "voter": "inwoxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 893293727378,
+        "rshares": 331028196,
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 287801947294,
+        "rshares": 66598367,
+        "voter": "paketkita.net"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166028134,
+        "rshares": 50903939,
+        "voter": "augmentalized"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013164758868,
+        "rshares": 88328584,
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50245473,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 823907664,
+        "rshares": 50088578,
+        "voter": "sovpara"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>Continuing on from the previous tutorial style I though it would be useful to cover how an image evolves from the original RAW file to final finished and corrected file.</p>\n<h1>TLDR: The Finished Image VS the Original Side by Side</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_final_desaturate_crop1of1copy_small35b3a.jpg\" width=\"350\" height=\"525\"/><img src=\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_original1of1copy_small65a05.jpg\" width=\"350\" height=\"525\"/></p>\n<p><br></p>\n<p>The Final image is on the left and the original image is on the right. &nbsp;You can also see a large version of the final image at the bottom of the post.</p>\n<p>The original image is already pretty good and only needs very minor corrections for blemishes, colour balance etc. - using the right kind of lighting and lenses helps with this - as well as the model having good skin and makeup. &nbsp;</p>\n<p>The equipment used was my Nikon D800 camera with Nikon 85mm/1.8 lens shooting wide open.</p>\n<p>The model here is Gabriella Kennedy. She was backlit using the window behind her and a reflector held in front for front lighting and highlights in the eyes.</p>\n<p><br></p>\n<h1>Basic Skin Retouching in LR and Photoshop</h1>\n<p>I have used the spot removal tool in Lightroom to remove some minor blemishes which leaves me with the image below. &nbsp;I have described use of this in more detail in my <a href=\"https://steemit.com/photography/@thecryptofiend/quick-portrait-retouching-in-lightroom-tutorial\">previous tutorial</a>.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.02c2a5b.png\" width=\"403\" height=\"600\"/></p>\n<p>Basic skin retouching to remove blemishes in Photoshop.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.13d51a2.png\" width=\"604\" height=\"494\"/></p>\n<p>Larger version to show this.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.31730aa.png\" width=\"415\" height=\"600\"/></p>\n<p>The difference is subtle but I don't want to go too far and remove too much skin detail. &nbsp;I'm just using the spot healing brush tool as detailed in <a href=\"https://steemit.com/photography/@thecryptofiend/how-to-fix-damaged-photos-in-photoshop-tutorial-with-example-image\">my previous photo repair tutorial</a>. &nbsp;This photo is already pretty blemish free so doesn't need anything more advanced.</p>\n<h1>Temperature Adjustment</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.4780851.png\" width=\"627\" height=\"510\"/></p>\n<p>Detail to show the difference. &nbsp;The colour seems off. &nbsp;So I'm going to do a colour balance adjustment here.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3017.34.34ee0e5.png\" width=\"658\" height=\"592\"/></p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.06.448f1bc.png\" width=\"402\" height=\"600\"/></p>\n<p><br></p>\n<p>This is an improvement but it's not perfect. &nbsp;I might do more fine adjustment in Lightroom. &nbsp;</p>\n<h1>Background Fix</h1>\n<p>I also want to remove the window bar behind her. &nbsp;So on new layer (Cmd/Ctrl+Shift+N). &nbsp;I use the clone stamp tool to copy the background to the right over to bar. &nbsp;The clone stamp tool looks exactly like a stamp and is just below the healing brush. &nbsp;It directly clones an area without any intelligent modifications.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.06.580da7b.png\" width=\"404\" height=\"600\"/></p>\n<p>So the bar is now gone.</p>\n<p><br></p>\n<h1>Eye Veins</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.07.2447c66.png\" width=\"800\" height=\"582\"/></p>\n<p>OK I might do some very subtle work on the eye veins. &nbsp;Again I will create a new layer (Cmd/Ctrl+Shift+N) and zoom in and carefully use the healing brush to erase the veins.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.09.1331e69.png\" width=\"800\" height=\"412\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.12.32785f6.png\" width=\"800\" height=\"591\"/></p>\n<p>This is to show the difference to one of the eyes. &nbsp;This is a bit too much so I will enlarge the image and reduce the opacity of this layer to 50%.</p>\n<p>Here is the full size image. &nbsp;This looks about right.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.26.1667b29.png\" width=\"402\" height=\"600\"/></p>\n<p><br></p>\n<h1>Final Adjustments in Lightroom</h1>\n<p>I'll save this and open it up in Lightroom for final adjustments. Just before saving I couldn't resist doing another colour balance change but it is really unnecessary as I will fix the colours in Lightroom.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.40.26ef4e2.png\" width=\"800\" height=\"450\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3017.44.2804107.png\" width=\"249\" height=\"598\"/></p>\n<p>I have basically adjusted the exposure very slightly to +0.10 -</p>\n<p>I have also tried auto temperature which gave a more balanced result but the colours didn't look right to me. &nbsp;It set the Blue/Yellow slider to +13, so as a compromise I set it half way to +6 which looked better to my eye.</p>\n<p>I also reduced the saturation by -11 as it seemed a bit strong to me. &nbsp;The image is essentially finished apart from cropping.</p>\n<p><br></p>\n<h1>Final Image With and Without Cropping</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_final_desaturate1of1a10fd.jpg\" width=\"800\" height=\"1199\"/></p>\n<p>Uncropped</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_final_desaturate_crop1of16fa86.jpg\" width=\"800\" height=\"1199\"/></p>\n<p>Cropped. &nbsp;The difference is very subtle but I think the crop emphasises the eyes and face more.</p>\n<p><br></p>\n<h1>THE END</h1>\n<p>I hope you found this useful. &nbsp;I've tried to keep it short and to the point.</p>\n<p><em>You can see more of my work @thecryptofiend - hope you enjoy.</em></p>\n<p><br></p>\n<p><em>(Verification for me here: </em><a href=\"http://www.aapicture.com/about-me\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n</html>",
+    "body_length": 6459,
+    "cashout_time": "2016-09-06T17:37:54",
+    "category": "photography",
+    "children": 43,
+    "created": "2016-08-30T17:37:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"photo\",\"art\",\"portrait\",\"tutorial\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_final_desaturate_crop1of1copy_small35b3a.jpg\",\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_original1of1copy_small65a05.jpg\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.02c2a5b.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.13d51a2.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.31730aa.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.05.4780851.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3017.34.34ee0e5.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.06.448f1bc.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.06.580da7b.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.07.2447c66.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.09.1331e69.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.12.32785f6.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.26.1667b29.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3016.40.26ef4e2.png\",\"https://www.steemimg.com/images/2016/08/30/Screenshot2016-08-3017.44.2804107.png\",\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_final_desaturate1of1a10fd.jpg\",\"https://www.steemimg.com/images/2016/08/30/Arif_Akhtar_Gabby_EOAI_01_final_desaturate_crop1of16fa86.jpg\"],\"links\":[\"https://steemit.com/photography/@thecryptofiend/quick-portrait-retouching-in-lightroom-tutorial\",\"https://steemit.com/photography/@thecryptofiend/how-to-fix-damaged-photos-in-photoshop-tutorial-with-example-image\",\"http://www.aapicture.com/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T17:37:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 37254943686785,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "149.835 HBD",
+    "percent_hbd": 10000,
+    "permlink": "gabriella-evolution-of-an-image-from-camera-to-photoshop",
+    "post_id": 1058932,
+    "promoted": "105.000 HBD",
+    "replies": [],
+    "root_title": "Gabriella - Evolution of an Image from Camera to Photoshop",
+    "title": "Gabriella - Evolution of an Image from Camera to Photoshop",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/gabriella-evolution-of-an-image-from-camera-to-photoshop"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7495010337332,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2523904177403,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9252647153781,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1296112976792,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4784277362495,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2482945943,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3014584151,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 552785158,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43799327657,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1330487660,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 171031999,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1885285270301,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 419563659471,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 416354552576,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1351708732,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 855790498516,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2055704979,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 467134800208,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 256491273716,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 28439361652,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 10784680535,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 499954027,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 778419980,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230675142,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14477872115,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1742086972,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 98402672237,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419570142706,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 8004709205,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 522816057726,
+        "voter": "eeks"
+      },
+      {
+        "percent": "2500",
+        "reputation": 376960001789,
+        "rshares": 1343859847,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 40554406544,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 12536445913,
+        "voter": "richman"
+      },
+      {
+        "percent": "8500",
+        "reputation": 15755437221598,
+        "rshares": 10739891013,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 401475391,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 65052908305,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 573454674209,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1069602739,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2422856546,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 1771719538,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 11897881050,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 418467024,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 136026463310,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19580448502,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 15761970927,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 3092266644,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 793789219,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 187723859372,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4581391356317,
+        "rshares": 13009403929,
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 15684774188,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 487811010591,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 22486397242,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17202081611,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768666239960,
+        "rshares": 1305495845,
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 283436852,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52215058764,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 52069214000,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3232927263,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 119718774298,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 36129460943,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 14143846717,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24509325792,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6789406154,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 695682329,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 27459903552,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 714059708,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3963157928,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 161602864875,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14447261829,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 8114081577,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1580120581,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 55667692,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5463774640621,
+        "rshares": 11488203457,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 326674965647,
+        "rshares": 1082151932,
+        "voter": "ellemarieisme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10768254953,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 15506020391,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3096849833,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 434137550,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "0",
+        "reputation": 5183116321161,
+        "rshares": 119746601,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 68759547206,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 43237680067,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 43466091162,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1248165138944,
+        "rshares": 1815385960,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5555205600,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1814209936,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 4166810553,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3127668486,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817588332083,
+        "rshares": 2671487906,
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3409600765,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 63844065713,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 32751644582,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8247953463,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3179675687,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 6533428200,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3910363428,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 24136839653,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4998962120,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 102459876,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 8138183176,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 150576827786,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 416307493,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 38531566163,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1746700552,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 264090116,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 264485548,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 152908394,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153771698,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 87650457,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 4554249461,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "5100",
+        "reputation": 39913884914319,
+        "rshares": 18898704244,
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 15206306963,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20673496598,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 12832415845,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614612826,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 423540368,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1595576405,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 226906656,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 79374525,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 561340906,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 31069067075,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27617985016,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "400",
+        "reputation": 4063076365725,
+        "rshares": 231740791,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 6485983206,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 6811091902,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 3769304934,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7427088498,
+        "rshares": 202863662,
+        "voter": "tingaling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 24505337345,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1916586706,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 13830709571,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3602804983584,
+        "rshares": 6072529445,
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2398018957,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 64812629,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 3622022384,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4077073558,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 12939891296,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8452120116,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475920141542,
+        "rshares": 277301564,
+        "voter": "riosparada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 18325704376,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 150794650,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 72969875473,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5526973277,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 646479152,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 274399247,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 69952247,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 86508262746,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 78765183,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 4065065477,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1552653428,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58555241,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119774742,
+        "voter": "boatman"
+      },
+      {
+        "percent": "3000",
+        "reputation": 11490547563070,
+        "rshares": 6433728323,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 480394097022,
+        "rshares": 145045787,
+        "voter": "onlyvoluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 62634430,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 747928052,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1682814791,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 874797186,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 69572705,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 2547562690,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 75779499,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 3251697600,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5195519,
+        "rshares": 57468995,
+        "voter": "azz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2333445938,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33003383,
+        "rshares": 57040828,
+        "voter": "jag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25413691969,
+        "rshares": 181998576,
+        "voter": "greatness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 301500778,
+        "rshares": 4328069447,
+        "voter": "dangis"
+      },
+      {
+        "percent": "100",
+        "reputation": 837791549130,
+        "rshares": 765388461,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1156451912179,
+        "rshares": 753051714,
+        "voter": "rebelmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263967015,
+        "rshares": 54460450,
+        "voter": "cahuillan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66712446374,
+        "rshares": 257788197,
+        "voter": "reaction"
+      },
+      {
+        "percent": "9000",
+        "reputation": 3521631459073,
+        "rshares": 5964784161,
+        "voter": "betamusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 858642876,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16147984004,
+        "rshares": 56897224,
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9646100740,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15252823414,
+        "rshares": 143795526758,
+        "voter": "doudou252666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45942905295,
+        "rshares": 60248566,
+        "voter": "frankcorvus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 3265048133,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4006777698,
+        "rshares": 70719506,
+        "voter": "movietrailers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 334136065,
+        "voter": "bones261"
+      },
+      {
+        "percent": "2000",
+        "reputation": 26215514,
+        "rshares": 7618989830,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 608266930,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 860146710,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5309916699,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 61539766,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52243230,
+        "voter": "statsbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236614,
+        "voter": "newsbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51691783,
+        "voter": "crashoverride"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51675293,
+        "voter": "cartman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50944810,
+        "voter": "noriron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50540827,
+        "voter": "amstel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396872137163,
+        "rshares": 53927071,
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50376035,
+        "voter": "aries"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50363747,
+        "voter": "fulldisclosure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16681034811,
+        "rshares": 3500973452,
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 7743755308,
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": -603562034423,
+        "rshares": 55031763,
+        "voter": "dickbutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82494502,
+        "voter": "peeweeherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82358254,
+        "voter": "cowboycurtis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82338409,
+        "voter": "jambii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 164507026,
+        "voter": "coolcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 164417185,
+        "voter": "opall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 164299492,
+        "voter": "chair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 164168483,
+        "voter": "conky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163289940,
+        "voter": "dademurphy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159730645,
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159710416,
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162484741,
+        "voter": "chart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162407088,
+        "voter": "mrssteve"
+      },
+      {
+        "percent": "10000",
+        "reputation": 939050919776,
+        "rshares": 152824998,
+        "voter": "michaelstobiersk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73738695380,
+        "rshares": 162322644,
+        "voter": "towelie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161855386,
+        "voter": "philipjfry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158529766,
+        "voter": "shadowcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158523226,
+        "voter": "shadowproject"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161380845,
+        "voter": "mrhanky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161289448,
+        "voter": "popcornmachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160836235,
+        "voter": "wilburtsmythe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160470353,
+        "voter": "bitrx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156827319,
+        "voter": "sledgehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144014259,
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93238678837,
+        "rshares": 127768558,
+        "voter": "gamer00"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 111391460708814,
+    "beneficiaries": [],
+    "body": "North Korea is a perfect example on what happens to a society when strong censorship is implemented. The BigBrother censorship, the type of censorship that dictates what you are supposed to think and feel about jewish people, black people, asian people, white people, men, women, porn, Islam, what to eat and what not to eat, vaccines, history, words, music, libraries, Barbara Streisand, Terrorism, Murder, Abortion, Adoption, Foster-Care, Right & Wrong Education - the list is endless - and Now Youtube is implementing it as well, so it is time to plan the goodbye-party.\n\n<center>http://i.imgur.com/ERDcCe5.png</center>\n\nFinding a good alternative for youtube has been talked about among youtube-creators since it was bought by Google and completely changed into whatever you want to call it today, so I was happy to be introduced to the LBRY community a while back, they had this idea that video-hosting would be a good idea but failed at their initial business-plan which was Pay Per View, as we all should know by now - Pay Per View is a really hard market to conquer, and to be completely honest - I was against the model, because I don\u00b4t believe in PPV as something there is a demand for, so I went and told them my mind in their slack-group and left to focus on something else.\n\nSo when I just now heard that LBRY is actually going to develop a user-controlled de-centralized Youtube, of course I jumped in my chair because I believe there is a HUGE demand for a youtube without censorship. A youtube that is not controlled by studio-interests and Dictated what to show and not to show in the traffic-machine that suggest videos for users.\n\nIn the world today, documentary-makers who dedicate their life and integrity to producing non-political factual documentaries about topics such as the true Origin of the Jewish people vs the true Origin of todays Jewish people or how many of them actually was killed vs how many that has been documented to be killed during world war 2 are flagged as anti-Semites, right wing, nazis or racist - Same thing if a non political dedicated factual documentary creator makes a video about topics like: \"9/11 was an inside job\" - automatically flagged as a conspiracy theorist with a thin-foil-hat and forever sentenced to the weird side of youtube next to 300 other videos that suggest that 9/11 was not an inside job and that in fact everything the government say is true and beautiful - censorship.\n\n<h3>Big Brother hates mathematics, he absolutely hates it!</h3>\n\nIt has gone way too far now, what you can say and not say - what is allowed and what is not allowed to ask questions about. And let\u00b4s face it - Big Brother hates mathematics, if he could - he would ban it in schools worldwide and make sure nobody could add up or subtract because it is not in his interest that we - the people - learn.\n\nAnd obviously we are not alone wanting to be able to publish content without the fear of being censored by powerful authorities who give delegations to a hoard of censorship-bureaucrats  world wide who sit and flag all kinds of content their special interest does not agree with and make sure that the people walk in line the way they want people to walk in line.\n\n<h1>If you actually really saw a UFO, had your friend take a picture of it with you and the alien next to it - do you think anyone would see it? or believe it?</h1>\n\nOne of the basic censorships they do is to laugh and label everyone who has seen anything that can question the power to be - for example a stronger power that maybe dwell not so far away from us.\n\nJust think about it - You and your friends walk down the road, and you meet a big alien with a space-ship that use complex technology that does not exist here on earth - he tells you that he is able to cause all kinds of cool effects on the earth with his knowledge and technology - and since he is in a good mood he shows you a few examples of how advanced his civilisation is, and also tells you that they are many more then those who live on earth. Imagine if this really happen to you  and your friends - you even documented it on two cameras and even sound-recorded the whole event, gave the alien a hug - waved goodbye - high-fived your friends and started uploading content to facebook, youtube, instagram, soundcloud and in excitement started blogging about it - would anyone really believe you?\n\n<h1>All we want to do is to talk about what we are not allowed to talk about, because that is where the skeletons in the closet are hidden.</h1>\n\nSo, after the <a href=\"http://observer.com/2016/09/youtube-phillyd-eric-schiffer/\"> recent youtube controversy about the new censorship-rules</a>  a lot of people are sad and depressed, because Youtube has reduced so many of us into clowns with no circus already, so when  <a href=\"https://lbry.io/press/500k-fundraising-round-pillar-vc.md\">LBRY Announced $500K Raised to Build the First Community-Controlled YouTube Alternative</a> I feel very optimistic again about the future, maybe the truth, the whole truth and nothing but the truth - once again can flourish on this earth and the institutions of liars shamefully sent home packing as the old world truly is soaking in the blood of corruption, the new world which we are creating as communities should always embrace free speech and freedom of information and protect those rights. Free speech and freedom of information is not a ticket to become an asshole or a full time troll which in every case of course is the other side of the debate. \n\nBig Brother Censorship must end - and the way to end it is by Little Brother(s) start telling the whole world every single thing they know about Big Brother, expose all those politicians who have ripped off the people and supported special interests and replace them with people who have not been and will not allow themselves to be corrupted by greed or fear. \n\nAs we all know, good men have died for the rights to free speech, others has died for bringing true stories out in public about knowledge that is forbidden by anyone to know anything about.\n\nWe as human beings and technocrats are the ones who can change the world, and we must change the world - there are too many numbers in too many affairs that does not add up, we know that their game is rigged and it is time for revolution. \n\nThe one right most people do know they have, is the right to remain silent - everything they say can and will be used against you in the court of law. That is the sad majority of the world now unfortunately. The silent partners.\n\nI love you all - Freedom Fighters, Keyboard Warriors - Truthers!! Don\u00b4t give up just yet!\n\n---\n<center><a href=\"http://steemspeak.com/\"><img src=\"http://i.imgur.com/gzDNmHq.png\"></a></center>\n---",
+    "body_length": 6748,
+    "cashout_time": "2016-09-15T00:00:00",
+    "category": "anarchy",
+    "children": 29,
+    "created": "2016-09-08T00:00:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"anarchy\",\"censorship\",\"youtube\",\"media\",\"bigbrother\"],\"image\":[\"http://i.imgur.com/ERDcCe5.png\",\"http://i.imgur.com/gzDNmHq.png\"],\"links\":[\"http://observer.com/2016/09/youtube-phillyd-eric-schiffer/\",\"https://lbry.io/press/500k-fundraising-round-pillar-vc.md\",\"http://steemspeak.com/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T00:00:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34259010824854,
+    "parent_author": "",
+    "parent_permlink": "anarchy",
+    "pending_payout_value": "119.325 HBD",
+    "percent_hbd": 10000,
+    "permlink": "time-to-talk-about-our-tube-the-decentralization-of-youtube",
+    "post_id": 1165910,
+    "promoted": "101.573 HBD",
+    "replies": [],
+    "root_title": "Time to talk about - \"Our Tube\" - The decentralization of YouTube",
+    "title": "Time to talk about - \"Our Tube\" - The decentralization of YouTube",
+    "total_payout_value": "0.000 HBD",
+    "url": "/anarchy/@fyrstikken/time-to-talk-about-our-tube-the-decentralization-of-youtube"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28337481495132,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 605054202636,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 375797501706,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6899657717718,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5875425725245,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2103735705580,
+        "voter": "hr1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 36749432321730,
+        "rshares": 197350870235,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4823041872577,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2482489693,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1689744353709,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3013973227,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 552727348,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43722960528,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1330267679,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 171024455,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 200631444608,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1423891958,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 876459346701,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 118179862461,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8846955965,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2152310689,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7948252496,
+        "voter": "supergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 499903743,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 775810627,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230665087,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24794631524,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 16251020055,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19597409080,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 85526339302,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 10083460529,
+        "voter": "makishart"
+      },
+      {
+        "percent": "6500",
+        "reputation": 14073457536993,
+        "rshares": 92433605489,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12594877551576,
+        "rshares": 74987247876,
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 75795031193,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "5100",
+        "reputation": 4931834878069,
+        "rshares": 10071098316,
+        "voter": "fkn"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": 487271558,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "9900",
+        "reputation": 376960001789,
+        "rshares": 5369463575,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 28340759824,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "4700",
+        "reputation": 5216776171708,
+        "rshares": 49448005933,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "5100",
+        "reputation": 5414208804644,
+        "rshares": 13247495874,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "3800",
+        "reputation": 15755437221598,
+        "rshares": 4519322665,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 144465949299,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4611433093423,
+        "rshares": 26516736386,
+        "voter": "tmendieta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 490443153,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 67847295588,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1069348096,
+        "voter": "murh"
+      },
+      {
+        "percent": "6000",
+        "reputation": 1598588545490,
+        "rshares": 9544167563,
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 41167926762,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 4451341567,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": 380437107,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 258363528866,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 377834429632,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3804349938696,
+        "rshares": 33524923089,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5092263832878,
+        "rshares": 15132186921,
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 51960349384,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 208799779463,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4477345730,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13353689520,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 33785196884,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1490503275679,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 43185482362,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 5339578403,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2882668559,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 6494753195,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 536461338,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 39865567060,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4525901650,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 50785197295,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "2500",
+        "reputation": 17405459234693,
+        "rshares": 22535574872,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 248645032085,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 4286578655,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 117261767025,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 4524443148,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 4768148761,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 874985559,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 120365648521,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 792008422388,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "5100",
+        "reputation": 19111656178138,
+        "rshares": 30376512860,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 4223912868,
+        "voter": "owdy"
+      },
+      {
+        "percent": "5100",
+        "reputation": 3891722,
+        "rshares": 237022986,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "5100",
+        "reputation": 9142611234,
+        "rshares": 265901386,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5100",
+        "reputation": 3871042,
+        "rshares": 243759726,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 151763700815,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325589414514,
+        "rshares": 452069359,
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1473450451,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 90756765,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 16453997687,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 13294445014,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3758408519,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 25328130017,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 11346983489,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 36334866498,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 3150621438,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 11534871172,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 235512684,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 448946992,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 43462674468,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1248165138944,
+        "rshares": 1815380313,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7443194536,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 96640276,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 130211659731,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3710606394,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "3700",
+        "reputation": 3167747223142,
+        "rshares": 11106355045,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3175094870,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3353659009,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64027340659,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 7620147467,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 4245145393,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3143598968,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 16426451743,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182764669318,
+        "voter": "jl777"
+      },
+      {
+        "percent": "5100",
+        "reputation": 10519849768972,
+        "rshares": 8159179596,
+        "voter": "positive"
+      },
+      {
+        "percent": "5000",
+        "reputation": 2997941608767,
+        "rshares": 6111284001,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 764587130,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15575907279,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639009474,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 24863078932,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1711275100,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2242556592,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "5100",
+        "reputation": 147425730,
+        "rshares": 268949193,
+        "voter": "fnait"
+      },
+      {
+        "percent": "5100",
+        "reputation": 3720753029,
+        "rshares": 245394332,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 149502446,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 184489646,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 20170588933,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 123114635,
+        "rshares": 110626149,
+        "voter": "bluebell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5475281216,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 122233144003,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 70376481208,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7871166550,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 60565253,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 61700262,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 24430920885,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24407155133,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24416426858,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "3000",
+        "reputation": 97328985094,
+        "rshares": 1735770144,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 996049,
+        "rshares": 63747178,
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 3199941620,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24412199287,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24410732703,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24408329032,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24405573752,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "2000",
+        "reputation": 2021353867281,
+        "rshares": 1656951191,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24402026987,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24400841139,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 81338740,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1376414529,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 19318370958,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 86892789274,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12781131185,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1232895758,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 55022014,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 192175071324,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 62174144,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 58453204,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8867300566,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439786891,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 11751323553,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 57914427,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 20318867928,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 56535984,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 71228043,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 60730988,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1802712014,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51199976,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 11813114611,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56563243,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 57391432,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 565879902,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35808965090,
+        "rshares": 71740798,
+        "voter": "hhcwebmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 55393797,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387773,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 626012702821,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5805302022,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 11978540048,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55399493,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56575537,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56570509,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387660,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8470010325,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 7163167644,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24395131330,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310309073633,
+        "rshares": 1908971109,
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 71221451964,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 46612959839,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 8161550832,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 18579446047,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1401285964,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4503423419,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "5800",
+        "reputation": 793368183438,
+        "rshares": 25379964093,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54999739,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52425992,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1970534065,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8298658614343,
+        "rshares": 7834748327,
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1572045156,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 4679890064,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 26082174893,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18873434262,
+        "rshares": 59542406,
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 84026579,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 24033874515,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55085378,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 6881062319,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 53966805,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53613607,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269774223718,
+        "rshares": 803386637,
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52171620,
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54362089,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6671012929,
+        "rshares": 55979441,
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54019345,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54017499,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824657,
+        "rshares": 54977174,
+        "voter": "optimus-prime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1386590598,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16147984004,
+        "rshares": 56897224,
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52545761,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 2941923052,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 158636223091,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53331040,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53324520,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318865,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1841985827,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52988378,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 5170755904,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 326611087837,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59390432273,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351488360313,
+        "rshares": 179868865,
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039974,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4453859197,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35362050236,
+        "rshares": 63407335,
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 51838673,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1951354892,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 354988640,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 1881146859,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 106836853,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51141851,
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1560287283,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 846735133,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 7899939563,
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76019801,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157643687,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5082960080,
+        "rshares": 159918764,
+        "voter": "tanemahuta"
+      },
+      {
+        "percent": "10000",
+        "reputation": -373198720,
+        "rshares": 155753958,
+        "voter": "mityay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1696431355721,
+        "rshares": 158786091,
+        "voter": "jennane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158642800,
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158057595,
+        "voter": "sdc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161205518,
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161089804,
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160973134,
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160957729,
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160900665,
+        "voter": "digitalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160835930,
+        "voter": "skrillex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 157654556,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160789982,
+        "voter": "jack.johnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116818017503,
+        "rshares": 154109909,
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1478840966,
+        "rshares": 156821466,
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 150483032,
+        "voter": "serikus"
+      }
+    ],
+    "author": "churdtzu",
+    "author_reputation": 34935156153627,
+    "beneficiaries": [],
+    "body": "![jumpingpeoplesteemitanarchyfaba6.jpg](https://www.steemimg.com/images/2016/09/06/jumpingpeoplesteemitanarchyfaba6.jpg)\n\nFor many of us, Steemit has already changed so much - the way we navigate the web, the way we think about money, and for a fortunate committed few, it's even changed their professions. However, the change that I expect from this model goes even deeper. It's possible that Steemit, and descendent technologies, may play a part in creating a voluntary world, a stateless world, in which everyone who takes money from someone, or puts someone in a cage without their consent, or orders such acts, will be seen and treated as a criminal. There are several ways in which Steemit can aid this cause. Let's start with the most important - the conversation.\n\n# It changes the way we talk\n![argument288ba5.jpg](https://www.steemimg.com/images/2016/09/06/argument288ba5.jpg)\n## The problem with voluntaryist argumentation\nMany of you might have noticed, and even been a party to, hard-line conversations about anarchy, in which the voluntaryist proceeds to take the words of the other party, and question them about some perceived inconsistency in their beliefs, attempting to lead them through a Socratic dialogue, in order to bring them to accept the truth - that the other party is wrong - very, very wrong. You also might have noticed (as I eventually noticed, after years of banging my head on walls) that this technique almost never works.\n\nOf course, the reason that it doesn't work, is because people have a need to feel that they're being understood, that their concerns are heard, that their thoughts are valid. In brief, they need to feel like people. If you don't treat someone like a person - unless you're talking to an exceptionally patient person - you're unlikely to receive a personable response.\n## An oasis\nThe comment section on YouTube is a running joke. Facebook discussions descend into dirtslinging, strawmen and threats. You may wade through many racist and sexist comments before you find something that is truly valuable information, and even then it may be tainted with aggression. In contrast, Steemit's comments sections seem like a desert oasis - all but filled with calm discussion, respect, insight, or at the very least, positivity. Surely, this is a place where one can have a constructive conversation about controversial topics.\n## The incentive to be good\nI have noticed over these few short months, the way that Steemit has changed the way that I interact with people, especially online - on Steemit and other social networks. I've found myself a few times, even as I'm about to make a statement which is mildly passive-aggressive, thinking \"Hold on - is this something I would write if my reputation were on the line? If not, maybe I shouldn't write it.\" Even when I'm going to give someone some piercing criticism, which, if presented in the wrong way, may seem a condemnation, I can find ways to demonstrate empathy, such as compliments or other niceties.\n\nIt may sound like an unfortunate description of humanity (or of myself) to say it, but when our bank balances and reputations are on the line in every moment, we can find ways to communicate more kindly, and therefore, more fluidly, with the people we interact with.\n## Commitment and consistency\nIn Cialdini's famous and excellent book, [Influence: The psychology of persuasion](http://amzn.to/2c5z38T) he describes how, when people make a commitment to something, they are more likely to see it as part of their identity, and strive to live up to that identity.\n\nWhen people are kind to each other, respectful, and even open-minded on Steemit, it's not just that they're pretending to be nice. By acting nicer, they become nicer. By acting more open-minded, they become more open-minded.\n## The quality of our ideas\nIf the ideas of voluntaryism are as good as we believe they are, then surely a place like Steemit, where people are strongly encouraged to be respectful, considerate, empathetic and even open-minded, would be an ideal place to discuss them. If it turns out that our ideas are not as good as we think they are, then it gives us the perfect medium to discover something even better. That is beautiful.\n# Tax-free and shameless\n![breakchains10ab9.png](https://www.steemimg.com/images/2016/09/06/breakchains10ab9.png)\nIn many developed countries, taxes are generally seen as legitimate and necessary, and people claim to be proud of paying their taxes - sometimes because they truly believe it, and sometimes because they don't want to face the fact that they have been forced into an elaborate con, from which they have no apparent escape.\u007f\n\nBut what if they did have an escape? What if, instead of being paid as an employee, having their income taxes automatically deducted from their pay, they were paid directly. What if thousands or millions of people were making income, or making a living, this way, and decided to openly flout the tax authority, publicly, knowing that it wouldn't have the resources to pursue any more than a small fraction of the cases?\n\nObviously, that would damage the appearance of legitimacy of the state, and also the perception of omniscience and omnipotence that its proponents tend to ascribe to it.\n# Development of cryptoanarchic solutions\n>\"Unlike the communities traditionally associated with the word 'anarchy', in a crypto-anarchy the government is not temporarily destroyed but permanently forbidden and permanently unnecessary. It\u2019s a community where the threat of violence is impotent because violence is impossible, and violence is impossible because its participants cannot be linked to their true names or physical locations.\"\n> - Wei Dai\n\nWe all know that Steemit/Steem is much more accessible than virtually any other cryptocurrency, being based around a style of platform which more than one billion people are already familiar with. That's pretty cool, and that means that more money will flow into cryptocurrency, meaning more attention, and thus even more development for similar technologies.\n\nMore development in cryptocurrency means more methods to control money, and other forms of information, publicly, privately, or anonymously, without governments being able to do anything about it.\n# Conclusion\nSteemit is an important step, a continuation of the snowball effect of cryptocurrency, leading us to a voluntary, cryptoanarchic future, full of wonders we have not yet imagined, and degrees of freedom as yet unforeseeable. Boldly we take our pens, pads, keyboards and wallets, building a highway to a world where concepts are our language and our tools, but never our weapons, where the purity of ideas is worth fighting for, but never worth fighting with.\n\n---\n\n# About me\n\n[![kurt robinson in the mountains of puebla](https://www.steemimg.com/images/2016/08/26/pictureofmecroppedbdb8d.md.jpg)](https://www.steemimg.com/image/gsqzK)\n\nMy name is Kurt Robinson. I grew up in Australia, but now I live in Guadalajara, Jalisco. I write interesting things about voluntaryism, futurism, science fiction, travelling Latin America, and psychedelics. Remember to press follow so you can stay up to date with all the cool shit I post, and follow our podcast where we talk about crazy ideas for open-minded people, here: @paradise-paradox, and like us on Facebook here - [The Paradise Paradox](https://www.facebook.com/theparadiseparadox/)\n\n# Some other cool posts\n\nHere are some other posts of mine to check out:\n\n[Freedom seekers' song: \"Freedom on the beach (To Acapulco Part 2)\"](https://steemit.com/music/@churdtzu/freedom-seekers-song-freedom-on-the-beach-to-acapulco-part-2)\n\n[Everyone deserves truth; everyone deserves compassion](https://steemit.com/life/@churdtzu/everyone-deserves-truth-everyone-deserves-compassion)\n\n[Impossible! A conversation with a statist about starting a business](https://steemit.com/anarchism/@churdtzu/impossible-a-conversation-with-a-statist-about-starting-a-business)\n\n[Freedom trumps fear: Everything you do is an act of liberty](https://steemit.com/freedom/@churdtzu/freedom-trumps-fear-everything-you-do-is-an-act-of-liberty)",
+    "body_length": 8141,
+    "cashout_time": "2016-09-13T22:36:27",
+    "category": "steemit",
+    "children": 28,
+    "created": "2016-09-06T22:36:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"anarchism\",\"anarchy\",\"bitcoin\",\"blockchain\"],\"users\":[\"paradise-paradox\"],\"image\":[\"https://www.steemimg.com/images/2016/09/06/jumpingpeoplesteemitanarchyfaba6.jpg\",\"https://www.steemimg.com/images/2016/09/06/argument288ba5.jpg\",\"https://www.steemimg.com/images/2016/09/06/breakchains10ab9.png\",\"https://www.steemimg.com/images/2016/08/26/pictureofmecroppedbdb8d.md.jpg\"],\"links\":[\"http://amzn.to/2c5z38T\",\"https://www.steemimg.com/image/gsqzK\",\"https://www.facebook.com/theparadiseparadox/\",\"https://steemit.com/music/@churdtzu/freedom-seekers-song-freedom-on-the-beach-to-acapulco-part-2\",\"https://steemit.com/life/@churdtzu/everyone-deserves-truth-everyone-deserves-compassion\",\"https://steemit.com/anarchism/@churdtzu/impossible-a-conversation-with-a-statist-about-starting-a-business\",\"https://steemit.com/freedom/@churdtzu/freedom-trumps-fear-everything-you-do-is-an-act-of-liberty\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T22:50:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60135241680958,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "311.891 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemit-will-make-the-world-an-anarchic-voluntary-society",
+    "post_id": 1152348,
+    "promoted": "101.100 HBD",
+    "replies": [],
+    "root_title": "Steemit will make the world an anarchic, voluntary society",
+    "title": "Steemit will make the world an anarchic, voluntary society",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@churdtzu/steemit-will-make-the-world-an-anarchic-voluntary-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 32455846463901,
+        "rshares": 636650937593,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2222223261106,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6354361142613,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3100095944,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3763655895,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690429176,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54156746043,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661372715,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213687824,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4512972751283,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "0",
+        "reputation": 83941319998,
+        "rshares": 114482134346,
+        "voter": "smooth.witness"
+      },
+      {
+        "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"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 96966639395,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432524983,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 204696463721,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 48813685424,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "3900",
+        "reputation": 598181152117,
+        "rshares": 86347513299,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 54492837940,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 320412905,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 15188383397,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 37017484438,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 9003560871,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1254384994,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 299816166,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2503443057,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 39260815990,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7734375234,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3800",
+        "reputation": 17698439393799,
+        "rshares": 12077024248,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 6340430376,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2865139821445,
+        "rshares": 7012331246,
+        "voter": "lukmarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 3689933012,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "3700",
+        "reputation": 10771708337101,
+        "rshares": 439152462157,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 46397054584,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "2400",
+        "reputation": 18027204457681,
+        "rshares": 7646986289,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 5776723480371,
+        "rshares": 102612381504,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3840496066,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 892119536265,
+        "rshares": 1153305624,
+        "voter": "mama-steem"
+      },
+      {
+        "percent": "3800",
+        "reputation": 97845484474,
+        "rshares": 21261822926,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 144042539115,
+        "rshares": 604216404,
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "3800",
+        "reputation": 3016325652890,
+        "rshares": 52782383311,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4437884870,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 43344608886,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "3900",
+        "reputation": 4195733833721,
+        "rshares": 3574511545,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 4827568973,
+        "voter": "melek"
+      },
+      {
+        "percent": "3900",
+        "reputation": 730408370151,
+        "rshares": 235453627,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 624346748,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 219406056989,
+        "rshares": 72642145,
+        "voter": "discernente"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250756708358,
+        "rshares": 61202454,
+        "voter": "plotbot2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 74117002,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16065524765,
+        "rshares": 52111731,
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 249534502,
+        "voter": "letstalkliberty"
+      }
+    ],
+    "author": "claudiop63",
+    "author_reputation": 8079179261851,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Diamond_cutter._Amsterdam._2012.jpg/517px-Diamond_cutter._Amsterdam._2012.jpg\" width=\"517\" height=\"480\"/></p>\n<p><a href=\"https://commons.wikimedia.org/wiki/File:Diamond_cutter._Amsterdam._2012.jpg\">Image Credit</a></p>\n<p>&nbsp;This post is based on a presentation I gave at the United Nations' Office in Geneva in 2011, available <a href=\"http://fr.slideshare.net/claudioparrinello/semantic-knowledge-management-and-technology-transfer\">here</a>.&nbsp;&nbsp;&nbsp;</p>\n<p>Most successful and innovative&nbsp;organizations worldwide&nbsp;are knowledge-intensive organizations. Professional knowledge, in particular technical know-how, is a key asset for such organizations as their success depends to a large extent on their ability to create, manage and transfer knowledge efficiently. Let us call this process <strong>knowledge valorisation.</strong> &nbsp;</p>\n<p>I review below some of the key enablers of knowledge valorisation&nbsp;by sketching a sort of road map.&nbsp;</p>\n<h1>Step 1</h1>\n<p>&nbsp;The first step shown below&nbsp;might look trivial, but I believe that most organizations (in particular those which are in the process of restructuring, M&amp;A, etc)&nbsp;might find it worthwhile.&nbsp;</p>\n<p><img src=\"https://s17.postimg.org/ueoc9n77j/road.png\" width=\"959\" height=\"545\"/></p>\n<p>In other words,&nbsp;the first challenge is to make sure that knowledge is properly tracked and stored, especially if the organization is very large.&nbsp; If knowledge turns out to be mostly in <strong>implicit</strong> form, the organization runs a significant risk to lose knowledge and performance as a result of staff turnover, as when the key people leave or retire, nobody may be able to run some critical processes. In addition, as implicit knowledge is difficult to share, if explicit knowledge on key processes is not available, it is difficult for new recruits to become quickly operational. &nbsp;</p>\n<h1><strong>Step 2</strong>&nbsp;</h1>\n<p>If a large body of documents spanning the organizational knowledge landscape is available in electronic format, it is appropriate to set up and use a formal knowledge classification scheme. The most powerful approach to knowledge classification, following the principles of semantics, is based on two components: &nbsp;</p>\n<ul>\n  <li><strong>Taxonomies</strong>, i.e. multi-level, tree-like classification frameworks. An example of a comprehensive, well-known taxonomy is Linnaeus\u2019 classification scheme for nature as divided into three kingdoms: mineral, vegetable and animal. Linnaeus used five levels: class, order, genus, species, and variety.&nbsp;Advanced knowledge management might call for the definition of multiple taxonomies, as shown in the example below. &nbsp;</li>\n</ul>\n<p><br></p>\n<ul>\n  <li><strong>Classification rules</strong>, i.e. a set of criteria to place each document in one (or more) positions in the taxonomy. Rules are typically based on specific properties of the document. Simple classification rules are based on keywords and other metadata, e.g. if a document has \u201cJava\u201d as a keyword, it is likely to be classified under a \u201ccomputer science\u201d branch of a technological taxonomy. &nbsp;</li>\n</ul>\n<p>The above elements, taken as a whole constitute an <strong>ontology</strong>, i.e. a detailed, potentially exhaustive description of a knowledge domain in terms of a collection of data records, together with their metadata/attributes, organized and classified in one or more taxonomy-based \u201ccatalogues\u201d. &nbsp;</p>\n<p><img src=\"https://s13.postimg.org/jbvf5lv93/semantics.png\" width=\"1006\" height=\"522\"/></p>\n<p>&nbsp;The pictures above refer to&nbsp;an ontology which is relevant to a public research organization which regards technology transfer as part of its mission.&nbsp;Such organizations feel strong pressure by their funding bodies to demonstrate the positive socio-economic impact of public research on society through concrete examples. In order to meet such demands, they must define and implement a proactive and cost-effective Knowledge &amp; Technology Transfer (KTT) strategy. Then it is essential that all the knowledge assets in the organization are identified (technologies, general know-how, training capabilities) and as many KTT channels (licensing of intellectual property, joint R&amp;D with industry, training, people mobility \u2026) as possible are enabled. &nbsp;</p>\n<h1><strong>Step 3</strong>&nbsp;</h1>\n<p>At this point, a classification engine is used:&nbsp;</p>\n<p><img src=\"https://s15.postimg.org/fk988pp6j/classify.png\" width=\"971\" height=\"558\"/></p>\n<p>&nbsp;The ultimate deliverable is a context-sensitive, searchable knowledge catalogue&nbsp; &nbsp;</p>\n<p><br></p>\n<p><img src=\"https://s22.postimg.org/w8zb4dy35/catalogue.png\" width=\"1065\" height=\"616\"/></p>\n<p>&nbsp;</p>\n<h1><strong>Informal Summary</strong>&nbsp;</h1>\n<p>All the tools described above aim at avoiding that in a large organization people reinvent the wheel all the time, just out of lack of knowledge of what their colleagues are working/have worked on. &nbsp;</p>\n<p>Moreover, using the wheel analogy: if you are into technology transfer, such tools will help&nbsp;you show your \"wheel\" outside your organization and identify whoever could use it to make an innovative car!&nbsp;</p>\n<p>Please note that some older comments to this post refer to (very different) content which has now been removed. Please disregard them.&nbsp;&nbsp;</p>\n</html>",
+    "body_length": 5526,
+    "cashout_time": "2016-09-08T22:28:42",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-01T22:28:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"science\",\"techreview\",\"knowledge-management\",\"tech-transfer\"],\"image\":[\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Diamond_cutter._Amsterdam._2012.jpg/517px-Diamond_cutter._Amsterdam._2012.jpg\",\"https://s17.postimg.org/ueoc9n77j/road.png\",\"https://s13.postimg.org/jbvf5lv93/semantics.png\",\"https://s15.postimg.org/fk988pp6j/classify.png\",\"https://s22.postimg.org/w8zb4dy35/catalogue.png\"],\"links\":[\"https://commons.wikimedia.org/wiki/File:Diamond_cutter._Amsterdam._2012.jpg\",\"http://fr.slideshare.net/claudioparrinello/semantic-knowledge-management-and-technology-transfer\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T12:21:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15273611827178,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "28.723 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steembets-bet-for-free-by-upvoting-and-win-steem-dollars-inauguration-bet-clinton-vs-trump",
+    "post_id": 1091240,
+    "promoted": "101.010 HBD",
+    "replies": [],
+    "root_title": "A Road Map to Knowledge Valorization.",
+    "title": "A Road Map to Knowledge Valorization.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@claudiop63/steembets-bet-for-free-by-upvoting-and-win-steem-dollars-inauguration-bet-clinton-vs-trump"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 83122046,
+        "rshares": 17252532938558,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 563544646717,
+        "voter": "barrie"
+      },
+      {
+        "percent": "2000",
+        "reputation": 32455846463901,
+        "rshares": 6315235154015,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 347118013623,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2030615881329,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1362045275157,
+        "voter": "moment"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1582895535608,
+        "rshares": 74794629682,
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 18199948682777,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 5132668112897,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3158922122495,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2013866692939,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 452138762783,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 122063056602,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5549073747882,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1130543463912,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1078421331456,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 973319882060,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 317991297021,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4390790041307,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104099771,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1703029168107,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3768755382,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684005121,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54832970366,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663301832,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213794688,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1761824676683,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 77621760528,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 419831065181,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 525849575920,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2729895305560,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1388728405,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250001478305,
+        "rshares": 108221038447,
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 856088750266,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 115621134894,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2105322267,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 83941319998,
+        "rshares": 1167734251538,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 930994265690,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 29435510701,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 10313567606,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2369366055877,
+        "rshares": 74144086470,
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624994115,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "4400",
+        "reputation": 268787058152,
+        "rshares": 11954581297,
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973117194,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7857031052,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "9800",
+        "reputation": 6977251504339,
+        "rshares": 22930428594,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 821520527371,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1268313655180,
+        "rshares": 45098187494,
+        "voter": "steem-samiam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288353305,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23782884498,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23508133721,
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 156356235250,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1665762057,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13943466836,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1339573287588,
+        "rshares": 9981237712,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 80544628435,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 79788923294,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9309121573,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2917439250,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3828884985898,
+        "rshares": 60077820020,
+        "voter": "lovelace"
+      },
+      {
+        "percent": "7681",
+        "reputation": 12382143533351,
+        "rshares": 433286620876,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 18188509022,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 447093363,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5012814614,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 29025548799,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5216776171708,
+        "rshares": 51511112084,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 26767597085,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 23926167464,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 11007893154,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 713096374287,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "600",
+        "reputation": 15755437221598,
+        "rshares": 1214499527,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 142837633946,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7603057313,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 47384537807,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 32873370739,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 210251560697,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 446299268,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 65065948062,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 634222963816,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 6615030220,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2316584245,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 39904848284,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 989996166543,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 58352742195,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 35110203447,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7574468910,
+        "rshares": 8443022788,
+        "voter": "badger311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8738727767,
+        "voter": "badger313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8702230036,
+        "voter": "badger312"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9001297583,
+        "voter": "badger316"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9123216648,
+        "voter": "badger319"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9030881970,
+        "voter": "badger3101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8483805402,
+        "voter": "badger3111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9045984338,
+        "voter": "badger3121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8654403079,
+        "voter": "badger3131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8762447633,
+        "voter": "badger3141"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8738856222,
+        "voter": "badger3171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8546274352,
+        "voter": "badger3181"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9132638993,
+        "voter": "badger3191"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8546111243,
+        "voter": "badger3112"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8887325560,
+        "voter": "badger3132"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8760496163,
+        "voter": "badger3162"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8991568485,
+        "voter": "badger3113"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8642210535,
+        "voter": "badger3123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8766005376,
+        "voter": "badger3133"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9117652407,
+        "voter": "badger3153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8796092252,
+        "voter": "badger3163"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8826632166,
+        "voter": "badger3193"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8776220485,
+        "voter": "badger3114"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8685065534,
+        "voter": "badger3124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8587877805,
+        "voter": "badger3144"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8509649715,
+        "voter": "badger3154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8376968178,
+        "voter": "badger3164"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8709012551,
+        "voter": "badger3174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8989471544,
+        "voter": "badger3194"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8885761375,
+        "voter": "badger3105"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8829258163,
+        "voter": "badger3135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8423190788,
+        "voter": "badger3145"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9007115204,
+        "voter": "badger3155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8699822976,
+        "voter": "badger3175"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8475866437,
+        "voter": "badger3195"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8117642153,
+        "voter": "badger3106"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8936995703,
+        "voter": "badger3116"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8984990351,
+        "voter": "badger3126"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8611633869,
+        "voter": "badger3136"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8257944656,
+        "voter": "badger3146"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8489790477,
+        "voter": "badger3156"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8705807126,
+        "voter": "badger3166"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8620566580,
+        "voter": "badger3176"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8755292907,
+        "voter": "badger3186"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8791096935,
+        "voter": "badger3196"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8718533747,
+        "voter": "badger3107"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8470685116,
+        "voter": "badger315"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8967138703,
+        "voter": "badger318"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9016793543,
+        "voter": "badger3151"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8688906443,
+        "voter": "badger3161"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8948374029,
+        "voter": "badger3122"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8885133976,
+        "voter": "badger3142"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9108283408,
+        "voter": "badger3152"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8410991139,
+        "voter": "badger3172"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8924725447,
+        "voter": "badger3182"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8679951369,
+        "voter": "badger3192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8594490108,
+        "voter": "badger3143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8857724326,
+        "voter": "badger3173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8564073808,
+        "voter": "badger3104"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8275966513,
+        "voter": "badger3134"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8683148373,
+        "voter": "badger3184"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8620185227,
+        "voter": "badger3115"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9093630617,
+        "voter": "badger3165"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8719257308,
+        "voter": "badger3185"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8781270592,
+        "voter": "badger314"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9015963430,
+        "voter": "badger317"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8754170130,
+        "voter": "badger3102"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8715598583,
+        "voter": "badger3103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8642543556,
+        "voter": "badger3125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8608651698,
+        "voter": "badger3183"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3763646381067,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 36046509876,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 348982422,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 370569600141,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 54767511884,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 53269273621,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 209092851311,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 354361794480,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 78424941158,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 31280996795,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "3400",
+        "reputation": 22794273843250,
+        "rshares": 65197303116,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 191479703088,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5664514968,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5615273302,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 104818069176,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 198642563544,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 45230308604,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 65999119522,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2248678065,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 484274771,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17553722653,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36391001943292,
+        "rshares": 166076560580,
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 259043859301,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4681431941,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 86510715978,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254364900,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 19423192668,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 3030270280,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 400966190394,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25016204342,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6929637554,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 439636157,
+        "voter": "kevindetreville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 27793386253,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 55885606243,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 723038245,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 439350376,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 474968055,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 451813345,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1410590580557,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1211684689,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 16639042839,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4630627643,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11261506552,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 207386074024,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 32300012796,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2377467033356,
+        "rshares": 17025297072,
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2319671143,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629304079354,
+        "rshares": 19451642041,
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3319276861,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 25460531811,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11383490141,
+        "voter": "pablox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1398034717,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 242744796,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 334006173068,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 14364948465,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 33639885970,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 391368491,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 11811714291,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 20012517255,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42112607012,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 33852058607,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 89569037,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5685679532,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12942070229,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1386339611284,
+        "rshares": 2696617320,
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 22153382159,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2552794240,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 307757751744,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 2727436517,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 2745487317,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200869173,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 433924646062,
+        "rshares": 165693192350,
+        "voter": "gabbans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3572057744,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 23775123893,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 36882567360,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 89813747359,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 161375754014,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 14736639309,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58265386995,
+        "rshares": 3576728200,
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 17601936013,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780190949,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 21537531300,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 13752659940,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614667524,
+        "voter": "curator"
+      },
+      {
+        "percent": "8200",
+        "reputation": 7172977970558,
+        "rshares": 2870180302,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 30059788973,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1596140305,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2727754330,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 485033626,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 454860590,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125619617814,
+        "rshares": 2624223649,
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36363525108,
+        "rshares": 121759228,
+        "voter": "sazbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 38412629886,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3695837170,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13394934034,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 152942524,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 843609166,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8813780350,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 3047151322,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5213738136,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 125370043554,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1075235976,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 4546480722,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "6900",
+        "reputation": 988942038058,
+        "rshares": 45907939906,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 6952211747,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5294811148,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 61911147,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 61714352,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1013075640820,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14888335610,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8107058910,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 23400822736,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23911327544,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23919974845,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 24510986824,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 37769139083,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 5173147926,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 238503886159,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 588461921530,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 27629927141,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206355094166,
+        "rshares": 8921988905,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 996049,
+        "rshares": 62472234,
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "7752",
+        "reputation": 1751717743,
+        "rshares": 11461897501,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 52698903911,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3898490945,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 3334161508,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23915896370,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23914376448,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23911757517,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23908878849,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 1875150048,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23905113215,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23903642189,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3016325652890,
+        "rshares": 117128230821,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 20173385112,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 92960462722,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5427321003,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794157244,
+        "rshares": 61261066,
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1171268133,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 58773515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4122573976,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3740136030964,
+        "rshares": 318643015,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 72629533,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3762419282,
+        "rshares": 62173784,
+        "voter": "clarissa1994"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12277776,
+        "rshares": 63271446,
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 69485065,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 62188234,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 58467607,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 28304654029,
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15018520093808,
+        "rshares": 41103504553,
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3580186356,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61746903,
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 1580029996,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 56682205,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 283235546,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 8307326565,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 56535984,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 71241819,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 27199865099,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 63118959,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 84277779404,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53638070,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 209436170,
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 57405835,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 545451614,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 310811927,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "1400",
+        "reputation": 3814152361740,
+        "rshares": 1451684469,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9317330986,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1556041697,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 56598010,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56591855,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 626888257495,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1443151504,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59750246,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4479862265,
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1005947450655,
+        "rshares": 195160565,
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 13247070006,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 925594033,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55414210,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55396880,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55406673,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387660,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3728859219,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8480971863,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 7423407511,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23897322847,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 63837413,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 2680828708,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15582512683043,
+        "rshares": 65821995450,
+        "voter": "justinlaak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 76937378345,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 47338695487,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 21806631879,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1699561647,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 53437036902,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2349339281,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 60157039,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53853911,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10614920699,
+        "rshares": 236254009,
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565688,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4595623910,
+        "rshares": 58000712,
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1841770571,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8298658614343,
+        "rshares": 8573074284,
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5409679767352,
+        "rshares": 4848459038,
+        "voter": "englishtchrivy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1807478779,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 25628967648,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 60418402,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201616978,
+        "rshares": 55546978,
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 2011662877,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 65997918,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 14206144526,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 2439186312,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2077581159,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 23544130242,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961187,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 41415380854,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1581775775,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 53966805,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52496656,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 55768488,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71887903,
+        "rshares": 55709351,
+        "voter": "misscathy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 837791549130,
+        "rshares": 18052253827,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 14836422309,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3697930196,
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53252658,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52077150,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 85083750,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26897821824,
+        "rshares": 65372788,
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5414296170,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52915101,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 646077790,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 1210270353,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 793170907,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 4264779052,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51465774,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 112543619,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 54523663,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52242652,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52230725,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287913287,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25313560101,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2550877074,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51922012,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 227735119,
+        "voter": "irininich"
+      },
+      {
+        "percent": "4000",
+        "reputation": 3301652860610,
+        "rshares": 2165334759,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 337067509,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 71464098,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 352780841414,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 54084259617,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "3000",
+        "reputation": 26215514,
+        "rshares": 13532116930,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269520578215,
+        "rshares": 341116913,
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451285776301,
+        "rshares": 1359710881,
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 3134996274,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50933404,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 5059183261,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 100628450,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 209715303,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5312185929,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4759548989,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1953000600,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 2287432998,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 9299091881,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23031447736,
+        "rshares": 52882252,
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7835540052910,
+        "rshares": 20142442639,
+        "voter": "storyseeker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454901,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 242968142,
+        "rshares": 51468757,
+        "voter": "zees"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50980153,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 50326986,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 826888501848,
+        "rshares": 1430783777,
+        "voter": "dakini-dion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 659608632671,
+        "rshares": 1039951271,
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4591083065,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50602980,
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46150823,
+        "rshares": 50211016,
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1150196390848,
+        "rshares": 1145435510,
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92809064720,
+        "rshares": 52724271,
+        "voter": "s0lo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50907857,
+        "voter": "oxygen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 1049562163,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50865840,
+        "voter": "sting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 1452005898,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50572441,
+        "voter": "unilever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50565798,
+        "voter": "penthouse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 98761775,
+        "voter": "dovepeacelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5643099,
+        "rshares": 50664711,
+        "voter": "buckland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 52278600,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 7743755308,
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 239968899,
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3517432636,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 510694927,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76019801,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 506147790,
+        "rshares": 35493215038,
+        "voter": "abdullar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1256840918,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157689742,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10583434066,
+        "rshares": 161446234,
+        "voter": "yasiin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33024540131,
+        "rshares": 146096965,
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162904624,
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 610439007851,
+        "rshares": 165306997,
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 345429965231,
+        "rshares": 159762514,
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108412302232,
+        "rshares": 162227319,
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 939050919776,
+        "rshares": 149641144,
+        "voter": "michaelstobiersk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330431039244,
+        "rshares": 158655277,
+        "voter": "kjsxj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161700361,
+        "voter": "shadowcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161218747,
+        "voter": "sdc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157816798,
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160870736,
+        "voter": "electronicarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157706877,
+        "voter": "cybergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 151363355,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14542508249,
+        "rshares": 160649364,
+        "voter": "trevorlyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116818017503,
+        "rshares": 158860455,
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157182398,
+        "voter": "planet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7037495995,
+        "rshares": 150675328,
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25973383237,
+        "rshares": 156882242,
+        "voter": "dontbenormal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50161010,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159539963,
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159425365,
+        "voter": "tipsandtricks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159352476,
+        "voter": "panic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159318360,
+        "voter": "stimmt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676794,
+        "rshares": 146775786,
+        "voter": "zaidkhalifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 120873643,
+        "rshares": 159121147,
+        "voter": "noah.trader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144604,
+        "rshares": 149732389,
+        "voter": "gopher75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2485385,
+        "rshares": 155945743,
+        "voter": "lenny1220"
+      },
+      {
+        "percent": "10000",
+        "reputation": 350258454,
+        "rshares": 159061028,
+        "voter": "dragonfruit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48393566209,
+        "rshares": 152792898,
+        "voter": "blackheart304"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146443049,
+        "voter": "steemit2670"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9906297,
+        "rshares": 146428143,
+        "voter": "anysound.studio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158627191,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158621293,
+        "voter": "bfem44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189531519222,
+        "rshares": 152318749,
+        "voter": "apolymask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 946441304,
+        "rshares": 158526983,
+        "voter": "oghenetony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 149129648,
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158259107,
+        "voter": "zedsdead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158236061,
+        "voter": "paulohenry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158229557,
+        "voter": "pac3mak3r"
+      }
+    ],
+    "author": "calaber24p",
+    "author_reputation": 76096938200261,
+    "beneficiaries": [],
+    "body": "Revamping Curation Is The Way To Increase Steem Power Demand\n\nIf you haven\u2019t been living under a rock, for the past month or so, it has been quite clear that the price of Steem has been rapidly falling. Although before the run up to $4 was most likely in a bubble and the system is in no danger of failing, as it has worked at this price before, I still believe there is a long term solution that needs to be found to fix this problem. Ned made a post yesterday talking about ideas he had, which mostly, in my opinion focused on lowering the supply entering the market, but this is only a symptom of the problem. My solution although a bit drastic addresses the problem which is a lack of incentive to purchase Steem and power up. \n\nhttp://www.chicagoartistsresource.org/sites/chicagoartistsresource.org/files/curator_1.jpg\n\nTo begin, what are the incentives now? Well the main incentive is having weight while voting, as well as getting a daily return on the Steem Power you have in the system. These might seem like adequate incentives in theory, but in practice I think we are seeing something very different. The problem right now is even with the daily interest we are getting on our Steem Power, we have still been losing money due to the price drops. The interest, which is supposed to act like inflation protection, is actually doing nothing because as long as the price is falling, people are not going to want to move their Steem dollars or Steem into Steem Power. We need to give a greater incentive to hold and purchase Steem Power that will benefit us as a community in the long run. Sure we can wait for the price to fall and have people cash out and make it cheaper to enter the system, but this still doesn\u2019t address the underlying problem.\n\nSo what is my solution? I strongly believe we need to move the payout split to 50:50 between authors and curators from the current 75:25 it is at. I know this will be controversial, especially because many authors today, INCLUDING MYSELF, are making essentially a living off the site, but ultimately it comes down to what is best for the community. We need to look at who is adding more value to the site, the authors or the curators. Depending on who you ask their answer might be different, but in my opinion both are equally as important. One cannot survive without the other and the payouts should reflect that.\n\nhttps://steemit.com/images/steemit-share.png\n\nCurating is supposed to be a heavy incentive for people to enter the system, but the earnings from it are subpar at best. For example, I have 20,000 Steem Power and my average earnings per day is around 6 Steem Power. That means my daily return on investment is .03% a day and only around 11% a year and that is with a pretty profitable curating strategy. Sure it will technically come out to a bit higher than 11% due to compounding but it still won\u2019t make that much of a difference. A huge selling point to me was that if you choose to curate rather than create content you will also be able to earn a sufficient amount, but no one is going to put 20,000 Steem into Steem Power that they would have to wait 2 years to pull out if the reward of waiting is not sufficient enough. Selling Steemit as a platform where the users who upvote the content are equally as valuable as the users who create the content makes users actually want to buy Steem and convert it into Steem Power. \n\nWe should not focus on slowing down the supply that enters the market, but rather retaining and creating new users that will become active daily. Once people have upvotes that actually mean something we will see people flock to the system. Rather than just browsing reddit and upvoting, with no return, they would have a much better experience here. The majority of the people on the site are not authors but lurkers or readers and we need to cater specifically to that crowd because they will end up as the masses, should more come. Authors deserve to be paid for their work but the percentage of money that goes to payouts is a lot. \n\n\nhttp://www.firebellymarketing.com/wp-content/uploads/2011/10/building-community-Firebelly-570x467.jpg\n\nLike I stated before, I have been very successful and Steemit which is why I want to cut down my rewards, because if we continue in the direction we are currently going, it will become a race to the bottom , at which point everyone will leave. I strongly believe that splitting the curation rewards and author rewards equally can benefit the demand for Steem power in the long run and cause a higher amount of user retention within the system. \n\n-Calaber24p",
+    "body_length": 4602,
+    "cashout_time": "2016-09-15T19:45:42",
+    "category": "steemit",
+    "children": 157,
+    "created": "2016-09-08T19:45:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"money\",\"community\",\"curation\"],\"image\":[\"http://www.chicagoartistsresource.org/sites/chicagoartistsresource.org/files/curator_1.jpg\",\"https://steemit.com/images/steemit-share.png\",\"http://www.firebellymarketing.com/wp-content/uploads/2011/10/building-community-Firebelly-570x467.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T19:45:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 101222153785235,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "945.749 HBD",
+    "percent_hbd": 10000,
+    "permlink": "revamping-curation-is-the-way-to-increase-steem-power-demand",
+    "post_id": 1176093,
+    "promoted": "101.000 HBD",
+    "replies": [],
+    "root_title": "Revamping Curation Is The Way To Increase Steem Power Demand",
+    "title": "Revamping Curation Is The Way To Increase Steem Power Demand",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 39379890566029,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3126247134380,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 408356350215,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1047378310443,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314688376293,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3100444020,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3764083289,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690489074,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54213700259,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661544327,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213702396,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10777629083,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622914773,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967513764,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 200086864853,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288197194,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4931834878069,
+        "rshares": 11589802844,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 95065332740,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 35527519992,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 56774675772,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432384791,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40601146249,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 8516999622,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 134338984913,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37015270307,
+        "rshares": 327889281,
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2596798738,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811919161664,
+        "rshares": 5085058830,
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12857077759,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 12174615285,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 69581481372,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 154263522371,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 14471850655,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 39327291209,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 35308561613,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1452860343,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089175666268,
+        "rshares": 1025282103,
+        "voter": "jsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2488411743,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2490120280,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "1000",
+        "reputation": 10519849768972,
+        "rshares": 2040621359,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 396751788,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7734375234,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17164865565,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 2277111838,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5114211238,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26465755082,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2464511443415,
+        "rshares": 1911405581,
+        "voter": "alitas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1367410476,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5108049297663,
+        "rshares": 4291799895,
+        "voter": "milaoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11497454563,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1228517094,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 74804948,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 101241449865,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 54155851,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3374755472,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 54881755,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5807815930,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 12412637918,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 25219678343,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 72938416050,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1283496543,
+        "rshares": 53742464,
+        "voter": "jamesphotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4408882617025,
+        "rshares": 2238227885,
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1195188906,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4362291614,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2912548324,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 120365336,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 58464654,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2597167689048,
+        "rshares": 1296631669,
+        "voter": "steemitmag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 70358845,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 2609136736,
+        "voter": "puffin"
+      }
+    ],
+    "author": "biophil",
+    "author_reputation": 10077167197115,
+    "beneficiaries": [],
+    "body": "Friends, foodies, fellow Steemers, I bring glad news: I have created **the greatest waffle recipe on the planet.**\n\n\"What?\" you say. \"Aren't you the [game theory](https://steemit.com/steem/@biophil/class-war-on-steem-the-game-theory-of-steem-part-7) guy? The guy who [picks apart arcane C++ code for fun?](https://steemit.com/steem-help/@biophil/the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references) The nerdy dude who [starts arguments with anarchists](https://steemit.com/anarchism/@biophil/an-original-parable-about-voluntaryism) and is [trying to buy a kayak?](https://steemit.com/marketplace/@biophil/want-to-buy-your-kayak-surfboard-paddleboard) What's all this about waffles?\"\n\n<center>\n![](https://ipfs.pics/ipfs/QmNNpUTSL2R9Pmy4gs9n1wq7Cj8zH5MuHDBZpGu8zVZHwK)</center>\n\nWhy yes, I am. I am all those things, and **I am also an amateur waffle chef.** And today, I am going to share with you a little piece of heaven. People, I present to you **Philip's Spectacularly Light, Fluffy, and Crispy (despite being 100% whole grain) Sourdough Waffles.**\n\n## Ingredients\n\n* 8 oz sourdough starter (don't have sourdough starter? maybe I have a solution for you! read on!)\n* 1 cup whole wheat flour\n* 1 cup old fashioned rolled oats\n* 1 cup water\n* 3 eggs\n* 3 tbsp oil (soybean, canola, refined olive, coconut oil, butter - whatever)\n* 1/4 cup milk\n* 1/4 cup plain yogurt\n* 1 tsp baking soda\n* 1/4 tsp salt\n* Flax seeds for decoration and tastiness\n\n## The Night Before, we make the sponge\n\nThis recipe results in such incredible goodness that you have to plan ahead just a little bit. The night before (or about 8 hours in advance), put the **sourdough starter,** the **whole wheat flour,** the **oats,** and the **water** in a big bowl and mix them well so there are no dry spots. Make sure your bowl has lots of extra room, because this will about double in size overnight! It should look like this:\n\n<center>\n![](https://ipfs.pics/ipfs/QmU4GbcD3PJH2SEzaSQ4Kprznb9K3tV7cfTgdjxiN4bUkP)</center>\n\nOvernight, the magic little critters in the starter will eat and eat and eat and make carbon dioxide, and by morning, your stuff will look like a sponge:\n\n<center>\n![](https://ipfs.pics/ipfs/QmPU7GNPTKQNDFiMFcxLXJSuemssexGRaLZ896fmyW8UTX)</center>\n\nNote: **If you don't have sourdough starter,** you don't have to start the night before. I have not tested this, but here's what I'd try: instead of the starter, mix a cup of flour with a half cup of water, and add a tablespoon of apple cider vinegar. Then mix everything else in and carry on with the recipe. Your batter won't ferment, so there's no need to let it sit overnight, but the baking soda will still react with the vinegar and you'll get (hopefully) fluffy waffles.\n\n## On the Magical Morning, we mix the batter\n\nNow that we have our sponge, we'll start mixing stuff in. You can add all the rest of the ingredients now, **except the baking soda.** It won't ruin it to add the baking soda now, but you'll be a little better off if you wait. So: add the **eggs, oil, milk, yogurt, and salt:**\n\n<center>\n![](https://ipfs.pics/ipfs/QmST4kHHhrK1rz42SPzVVZWJmtdE3DKK62nDQWcGRJSerY)</center>\n\nAnd mix it all up real good (I do this by hand, but you'll probably be fine if you use a stand mixer or power mixer or some such gadget):\n\n<center>\n![](https://ipfs.pics/ipfs/QmP7ufxmALnDXENuE1Tv29mCGS9dd4VBTZRJdX1EBXqdb5)</center>\n\nNow that your ingredients are mixed up, get your waffle iron all ready to go. You don't have to turn it on yet, but make sure you're ready to. Get your oil all ready to brush or spray on to the iron, and open your container of flax seeds (or whatever nuts you like) so you're ready to sprinkle them on.\n\nNow, add the **baking soda.** Sprinkle it on and mix it in quickly and thoroughly. Within a few seconds, the baking soda will react with the acid from the sourdough, and your batter will start to fizz:\n\n<center>\n![](https://ipfs.pics/ipfs/QmRhQwoTcDpvQXMV5FoDk2MSxcgdanNfUexn7P2PuvdBiw)</center>\n\nTurn your waffle iron on, and grease it. I like to use **virgin coconut oil** for this; I melt a blob of it into the center of the iron and then use a brush to spread it all around (top and bottom):\n\n<center>\n![](https://ipfs.pics/ipfs/QmdUaKUbewvgxAFoWUHCtCL9bQr335ivQf96RXY2Dr2miv)</center>\n\nPour some batter into the iron (make sure to scoop from the bottom of your batter bowl, because the oats tend to sink); my iron takes just a bit less than 1 cup of batter. Make sure it spreads all around, then sprinkle your flax seeds (or whatever nuts you like, or nothing) on the top of the batter, close the iron, flip it (if it's that kind of iron), and wait. You want to go from empty iron to closed iron pretty quickly.\n\n<center>\n![](https://ipfs.pics/ipfs/Qmbe1Nxo6V1tnXie7G5mtKqRT1WdxpGFodbRCCL3VK6kT9)</center>\n\nDepending on your iron and your altitude and your exact mix of batter, your cooking time will vary. **I cook my waffles for about 4 minutes.** You should try variations of this and see what you like. When it's done, open it up, and voila:\n\n<center>\n![](https://www.steemimg.com/images/2016/09/01/IMG_20160828_17155353683127.jpg)</center>\n\nTransfer it to a cooling rack, and enjoy!\n\n## Tips on enjoying\n\n* Butter and maple syrup\n* Sliced strawberries\n* Peanut butter\n* Cashew butter (this is one of my favorites)\n* Put leftover waffles in the fridge, and warm them up in the toaster!",
+    "body_length": 5399,
+    "cashout_time": "2016-09-08T16:58:54",
+    "category": "food",
+    "children": 17,
+    "created": "2016-09-01T16:58:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"food\",\"life\",\"waffles\",\"breakfast\",\"health\"],\"image\":[\"https://ipfs.pics/ipfs/QmNNpUTSL2R9Pmy4gs9n1wq7Cj8zH5MuHDBZpGu8zVZHwK\",\"https://ipfs.pics/ipfs/QmU4GbcD3PJH2SEzaSQ4Kprznb9K3tV7cfTgdjxiN4bUkP\",\"https://ipfs.pics/ipfs/QmPU7GNPTKQNDFiMFcxLXJSuemssexGRaLZ896fmyW8UTX\",\"https://ipfs.pics/ipfs/QmST4kHHhrK1rz42SPzVVZWJmtdE3DKK62nDQWcGRJSerY\",\"https://ipfs.pics/ipfs/QmP7ufxmALnDXENuE1Tv29mCGS9dd4VBTZRJdX1EBXqdb5\",\"https://ipfs.pics/ipfs/QmRhQwoTcDpvQXMV5FoDk2MSxcgdanNfUexn7P2PuvdBiw\",\"https://ipfs.pics/ipfs/QmdUaKUbewvgxAFoWUHCtCL9bQr335ivQf96RXY2Dr2miv\",\"https://ipfs.pics/ipfs/Qmbe1Nxo6V1tnXie7G5mtKqRT1WdxpGFodbRCCL3VK6kT9\",\"https://www.steemimg.com/images/2016/09/01/IMG_20160828_17155353683127.jpg\"],\"links\":[\"https://steemit.com/steem/@biophil/class-war-on-steem-the-game-theory-of-steem-part-7\",\"https://steemit.com/steem-help/@biophil/the-ultimate-guide-to-voting-power-with-cartoons-formulas-and-code-references\",\"https://steemit.com/anarchism/@biophil/an-original-parable-about-voluntaryism\",\"https://steemit.com/marketplace/@biophil/want-to-buy-your-kayak-surfboard-paddleboard\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T15:17:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 45607831321175,
+    "parent_author": "",
+    "parent_permlink": "food",
+    "pending_payout_value": "221.002 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-world-s-best-waffle-recipe",
+    "post_id": 1086972,
+    "promoted": "100.010 HBD",
+    "replies": [],
+    "root_title": "The World's Best Waffle Recipe",
+    "title": "The World's Best Waffle Recipe",
+    "total_payout_value": "0.000 HBD",
+    "url": "/food/@biophil/the-world-s-best-waffle-recipe"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 535849512445,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 31585416159994,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 405104282906,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "2600",
+        "reputation": 13270505121655,
+        "rshares": 16445135107737,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170078310304,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2284036868281,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4687079239975,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 4346968921,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 5277792976,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 957776516,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 76993942570,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2329193705,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 299334266,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1751143504227,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 413183213115,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2707011698609,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1316274656,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1959767310,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5880841552013,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 10335458045,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 875135073,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1362646379,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7859851792,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 25018527314,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 797659608517,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 131700871777,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 96024199360,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74299604102,
+        "rshares": 3495643148,
+        "voter": "spartako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 403731535,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "8000",
+        "reputation": 9469162,
+        "rshares": 68148632072,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1703456531,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "5500",
+        "reputation": 1339573287588,
+        "rshares": 5390260788,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 92307162061,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "8382",
+        "reputation": 12382143533351,
+        "rshares": 538116143159,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 19247234721,
+        "voter": "fkn"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 50869730,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770646007378,
+        "rshares": 4224362680,
+        "voter": "sunjata"
+      },
+      {
+        "percent": "1000",
+        "reputation": 376960001789,
+        "rshares": 612478568,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 30889801848,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 25316108067,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 681278624136,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "300",
+        "reputation": 15755437221598,
+        "rshares": 1218525708,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 46218344578,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 205861395304,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 93387521550,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1413027583,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 584941992,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2320828016,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 57132788469,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24403535437,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 10205302247,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 234360429555,
+        "voter": "wingz"
+      },
+      {
+        "percent": "4000",
+        "reputation": 3804349938696,
+        "rshares": 21032840209,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 19762297810,
+        "voter": "samether"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5888717170887,
+        "rshares": 20244824438,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 541171866339,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 811434188,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "8000",
+        "reputation": 598181152117,
+        "rshares": 150561703420,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 76518214097,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2249513572,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 10718755967,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17555397378,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 354932807,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 7577100798,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54984589934,
+        "rshares": 319017066,
+        "voter": "kosimoos"
+      },
+      {
+        "percent": "3300",
+        "reputation": 336763673779,
+        "rshares": 57002255623,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5157797283,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 17860999379,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 69594686784,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10594627728,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 459122987,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 515214917,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 472260007,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 854014479,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24464292896,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10632943304,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 341723696171,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 81026932227,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1311079777932,
+        "rshares": 1907615672,
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42173981732,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 18508064925,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363833141690,
+        "rshares": 537387356,
+        "voter": "wojooo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 5955949885,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 4255670564,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2778445763,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3576195335,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 6499058237,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 15600179759,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 658582371,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 334104188,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16793516,
+        "rshares": 424845000,
+        "voter": "berrysmok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 921456442,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639439630,
+        "voter": "curator"
+      },
+      {
+        "percent": "8000",
+        "reputation": 17698439393799,
+        "rshares": 24016779323,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1519176750,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 535173718,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 475460463,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "100",
+        "reputation": 4063076365725,
+        "rshares": 115958450,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92225510961,
+        "rshares": 131625157,
+        "voter": "yulia98"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 14948206365,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "8000",
+        "reputation": 10771708337101,
+        "rshares": 825265209942,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23123392107,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11281416042780,
+        "rshares": 78375114842,
+        "voter": "neilstrauss"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7564464865541,
+        "rshares": 11248465277,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "8000",
+        "reputation": 18027204457681,
+        "rshares": 28922343006,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "8000",
+        "reputation": 5776723480371,
+        "rshares": 180781445056,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 588526896696,
+        "voter": "toxic"
+      },
+      {
+        "percent": "8000",
+        "reputation": 206355094166,
+        "rshares": 6761480879,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "8751",
+        "reputation": 1751717743,
+        "rshares": 14659875268,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "8000",
+        "reputation": 97845484474,
+        "rshares": 39940454633,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 3334515922,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18192484,
+        "rshares": 64657024,
+        "voter": "jackgoldwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 657020045061,
+        "rshares": 4583707678,
+        "voter": "miketr"
+      },
+      {
+        "percent": "8000",
+        "reputation": 3016325652890,
+        "rshares": 96034871313,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 115448783773,
+        "voter": "joele"
+      },
+      {
+        "percent": "8000",
+        "reputation": 1851205309677,
+        "rshares": 3123926476,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "8000",
+        "reputation": 4195733833721,
+        "rshares": 6295888178,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 84384131114,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 6229208165,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 222804436,
+        "voter": "party1999"
+      },
+      {
+        "percent": "8000",
+        "reputation": 730408370151,
+        "rshares": 413034414,
+        "voter": "microluck"
+      },
+      {
+        "percent": "2500",
+        "reputation": 13325577893779,
+        "rshares": 7140129001,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2785387942,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54970226,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 14905261140,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 7727181529,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "2500",
+        "reputation": 11490547563070,
+        "rshares": 6323517480,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8041018266,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 8036018428,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73481598898,
+        "rshares": 101945845,
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 29089119363,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57337530,
+        "voter": "will.isles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 346291965,
+        "rshares": 58093020,
+        "voter": "austinpierce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 56704316,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57791469,
+        "voter": "bglier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 3870291796,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7577221661,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90062656329,
+        "rshares": 88409423,
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "7000",
+        "reputation": 837791549130,
+        "rshares": 31616820473,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 55660383,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1986295682,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 323382621,
+        "voter": "panther"
+      },
+      {
+        "percent": "7000",
+        "reputation": 26215514,
+        "rshares": 31590560694,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 3630617143,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53849838,
+        "voter": "asaule"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5318015477,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 3071590760,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50569452,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50516543,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50514225,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 4537500584,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 52357995,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 70562224,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 242206580,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51230296,
+        "voter": "steemq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51218466,
+        "voter": "weare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50871059,
+        "voter": "motion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50791473,
+        "voter": "synereo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487989126850,
+        "rshares": 1974311276,
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50568084,
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50543061,
+        "voter": "rabobank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50536471,
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 64263708,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1289521305818,
+        "rshares": 2060590767,
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 909903901,
+        "rshares": 118124871,
+        "voter": "bosjaya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3948329433364,
+        "rshares": 2002213189,
+        "voter": "senseye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162911190,
+        "voter": "front"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161700361,
+        "voter": "shadowcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161089804,
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160973134,
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160957729,
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160880639,
+        "voter": "illusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159539963,
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159387371,
+        "voter": "bosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159025535,
+        "voter": "xtreme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158602900,
+        "voter": "steem-wallet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158535752,
+        "voter": "nerds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465128668,
+        "rshares": 155131712,
+        "voter": "manuelgarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 464168057,
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157447605,
+        "voter": "ric.mcnamee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157444337,
+        "voter": "marx34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157443737,
+        "voter": "maddog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157443313,
+        "voter": "babettesays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157435399,
+        "voter": "stuedb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157435048,
+        "voter": "angela0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157434698,
+        "voter": "s3an"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157429299,
+        "voter": "rodlongwood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157422179,
+        "voter": "huramechi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157399771,
+        "voter": "bradzickafoose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157379721,
+        "voter": "cwt108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157371999,
+        "voter": "beastwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157362454,
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157359897,
+        "voter": "legno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157358786,
+        "voter": "etihwttam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157356275,
+        "voter": "seansclevername"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157347257,
+        "voter": "matheogalatis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157341936,
+        "voter": "damjanlepceski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157339833,
+        "voter": "tashen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2361914,
+        "rshares": 157332453,
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157319787,
+        "voter": "franks22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154232591,
+        "voter": "woz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157316220,
+        "voter": "bigs-in-sd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157314979,
+        "voter": "blackhorizontals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157304079,
+        "voter": "mapinguari"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157291215,
+        "voter": "schlacht"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157289185,
+        "voter": "sobi123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157285593,
+        "voter": "garymeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157281608,
+        "voter": "solomonayub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157269884,
+        "voter": "thiago6891"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157268541,
+        "voter": "indianajones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157249854,
+        "voter": "elguapo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157249547,
+        "voter": "sundruid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154164078,
+        "voter": "katechristensen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157247023,
+        "voter": "alexskye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157243713,
+        "voter": "shymu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157193454,
+        "voter": "reysurf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2365987,
+        "rshares": 157183722,
+        "voter": "drgonzo90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157177526,
+        "voter": "ferrolad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157155353,
+        "voter": "nadine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157151883,
+        "voter": "patchzero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157135701,
+        "voter": "mikemullins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157102466,
+        "voter": "ironmaiden1541"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157057396,
+        "voter": "pantsrole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157041746,
+        "voter": "salkata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156994293,
+        "voter": "brentbusboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156970936,
+        "voter": "doctorawesome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156930618,
+        "voter": "femshep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156925330,
+        "voter": "leftyodinbeard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156866808,
+        "voter": "eetswah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156864455,
+        "voter": "darkturo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20791269,
+        "rshares": 156836653,
+        "voter": "zacduggan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156676489,
+        "voter": "sudeep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156663206,
+        "voter": "memelis5557"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156661760,
+        "voter": "astner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156628324,
+        "voter": "shawnlauzon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153524511,
+        "voter": "jdwalt11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250974286,
+        "rshares": 156566334,
+        "voter": "stefanahench"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3325209,
+        "rshares": 156554577,
+        "voter": "everydaygravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156457210,
+        "voter": "nutygoalie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156453108,
+        "voter": "openconnection"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156446392,
+        "voter": "nickjoyce9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153372755,
+        "voter": "xenakis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156393629,
+        "voter": "mxzyptlk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156318300,
+        "voter": "pascaldube"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156309012,
+        "voter": "triumphcook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156281978,
+        "voter": "mndzvlz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156265688,
+        "voter": "oneofone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156255644,
+        "voter": "brantgurga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156186979,
+        "voter": "alexsalinsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156165053,
+        "voter": "hollow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156118911,
+        "voter": "firstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156117289,
+        "voter": "mkgoodwin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156081854,
+        "voter": "alextodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156059845,
+        "voter": "vinylboy65"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155948273,
+        "voter": "leomarconi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155884762,
+        "voter": "jshannon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155860330,
+        "voter": "georgebg8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155835704,
+        "voter": "kerloom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155830866,
+        "voter": "palter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155801775,
+        "voter": "rodrigopm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155747288,
+        "voter": "woodbridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155741174,
+        "voter": "meepbobeep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155674921,
+        "voter": "aqsson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155650739,
+        "voter": "drsmokey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155632775,
+        "voter": "rockinthiscity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155599311,
+        "voter": "drdoktir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 334838038,
+        "rshares": 152540638,
+        "voter": "simonjay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155577655,
+        "voter": "samsharifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155550233,
+        "voter": "warwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155526260,
+        "voter": "tdanderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155094527,
+        "voter": "chukkyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154980616,
+        "voter": "rogerfarley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154961685,
+        "voter": "kaiball"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154919906,
+        "voter": "millerg333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151689459,
+        "voter": "lanie.land"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154451653,
+        "voter": "tyger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153937522,
+        "voter": "germanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153590868,
+        "voter": "alphabobcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153360877,
+        "voter": "eman3488"
+      }
+    ],
+    "author": "neilstrauss",
+    "author_reputation": 11281416042780,
+    "beneficiaries": [],
+    "body": "<html>\n<p>We were all impatiently waiting, but the day is finally upon us and it is with pleasure that we announce the official kick off to the first Steemit Book Club.</p>\n<p>http://i68.tinypic.com/wb9soy.jpg</p>\n<p>Taking into consideration personal requests from some of you, we came to the conclusion that next <strong>Monday, September 12th at 6 p.m. PST/9 p.m. EST/2 a.m. GMT/11 a.m. (Tuesday) UTC</strong> would be the ideal time to finally launch this.&nbsp;</p>\n<p>For those who may have missed <a href=\"https://steemit.com/books/@neilstrauss/the-steemit-book-club-plan-v1-0\">the preliminary plan,</a> maybe it would be a good idea to let you know that one of the perks of this steemit based Book Club is the possibility it allows for book lovers to earn rewards all while reading a beautiful masterpiece in good company.</p>\n<p>In a nutshell, all Steem Dollars generated from the weekly posts of the Book Club will be divided equally among book club members after finishing each book.</p>\n<p>All you have to do is to attend 75 percent of the calls or chats, remain in the book club until the completion of the book, and, obviously, read the whole thing. &nbsp;</p>\n<p>Yes, our \u201culterior motive\u201d is to use this to motivate everyone to complete these epic tomes.&nbsp;&nbsp;</p>\n<p>The first book we\u2019re going to launch with - as many of you know already - is James Joyce\u2019s masterpiece: <em>Ulysses</em>. This particular book choice if you may recall, came as an almost unanimous decision in <a href=\"https://steemit.com/introduceyourself/@neilstrauss/introducing-neil-strauss-and-a-steemit-book-club \">this post</a>.</p>\n<p>This was a book that was so controversial that when it first was released, this happened:</p>\n<p>http://i63.tinypic.com/23h7eb7.png</p>\n<p>According to Modern Library, <em>Ulysses</em> currently ranks first on the 100 best novels of all time. So what better way to launch a Book Club than by starting at the top \u2013 especially with a book so many people want to read, yet few are able to penetrate.</p>\n<p>http://i65.tinypic.com/4gn0gy.png</p>\n<p><br></p>\n<p>Here are the final details:</p>\n<p><strong>What</strong>: The Steemit Book Club (SBC)</p>\n<p><strong>When</strong>: Every Monday at 6 p.m. PST/9 p.m. EST/2 a.m. GMT/11 a.m. (Tuesday) UTC</p>\n<p><strong>Where</strong>: Our first session will be held via Freeconference. You can join via internet by clicking the link below:</p>\n<p><a href=\"https://hello.freeconference.com/conf/call/6291831\">https://hello.freeconference.com/conf/call/6291831</a></p>\n<p>Or you can join by phone by calling one of these toll free numbers (800) &nbsp;719-6100 or (218) 339-7800 if you are calling from within the United &nbsp;States. The participant access code is 629-1831#.</p>\n<p>If you\u2019re calling from outside the U.S., click on the same link, then &nbsp;click \u201cjoin conference\u201d and choose the option \u201cCall by Phone.\u201d In the &nbsp;\u201cDial-In Numbers\u201d tab, you will see a long list of additional toll-free &nbsp;numbers from around the world.</p>\n<p><strong>Where Else</strong>: Some book clubbers will also be in steemit.chat on our channel #steemit-book-club during the calls, so feel free to write comments and enter discussions there instead\u2014or in addition.</p>\n<p><strong>How</strong>: Just call in. Or go now to steemit.chat and register in #steemit-book-club to receive a private message containing this information on how to join the conference. These details will also be posted on a pinned post on the channel for everybody to see.</p>\n<p><strong>How much</strong>: There\u2019s no reading assignment for the first call. Just show up and we\u2019ll do the first reading aloud together. Though if you\u2019re feeling feisty, read Joyce\u2019s Portrait of the Artist as an Old Man first.&nbsp;</p>\n<p><strong>Which</strong>: Preferably order the <a href=\"https://www.amazon.com/Ulysses-original-James-Joyce-ebook/dp/B017WQ5WTI/\">Gabler edition of <em>Ulysses</em></a>, which has line numbers in the margins so we can all communicate clearly.&nbsp;</p>\n<p>If you don\u2019t want to buy the Gabler edition or can\u2019t find it in your country, grab an earlier edition of <em>Ulysses</em> for free <a href=\"https://archive.org/stream/ulysses04300gut/ulyss12.txt\">via Project Gutenberg </a>or <a href=\"https://www.amazon.com/Ulysses-James-Joyce-ebook/dp/B002RKT6QK#nav-subnav\">Kindle</a> or in your <a href=\"http://manybooks.net/titles/joycejametext03ulyss12.html\">favorite format</a>.</p>\n<p><strong>Privacy</strong>: Fortunately, Freeconference grants us the option to host a club meeting using only audio. That means there\u2019s no need to reveal your identity at all, especially if you use the web link option to join the call.&nbsp;</p>\n<p><strong>Troubleshooting</strong>: If you are having any trouble joining the call, post a message in #steemit-book-club and we will get right on it.</p>\n<p><strong>Absences</strong>: Don\u2019t worry if you miss a session. We\u2019ll post weekly summaries along with the reading assignments for the following week, and, if everyone is comfortable with it, recordings of each call.</p>\n<p>Meanwhile, the discussion will be open all week long in our steemit.chat channel (#steemit-book-club), which is now accessible to everybody. And judging by the brain-picking aspect of <em>Ulysses</em>, my guess is there will be a lot to talk about in the chat room.</p>\n<p>http://i66.tinypic.com/30vgdv9.jpg</p>\n<p>This is going to be a fun adventure, and we hope that you will join us in making this initiative a success and in expanding all of our minds.</p>\n<p>Until Monday, we remain\u2026</p>\n<p>Your Book Club Co-Captains,</p>\n<p><a href=\"https://steemit.com/@neilstrauss\"><strong>@Neilstrauss</strong></a> and <a href=\"https://steemit.com/@the-alien\"><strong>@the-alien</strong></a></p>\n<p>P.S: If you have any suggestions or feedback, please let us know in the comments section below. And of course, the next book will be chosen by those who survive this first book.</p>\n<p>P.P.S. Please welcome the members of my Inner Circle mailing list. They are just about all new to Steemit and I\u2019m sure some will become active members of the community. Make them feel at home!</p>\n<p><br></p>\n<p><br></p>\n<p><br></p>\n</html>",
+    "body_length": 6181,
+    "cashout_time": "2016-09-17T16:38:36",
+    "category": "books",
+    "children": 83,
+    "created": "2016-09-10T16:38:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"books\",\"steemitbookclub\",\"writing\",\"bookclub\",\"steemit-book-club\"],\"users\":[\"the-alien\"],\"image\":[\"http://i68.tinypic.com/wb9soy.jpg\",\"http://i63.tinypic.com/23h7eb7.png\",\"http://i65.tinypic.com/4gn0gy.png\",\"http://i66.tinypic.com/30vgdv9.jpg\"],\"links\":[\"https://steemit.com/books/@neilstrauss/the-steemit-book-club-plan-v1-0\",\"https://steemit.com/introduceyourself/@neilstrauss/introducing-neil-strauss-and-a-steemit-book-club \",\"https://hello.freeconference.com/conf/call/6291831\",\"https://www.amazon.com/Ulysses-original-James-Joyce-ebook/dp/B017WQ5WTI/\",\"https://archive.org/stream/ulysses04300gut/ulyss12.txt\",\"https://www.amazon.com/Ulysses-James-Joyce-ebook/dp/B002RKT6QK#nav-subnav\",\"http://manybooks.net/titles/joycejametext03ulyss12.html\",\"https://steemit.com/@neilstrauss\",\"https://steemit.com/@the-alien\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T16:38:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 74134244590300,
+    "parent_author": "",
+    "parent_permlink": "books",
+    "pending_payout_value": "476.730 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-steemit-book-club-begins-monday-details-call-in-numbers-chat-channel-party-tricks-inside",
+    "post_id": 1197778,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "The Steemit Book Club Begins Monday: Details, Call-in Numbers, Chat Channel, Party Tricks Inside",
+    "title": "The Steemit Book Club Begins Monday: Details, Call-in Numbers, Chat Channel, Party Tricks Inside",
+    "total_payout_value": "0.000 HBD",
+    "url": "/books/@neilstrauss/the-steemit-book-club-begins-monday-details-call-in-numbers-chat-channel-party-tricks-inside"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 4152367932922,
+        "rshares": 5918843919195,
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1133069631465,
+        "rshares": 3094288914832,
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 25104157850610,
+        "rshares": 44768805123,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 281563837555,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104040479,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3768680486,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 683998880,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54822763106,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3745363549909,
+        "rshares": 62230748588,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663275306,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213794688,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624987874,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973106272,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2378101638,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288351745,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 51320362201,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 415852247378,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 944762156062,
+        "rshares": 5909000055,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 33254767020,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1676027632124,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1412752719,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 12169071403,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2014177224856,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 54982482422,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 181123599305,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 810326494,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3924899966690,
+        "rshares": 81192700375,
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52215058764,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 5444636495,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 26683762212,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 13487365582,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2234056550,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127663674848,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 47467283996,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 898149895,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 7545983800,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25386139768,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2844677790,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11270713350,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "5300",
+        "reputation": 3740136030964,
+        "rshares": 637699371,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439786891,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9074805566,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 60418402,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 660913097252,
+        "rshares": 3470902934,
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 53433189,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 330178623,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312902704,
+        "rshares": 72720620,
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78462337,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896905122572,
+        "rshares": 109940460,
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 130634157,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146022781,
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158042096,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86373454182,
+        "rshares": 145903154,
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 138768078,
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153557360,
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 896905122572,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Blockchain Developer\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for a blockchain developer who can work in an extremely faced paced environment to help scale the Steemit platform over the next year and beyond. You will be an essential member of the team who will provide added agility and expertise to ensure an unbeatable product.\n\n### Responsibilities\n- Independently identify and manage bugs, schedule tasks, investigate code\n- Handle full development cycle of components (formalize task, write code, test, set-up and support production, resolve user requests)\n- Write flexible, manageable, and modular code that can adapt to post-launch change\n- Build scalable, efficient, high performance solutions\n\n### Qualifications\n- Bachelor\u2019s in Computer Science (or similar) or equivalent experience\n- Expert in C++ or newer\n- Hands on experience with Git\n- Collaborative team player capable of listening to different perspectives and implementing the best solution based on those views\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 1715,
+    "cashout_time": "2016-09-15T15:11:24",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-09-08T15:11:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitjobs\",\"blockchain\",\"developer\"],\"image\":[\"https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:54:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14341719035931,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "22.508 HBD",
+    "percent_hbd": 10000,
+    "permlink": "new-steemit-job-posting-blockchain-developer",
+    "post_id": 1173018,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Blockchain Developer",
+    "title": "New Steemit Job Posting: Blockchain Developer",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitjobs/new-steemit-job-posting-blockchain-developer"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 4152367932922,
+        "rshares": 5918843919195,
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1133069631465,
+        "rshares": 6188577829665,
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 25104157850610,
+        "rshares": 44768805123,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 281563837555,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104040479,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3768680486,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 683998880,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54822763106,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3745363549909,
+        "rshares": 63475363560,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663275306,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213794688,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624987874,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973106272,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288351745,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 407365466819,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 944762156062,
+        "rshares": 6037456578,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34065858898,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1676027632124,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1412752719,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 12169071403,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 1967335894046,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 54982482422,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 181123599305,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3924899966690,
+        "rshares": 81192700375,
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52215058764,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 5337878917,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 26683593850,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 13487365582,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2491498635,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 47467283996,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 916861351,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 27308507679,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 7545983800,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 22847570702,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 15211965868,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11270713350,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "5300",
+        "reputation": 3740136030964,
+        "rshares": 637699371,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12277776,
+        "rshares": 62030829,
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3299387426,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9074805566,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 60418402,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 660913097252,
+        "rshares": 3404025861,
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 54523663,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 330178623,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312902704,
+        "rshares": 71104606,
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51341602,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896905122572,
+        "rshares": 109940460,
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146022781,
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154943231,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86373454182,
+        "rshares": 145903154,
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 138768078,
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 150546432,
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 896905122572,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Front End Developer\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for a front-end developer to help us create the perfect GUI. Expertise in ReactJS is a must as is an eye for design and simplicity. You will work closely with all members of the Steemit team in a collaborative and fast pace start-up.\n\n### Responsibilities\n- Help define strategic direction for UI\n- Incorporate technologies and tools for all User Interfaces\n- Define and maintain testability, security, performance, quality, and usability needs\n- Define consistent patterns, reusable components, coding standards, etc.\n- Leverage the latest front end technologies to quickly deliver products while collaborating with design teams to bring the vision to reality\n- Optimize scalability, reliability, efficiency, and performance\n\n\n### Qualifications\n- Fluency with ReactJS\n- Killer portfolio of work\n- Exceptional design skills with an eye for simplicity & attention to detail\n- Ability to work collaboratively with a diverse group of individuals \n- Willingness and ability to learn quickly on the job\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 1795,
+    "cashout_time": "2016-09-15T14:36:06",
+    "category": "steemitjobs",
+    "children": 2,
+    "created": "2016-09-08T14:36:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemitjobs\",\"jobs\",\"frontend\",\"developer\",\"reactjs\"],\"image\":[\"https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:53:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17237688355945,
+    "parent_author": "",
+    "parent_permlink": "steemitjobs",
+    "pending_payout_value": "32.250 HBD",
+    "percent_hbd": 10000,
+    "permlink": "new-steemit-job-posting-front-end-developer",
+    "post_id": 1172674,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Front End Developer",
+    "title": "New Steemit Job Posting: Front End Developer",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemitjobs/@steemitjobs/new-steemit-job-posting-front-end-developer"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 4152367932922,
+        "rshares": 6037220797579,
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1133069631465,
+        "rshares": 6188577829665,
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 25104157850610,
+        "rshares": 44768805123,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 275442884564,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104040479,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3768680486,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 683998880,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6866537342197,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54822763106,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3745363549909,
+        "rshares": 62230748588,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663275306,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213794688,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624987874,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973106272,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2426634324,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288351745,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 407365466819,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 944762156062,
+        "rshares": 5909000055,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34065858898,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1676027632124,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426395561,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 12169071403,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2014177224856,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 110343825376,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 56082132071,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 208041294929,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 810326494,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687280474158,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3924899966690,
+        "rshares": 82816554383,
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52215058764,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 328801133166,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 5337878917,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 11267463759,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 27228156990,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 13487365582,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 48416629676,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 916861351,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 25669997218,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1716002786,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 7545983800,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25386139768,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 70391342282,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 297488015220,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11496127617,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12277776,
+        "rshares": 62030829,
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439786891,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525888505148,
+        "rshares": 17391787537,
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9074805566,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 79579408,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 69901150,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 60418402,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7577221661,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 54523663,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25313560101,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 336916962,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312902704,
+        "rshares": 71104606,
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78462337,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896905122572,
+        "rshares": 112139269,
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676794,
+        "rshares": 143652897,
+        "voter": "zaidkhalifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158720852,
+        "voter": "carloss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 130634157,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 149129648,
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154943231,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86373454182,
+        "rshares": 145903154,
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 138768078,
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 150546432,
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 896905122572,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Community & Social Media Manager\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for an exceptional communicator to be the liaison between Steemit and our rapidly growing user base.  This is a role where you will be an expert in building and growing communities on and offline; you\u2019ve got ideas for this and can implement them.  You can also think big picture and for the long term \u2013 your ideas will reflect that.  Online communities are where you thrive and as such you know how to leverage them and will be able to do so for Steemit.  You have a track record of getting things done, live and breath social media, and want to work with a fast growing company that will change the world.\n\n### Responsibilities\n- Help deliver a best in class user experience to Steemit users who engage with us through social media\n- Be an active voice on relevant channels as a Steemit advocate\n- Monitor and post content to and across other social media networks including Facebook, Twitter, Reddit, etc. on a daily basis\n- Develop and track performance metrics for social media channels and advise on ways to maximize performance\n- Develop customer acquisition strategies through social media channels\n\n### Qualifications\n- 2 or more years of experience managing a brand's online presence\n- Motivated self-starter with great communication and writing/editing skills\n- Ability to collaborate and work with others, taking their viewpoints into consideration\n- Good judgment, professionalism, and levelheadedness as a social media ambassador\n- Nice to have: Interest in cryptocurrency and blockchains with experience in the community\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 2344,
+    "cashout_time": "2016-09-15T14:25:18",
+    "category": "steemit",
+    "children": 21,
+    "created": "2016-09-08T14:25:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitjobs\",\"jobs\",\"marketing\",\"socialmedia\"],\"image\":[\"https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:53:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 25834048756473,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "40.127 HBD",
+    "percent_hbd": 10000,
+    "permlink": "new-steemit-job-posting-community-and-social-media-manager",
+    "post_id": 1172537,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Community & Social Media Manager",
+    "title": "New Steemit Job Posting: Community & Social Media Manager",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitjobs/new-steemit-job-posting-community-and-social-media-manager"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 20924903115,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 316515996824,
+        "voter": "chitty"
+      },
+      {
+        "percent": "5100",
+        "reputation": 14073457536993,
+        "rshares": 53674162292,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 375656420380,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 37310054020,
+        "voter": "james-show"
+      },
+      {
+        "percent": "1400",
+        "reputation": 15755437221598,
+        "rshares": 2261027179,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 401475391,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426173324,
+        "voter": "murh"
+      },
+      {
+        "percent": "3200",
+        "reputation": 16234753830016,
+        "rshares": 24526746705,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 208985003729,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 15761970927,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2706408618,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "3400",
+        "reputation": 22794273843250,
+        "rshares": 61572228994,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 598181152117,
+        "rshares": 85869752009,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 44050470303,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2503881173561,
+        "rshares": 10487597892,
+        "voter": "nineyards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3661397048,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 59328435116,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 32438700122,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 8253914298,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 8181635146,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14239373762,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9081117484953,
+        "rshares": 30764850573,
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 441006366819,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 112591076283,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 155086424302,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 66801231,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4047643732,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 3092827406,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 434137550,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2614032281,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 395135521,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 43466091162,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3789831728,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5556418828,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2552654221,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 957548802260,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19817905281,
+        "rshares": 212019463,
+        "voter": "jasen.g1311"
+      },
+      {
+        "percent": "6600",
+        "reputation": 7172977970558,
+        "rshares": 2338658584,
+        "voter": "ace108"
+      },
+      {
+        "percent": "3800",
+        "reputation": 17698439393799,
+        "rshares": 12829825322,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 4238804280,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": -39372262885,
+        "rshares": 52207362,
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25386139768,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5075657424,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 4393674302,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "300",
+        "reputation": 10771708337101,
+        "rshares": 63288595594,
+        "voter": "laonie"
+      },
+      {
+        "percent": "9000",
+        "reputation": 9337635520,
+        "rshares": 7296353019,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958503,
+        "rshares": 58804600,
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "3100",
+        "reputation": 18027204457681,
+        "rshares": 13007083652,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "4000",
+        "reputation": 5776723480371,
+        "rshares": 103099601827,
+        "voter": "somebody"
+      },
+      {
+        "percent": "4000",
+        "reputation": 206355094166,
+        "rshares": 3856981690,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "4000",
+        "reputation": 97845484474,
+        "rshares": 22781126275,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "300",
+        "reputation": 3016325652890,
+        "rshares": 7095478692,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 154454721,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "3900",
+        "reputation": 1851205309677,
+        "rshares": 1782244397,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "4000",
+        "reputation": 4195733833721,
+        "rshares": 3591246793,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641833483915,
+        "rshares": 2846899090,
+        "voter": "lightsplasher"
+      },
+      {
+        "percent": "4000",
+        "reputation": 730408370151,
+        "rshares": 235835929,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 10995099944,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 68417395,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 905160938,
+        "rshares": 53516176,
+        "voter": "cnmtz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26476661103,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 59047422,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 2897317590,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1631282506,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 9771811576,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 91543033,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 12721442209,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288672343,
+        "rshares": 335474158,
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 842943776,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 52636635,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 116378965,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78376579,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144014259,
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9906297,
+        "rshares": 146428143,
+        "voter": "anysound.studio"
+      }
+    ],
+    "author": "craig-grant",
+    "author_reputation": 54345938068170,
+    "beneficiaries": [],
+    "body": "change gon come\nhttps://www.youtube.com/watch?v=pb7shsTextM\n\n### read Ned's post @ https://steemit.com/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction\n---\n\n---\nhttps://www.steemimg.com/images/2016/09/07/20160907_200828f7272.jpg\nhttps://www.steemimg.com/images/2016/09/07/20160907_20085398483.jpg\n\n####  Get 3 meals for $30(shipping included), each meal serves two. That's $5 per meal for the highest quality food you will ever taste @ [https://www.homechef.com](https://www.homechef.com/invite/ezxbJf89eBnV)\n---\n\nFollow @craig-grant\n\nHeaven = have fun :)",
+    "body_length": 586,
+    "cashout_time": "2016-09-14T23:51:24",
+    "category": "freedom",
+    "children": 15,
+    "created": "2016-09-07T23:51:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"freedom\",\"steemit\",\"steempower\"],\"users\":[\"craig-grant\"],\"image\":[\"https://img.youtube.com/vi/pb7shsTextM/0.jpg\",\"https://www.steemimg.com/images/2016/09/07/20160907_200828f7272.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=pb7shsTextM\",\"https://steemit.com/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction\",\"https://www.homechef.com/invite/ezxbJf89eBnV\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T00:31:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 3501633293272,
+    "parent_author": "",
+    "parent_permlink": "freedom",
+    "pending_payout_value": "1.473 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steem-report-curation-and-steem-power-ideas-by-ned",
+    "post_id": 1165807,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "STEEM report, curation and steem power ideas by Ned",
+    "title": "STEEM report, curation and steem power ideas by Ned",
+    "total_payout_value": "0.000 HBD",
+    "url": "/freedom/@craig-grant/steem-report-curation-and-steem-power-ideas-by-ned"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28904209517709,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 446491524573,
+        "rshares": -56559208770,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 633095325237,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 404682721071,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "5100",
+        "reputation": 42786247901122,
+        "rshares": 25814870366911,
+        "voter": "dan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2321790225223,
+        "voter": "diaphanous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2077749979912,
+        "voter": "bmw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1860859029886,
+        "voter": "books"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1551086497755,
+        "voter": "butterfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1469367520215,
+        "voter": "commedy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 6141142270335,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 6934956643994,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5536285359773,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103030120,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1689669975555,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767362463,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690899726,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6142381502949,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54638988750,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662795178,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213777416,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 3921583473347,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 62849848037,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1460238073,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 897783861872,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 118160004239,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8846544205,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2249794908,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1220931423430,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 326641694341,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 23992305455,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624870220,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 268787058152,
+        "rshares": 26771021432,
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969744364,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 804647377325,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5154121875287,
+        "rshares": 78719523584,
+        "voter": "jwest40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 361589712598,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 32423888615,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288328206,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 83099570491,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24793284195,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14471587511,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 163614861708,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 9864254866,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14902174889,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "5000",
+        "reputation": 14073457536993,
+        "rshares": 71563667896,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 52311045620,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411271639019,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78952260790,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 11754655518,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3913661416,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 552268439259,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 487226144,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "6100",
+        "reputation": 944762156062,
+        "rshares": 3975544133,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5612587148,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11372617606769,
+        "rshares": 109201913867,
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 28968973138,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2062724006,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 331414403780,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3200",
+        "reputation": 15755437221598,
+        "rshares": 4518704719,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 144379940729,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 54482680287,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 33524081215,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4611433093423,
+        "rshares": 26516736386,
+        "voter": "tmendieta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 37994042628,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7317943657,
+        "rshares": 2366331863,
+        "voter": "alenevaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 534991050,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 67845312433,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425735650,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 6894648848,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 17773072912,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 602425396,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 13216041083,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 198603454941,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598588545490,
+        "rshares": 15588807020,
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 42080883570,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 941565976892,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 23912266183,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 6242728467,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 4685622702,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 12984552465,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "7600",
+        "reputation": 71931696380,
+        "rshares": 2917169504539,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 386419893744,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 8806878751,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 380391693,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 52367224290,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10450737135,
+        "rshares": 349484107,
+        "voter": "yonatann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 377770820778,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14734236654427,
+        "rshares": 40679365477,
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62345041692781,
+        "rshares": 308660771107,
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "500",
+        "reputation": 20763505296686,
+        "rshares": 13998741368,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55873941967,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 108025258280,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 53194598358,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 412538354215,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1486565432,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13353610720,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212451198738,
+        "rshares": 430294140,
+        "voter": "magdalena"
+      },
+      {
+        "percent": "4700",
+        "reputation": 1050758001641,
+        "rshares": 11167158479,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 988882833,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19192619156,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 15756733173,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 33784111908,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 182873871538,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5709056203,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9721696359,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687254164754,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1133039287233,
+        "rshares": 1075516962,
+        "voter": "comm-press"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 109117596483,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6740408834,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31925745781,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 68617907780,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2375236125,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "3000",
+        "reputation": 6767512298331,
+        "rshares": 12981212473,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3755852203,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "5400",
+        "reputation": 2632946346,
+        "rshares": 15858494668,
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 536461338,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 40094142832,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 39857869532,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 50782349370,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "2500",
+        "reputation": 17405459234693,
+        "rshares": 22535574872,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 275298770505,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 20203030978,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 243464927250,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 318035694495,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 43816713486,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 60077712293,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 90689728719,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3297954099,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 8587323673,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 17199764671,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254364900,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 22616447166,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122136592502,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 282238576797,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 3286950628,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 516176839,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 12276334224,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6927337869,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 242042299,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1597179386,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 456375266764,
+        "rshares": 69160956194,
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 120331087671,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 26149661294,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573516438,
+        "rshares": 2761970265,
+        "voter": "wintrop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91432229392,
+        "rshares": 7012104525,
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 513898732093,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 4223216611,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 112572902958,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81102912,
+        "rshares": 236699236,
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "3100",
+        "reputation": 3320684282022,
+        "rshares": 48431592474,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727668809534,
+        "rshares": 5516539304,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "5200",
+        "reputation": 657552887015,
+        "rshares": 2893393868,
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 710038072,
+        "rshares": 1111186856,
+        "voter": "demyan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 56528698039,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 16937012018,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325589414514,
+        "rshares": 525662045,
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40069670306,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1525991347,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 17954765467,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4507281503,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "4200",
+        "reputation": 9968156990,
+        "rshares": 26722878081,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3949738963,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11743458717,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4685025327,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1855825,
+        "rshares": 218350821,
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60009630836,
+        "rshares": 2438495293,
+        "voter": "thelindvall"
+      },
+      {
+        "percent": "0",
+        "reputation": 11644551965460,
+        "rshares": 426995359,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2200070551939,
+        "rshares": 10624714992,
+        "voter": "fogspam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3758226202,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 24926432348,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11466221508,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 11346695853,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 38296982211,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 12382501577,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 12897559714,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2086071510,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 235512684,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 20010696496,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 55174325289,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 45468090152,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510987855,
+        "rshares": 240374641,
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7144301672,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 96640276,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 129948707617,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3709534148,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5772890880,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 2091519389,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13003141497,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3175079093,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 18161034703,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2450336934,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 201222637041,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 2452090874303,
+        "rshares": 2045718563,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 13357712366,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "2900",
+        "reputation": 57820199104417,
+        "rshares": 40980982912,
+        "voter": "opheliafu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 298430647098,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661515438853,
+        "rshares": 5853998263,
+        "voter": "kidsysco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3493315959,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14607170571,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64250965781,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 123387400,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 7924257770,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7311343446,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3248799071,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1107579084929,
+        "rshares": 2691561605,
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 848614521,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 4244751071,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 13833357665,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3244193020,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 2283280595,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 26463727332,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 38546045916,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 39483002950,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 84759836456,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3415496053078,
+        "rshares": 3869796932,
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 104788510,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182754922360,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 977883724416,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 9747030367,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 39264915236,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1781950310,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269576627,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269980297,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156093986,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156975275,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89476508,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 115403915,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 95203313420,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078296488269,
+        "rshares": 10448758256,
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 32452429861,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 496208892,
+        "rshares": 115883340,
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96522929177,
+        "rshares": 133255616,
+        "voter": "bigb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 571692815,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 3835587963,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 5372665495,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 15514579228,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 916462256,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15575145963,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614416410,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 3297833326,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 432287231,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1750139335,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 231618512,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 4914389699,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81028161,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2242469546,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125619617814,
+        "rshares": 2849432107,
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 554432980,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 36985556688,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1731857982,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5554504133,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13518235137,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3821319838891,
+        "rshares": 21557151502,
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 142706881,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6699598900,
+        "rshares": 115172592,
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27075686327,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 244863448245,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 2873547475,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 188414958,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1458929155,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19540258029,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 3150369025,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5474983827,
+        "voter": "jed78"
+      },
+      {
+        "percent": "4900",
+        "reputation": 283380527576,
+        "rshares": 6677336214,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 122226950104,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1254151045,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 4400767306,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 70376481208,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7870689325,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 6529244168,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 59219358,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636819078766,
+        "rshares": 1561593690,
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 6817558610,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 58958028,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 604356859725,
+        "rshares": 2501549780,
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552713989475,
+        "rshares": 18337113073,
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 25086446776,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 130522396758,
+        "rshares": 54208918167,
+        "voter": "sextusempiricus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 25748578986,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1916476866,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19073889900896,
+        "rshares": 20943614649,
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 14587304759,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2312594930,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4344940420,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6812512111,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1393113935,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8284755955,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 101494312815,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 100860038,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 91120502513,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5443084062,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12780436995,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1232895758,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 58773515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 189563166525,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 312105000,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 59410849,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 55911760,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": -451593763871,
+        "rshares": 3302532712,
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 710962726,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 55449983,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2860793589,
+        "rshares": 982196003,
+        "voter": "fooblic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1986815415,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 145684441672,
+        "rshares": 580406077,
+        "voter": "bmcv001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 21699399275,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 55306941,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1558777881,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 68397753,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 67990404,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 29495720282,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 60730988,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1884653469,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 74898697,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 88707336012,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725736773651,
+        "rshares": 490764449,
+        "voter": "sc-steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52419023,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 56143792,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 577428472,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 6753644017,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11525643543,
+        "rshares": 62395538,
+        "voter": "olya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 8451306126,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54313084,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1549192117,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 19205801220,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 56598010,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56591855,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 75583534,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2707740797,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 640494020911,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1371874570,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 67104569235,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 12003456501,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1389946718,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2560790218,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 963036943,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54220781,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54218223,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54216305,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54213405,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54209199,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4276803918,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 187186651,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8469707556,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1856443329,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2569452228,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53821337,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2866954104,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 22522846885,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 6050957442,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310309073633,
+        "rshares": 1871540303,
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 71218036289,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 47545219036,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9053611702217,
+        "rshares": 4000720825,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 18578707926,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "100",
+        "reputation": 896116963054,
+        "rshares": 5228073529,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4503042264,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52708083,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58330329,
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23296483960,
+        "rshares": 59194500,
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 733021198,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565688,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 4382079199,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1624044881,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 2017275348,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1572019930,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 4887499753,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 670709305,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 25570333868,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 69572705,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 57437168622,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 98218493,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199905262704,
+        "rshares": 90577741,
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 79568473,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 20981590167,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34250890230,
+        "rshares": 57330113,
+        "voter": "aavkc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 675058400,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2433107936,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 9191275813,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52836995,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 6743441072,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 3101985046,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1616413109,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 66879121,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 133765107,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7518726707,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620019,
+        "rshares": 56987529,
+        "voter": "thepeacefulrebel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 52842496,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25413691969,
+        "rshares": 185622553,
+        "voter": "greatness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52505412,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52496656,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 12190963825,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "7100",
+        "reputation": 837791549130,
+        "rshares": 24470534532,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15150640986,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 3748408212,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 85083750,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6359996795,
+        "rshares": 52847912,
+        "voter": "teruneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6671012929,
+        "rshares": 57099030,
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5529568480,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 5272311109,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51814474,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51812703,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 17059963076,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1518574310,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51451058,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 3064424390,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 277324152,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 89038335,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117903399171,
+        "rshares": 537067064,
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51148009,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1769489244,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2605716510,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 343538723,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 1449131127,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1647174,
+        "rshares": 50554364,
+        "voter": "danbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 327174897,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 334013630052,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8671572242235,
+        "rshares": 5674559575,
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59387530704,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "3000",
+        "reputation": 26215514,
+        "rshares": 9136703623,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 1167978510,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 353288883728,
+        "rshares": 482952591,
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451285776301,
+        "rshares": 52226204,
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50050365062,
+        "rshares": 61567608,
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70707045777,
+        "rshares": 161284159,
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 582922475,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1642685153,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 2929180084,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 210337011,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5725265619,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4651778852,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2744828616,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327349908318,
+        "rshares": 357202147,
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 55826263,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2818894604,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1951311375,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 1129379312,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1713402087003,
+        "rshares": 5911683344,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1420415841,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768451347973,
+        "rshares": 338284222,
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 8712540579,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 347888867,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638366942222,
+        "rshares": 1352042554,
+        "voter": "mojojojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 1457160010,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 336901289,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 343046311,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 659608632671,
+        "rshares": 1039370994,
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4689184321,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1124648368001,
+        "rshares": 924825759,
+        "voter": "schattenjaeger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 2382508857,
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161389518041,
+        "rshares": 143571824,
+        "voter": "flowergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3938805566864,
+        "rshares": 615424969,
+        "voter": "nathanjtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68065278228,
+        "rshares": 77317255,
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1692965069,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50568084,
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50536471,
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50532230,
+        "voter": "friends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50508468,
+        "voter": "lookie-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271380763884,
+        "rshares": 52005424,
+        "voter": "natord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47952480972,
+        "rshares": 55484657,
+        "voter": "steemettes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 50317220,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1757970224,
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151518932812,
+        "rshares": 4316683465,
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2918207689,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74402358,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1309209290,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154426469,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10583434066,
+        "rshares": 161446234,
+        "voter": "yasiin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2435301894,
+        "rshares": 164151372,
+        "voter": "flowmetheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2064615506,
+        "rshares": 147014100,
+        "voter": "eunnykim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675589247639,
+        "rshares": 1065088190,
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159374062,
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156089617,
+        "voter": "kalev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 152729000,
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678509864471,
+        "rshares": 276984194,
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875118455,
+        "rshares": 132806923,
+        "voter": "swtcamito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158051137,
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157727916,
+        "voter": "dulani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39836927140,
+        "rshares": 141916333,
+        "voter": "laskoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 154501465,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119814391,
+        "voter": "oliver.smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157648960,
+        "voter": "viper666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 110346066,
+        "voter": "jack.johnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160689927,
+        "voter": "paulreifsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11669657116,
+        "rshares": 122578153,
+        "voter": "rubenkusters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7559361841,
+        "rshares": 157126941,
+        "voter": "adpipop"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1013362818,
+        "rshares": 157060221,
+        "voter": "craneos6626"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33427042566,
+        "rshares": 147606365,
+        "voter": "laskovskiy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7037495995,
+        "rshares": 153814397,
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159993665,
+        "voter": "ttarabichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1478840966,
+        "rshares": 156821466,
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10568161397,
+        "rshares": 125821091,
+        "voter": "jasonxg"
+      }
+    ],
+    "author": "dantheman",
+    "author_reputation": 145171381514207,
+    "beneficiaries": [],
+    "body": "<center>https://i.imgflip.com/p1ij6.jpg<br/>**CENSORSHIP**</center>\n\nLanguage is a very powerful tool because it shapes the way we think. The words we choose to use [impact how we think, feel, and reason about the world around us](https://en.wikipedia.org/wiki/Linguistic_relativity). Today I would like to address the word *censorship* because it is a very hot topic on steemit.\n\nThe first problem we always face is different and ambiguous definitions for censorship.  Unfortunately, it isn\u2019t always practical to *define* our terms in every debate and therefore drama queens toss the term \u201ccensorship\u201d around far too easily. I would go so far as to say that the censorship card is played about as often and illegitimately as the race card.  Often those who play the *race card* are more *racist and oppressive* than those they slander, the same principle applies to those who play the censorship card.\n\n## Censorship requires Aggression \n\nThe defining characteristic of a free society is the absence of initiation of violence. This includes the credible threat of violence, fraud, theft, etc.   Without the threat of aggression people can freely say whatever they want, whenever they want without fear that their person or property will be harmed. A critical distinction of a free society is that you cannot express yourself in ways that violate the property rights of others.\n\n## Graffiti is Aggression and violation of Property Rights\n \nGraffiti is defined as writing or drawings scribbled, scratched, or **sprayed illicitly on a wall or other surface in a public place**. In a free society the Graffiti artist would be tracked down and expected to pay restitution to the property owner.  No rational individual would argue that the artist has been censored by the property owner or that the property owner is the one initiating aggression against the artist.\n\n## Property Owner defines Art vs Graffiti \nThere are places where graffiti-style art is acceptable and is actually encouraged. In this case no aggression has occurred and therefore the action is legitimate. \n\n<center> https://farm8.staticflickr.com/7485/15754046208_7d666a75a9_o.jpg</center>\n\n## Spam, Porn, Harassment, and Fraudulent posts are Digital Graffiti  \n\nWhen it comes to websites like Facebook, YouTube, Google, Reddit, and Steemit we have digital property owned by individuals providing a free and voluntary service to society. It is not possible for these organizations to censor user content because they are not using violence, theft, etc. \n\nThe only true censorship is when government agents approach these companies and demand content be removed under threat of force or violence.  Provided these companies are not under any kind of threat, there can be no censorship.\n\nWhen someone [demands that YouTube share ad revenue](/steemit/@calaber24p/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video) they are taking the role of the Graffiti artist that demands property owners not repaint over their artwork.\n\nSome people may consider the [Graffiti artwork worth thousands of dollars](https://en.wikipedia.org/wiki/Banksy), but this doesn\u2019t change the moral character of the vandalism.  Likewise, some people may feel their humor, sarcasm, teasing, crude language, or vulgar posts to be artwork and demand that other users see it and/or up vote it for payment. \n\n## Graffiti Hurts Community Value \n\nWe all love the idea that Free Speech adds value to the speaker, but our selfish desires to be heard come at the expense of the listeners.  Few people desire to move into a neighborhood where there is unfettered graffiti and complete disrespect for property rights.  Likewise, few people want to join an online community where there are no standards of mutual respect.\n\n## A Perception Problem \n\nWe have a very real problem in society today.  The problem is that people feel *entitled* to things that are not theirs.  Whether it is health care, google ranking, reputation, or [right for gay couples to be served by particular vendors who oppose gay marriage](http://www.politifact.com/florida/statements/2013/jul/08/tony-perkins/wedding-vendors-have-been-forced-participate-same-/).  These entitlements can only be delivered by initiating force and violence against innocent people.\n\nIf a particular vendor (YouTube, Facebook, Google, or your Local Florist) will not serve you, then you must take your business elsewhere.  Vendors who lose a significant amount of business will voluntarily reconsider their policies.   \n\n## But they have a monopoly!  \n\nTo the extent that a business gains the vast majority of the market share without relying on government regulations to shield them from competition, the monopoly is deserved and was earned by providing a quality product that others were unable to compete with.\n\nThere are no laws forcing everyone to use Google, YouTube, Reddit, or Facebook. There are no regulations preventing competitors from starting up and competing.  Complaining about their unwillingness to serve you is like a local mall refusing to allow certain tenants.  It will certainly make business more challenging for those tenants, but the prospective tenants are not entitled to a prime high-traffic spot in the mall.\n\n## Flagging Posts based upon Differing Opinions \n\nSome people have been complaining about users who down-vote posts they disagree with. The basis of the idea is that all posts are *entitled to* funding from those who support the ideas.  This stance is in direct opposition to the vested interests of every stakeholder.  \n\n\n<center>http://godfatherpolitics.com/wp-content/uploads/2014/03/thomas-jefferson.png</center>  \n\nWhat should happen when one stakeholder wishes to fund a cause abhorrent to another stakeholder of equal size?  The two opinions are canceled out and the remaining stakeholders get to decide.\n\n## Incentive to be Tolerant and Inclusive \n\nAll users, particularly whales, have financial incentive to be tolerant and inclusive.  This grows the overall network effect and makes everyone the most money possible.  To the extent any community adopts a culture of intolerance that overly restricts the range of acceptable opinion it will push people away.  New communities will form to serve the needs of those who are rejected and the free market competition for mindshare will continue.\n\n\n## Conclusion\n\nIf Steem remains a libertarian / anarchist enclave then it will fail to attract a broader audience and that in turn will mean that ordinary people will not get involved with cryptocurrency.  Likewise, if Steemit fails to curtail abusive, threatening, and toxic individuals it will also drive away the broader audience leaving only those with skin thick enough to take the abuse of trolls.  \n\nI want Steem be a healthy, vibrant community with engaging discussions from people with all points of view. Unfortunately (and fortunately?), I am only one of many users who have a say in what kind of content gets voted on.  Each and every one of us contributes to the culture and we will all succeed or fail based upon how we act.\n\nLets stop throwing the term \u201ccensorship\u201d around here on Steemit unless it is explicitly referring to the threat of violence.  It is out of place and conjures up inappropriate negative reactions similar to playing the race card.  Instead, lets focus on the rights of all voters to express their opinion for or against any post.  If you disagree with how someone is voting, then focus your argument on how something adds or removes value to the community rather than whether someone is committing the \u201cvile\u201d sin of non-censorship by utilizing their legitimate voting rights.\n\nSteemit is a free and voluntary platform built on the basis of free association; censorship is impossible in such an environment even if the community or steemit.com chooses to minimize the visibility of some content or block it all together.  \n\nThe blockchain is open, your content is logged and recorded for all time.  Anyone who wants to see your content or offer a competing service to steemit.com is free to curate and display what they like.  \n\n## P.S. On Definitions \n\nWe live in a world where common words are generally used in ways that are in direct contradiction of their meaning.  The unfortunate reality dramatically lowers the quality of public discourse because it allows people to talk past each other.  Activists leverage the emotional response to the word censorship to provoke people into violating the property rights of others.  It may well be that censorship is taking on a broader meaning that would also encompass the no coerced behavior of Google, Facebook, etc.   The problem with the broader meaning is that the word censorship is no longer useful for accurately defining moral/immoral behavior.  Under the broader definition, accusing someone of censorship is as meaningless as accusing them of filtering spam emails.  How dare they censor spam artists!",
+    "body_length": 8987,
+    "cashout_time": "2016-09-13T18:45:36",
+    "category": "censorship",
+    "children": 164,
+    "created": "2016-09-06T18:45:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"censorship\",\"steemit\",\"steem\"],\"image\":[\"https://i.imgflip.com/p1ij6.jpg\",\"https://farm8.staticflickr.com/7485/15754046208_7d666a75a9_o.jpg\",\"http://godfatherpolitics.com/wp-content/uploads/2014/03/thomas-jefferson.png\"],\"links\":[\"https://en.wikipedia.org/wiki/Linguistic_relativity\",\"/steemit/@calaber24p/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video\",\"https://en.wikipedia.org/wiki/Banksy\",\"http://www.politifact.com/florida/statements/2013/jul/08/tony-perkins/wedding-vendors-have-been-forced-participate-same-/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T18:45:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 117550898840994,
+    "parent_author": "",
+    "parent_permlink": "censorship",
+    "pending_payout_value": "1193.947 HBD",
+    "percent_hbd": 10000,
+    "permlink": "censorship-is-impossible-in-a-free-society",
+    "post_id": 1149625,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Censorship is impossible in a Free Society",
+    "title": "Censorship is impossible in a Free Society",
+    "total_payout_value": "0.000 HBD",
+    "url": "/censorship/@dantheman/censorship-is-impossible-in-a-free-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28904011889414,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 520098232581,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 27187008322655,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 169804839880,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2636342185376,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 169207940021,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "3300",
+        "reputation": 51047995307721,
+        "rshares": 3073876330742,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2008563761368,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 594575320115,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1011916646700,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 2393257515326,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1107774806631,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4973802490322,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4674533411216,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2482055809,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1809839585238,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3013424240,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 552662812,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 491465130261,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43649505393,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5572119315,
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 32994834817,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 392020164380,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26825111274,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1330064009,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 171009273,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 208927024954,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2005815389795,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11196356543,
+        "voter": "steemservices3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 13072638952,
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 14855376121,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 444955155332,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2792476965429,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1532665365,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 918878966751,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 123571015707,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2248950812,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1453188235245,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 11723893904,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 499845540,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 775709423,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2786483423564,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 408396261389,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 40480067408,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230642309,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 25304604461,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14464815855,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1820924487,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "4800",
+        "reputation": 1421425103482,
+        "rshares": 12861662310,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81300407183,
+        "rshares": 548931646,
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1055355445022,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 19313464152,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41145563244589,
+        "rshares": 832212930452,
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1845145940128,
+        "rshares": 68620290271,
+        "voter": "idealist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 611673479623,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 19603806106,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2766508550901,
+        "rshares": 29124731949,
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 487043900,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5487072034,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11372617606769,
+        "rshares": 110425095104,
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 29577376352,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2105697423,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 338115289584,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 26446572833,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 13242421616,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 733881760856,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 679520448,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "4200",
+        "reputation": 15755437221598,
+        "rshares": 4974441347,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 151937411878,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 230470945840,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 534596286,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 74166126146,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 623001349410,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425459923,
+        "voter": "murh"
+      },
+      {
+        "percent": "5000",
+        "reputation": 426343346149,
+        "rshares": 3590512275,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2634258540,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 378920499792,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598588545490,
+        "rshares": 15588807020,
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 42977927576,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 64657896111,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 98243686947,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24400271615,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 8199640991,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 13249527549,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 377944761420,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 380255021,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 370334988153,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 233304410850,
+        "voter": "wingz"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3804349938696,
+        "rshares": 33522431436,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 54397942319,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 213100572181,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9389887938261,
+        "rshares": 6210962615,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 403936875902,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 539220549910,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 78420366563,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1012427662,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 3247481989,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 36310114628,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 719254637693,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21696987204454,
+        "rshares": 167123545461,
+        "voter": "ikigai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5829433150,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687228830675,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 108637592108,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 272424359692,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2937074898,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2502021825,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3406174686,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 36049155648,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 562575775,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 43623897139,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 44534121657,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 53127948729,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 243464927250,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 15603689614497,
+        "rshares": 14593112076,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "2600",
+        "reputation": 1959446497877,
+        "rshares": 1349434599,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 92800123706,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3329170505,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 15569455870,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 16406069363,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9786117166130,
+        "rshares": 23470130902,
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 467472850580,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 120310968454,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 60653460344,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10592956071,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 103734236038,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3661486271,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 485287450,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 531132027,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 486886690,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 25575729781,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 148458773016,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325589414514,
+        "rshares": 504635563,
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 1206556077,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1630261480,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4600997385,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133430062956,
+        "rshares": 15976597511,
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10929036897,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 13555525897,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3978399004,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 21722940066,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10435159079,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 349470768,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 11941739853,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 43183709774,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 410205647,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 3215762929,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 10050955929,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 429865972,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 370939417531,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 43452166600,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7443194536,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 103711516,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3786816110,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5649736542,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": -485066068148,
+        "rshares": 243501388,
+        "voter": "mix68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837671136243,
+        "rshares": 744454404903,
+        "voter": "ramta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3174794355,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 438064420,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 280968811744,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64246109862,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1911344111,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7024624095,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 7327096445,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 6105234990,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 234706981000,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 29860845400,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116065815,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 102459876,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182710907037,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 37640387244,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 16288614419,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1798884189,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269576627,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269980297,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156093986,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156975275,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89476508,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 542854211690,
+        "rshares": 500969295,
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117711994,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 764587130,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 21325436037,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15571624866,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 644954948,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 8147029083,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 221401214,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 436474032,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1749726803,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 233864769,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81814843,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2222862544,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 537189684,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 502409799,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 536957638,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5841936138,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 117834331,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 29626477289,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 139296107,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 217225350,
+        "voter": "choccy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1859734787,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 18184768944,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 7816664104,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5874256428,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 128078777101,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1279745964,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8331474043,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4306793943,
+        "rshares": 103516772,
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 57873464,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 58958028,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "7300",
+        "reputation": 10771708337101,
+        "rshares": 693670933974,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 2267736473,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 25730062568,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 16142522947,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 51338511950,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 63541793,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4615241075,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 3066422709,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 807752948,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 103522443133,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "7300",
+        "reputation": 3016325652890,
+        "rshares": 77778400648,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 18051601393,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 17911590129,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 93195477512,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5248424662,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1265682837,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 9442440033,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 423788872,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 59410849,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 55911760,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 11703925092,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9523766827937,
+        "rshares": 17730431006,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 55449983,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 55306941,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345831698,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234954849,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 66371585,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 29493027614,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 65068915,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1065111573,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54908311,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54842915,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117308646,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50545877,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62391219,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 56143792,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 116751214,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54313084,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 72982892,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 61874235,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1497361810,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 17605373303,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 35420250755,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 57802223,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57795937,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 101227402628,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 662204978880,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1443290254,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54220781,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54218223,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54216305,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54213405,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54209199,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 59993245,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8891054106,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53821337,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24772824820,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59226282,
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 71200836239,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 46612959839,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "100",
+        "reputation": 4112973711517,
+        "rshares": 163983245,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 16355375535,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 2977572185,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 57797939,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 59044569,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53853911,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 724970673,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54705383,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 146567272,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1923215341,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1366942350,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118894339,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 813530163,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6435147485147,
+        "rshares": 14529944296,
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 58249183,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 77673986,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 7315831479,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2484284234,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56265756,
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52836995,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1650630573,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 127978892,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 52842496,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52505412,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52496656,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 50191639,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 32097581345,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15297756343,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53252658,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5646175108,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52915101,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51223240,
+        "rshares": 397453188,
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 160081558,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51451058,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 158538070448,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55725073,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52230725,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9219166710,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 52088375,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2660739677,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55093071,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 5273026357,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54839629,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 1541628858,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 108903782,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 717513029,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 341331436972,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8671572242235,
+        "rshares": 4014959887,
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 62339306632,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 25877183239,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54601718,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53353220,
+        "voter": "swisswatcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 772900078,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1066584907,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 65975408,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53729098,
+        "voter": "dariuszg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2762392872,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 2035771305,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 1290719213,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1451959158,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 8917175222,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 175892938,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 54059416,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52368690,
+        "voter": "rooster.ninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4788178237,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3966465,
+        "rshares": 50368777,
+        "voter": "eagleeye7850"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10024209538,
+        "rshares": 57266113,
+        "voter": "technium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1093018575,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50536471,
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50484452,
+        "voter": "connect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 50317220,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1684721465,
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 99417982,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2979811276,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3727858482,
+        "rshares": 151614981,
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 51876835,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74402358,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41596863062,
+        "rshares": 81556444,
+        "voter": "brainup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82287966,
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157628162,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60962152,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263024077,
+        "rshares": 163439230,
+        "voter": "zubasky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162925257,
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162911190,
+        "voter": "front"
+      },
+      {
+        "percent": "10000",
+        "reputation": 610439007851,
+        "rshares": 156833866,
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162561543,
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6631576072,
+        "rshares": 162424202,
+        "voter": "unlabeled"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 155910854,
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4958810,
+        "rshares": 161855613,
+        "voter": "jamicwe219"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158660342,
+        "voter": "iberia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161815656,
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585181578869,
+        "rshares": 116987070,
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": -565298235179,
+        "rshares": 107496727,
+        "voter": "elsi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8802439265,
+        "rshares": 160573104,
+        "voter": "sortinghat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154276916,
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 152869602,
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 57302509663422,
+    "beneficiaries": [],
+    "body": "![Alt Text](http://www.geliosoft.com/100-happy-dollars-3d/falling-money-wallpaper.jpg)\n\nHave you ever wondered  why people keep trusting career politicians to handle their finances? It\u2019s a fascinating thing really. This is one of the biggest mind-boggling mysteries that seem to defy even time itself, mysteries that are impossible to explain from a purely rational point of view.\n\nAsk any person in the world \u2013 scratch that \u2013 ask any person in the history of the world to describe politics in one word and you are guaranteed to hear some of the following words: Deceiving, dishonest, incompetent, cheating\u2026Etc. And probably, this is from the generous side.\n\nNow,  ask any of those people how come they trusted those individuals to manage their finances, and it would seem like you\u2019re speaking Chinese to them.\n\n## And that area right there is where the real game is being played.\n\nThat\u2019s the space where critical thinking dulls, where the emperor sells clothes, and no one\u2019s looking at Pinocchio\u2019s nose. How on earth would a known dishonest, power hungry person convince the others that he should be the one that makes the decisions on behalf of everybody?\n\nWorse than that, they give them all the power, no accountability and a virtual 100% probability to screw them , and everybody just keeps pretending to be surprised when these things happens.\n\n# Why Does This Keep Happening to Me?\n\nYou change the country, you change the century but the song remains the same, and the mystery survives. The only way to keep convincing people to accept a deal that acts against their own self-interest is to create a story that makes the exploitation of mankind look like the solution to their problem. \n\n![Alt text](http://vignette2.wikia.nocookie.net/lostpedia/images/b/b2/Lastsupper.jpg/revision/latest?cb=20100117063640)\n\nYou look around, you find countries like Bolivia or Venezuela (just to give a few examples) that are extraordinarily blessed at the very same time with a rich abundance in natural resources  and a starving population despite the fact that these two things should be mutually exclusive by any stretch of the imagination.\n\nYou can\u2019t be that incompetent if you tried.\n\nBut then again, this isn\u2019t about incompetence. Their solutions were already predetermined in the narrative, and when it doesn't work and the tale falls on its own weight, they\u2019ll just repeat the same process again, because the narrative remains the same.\n\nThey keep seizing more lands, more factories and they keep \u201ccracking down\u201d on competition and seize everything in the name of \u2018the common good\u2019. Then they bankrupt them as well and they seize more and bankrupt those too. \n\n### If it wasn\u2019t so heartbreaking it would be hilarious.\n\nHere\u2019s the crazy part of all this is that  this wide spread phenomenon is completely irrelevant to the economic system, the economic policy, or to the continent, and it's happening across the board. \n\n![Alt Text](http://redlikeme.ca/wp-content/uploads/2015/10/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg)\n\nFind me a person in southern Europe that has good things to say about politicians in the ECB.\n\nAll the solutions they present are hell bent on screwing the little guy, whether it\u2019s draconian austerity measures, raising the retirement age, bank bail outs\u2026Etc\n\nI\u2019m not saying that it\u2019s due to incompetence, dishonesty, or both. I\u2019m saying that it\u2019s irrelevant, because the solution is already pre-set beforehand to achieve one purpose, and one purpose only, that power keeps consolidating itself. \n\nThat might explain why we always keep hearing sentences like this one: *\u201cThe game is rigged\u201d*, which happens to be one of the most popular expressions of our generation.\n\nLet me give you another example.\n\nWhen you turn on the radio and there are some finance experts on, how many times we hear the following words: \n\n*They\u2019re making things worse; They\u2019re repeating the same mistakes again;  Things are actually getting worse and not better; The solutions are creating more problems than solving; How come the recovery is worse than the recession?*\n\nYou see where this is going? \n\nAnd this is not exclusive to our generation, in fact this story form is a very common archetypal myth that exists across every society and period of human history.  With the very same the result, that whatever action that will be taken it will only serve to reinforce the dominant narrative.\n\n# Once Upon a Time\n\nIt is believed that the cavemen were the first storytellers, and whoever controlled the dominant story had a strong pull on the rest of society.\n\n![Alt Text](http://www.kino.de/wp-content/gallery/homo-erectus-2007/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg)\n\nThe  human story is at the heart of everything, it\u2019s the prima material of how most people perceive reality, the moment you question someone else\u2019s dominant narrative, the debate is over before it\u2019s even started. For many people, they much rather fall for the same thing again and again and until the end of times, rather than to dare questioning the story they grew up around.\n\n> ### *\u201cIt\u2019s easier to fool people, than show them that they have been fooled\u201d.*\u2014 Mark Twain\n\nThe crazy part however, is that the even if those individuals were to fully realized how they've been fooled, they would probably still willingly walk towards the fire nonetheless. Metaphorically speaking.\n\n### Unless of course, there is a new story that replaces the old story.\n\nI remember reading one of James Altucher\u2019s amazing posts and had a wake up call. I hope I\u2019m not butchering the story, but it basically it goes like this: A friend of James asked him to go with her to the bank to help her decide the best option for her to put her money. Since he has some solid expertise in the finance world, it seemed like a wise decision for her part.\n\nDuring that meeting in the bank, James just sat down, said nothing and only listened, when they finally left the bank he started explaining to her all the ways that they were trying to take advantage of her and rip her off.\n\n*\u201cHow can they do that to me?\u201d*\n\nThe next day, she went to the bank and did everything they asked her nonetheless.\n\n![Alt text](http://blogs-images.forbes.com/maggiemcgrath/files/2015/06/0211_hipster-piggy-bank-401k_1024x576.jpg)\n\n# This is How the Story Goes\n\nCommon folklore has it that there are those people among us that regular people  that look just like me and you, but when they get a magical paper that says that they work for the status quo, then an invisible laser descends from the sky and grants them all sorts supernatural abilities and financial savoir-faire.\n\nWell, sort of... Everything they touch still goes to crap, but that doesn\u2019t matter anymore and their never-ceasing incompetence doesn\u2019t seem to bother anyone either. Because now, they're part of the narrative.\n\n### And apparently, narrative trumps logic. \n\nA successful investor once told me: *Never listen to government economists, if they knew how to manage money, they would\u2019ve made money themselves instead of telling people what to do.*\n\n![Alt Text](https://ascendingstarseed.files.wordpress.com/2016/08/cc12b-preppers2b-2bdoomsday.jpg)\n\nAs the Altucher story goes, along with countless others, whenever there is a threat to the narrative, the debate is over before it has even started. For many people in the world, defying authority is just about the last thing they would do, and that includes killing themselves and their own children.\n\nBut let\u2019s go back to the subject of the day. We tell ourselves a story that defies every single law of the universe, that the idea of good business is spending trillions of Dollars bombing millions of people and generating the biggest debtor nation the world has ever seen.\n\nIf that is not telling you anything then honestly, I don\u2019t know what does.\n\nWe tell ourselves even crazier stories, that if we just grabbed enough productive citizens and stacked them into jail cells for victim-less crimes, or for carrying bits of vegetation in their pockets, then we're going to revitalize the economy, and that oh! We will rehabilitate those poor souls through brutality and sexual violence.\n\n### Again, narrative trumps logic in ways logic can't even perceive.\n\nSome people choose to deny their programming, and that seems as the right choice because sooner or later those stories could start acting as their very own gatekeepers. I\u2019m not talking about inner resistance, I\u2019m saying that maybe we need a new story that replaces the old story.\n\n![Alt Text](http://i0.wp.com/dailyzen.co.uk/wp-content/uploads/2015/03/How-to-Make-Good-choices-and-make-the-most-of-them.jpg)\n\nThere has never been a better time for financial independence than the times we live in, there has never been so many options available for someone to start their own company, find jobs, or make their own movies even\u2026 All of that without dealing with a large number of resistant gate-keepers who may or may not have been programmed to serve a certain narrative.\n\nI don't know about you but personally, if I had to follow a narrative, I much rather have one that I designed for myself rather than one that I was born into.\n\n# Closing thoughts\n\nThey say that when there is a paradigm shift, there is usually a new story that renders the other story irrelevant, but until then and even though the tools are already available to the public, people will not make the final move until they start seeing a certain degree of mass-adoption around them.\n\nIt is that mass adoption aspect that would make it acceptable for their psyche to separate from that old, probably coercive narrative that has been attached to them.\n\n![Alt Text](http://www.elfm.co.uk/wp-content/uploads/2014/12/storytelling-night.jpg)\n\nA few minutes ago, I was just going to end this piece with a question: \u201cDoes the Blockchain need a story?\u201d\n\nBut then I realized that steemit has both the crypto-currency and the story aspect. So I\u2019m swapping that question for a few modest words:\n\nCan we just work together to build something beautiful? Do you guys see what we have here? Why don\u2019t we just focus on what we have and how we can improve it. After all, it\u2019s much harder to create something really great when you\u2019re being held back by unnecessary drama. Wouldn't you agree?\n\n And not to forget:\n\n### Your dream needs you full steem.\n \nSources: [1](http://www.geliosoft.com/100-happy-dollars-3d/) - [2](http://lostpedia.wikia.com/wiki/The_Lost_Supper) - [3](http://redlikeme.ca/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing/) - [4](http://www.kino.de/film/homo-erectus-2007/) - [5](http://money.cnn.com/pf/millennials-and-their-money/) - [6](https://ascendingstarseed.wordpress.com/category/economy-and-global-collapse/) - [7](http://dailyzen.co.uk/2015/03/19/how-to-make-good-choices-and-make-the-most-of-them/) - [8](https://storify.com/ProfKarim/the-power-of-storytelling)\n\n## [*Follow the Alien*](https://steemit.com/@the-alien)",
+    "body_length": 10964,
+    "cashout_time": "2016-09-13T00:18:21",
+    "category": "life",
+    "children": 49,
+    "created": "2016-09-06T00:18:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"philosophy\",\"psychology\",\"alien\"],\"image\":[\"http://www.geliosoft.com/100-happy-dollars-3d/falling-money-wallpaper.jpg\",\"http://vignette2.wikia.nocookie.net/lostpedia/images/b/b2/Lastsupper.jpg/revision/latest?cb=20100117063640\",\"http://redlikeme.ca/wp-content/uploads/2015/10/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg\",\"http://www.kino.de/wp-content/gallery/homo-erectus-2007/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg\",\"http://blogs-images.forbes.com/maggiemcgrath/files/2015/06/0211_hipster-piggy-bank-401k_1024x576.jpg\",\"https://ascendingstarseed.files.wordpress.com/2016/08/cc12b-preppers2b-2bdoomsday.jpg\",\"http://i0.wp.com/dailyzen.co.uk/wp-content/uploads/2015/03/How-to-Make-Good-choices-and-make-the-most-of-them.jpg\",\"http://www.elfm.co.uk/wp-content/uploads/2014/12/storytelling-night.jpg\"],\"links\":[\"http://www.geliosoft.com/100-happy-dollars-3d/\",\"http://lostpedia.wikia.com/wiki/The_Lost_Supper\",\"http://redlikeme.ca/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing/\",\"http://www.kino.de/film/homo-erectus-2007/\",\"http://money.cnn.com/pf/millennials-and-their-money/\",\"https://ascendingstarseed.wordpress.com/category/economy-and-global-collapse/\",\"http://dailyzen.co.uk/2015/03/19/how-to-make-good-choices-and-make-the-most-of-them/\",\"https://storify.com/ProfKarim/the-power-of-storytelling\",\"https://steemit.com/@the-alien\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T08:14:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 110391035728415,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1196.314 HBD",
+    "percent_hbd": 10000,
+    "permlink": "logic-and-fiat-money-are-they-mutually-exclusive",
+    "post_id": 1141233,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/logic-and-fiat-money-are-they-mutually-exclusive"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1068066740232,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 13823888326286,
+        "rshares": -14428335580523,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 6580940624714,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2516500322385,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9730263409820,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2238089828373,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 117245008705,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5581077721826,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1016281567712,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4712575705195,
+        "voter": "wang"
+      },
+      {
+        "percent": "0",
+        "reputation": 1284750610881,
+        "rshares": 50128182486,
+        "voter": "adm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3101248946,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3765091051,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690619464,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54354410559,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661935517,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213718493,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2001205407251,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 418315136885,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 424995350979,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 9028537022578,
+        "rshares": -2859018151628,
+        "voter": "recursive"
+      },
+      {
+        "percent": "6000",
+        "reputation": 68236886814465,
+        "rshares": 223774607744,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 14213361017,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 11473937036,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 623025846,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "0",
+        "reputation": 147478489309626,
+        "rshares": 23639540033,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967713364,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 299060965565,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 121855691094,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288235837,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6500",
+        "reputation": 4290310171633,
+        "rshares": 9548778927,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 38491019685,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1767163827,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419437392055,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "100",
+        "reputation": 12712877967688,
+        "rshares": 1579031296,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 16975075430,
+        "voter": "jademont"
+      },
+      {
+        "percent": "3600",
+        "reputation": 4931834878069,
+        "rshares": 7579732231,
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 376960001789,
+        "rshares": 1459747282,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "0",
+        "reputation": 26867938976163,
+        "rshares": 6757762580,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3600",
+        "reputation": 5414208804644,
+        "rshares": 10632532459,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 16892420207,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 348876921907,
+        "rshares": 1448343606,
+        "voter": "n25052016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7584918683,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 37443492197,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 666866364,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 74100412917,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1419670146,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2578496905,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 39320777722,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 8666838603,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 13246631412,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3835227080462,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 364306847511,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 401376869,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 200733663789408,
+        "rshares": -2339939419364,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "3900",
+        "reputation": 20763505296686,
+        "rshares": 93314085385,
+        "voter": "wingz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3804349938696,
+        "rshares": 28201520191,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 212735022017,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1703172762438,
+        "rshares": 17038534997,
+        "voter": "andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 79982031063,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 15857384273210,
+        "rshares": -209838822321,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1177241468,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "0",
+        "reputation": 12494904871301,
+        "rshares": 5655530548,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2787011053,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 175537967389,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "0",
+        "reputation": 1960155455032,
+        "rshares": 79382741,
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 792170905,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5943847648,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1460965920149,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687075875567,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 46038400775,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 14127596797,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 470524735958,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "2400",
+        "reputation": 6767512298331,
+        "rshares": 11246189112,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5144385016,
+        "rshares": 267393527,
+        "voter": "artisan"
+      },
+      {
+        "percent": "2400",
+        "reputation": 9434414518400,
+        "rshares": 4490182566,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": -781106253,
+        "rshares": 289162489,
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17550246480,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768666239960,
+        "rshares": 1318198250,
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 12952739395,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5365157925,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 266657278,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 47434235880,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 330653046604,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3392620167,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 5858174588,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3326209124802,
+        "rshares": 9866111769,
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5253410818,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 22467197866,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 34735743250,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 47802301892,
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 281926950358,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14545520870,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24971256573,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6918017824,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1946734032,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 16677138219,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17820220099,
+        "rshares": 1339918531,
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "3600",
+        "reputation": 19111656178138,
+        "rshares": 23124728884,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 690010021,
+        "voter": "busser"
+      },
+      {
+        "percent": "0",
+        "reputation": 3149488018622,
+        "rshares": 74680604,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 3891722,
+        "rshares": 188768554,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3600",
+        "reputation": 9142611234,
+        "rshares": 211774654,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3600",
+        "reputation": 3871042,
+        "rshares": 194127478,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "6900",
+        "reputation": 3320684282022,
+        "rshares": 112654580280,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47264506487,
+        "rshares": 2068776947,
+        "voter": "gazm"
+      },
+      {
+        "percent": "1000",
+        "reputation": 8017093633272,
+        "rshares": 1711089537,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1605307412,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "0",
+        "reputation": 3740475854096,
+        "rshares": 126505514,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10429341978,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1855825,
+        "rshares": 237084223,
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1969204308,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4194090115,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 342507039,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 242542379761,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 669199844401,
+        "rshares": 10514634467,
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 2786532034,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 826867066,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 70528519000,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 41938187661,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19329526526,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44336327098,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2974404080988,
+        "rshares": -128498217434,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5644661682,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1919200251,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13274390807,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3093346077,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1874324340242,
+        "rshares": 10945767657,
+        "voter": "stevo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 10151327610,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 259629450569,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -910520517353,
+        "rshares": -30470822745,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 8266500094,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2314406420479,
+        "rshares": 2117017421,
+        "voter": "earnest"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 153387383611,
+        "rshares": -262081883,
+        "voter": "shing3e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1600176825,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7971365358,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 204046586021,
+        "voter": "jl777"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4226573244868,
+        "rshares": 3900840609,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3600",
+        "reputation": 10519849768972,
+        "rshares": 6548020005,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 1399761805,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1833955050,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 277681916,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 278097823,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160825350,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161733355,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 92188832,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 11734903206,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 12811217967,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19696646539,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 8065287272,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17558743505,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 594907055,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 207927318,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 445158598,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 238573730,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 83484533,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3600",
+        "reputation": 147425730,
+        "rshares": 214182446,
+        "voter": "fnait"
+      },
+      {
+        "percent": "3600",
+        "reputation": 3720753029,
+        "rshares": 195430067,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142453259746,
+        "rshares": 7109462134,
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 115507974,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13595360798,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "3000",
+        "reputation": 17218558634066,
+        "rshares": 7520902716,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 129103709,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 1658509913,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 30896278536,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 77914394030,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8783779105,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 3658561552,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 53835780,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636819078766,
+        "rshares": 1556598011,
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 1472655783,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 54844677,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "2000",
+        "reputation": 7564464865541,
+        "rshares": 3995394560,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 25077308053,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 6000428593,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2300718527,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 63541793,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 1821180466,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4338245273,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 2979617190,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1407114808,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7948406128,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 101379161825,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29845491058,
+        "rshares": 70413598,
+        "voter": "ragnaroek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 88710491389,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 4645077272,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "1400",
+        "reputation": 73944659327428,
+        "rshares": 21851097144,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1269864429223,
+        "rshares": -2482187793,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "4100",
+        "reputation": 1433416370023,
+        "rshares": 23525650772,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 55265906,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 53370316,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 12436071828,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61746903,
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 52985539,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1664097198,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 52848854,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 338891141,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 71506742,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230331964,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 61515128,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 593072231,
+        "rshares": 61696026,
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 983145708,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83962397834,
+        "voter": "miacats"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 15841196427096,
+        "rshares": -37335893668,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114992597,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50545877,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61167862,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 53648513,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 74131936,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -61687049,
+        "voter": "kanusteem"
+      },
+      {
+        "percent": "3100",
+        "reputation": 3814152361740,
+        "rshares": 3900348752,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7833422368,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 71551855,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 60661014,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1310680382,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 651551511,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 59610335965,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 834306506,
+        "voter": "inferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 12520030511,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2594661721428,
+        "rshares": 4730854063,
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 3289942651,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1288112247,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 792593563,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51863356,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039566,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51856300,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51852278,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3719392493,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1810222177,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2519054922,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142213881,
+        "rshares": 57399342,
+        "voter": "ethansteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51481279,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 475206804,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58064982,
+        "voter": "zite"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4156286103,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51562255,
+        "voter": "curpose"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1666819519194,
+        "rshares": -861184213,
+        "voter": "ontofractal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 59978409,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 532936297,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 850866519,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 1005088816,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2331050847,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 59995797,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51712804,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4922272667302,
+        "rshares": 1442988265,
+        "voter": "nadin3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1683907739,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 51718188,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51388276,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51379706,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 34329581722,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15597377801,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66712446374,
+        "rshares": 254519172,
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5757204428,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51814474,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51812703,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 157129613626,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54632424,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51148009,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 155834469695,
+        "rshares": 131546618,
+        "voter": "illusiveman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2713459817,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54012814,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54839629,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 106768414,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 588271491,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 23572897576,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54601718,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1615824466,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 74117002,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5292676076,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50523318,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50470409,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 63543002,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1548545048,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53002525,
+        "voter": "swapman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 8160990156,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 59088198,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4882248396,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 600667224252,
+        "rshares": 1306905034,
+        "voter": "mrabdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68065278228,
+        "rshares": 69546372,
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396872137163,
+        "rshares": 51797456,
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 52171779,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3039484418,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 71167473,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154396017,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163216276,
+        "voter": "zacariajames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1564414223,
+        "rshares": 124699787,
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162784893,
+        "voter": "knights"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 111391460708814,
+    "beneficiaries": [],
+    "body": "<center>https://stakepool.com/wp-content/uploads/2016/08/photo3.jpg</center>\n\nSo, I was sitting in my $5000 massage chair smoking a cuban cigar when all of a sudden all kinds of bells started ringing. So I had to stop what I was doing and walk all the way over to my enormous trading-desk on the opposite side of my man-cave to see what was going on, and of course - there it was... A new post from my ex-boyfriend who cannot believe I dumped him for a better looking guy, and I knew he was out for blood so I started reading:\n\n<h3>A littlebit of history first</h3>\n\nWhen I wrote against @stellabelle and her article about synero-amp vs steemit, @tuck-fheman started spamming my comment section with all kinds of accusations, and lately he has started what he calls a \"comic-strip\" about me where he is doing his very best to harass the hell out of me.\n\n<h5>I still stand by what I wrote in my article against @stellabelle - it was a very dumb move on her behalf and I have people on record who confess to buying synereo-amp and losing money because of her article. The point of calling her out was to let her know that she has a loud voice in this community, and that she therefore must be careful advising people about investments and projects in a market she has no real clue about, because she is new.</h5>\n\nThen, when I apologized in public to @heiditravels for using explicit words when I was mad at her for not showing up to a Public Relation Interview when she came to Per\u00fa, an Interview that would have gone out on Television to 10 million Peruvians in prime-time and maybe secure 200,000 new signups for Steemit, he went on another rampage and started posting screenshots of the conversation and tried to get people to flag my post, which did not work because people are not stupid around here - they see what is going on.\n\n<h1>I still think what @heiditravels did was selfish, but I am over it - It is history @tuck-fheman - she wanted the @dollarvigilante more then me, and I have come to accept that he is much better looking then me, no homo :) (Just kidding)</h1>\n\nToday @tuck-fheman posted another harassment-cartoon, and even went to the #steemitabuse chat and bragged about it, told people that I was a sociopath that needed to be stopped, a woman-abuser and many other things that was just degrading and sad to read from him.\n\n<h2>Tuck & Stella = Early adopters who made a lot of steem posting pure shit</h2>\n\nSo what do I do? He is one with the most reputation on Steemit because he was very early into steemit and was in the original \"circle-jerk\"-club as they called it. Apparently back in those days you could post a picture of your garbage-can and make thousands of steem and now a days you have to actually make real content with real value.\n\nThen we have @stellabelle - I have nothing against her, never tried to attack her in any way - just had to speak up when she decided to embrace synereo-amp in a way that felt like... she was pooping where she was eating and I have honestly not read a single article she has published since. Instead I have found new aspiring artists like @poeticsnake who make amazing drawings and really put in a lot of real work in her art.\n\n@stellabelle also is from the very early adopters of steemit who made a lot of steem by writing articles about how she ripped of her friends when she was a car-salesman, or how she used to shoplift in stores when she was rich. Something to be proud of? Would those articles be worth anything if she wrote them today?\n\n<h1>In case you don\u00b4t know what I do on Steemit, I make comedy, entertainment, cartoons Here are a few examples for earlier:</h1>\n\nhttps://www.youtube.com/watch?v=ojNbGf5oIhM\n\nhttps://www.youtube.com/watch?v=vh-TKt_GSCc\n\nhttps://www.youtube.com/watch?v=ijVJNn0qgxg\n\nhttps://www.youtube.com/watch?v=ZHzdXtFKwYA\n\nhttps://www.youtube.com/watch?v=0SMMo7aQnPY\n\n\n---\n<h1>I also do Technical Analysis of Forex, Stocks and Crypto-Currency in posts like this:</h1>\n\nhttps://www.youtube.com/watch?v=dyXt_kJhomU\n\n---\n\n<h1>And I also make funny songs about steemit and crypto like this:</h1>\n\nhttps://www.youtube.com/watch?v=6P2FB9Mg_YI\n\nand like this:\n\nhttps://www.youtube.com/watch?v=3gfntBEI3Aw\n\n---\n<center>So please - Tuck-Fheman, Stellabelle - Leave me alone if you are going to act like bullies and collude and harass me - there is no point to that! <b>Start doing something positive for Steemit instead of all this negativity! </b>And to all the rest of you - I hope you see it that I loud and clear do not want to have anything to do with these two people. </center>\n---\n\n<center><img src=\"http://i.imgur.com/JhD2D0s.png\"></center>\n\n<center><img src=\"http://i.imgur.com/DLFAEdd.png\"></center>\n\nBreaking up is never easy, I know - but you have to let me go :)",
+    "body_length": 4768,
+    "cashout_time": "2016-09-10T21:39:06",
+    "category": "steemit",
+    "children": 106,
+    "created": "2016-09-03T21:39:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"abuse\",\"witnesses\",\"steemitabuse\"],\"users\":[\"stellabelle\",\"tuck-fheman\",\"heiditravels\",\"dollarvigilante\",\"poeticsnake\"],\"image\":[\"https://stakepool.com/wp-content/uploads/2016/08/photo3.jpg\",\"https://img.youtube.com/vi/ojNbGf5oIhM/0.jpg\",\"https://img.youtube.com/vi/vh-TKt_GSCc/0.jpg\",\"https://img.youtube.com/vi/ijVJNn0qgxg/0.jpg\",\"https://img.youtube.com/vi/ZHzdXtFKwYA/0.jpg\",\"https://img.youtube.com/vi/0SMMo7aQnPY/0.jpg\",\"https://img.youtube.com/vi/dyXt_kJhomU/0.jpg\",\"https://img.youtube.com/vi/6P2FB9Mg_YI/0.jpg\",\"https://img.youtube.com/vi/3gfntBEI3Aw/0.jpg\",\"http://i.imgur.com/JhD2D0s.png\",\"http://i.imgur.com/DLFAEdd.png\"],\"links\":[\"https://www.youtube.com/watch?v=ojNbGf5oIhM\",\"https://www.youtube.com/watch?v=vh-TKt_GSCc\",\"https://www.youtube.com/watch?v=ijVJNn0qgxg\",\"https://www.youtube.com/watch?v=ZHzdXtFKwYA\",\"https://www.youtube.com/watch?v=0SMMo7aQnPY\",\"https://www.youtube.com/watch?v=dyXt_kJhomU\",\"https://www.youtube.com/watch?v=6P2FB9Mg_YI\",\"https://www.youtube.com/watch?v=3gfntBEI3Aw\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T22:52:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 28528575081428,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "112.665 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemit-harassment-wow-it-finally-happened-to-me-too-d",
+    "post_id": 1116057,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 29150477200511,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 701289384385,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 25414633165852,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7174019152101,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 210082807921,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1764791171902,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 624152304261,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4648685890081,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6351970742614,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099420761,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762775739,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697355955,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7188761077812,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 481370244096,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54042459354,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 32970728002,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 425105452508,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26810306273,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661039186,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213669926,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 38923095598,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 64581427225,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 15818603292,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 398943529648,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2463177709510,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1856507042,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9947524418,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2438952883,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1452823187408,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622762084,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1120034999305,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967255526,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2771175740309,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 839864397684,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 136849931495,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 65907216897,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6554332244,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288151719,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23957331951,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14107159251,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14365023000,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 881970618,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 77103074369,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 314721920304,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 71043895599,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 24175856122,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 11709056510,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2945062368,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1087651795909,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5074405568,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41145563244589,
+        "rshares": 829397963387,
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 520911060129,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8059030205,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 475449654,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 844668962218,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5581844145,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 19479953917,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 26181526037,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056240258,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 330922076737,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 10610979162,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9268194915,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 677773729537,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 928388769,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 2557289360,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 91719101598,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59225313172,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 141414573060,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 13116548685,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 55582109386,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 236099584762,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 59558616330,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 55235327891,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73982297699,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 582588520898,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432017470,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7304641272,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2510175673478,
+        "rshares": 25681264725,
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 19944116455,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 42338694092,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 534614046975,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 63018482318,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 16492689268,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24310014144,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9361058328,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3674081134736,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 372036035609,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1449559018397,
+        "rshares": 6472724320,
+        "voter": "tom-sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 371338569,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 52893388475,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 254528506273,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53001732751,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "1500",
+        "reputation": 65989046107177,
+        "rshares": 90478643138,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12944835075,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 54146897521,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 199373714258,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 9459589952,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 266447843894,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 501068247274,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37015270307,
+        "rshares": 327889281,
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1948772954,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2644116640,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 138950405749,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 767974669228,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6009304227,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6200536920826,
+        "rshares": 70959553359,
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 98088341974,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 269875655864,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 44099614167,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6874971065,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 28278082847,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7225093759945,
+        "rshares": 8989505147,
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6767512298331,
+        "rshares": 41629748060,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3660956268,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8702193878,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12845439804,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 3475503565,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 302683064,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 199741557,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 236520170145,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8561508638,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 214476092245,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 42481260342,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3112847393,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 5856624277,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3893522363454,
+        "rshares": 226933661994,
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 15179347364,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122110321617,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 124699737174,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 15389739696,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9786117166130,
+        "rshares": 20713322105,
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 546797902965,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 29887760404,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380128900631,
+        "rshares": 293427569,
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 230296351,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8721417924,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 77587644053,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 476648200946,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3541453614,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 211552013,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 195806237,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 823925676,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 24638975246,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 150447264693,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42813525,
+        "rshares": 7172948519,
+        "voter": "ashikmiah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 42831693849,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7726853303,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 812099979,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16166163778,
+        "rshares": 246668071,
+        "voter": "meiks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 919975933,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 666787941,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 5814827093,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3013710280,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11280533352,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 39456765083,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 192958794775,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 5305619945,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 10678601154,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4185662810,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 58809847081,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1396522137,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 349307643,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 293677046360,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11184349825,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 4245765824,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 369337292,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 2875639977,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 11249031580,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1140298026,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 297463655,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 2180799492,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15413678024,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 19745928897,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4461061038,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1939224933,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 2992631645,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 437754345,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37719378911,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9709066337974,
+        "rshares": 25483068946,
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 12396216231,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3409584558,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 58723641585,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 27478627702,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6880831700,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18787146710,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 14042810323,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1575842910797,
+        "rshares": 10048486235,
+        "voter": "tessaddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3145819717,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 231654921805,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 25046106508,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 4647865096,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 36117391359,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 78635089731,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958834221798,
+        "rshares": 3476354385,
+        "voter": "mastletter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40107084,
+        "rshares": 155789703,
+        "voter": "xand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203745188637,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1016267553073,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 26882316910,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10519849768972,
+        "rshares": 10192963847,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1683543474,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255303484,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255686119,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147914638,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148750003,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84813726,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 261379803,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 31846354099,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207787451268,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2501806576,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5062409505,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2564054618,
+        "rshares": 112070311,
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1951690317,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60975043955,
+        "rshares": 686451244,
+        "voter": "clonewarz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 14847664684,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 10761876132,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841259695,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20113867987,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7262356354,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 217563709,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17534589350,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1203192685557,
+        "rshares": 1793399910,
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 618773038,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17164865565,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 408950035,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 219368610,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 10855436202,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76805770,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2077025402,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 117818134,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 125682243,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 861558297,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456070989,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 27752122387,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 5449172599,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 124605670789,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1023333164,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 52633105216,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8765080527,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 731831758,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5411545736,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 52489886,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 46610922073,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 14656318513,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 52102443,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23337147272,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2595700392,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 20215747355,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 23051494572,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3801240661,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 482511907124,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 4673772256,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9241877973,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 34796180612,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2221730069,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3651315001,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1911888642586,
+        "rshares": 2561315048,
+        "voter": "uuuhha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 102188578929,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46067925183928,
+        "rshares": 256407267931,
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1291393037,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 12816228337,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 94576187995,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3532206423,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 57523014,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166646264775,
+        "rshares": 1694788518,
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 687490845,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 59458578,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 52502611,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3401416945201,
+        "rshares": 1228509011,
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795134,
+        "rshares": 54355927,
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 436393958,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2751128831351,
+        "rshares": 5653663246,
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 273860901,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": -9068872902,
+        "rshares": 61293441,
+        "voter": "chrismarketing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234905614,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 59896309,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 593072231,
+        "rshares": 61696026,
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 27919047116,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1636585181,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52405452,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 11443509504,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117292449,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62391219,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 52400873,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7142895146,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 72982892,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 61874235,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1157125253,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 37801320901,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2427660705,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20523010963,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 596060484,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": -52839282898,
+        "rshares": 288080558,
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 6763113815,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 296332739,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1428185120,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3239749695,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2510434809,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 59993245,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8646097362,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 301096603,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59226282,
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 70234608899,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 39122184230,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 73706708,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63845074863,
+        "rshares": 1779402721,
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 10832852934,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 7757948841,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 12474263816,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1734880593,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1734036671982,
+        "rshares": 959083434,
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740952354750,
+        "rshares": 307241644,
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28397805329,
+        "rshares": 61576570,
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1258080185,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8298658614343,
+        "rshares": 5110452751,
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18957179674,
+        "rshares": 60364183,
+        "voter": "uri-bruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1241673056,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 17764316625,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56761351,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 74585233974,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55633002031,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6435147485147,
+        "rshares": 14150272924,
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 59103677,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 74584024,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339886160,
+        "rshares": 394178677,
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55140441,
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 21483815812,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1713129061,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 115141637,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 37275195891,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15859669622,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 57184430,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1511945712631,
+        "rshares": 3725515516,
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 352639183151,
+        "rshares": 5661463232,
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013640486,
+        "rshares": 55473809,
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5854747574,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 490887668,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 16076822216,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 82786113,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55725073,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 633133259080,
+        "rshares": 58126364,
+        "voter": "chaeya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23191446542,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9370846764,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2759964885,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4840990082,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55093071,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 53110243,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55070425,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 117997260,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52794249,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54839629,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 54036170,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 108903782,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 57522774,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 70034816,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52521499,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 242929782471,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 68637522935,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 37138701009,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54601718,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54464024,
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53400199,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 52041445,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33451402996481,
+        "rshares": 130590614407,
+        "voter": "jamielefay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 53143662,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2610482432,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1575506866,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 142968891,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 92282121,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 3022511117,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 89109313,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4965019350,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50686168,
+        "voter": "jcdobber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277100322,
+        "rshares": 50658555,
+        "voter": "dillon-sauers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 50182215,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50817111,
+        "voter": "mehran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1206003099947,
+        "rshares": 293689087,
+        "voter": "iontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13744830964,
+        "rshares": 50420952,
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 249226300,
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1632559314,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3727858482,
+        "rshares": 61342952,
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154276916,
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155926994,
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 57302509663422,
+    "beneficiaries": [],
+    "body": "![Alt text](http://cdn.dailyseoblog.com/wp-content/uploads/2015/11/Competition_SEO.jpg)\n\nNew competition is in town, here I said it. Many people don\u2019t like competition, some people fear it, some people get motivated by it, and some people see it as an opportunity that helps them step up to the next level.\n\nPersonally, I get the same emotional reflex from new competition than I get from any change of weather, it doesn\u2019t really faze me that much.  Long time ago I\u2019ve learned to open a new folder in my brain containing all the elements that I can\u2019t control, and the emergence of new competition certainly qualifies for that folder.\n\nAnd the reason I do that is because I think that the worst thing you possibly can do is to let your fear-based reactions make your decisions for you.\n\nAlthough to be totally honest with you, I\u2019d be an idiot if I told you to completely ignore competition and act as if doesn\u2019t don\u2019t exist. \n\nSometimes it\u2019s well worth your attention because it may show you something you\u2019ve missed, it may remind of why you do what you do in the first place, and depending on the competition, it can even help you improve and advance. \n\n![Alt Text](http://2.bp.blogspot.com/-jCsWg5lEM9w/To2MZ4wwQMI/AAAAAAAAI8Q/VNo2kdw4ot8/s640/Matrix_067Pyxurz.jpg)\n\nA few months ago a new disruptive technology came to the world. It allowed all sorts content creators to make some income doing what they love, all while bypassing the restrictive censorship of armies of gate keepers around the world. And since you\u2019re reading this, then you\u2019re probably using it too.\n\nBut here\u2019s the thing, when what you do is truly amazing, you can\u2019t really expect that no one else is going to try to replicate it. In fact, the strange thing would be that if no one was ever going to attempt to create \u201cthe new steemit\u201d.\n\nAfter all, competition is a part of life, and it\u2019s almost here so maybe it\u2019s time we talked about it.\n\n# Dancing with Mr. Ying and Miss Yang\n\nOn the positive side, competition can make us stronger and more connected. All those small debates and unnecessary dramas would suddenly take a back seat to more important matters. \n\nIt can motivate us to up our game and take it to the next level. It can encourage us to keep improving so we don\u2019t get too comfortable. It can help us realize what we have, and not take it for granted. \n\n![Alt Text](http://3.bp.blogspot.com/-TVDMaHEL61w/U1_ZuVFcttI/AAAAAAAAMvg/dt0wlqDLFWI/s1600/living+in+the+matrix.jpg)\n\nBut there's another way  to approach competition, the Yang way, where you can go to that room where you archive all those things that you can\u2019t control, head towards the door and kick it wide open. Just sit there and let fear invade you.\n\nI know this sounds crazy, but believe it or not, the second most common thing people do in face of competition is to fear it and let them rush into making unnecessary decisions. Now, I don\u2019t know about you but to me panic doesn\u2019t precisely strike me as a solid strategy.\n\nHowever, I do understand why some people might experience some concerns. *\"Look, there\u2019s a new competition, they have a brand new website, their logo looks so professionally made, their name is so catchy. Hell, they even have shiny shoes\u2026\"* \n\nFrom that point on, it will be just a matter of time until this question starts circling around: *What if people start pouring there?*\n\nI hate to break it to you, but these things can and will probably happen.\n\nA few steemians will move there and that\u2019s ok. In fact, that\u2019s very understandable, they will have their reasons. Maybe they go on their own, or maybe they will have an offer to join. \n\nSo when that happens, there are two things that you can do:\n\nYou can worry that people are migrating elsewhere, or you can remember the \u201csecret\u201d: That they will never stop making people. \n\nPlus, if that if the goal is expansion, then it\u2019s a comfort knowing that the journey hasn\u2019t changed and that we\u2019re still on the same course.\n\n# Destination Moon\n\nThat  are enough potential users in the planet for everyone, they will never stop making people, remember? \n\nPlus, if the dream was grow and reach hundreds of thousands, maybe millions of people, then nothing has really changed in the grand scheme of things. right?\n\nMaybe a few will leave and it\u2019s ok, maybe they\u2019ll come back quickly afterwards, maybe they won\u2019t or maybe this is a good opportunity to remember:\n\n## That moon we all talked about, our moon, is still the goal.\n\n![Alt Text](https://s9.postimg.io/ptqv6s6of/Untitled_design.png)\n\n*Picture dedicated to @smooth.  Thank you for the logo advice!*\n\n# A View from the Future\n\nSo in the future if you read some open letters from some prominent writers explaining why they moved away to the competition, so maybe we don't need to give these things more importance than they deserve.\n\nSometimes diversification is a smart move, sometimes people need to look for what\u2019s best for them, and sometimes they look for whatever they perceive as such. Whatever the case may be, it\u2019s still their choice and they are free to change their minds.\n\nAnd yes, we will probably read a few editorial posts about *\u201cWhy I left steemit for X\u201d* and maybe a little worry might circle your train of thought. \n\nMaybe their reasons are totally valid, or maybe they\u2019re unconsciously making up a story with which they can justify it to themselves. So all of the sudden every small problem is magnified and the grass on the other side looks greener. It happens.\n\nEither way, it\u2019s not our place to judge them.\n\nAnd yes, the preachers of doom will jump at the opportunity to parade their psychic abilities, *See? People are leaving steemit already. I told you!*, but when that happens please remember that we\u2019re talking about people who never let a good crisis go to waste. So whatever they say should probably be taken with a fine pure grain of Himalayan salt.\n\nThese are things that we can\u2019t control, here\u2019s what we can do.\n\nWe can step up, we can up our game, we can show them what this platform has already proved, we can remember why we joined and that maybe, just maybe show them that we are still fighting for that fucking moon.\n\nBecause let\u2019s not forget, steem is third behind Bitcoin and Ether.\n\n### And just as Bitcoin had so many new competing coins that were going to completely erase it from the map, we\u2019ll probably hear the same song again.\n\n![Alt Text](http://tr1.cbsistatic.com/hub/i/2014/11/04/27691a45-1606-4647-9093-637886cc89be/forecast-crystal-ball-prediction.jpg)\n\nThere will be many death predictions too. Bitcoin had about a hundred of them, so don't be surprised when that happens.\n\nBut what if I\u2019m wrong and the competition is very strong?\n\nWell then we learn to compete better. Competition is a part of life, and it can make you better if you know how to approach it. In fact, [I wrote about the subject in the past](https://steemit.com/life/@the-alien/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age).\n\nSo this goes for those of us who experienced the life changing abilities of this platform, and especially for those who are crazy enough to still believe in the same dream that we are at the beginning  stages of a beautiful game changer. For those who still have the same passion about disruptiveness as in the first day, here\u2019s something that we can do:\n\n# We Can Bet on Our Strengths\n\n![Alt Text](https://pbs.twimg.com/media/Cm8iJ91XEAIVokI.jpg)\n\nWe can focus on what steemit has achieved already and introduce it to the world. How many people have made some good income already? How many projects has steemit helped? How many it has brought in to life? How many relationships have been forged?\n\nSo maybe you\u2019re a filmmaker looking for a good story, maybe you can make a documentary about the lives that steemit has changed and its future effects on society, maybe the rest of us can help you.\n\nMaybe I should listen to my own words and lead by example. Maybe I should carve out some time and finally launch my very own book that was born out of pure steem.\n\nOr maybe we shouldn\u2019t have to do anything at all. Maybe we shouldn\u2019t have to step up our game just yet, and ignore any competition.\n\nI\u2019m not quite sure.\n\nWhatever the case may be, I just want you to know that if you\u2019re here for the long run, than you should know that more competition will come, and when that happens don\u2019t listen to the alarming voices and trust your own judgement.\n\nI want you to know that it\u2019s not the end, that this is the beginning and that I hope that you\u2019re still enjoying this beautifully game changing ride and not planning to give up your seat just yet.\n\n#### Image Sources: [1](http://dailyseoblog.com/how-to-discover-your-competitions-seo-strategies/) - [2](http://pyxurz.blogspot.com.br/2011/10/matrix-page-2-of-7.html) - [3](http://humansarefree.com/2014/04/16-signs-that-you-are-slave-living-in.html)- [4](http://wallpaper.zone/carlsberg-wallpaper) - [5](http://www.techrepublic.com/article/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends/) - [6](https://twitter.com/riaali4)",
+    "body_length": 9016,
+    "cashout_time": "2016-09-07T20:01:03",
+    "category": "life",
+    "children": 90,
+    "created": "2016-08-31T20:01:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"competition\",\"psychology\",\"alien\"],\"users\":[\"smooth\"],\"image\":[\"http://cdn.dailyseoblog.com/wp-content/uploads/2015/11/Competition_SEO.jpg\",\"http://2.bp.blogspot.com/-jCsWg5lEM9w/To2MZ4wwQMI/AAAAAAAAI8Q/VNo2kdw4ot8/s640/Matrix_067Pyxurz.jpg\",\"http://3.bp.blogspot.com/-TVDMaHEL61w/U1_ZuVFcttI/AAAAAAAAMvg/dt0wlqDLFWI/s1600/living+in+the+matrix.jpg\",\"https://s9.postimg.io/ptqv6s6of/Untitled_design.png\",\"http://tr1.cbsistatic.com/hub/i/2014/11/04/27691a45-1606-4647-9093-637886cc89be/forecast-crystal-ball-prediction.jpg\",\"https://pbs.twimg.com/media/Cm8iJ91XEAIVokI.jpg\"],\"links\":[\"https://steemit.com/life/@the-alien/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age\",\"http://dailyseoblog.com/how-to-discover-your-competitions-seo-strategies/\",\"http://pyxurz.blogspot.com.br/2011/10/matrix-page-2-of-7.html\",\"http://humansarefree.com/2014/04/16-signs-that-you-are-slave-living-in.html\",\"http://wallpaper.zone/carlsberg-wallpaper\",\"http://www.techrepublic.com/article/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends/\",\"https://twitter.com/riaali4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T23:28:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 115579310823374,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1282.366 HBD",
+    "percent_hbd": 10000,
+    "permlink": "we-have-competition-so-what",
+    "post_id": 1075409,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "We Have Competition, So What?",
+    "title": "We Have Competition, So What?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/we-have-competition-so-what"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1200",
+        "reputation": 13270505121655,
+        "rshares": 9024883847357,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1671138896655,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 119632798758,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3378279290130,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098920208,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762101723,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697277445,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 481363240580,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53949579658,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660775806,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213655207,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23744414677575,
+        "rshares": 3081790005091,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622688481,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967132854,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 134117619397,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 283428793487,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 30870794916,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 37402877039,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288133732,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 74103348709,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 13405752321,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 535577606639,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 7552786780,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1427571994880,
+        "rshares": 11167214864,
+        "voter": "bryner"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 394343135,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 376960001789,
+        "rshares": 4607965093,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 9945544250,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1720965128034,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9206411638386,
+        "rshares": 98889929473,
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 885126158,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73949092478,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431506955,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 202782147716,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 16435147757,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9121031191,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 354817360593,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 307991426,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 252198751593,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 100974392952,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 181953089844,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 241429422235,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 500746650031,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37015270307,
+        "rshares": 334447067,
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 270503233584,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 129179648054,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 7270521676,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31684857798,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 13512010571,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 653532417,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 9857787671,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3044219954,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4924694617,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 44886601247,
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 586521710924,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 28836579075,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 229781794,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3538594433,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 200223812,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 183563429,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147185124876,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 864199533,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 15903571736,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13785636617,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10799655800,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4558523900,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3964357464,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1310840633,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8516223569,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 4135548207,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 2757805822,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 9529319414,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 760711986,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3194142218,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5717065338,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 2975968890,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37545735165,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3409584558,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3296476247,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2314406420479,
+        "rshares": 2247621331,
+        "voter": "earnest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 7961851795,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4192907964,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 18877883177,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 67031654840,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 192915960688,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 357865659,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 1074705684,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "4000",
+        "reputation": 10519849768972,
+        "rshares": 8147607057,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1646532527,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 249753408,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 250127725,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144699103,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 145516307,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82969949,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628934912826,
+        "rshares": 79439985691,
+        "voter": "thebear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 17996907775,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 682632091,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1912656511,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7262356354,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 16603184304,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 593731729,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 15836968437,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 400045064,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 214599727,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 75136080,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 103648120,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13160545547,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 14131930953,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 118877186,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 224565392312,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 24075850886,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8301127610,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 37382286273,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 20019694548,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 16244944890,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 15561415239,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3715674298536,
+        "rshares": 9804831909,
+        "voter": "mrweed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3480279807,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99941487421,
+        "rshares": 84546938,
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 93393425886,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 145386275,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 14701938333,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 90704137146,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1588672543,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 17970298536,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 56658670,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145509025,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 876020091764,
+        "rshares": 531687398,
+        "voter": "alexbenjalbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1506957596,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 225801829,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 17720358841,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1734036671982,
+        "rshares": 959019153,
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 666955368,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 162955094991,
+        "rshares": 124527048,
+        "voter": "godo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599908904317,
+        "rshares": 216294657,
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 1892341880,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80500300321,
+        "rshares": 81876495,
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4447885148,
+        "rshares": 75480893,
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 635505831325,
+        "rshares": 107513697,
+        "voter": "xvickx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174215430182,
+        "rshares": 191515845,
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 14802627305,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 181025722983,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2498083480,
+        "rshares": 72763310,
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23182784473,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 195119674,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 318258176,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 607327993,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 342413852075,
+        "rshares": 352982728,
+        "voter": "vh770"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1150196390848,
+        "rshares": 50889668,
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50875769,
+        "voter": "cyan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50873654,
+        "voter": "palladium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50794039,
+        "voter": "autodesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50791473,
+        "voter": "synereo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50540827,
+        "voter": "amstel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50532230,
+        "voter": "friends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 7871297804,
+        "voter": "cato-the-elder"
+      }
+    ],
+    "author": "cryptoctopus",
+    "author_reputation": 122177444407384,
+    "beneficiaries": [],
+    "body": "# Introduction\n\nThis post was inspired by a video I stumbled upon during a late night Youtube binge and it made me wondered if #feminism was in fact something that mostly benefit men basic instincts rather than women's best interests.\n\nMy conclusion...yes it did. As you watch this video, enjoy the irony of the situation we are in today.\n\nhttps://www.youtube.com/watch?v=xeAerBwVL14\n\n# The Father of Propaganda and How He Used Feminism\n\nhttps://www.steemimg.com/images/2016/08/30/edwardbernaysd9311.jpg\n\nI'm a student of marketing and any marketer's worth it's salt knows who Edward Bernays is. I'm bringing him forward so that people can realize that there are agents who fashion social movements...while most people think those same movements are \"organic\".\n\nWhat Wikipedia says about Edward Bernays:\n>Edward Louis James Bernays; November 22, 1891 \u2212 March 9, 1995) was an Austrian-American pioneer in the field of public relations and propaganda, referred to in his obituary as \"the father of public relations\". He combined the ideas of Gustave Le Bon and Wilfred Trotter on crowd psychology with the psychoanalytical ideas of his uncle, Sigmund Freud.\n\n>He felt this manipulation was necessary in society, which he regarded as irrational and dangerous as a result of the \"herd instinct\" that Trotter had described. Adam Curtis's award-winning 2002 documentary for the BBC, The Century of the Self, pinpoints Bernays as the originator of modern public relations, and Bernays was named one of the 100 most influential Americans of the 20th century by Life magazine.\n\n### Feminism Used by Edward Bernays to Sell Cigarettes - \"The Torches of Freedom\"\n\nhttps://www.steemimg.com/images/2016/08/30/torchesoffreedom103f3.jpg\n\nHistorically, smoking was an inappropriate act for women just like it is today for most women to grow their armpits hair and leg hair. It was seen as unattractive. Dutch painters used cigarettes as a symbol of human foolishness in the 17th century and in the 19th century, cigarettes were perceived as props of \u201cfallen women\u201d and prostitutes. Back then,  even some women\u2019s groups also fought against women smoking.\n\n**So how do you reverse this mass perception? With a smart propaganda / public relation stunt of course!**\n\nThe formula was simple. In 1929, Edward Bernays paid women actress to smoke their \"torches of freedom\"during a big Easter Sunday Parade in New York. He hired his own photographers to make sure that good pictures were taken and then published around the world.\n\nFeminist Ruth Hale also called for women to join in the march saying, **\u201cWomen! Light another torch of freedom! Fight another sex taboo!\u201d** Once the footage was released, the campaign was being talked about everywhere, the women\u2019s walk was seen as a protest for equality and sparked discussion throughout the nation and is still known today.\n\n# Today's Feminists Are Useful Idiots\n\n**Useful Idiots:** In political jargon, useful idiot is a term for people perceived as propagandists for a cause whose goals they are not fully aware of, and who are used cynically by the leaders of the cause.\n\nHow does having a \"Slut Walk\" or an International \"Free the Nipples Day\" actually empowering for women? \n\nHow is working \"for the man\" in a stupid office for 40h+ per week and not spending time with their kids empowering for women? \n\nHow does having sex with unvetted men, expose themselves to STDs and at risk of becoming a single mother empowering for women? \n\n<center><h3> Last time I check, being a single mother is a straight ticket to poverty.</h3>\nhttps://www.steemimg.com/images/2016/08/30/Single-mothers_Foundry_Imaged8c35.jpg</center>\n\n# Did Feminism Make Women Less Happy in Aggregate?\n<center>https://www.steemimg.com/images/2016/08/30/original364e2.jpg\nAverage happiness index value for the period of 1972-2006 \nSource: Based on responses to question 157 of the General Social Surveys</center>\n\nAs [this Huffington Post article](http://www.huffingtonpost.com/marcus-buckingham/whats-happening-to-womens_b_289511.html) puts it:\n>Greater educational, political, and employment opportunities have corresponded to decreases in life happiness for women, as compared to men.\n\n### My theory\nSo what if most women doesn't like this \"feminist paradise\" we now live in today? Technically, there is no law in the book that discriminate on women. Women are in politics, work in every fields they want to, got to sleep with anyone they like and even have  abortions to not deal with the consequences of having sex. Why are they less happy than before?\n\nMaybe they've been sold on the idea that it is their career that defines their identity. Maybe they've been told their careers would make them happy. Maybe they've been told that focusing on family and being a homemaker is for losers who don't have ambitions. Maybe they've been told that they should never count on men because they are not to be trusted. Maybe it's because they actually lost something in this process of \"emancipation\"...what's actually needed to live \"The Good Life\".\n\n \n# In Conclusion\n\nAs Gavin McInnes crudely puts it in his clip:\n\n> I'm telling you man, this feminism thing is the best deal dude have ever had ever. You don't just get the milk for free...you get all the milk you want and the cow is happy. The cow think it's cool to give you milk. You don't have to buy the cow!\n\nFeminism along with the rise of the secular values created the perfect environment for people who want to live like rabbits and who's sole goal in life is pleasure seeking. It is also a sad place for a lot of people who will ultimately realize that no amount of self-indulgence actually fill the existential hole they have in their heart.",
+    "body_length": 5696,
+    "cashout_time": "2016-09-06T22:32:57",
+    "category": "feminism",
+    "children": 49,
+    "created": "2016-08-30T22:32:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"feminism\",\"propaganda\",\"social-engineering\"],\"image\":[\"https://img.youtube.com/vi/xeAerBwVL14/0.jpg\",\"https://www.steemimg.com/images/2016/08/30/edwardbernaysd9311.jpg\",\"https://www.steemimg.com/images/2016/08/30/torchesoffreedom103f3.jpg\",\"https://www.steemimg.com/images/2016/08/30/Single-mothers_Foundry_Imaged8c35.jpg\",\"https://www.steemimg.com/images/2016/08/30/original364e2.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=xeAerBwVL14\",\"http://www.huffingtonpost.com/marcus-buckingham/whats-happening-to-womens_b_289511.html\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T22:33:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 25443958683593,
+    "parent_author": "",
+    "parent_permlink": "feminism",
+    "pending_payout_value": "79.182 HBD",
+    "percent_hbd": 10000,
+    "permlink": "language-warning-is-feminism-a-conspiracy-made-to-give-what-men-always-wanted",
+    "post_id": 1062808,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "(LANGUAGE WARNING) - Is Feminism a \"Man-Made\" Conspiracy?",
+    "title": "(LANGUAGE WARNING) - Is Feminism a \"Man-Made\" Conspiracy?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/feminism/@cryptoctopus/language-warning-is-feminism-a-conspiracy-made-to-give-what-men-always-wanted"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1900",
+        "reputation": 13270505121655,
+        "rshares": 12892444608649,
+        "voter": "ned"
+      },
+      {
+        "percent": "7200",
+        "reputation": 14756948501919,
+        "rshares": 4880815875440,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "5000",
+        "reputation": 16685610555705,
+        "rshares": 10335553342256,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 403470107913,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 253811182495,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5010122,
+        "rshares": 716337018,
+        "voter": "tpboy3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13262368517,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 26321096439,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 256598245425,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115772329,
+        "rshares": 430108480,
+        "voter": "sensorium1978"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 58360860731,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1106317423,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1788392946,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7303326622,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3147716497,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 586114569324,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10554741746,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700029514,
+        "rshares": 3267719720,
+        "voter": "ian-harris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 65870793962,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1161275060,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 5524329793,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 129179648054,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19196715690053,
+        "rshares": 97826496492,
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 691754975787,
+        "rshares": 1774955978,
+        "voter": "acec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 4125957705,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 64261861896,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 52226764896,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 94445685167,
+        "rshares": 829548752,
+        "voter": "poias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 120986343559,
+        "rshares": 285651702,
+        "voter": "darbsllim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258031123154,
+        "rshares": 645715910,
+        "voter": "tyanderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103553440323,
+        "rshares": 9223419457,
+        "voter": "imjustsayintho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189674727,
+        "rshares": 249035622,
+        "voter": "jorijnsmit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 1678609165,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34913513106,
+        "rshares": 24883915726,
+        "voter": "top10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 756734123357,
+        "rshares": 1534558322,
+        "voter": "decrypt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205753119776,
+        "rshares": 2897072435,
+        "voter": "cashbandicoot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 60005996181,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13451771168,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1934506275,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 629168596,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 20765824892,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234491324,
+        "voter": "aleks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1402075017,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1513154284,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 111821902,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 95550797,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 146734668921,
+        "rshares": 356922743,
+        "voter": "mssteuer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 18870932759,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172953944203,
+        "rshares": 1221656995,
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 83561940,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 102459876,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 357865659,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 995559076604,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 104217316,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2555471109,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 216437643539,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 204193503,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 560402362,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4370747754,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7937586925,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2800931752,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 879267346,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39158030,
+        "rshares": 124107318,
+        "voter": "gringo4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8435099468,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1352706706,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 24075850886,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 55874505973,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 716479002,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 37382286273,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22643138,
+        "rshares": 65200234,
+        "voter": "spider333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2595684401,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3876332821,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5836792362,
+        "rshares": 64679936,
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39744649494,
+        "rshares": 16142699856,
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14436727565,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 93243566220,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 513642753210,
+        "rshares": 63608625,
+        "voter": "willybot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11861754844312,
+        "rshares": 13439863829,
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 70486254,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1390975245,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7059588652,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1115440027,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 3322606113,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87991131377,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 3572970148,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12086277767,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 495790275993,
+        "rshares": 845006779,
+        "voter": "riceowladam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4543274758650,
+        "rshares": 4673384938,
+        "voter": "delphia16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 58900136,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2918379629,
+        "rshares": 1660145254,
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227415344771,
+        "rshares": 59525287,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 57683766,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11584736264,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24608246848,
+        "rshares": 60929153,
+        "voter": "afristeem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 13828807095,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 52024054,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 195119674,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4836979493,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 70170304,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18728813,
+        "rshares": 54721512,
+        "voter": "cryptovagabond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 245224163620,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 187661285453,
+        "rshares": 168628544,
+        "voter": "whitjack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 1631761737,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51250382,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50545124,
+        "voter": "chekave"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620394,
+        "rshares": 50264489,
+        "voter": "tunnelrat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50195168,
+        "voter": "i3inary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 7871297804,
+        "voter": "cato-the-elder"
+      }
+    ],
+    "author": "willybot",
+    "author_reputation": 513642753210,
+    "beneficiaries": [],
+    "body": "http://i.imgur.com/dH35tsb.jpg\n\nThe altcoin space has been as heated as ever, especially since the DAO hype and fallout and the Ethereum hard fork. Now, Monero is off to the races with news it will be a new form of payment accepted on the Deep Web. \n\nThroughout all of this excitement, I\u2019ve watched a lesser-known two-year-old altcoin which has also been on quite the tear this summer. I\u2019m talking about NAUT or Nautilus Coin. Some of you diehard crypto followers and speculators may already be familiar with it, but I can assure you that you\u2019re NAUT (hehe) familiar with what it is about to become!\n\nNAUT has already had a huge summer. It went from 5,000 satoshis in early June to over 70,000 satoshis by mid-July. Something was brewing. I dug around and talked to my most valued sources. I learned there were new plans to take NAUT out of hibernation and into the conversation on Wall Street. \n\nhttp://i.imgur.com/9o3MEBL.png\n\nNow, just in the past few days it seems NAUT has again revved it engines. The price has almost doubled over the weekend and it\u2019s trading at ~130,000 satoshis as of this writing. All of this without any fanfare or concrete announcement. The period between the two sharp rises indicates solid accumulation took place, presumably by those in the know. I smell something big here.\n\nHere\u2019s what I know. It was created by Brian Kelly (CNBC Fast Money fame on TV) in 2014 as an attempt at creating a stable crypto-asset unlike Bitcoin\u2019s reputed volatility. When I initially dug around in July, I heard of plans to develop a parallel currency system like the WIR banc, but open source and peer to peer. Sound powerful? Well, since then it appears the homepage has been adjusted to reflect a different purpose. Something having to do with hedge funds...Oh my! (Takai voice).\n\n[PAR - Productive Asset Record System](http://par.io/index_en.html)\n\nIt states, \"PAR = Productive Asset Record System, An open investment recording system built with intelligent lending and hedge fund administration in mind.  A first of its kind, a fully transparent administration and audit platform leveraging blockchain technology.\"\n\nhttp://i.imgur.com/PgZ0IV4.png\n\nThe ticker countdown for the release of the white paper was 2:8:59:48 as of 3pm EST on August 29th.\n\nI also found the community Slack Team for NAUT/PAR, which is full of excitement, as you might imagine. I understand from reading through recent messages that the project has changed from its initial resurrection plans earlier this summer. With Brian Kelly involved, I\u2019m not surprised to see this plan steer towards a hedge fund related use case. In addition to being on CNBC Fast Money, Brian is also a cryptocurrency-friendly hedge fund manager. Needless to say, this all sounds very interesting and yet has barely appeared on the radar thanks to DAO/ETH/ETC/XMR shenanigans (as well, the professionals behind the project keeping their lips tight about it). \n\nFor those that want more details, they can be found here as well as a link to join the PAR Slack at http://par.io/index_en.html  (it\u2019s the \u201cjoin the discussion\u201d link). \n\nThat's all for now.",
+    "body_length": 3116,
+    "cashout_time": "2016-09-06T15:37:48",
+    "category": "cryptocurrency",
+    "children": 22,
+    "created": "2016-08-30T15:37:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"cryptocurrency\",\"money\",\"beyondbitcoin\",\"blockchain\",\"\"],\"image\":[\"http://i.imgur.com/dH35tsb.jpg\",\"http://i.imgur.com/9o3MEBL.png\",\"http://i.imgur.com/PgZ0IV4.png\"],\"links\":[\"http://par.io/index_en.html\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T15:37:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 32233479917849,
+    "parent_author": "",
+    "parent_permlink": "cryptocurrency",
+    "pending_payout_value": "120.842 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-altcoins-with-a-purpose-are-coming",
+    "post_id": 1057470,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "The Altcoins with a Purpose Are Coming!",
+    "title": "The Altcoins with a Purpose Are Coming!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/cryptocurrency/@willybot/the-altcoins-with-a-purpose-are-coming"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 32455846463901,
+        "rshares": 642721549946,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14422749876087,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3575373896498,
+        "voter": "excalibur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7464607221397,
+        "voter": "firstclass"
+      },
+      {
+        "percent": "5000",
+        "reputation": 8779714777561,
+        "rshares": 3639191953732,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1669923224095,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3717974185,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 213574639759,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4513559168,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836606639,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6988007861700,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5996727817604,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64642495505,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992560012,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256364536,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 39818841412,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 371954710239,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2460761021349,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 16151007755,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 15367378869,
+        "voter": "lee5"
+      },
+      {
+        "percent": "3900",
+        "reputation": 23744414677575,
+        "rshares": 1231163835379,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 79076699259,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19451819636,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747109758,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160364064,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 22287691419,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 348774027722,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345721003,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24424815444,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 9962447624,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 85472012036,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11006097418580,
+        "rshares": 47052482880,
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 51668605167,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3208539412,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14777664032,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 13421601084,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 550131611031,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8054401464,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1427571994880,
+        "rshares": 11394690603,
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 485282260,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5697146207,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 753324601733,
+        "rshares": 638584817,
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 38099821345,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 320314797075,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 9264258149,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 10412058674,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 659470671268,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 262097263544,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3586538842,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3736219522,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 56755039638,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 226277413706,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1105470146,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73899745411,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787734654,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3085996565,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 299422990503,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 555763114,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 61230816598,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 244194157676,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 9343888042,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24793132900,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 4213953082,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11501194922,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 361800166976,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 310003040,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 9062015039,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1544049507187,
+        "rshares": 13825920793,
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379034832,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 49609829871,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 100887290594,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 67218157738,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 168781926859,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4444948583,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 9215212832,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 207639750909,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 72775359846,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 135534940490,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 649863857,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 2070185449,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 151313598203,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 7270287220,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 189534597524,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5593332072,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 107979574982,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089233647296,
+        "rshares": 4132934549,
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 245565399746,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 4972308003,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 26691657968,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 32317449277,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 12407406735,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6731496155,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8077166192,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1061763080,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2000840823,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8698490005,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 7061836326,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 58024990300,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 12820190462,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5944808360,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 234977975,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 53277444047,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5630151895,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 38998653626,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3135864378,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4805051818,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 25329895988,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122037864807,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5942450964,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1949550312939,
+        "rshares": 1399449402,
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 132989014669,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 9678069378,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 653051005053,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1558901402,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 456375266764,
+        "rshares": 69645935778,
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8348978059,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 68835084756,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12165310382,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 658969843140,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3016989385,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 213566804,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 195795730,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12433580012,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 127921982448,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1088582281,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 27989665079,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 5235602369,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4393022921,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 470865927,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4326102127,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13785486061,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11255732354,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4664449459,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 103415609409,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 38979052441,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 9855694815,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 483030862,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4401948859,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 7769709545,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 52805276639,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 28292287957,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13726024129,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2162692228861,
+        "rshares": 3664108103,
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 247320271,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10404996383,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2265421279,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 421650464,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 11687972825,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 10504748862,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 16957784324,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 43955087155,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 39380899533,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 14477258419,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3802303915,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5603336399,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3857990313,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288999193266,
+        "rshares": 608149252,
+        "voter": "ltndd1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13799232019,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12201911383,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2418631221,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37544436861,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2375612859,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19954745854,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1432554908,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 58632057805,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 6951568553,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60733709,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 13480328466,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 77066217,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3140171089,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 24333845376,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34507940819,
+        "rshares": 575306930,
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4496265875,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19650090910,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 8983200296,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 66906230856,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 104788510,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203502299985,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 1073667948,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1015996473375,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 27385580346,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "6000",
+        "reputation": 10519849768972,
+        "rshares": 12217525826,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1696363424,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255227790,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255610425,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147899496,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148734861,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84798583,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 701002863,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2997941608767,
+        "rshares": 5508463953,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 203439098227,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1951657512,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841171661,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20112172284,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 22963130568,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35578875588,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 8206970252,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18436436380,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 574079280,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 1365471076,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 412577837,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 221284317,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 77551309,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2557225302857,
+        "rshares": 5923617216,
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5711413280,
+        "rshares": 6184990126,
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 129066659,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27072053846,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 18648831056,
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 238861651541,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1318009421,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2388216457,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26544745435,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 28261072116,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1150395178,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9217169586,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 52489886,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 37382286273,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 14952644998,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 3863422357,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 53473560,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 22837595162,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2590447050,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5894311908189,
+        "rshares": 14437396418,
+        "voter": "artist1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 20733647424,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 12921898525,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 32699512403,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3732561387,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1112917083,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 636463375,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1964111181,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134345349682,
+        "rshares": 7190118987,
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 15890354633,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 111083493,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127737479,
+        "rshares": 233570693,
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 452879496,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2442169380,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62218938,
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 954937043358,
+        "rshares": 6640826883,
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 49201150707,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 53884258,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 773487823,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11166998088,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3299401993,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 7832829923,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 71551789,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 4540723045,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 3362202338,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1146505325539,
+        "rshares": 375929648,
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 59896309,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 27312396571,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2209169349,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 85721943459,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3462968534090,
+        "rshares": 6982744040,
+        "voter": "bitminter"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 54969817,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6089195575,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648377040631,
+        "rshares": 1719224371,
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 10519914536,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 75911873,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20118440636,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15562325823,
+        "rshares": 61302506,
+        "voter": "ignat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5584741517,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 62279229,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 8034296271,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 106783648,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 121845327,
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2309373844,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 771632829,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 89747247797,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 438819769,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1941499119,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58571448,
+        "voter": "isaacmorgentaler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 368407925,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 62312186,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 19465520550,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 24299155176,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12663340608,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 8098231266,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 13767766871,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1770994317,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 655924914,
+        "rshares": 58744201,
+        "voter": "myfriends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 239974453639,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 645095426265,
+        "rshares": 1231798813,
+        "voter": "blue1950"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 2313482861,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": -162294290155,
+        "rshares": 58875692,
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8826238500,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 624200855,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 184100704754,
+        "rshares": 56716182,
+        "voter": "sammie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 284047862,
+        "rshares": 54424511,
+        "voter": "matt525"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1679833671371,
+        "rshares": 4007339571,
+        "voter": "asuran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 18209474827,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8113893564,
+        "rshares": 69826982,
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1583451185,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 36471501608,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 55660383,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 12993402861,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 56017401,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1156451912179,
+        "rshares": 230031117,
+        "voter": "rebelmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3947043569,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 89846801,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5465873870,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2241938484,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 413377157,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 53942218,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 79722988,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 3311264992,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58077570820,
+        "rshares": 69606440,
+        "voter": "bmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 56547885,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 97810726,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24760371336,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 860573886,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2577157447,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4592050223,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 232285326,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4494562067,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 91630309,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 50210263,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 379994386,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 37096549717,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 51524412,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10310484518,
+        "rshares": 52676609,
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1774661835,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1643965133,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5812421354,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 3041925009,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2489010152,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50460250,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439002,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50436594,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 56387357,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 791391648,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 25501132189,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1455020482,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 1967797933,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 2869000034,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 1008239952,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972344082,
+        "rshares": 50565379,
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2454253,
+        "rshares": 50357208,
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10990916065,
+        "rshares": 52411214,
+        "voter": "mr189"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 53215131,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 55523890,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 52098977,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4619546516,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24953404448,
+        "rshares": 50431113,
+        "voter": "stringer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50245473,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1390226766,
+        "rshares": 51250081,
+        "voter": "steemjustice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13744830964,
+        "rshares": 50420952,
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785932,
+        "rshares": 50299690,
+        "voter": "blakeir"
+      }
+    ],
+    "author": "jesta",
+    "author_reputation": 38947133984552,
+    "beneficiaries": [],
+    "body": "For the time being, DO NOT promote a post that's past it's first payout phase. \n\nI've [opened an issue on github](https://github.com/steemit/steemit.com/issues/199) about the issue and hopefully we'll see a resolution soon.\n\nCurrently you can promote any post, even those past the first payout phase. The problem is that if it's in it's second payout phase or beyond, as soon as someone votes on the post, the promoted status gets completely removed. \n\nI'm putting this message out there to hopefully help avoid any potential frustration this issue may cause.",
+    "body_length": 559,
+    "cashout_time": "2016-09-06T02:57:15",
+    "category": "steemit",
+    "children": 78,
+    "created": "2016-08-30T02:57:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https://github.com/steemit/steemit.com/issues/199\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T03:23:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60433265388165,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "396.443 HBD",
+    "percent_hbd": 10000,
+    "permlink": "psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out",
+    "post_id": 1050849,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@jesta/psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28577640408816,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099652417,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3763074284,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697396740,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54062084360,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661153383,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213676452,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622799607,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967315888,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 21561714956,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288163140,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411040031329,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 91718922101,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431856783,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1429697273174,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132657096959,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 484889138,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3181753819665,
+        "rshares": 9692184464,
+        "voter": "jay4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147240421388,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 8253858871,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 357865659,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2883239806,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 662320934570,
+        "rshares": 401487161,
+        "voter": "ladypenelope1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7937586925,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2406933564,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 21862344199,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1238683117,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 54818772382,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3442234051,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2409727819,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 4294437615,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 55770485,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 581299661,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24239498471,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 52026360,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4027411276,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 53518025,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414887802912,
+        "rshares": 656281830,
+        "voter": "antifragile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1205574713,
+        "voter": "robotev"
+      }
+    ],
+    "author": "infotoday",
+    "author_reputation": 1051554596883,
+    "beneficiaries": [],
+    "body": "http://i65.tinypic.com/2djxchy.jpg\n\nToo often people believe that once they\u2019ve obtained that goal they\u2019ll be happy, for example, \u201cwhen I change jobs\u201d, \u201cif my business takes of\u201d, \u201cwhen the project is complete\u201d, \u201cafter we\u2019re married\u201d, \u201cif I lose some weight\u201d. Unfortunately it doesn\u2019t work like that, happiness  isn't achieved through any accomplishment.\n\nHappiness comes from within, it is only a state of mind, a choice. People come and go, relationships change, possessions get old, fortunes are made, and fortunes are lost. Everything changes, it\u2019s meant to. Life is fluid.\n\n## Emotions Start with Thoughts\n\nhttp://i64.tinypic.com/2mw9jqt.jpg\n\nSome people have nothing yet they emit a constant joy, while others who seem to have it all and are on the brink of destroying themselves. It\u2019s obviously not about anything like material possessions, or relationships, but more so emotions.\n\nHowever, it all starts with our thoughts. Thoughts come from how we react to situations, they\u2019re the building blocks of emotions. So, what we think about a situation determines the resulting emotions. For example, two people might experience the exact same situation yet have different thoughts about it... one person experiences the emotion of anger, while the other experiences the emotion of sadness.\n\nThis is an important distinction because you can control your thoughts, and whether the focus is on the positive or negative aspects. Of course, sometimes difficult situations will occur that will give way to runaway thoughts, it\u2019s only a natural part of being human.\n\n## Happiness Step #1: Strive to Increase Positivity\n\nhttp://i67.tinypic.com/10o1w7t.jpg\n\nTry to focus on the positive aspects of situations, it results in positive thoughts and therefore emotions, and helps you become \u201cmore present\u201d. If you choose to adopt the following habits you will experience an increase in positivity.\n\n**Express gratitude.** Be thankful for your past positive experiences and what you currently have, it helps release negativity. Gratitude instantly connects you to the feeling of love, and where love resides, fear and other negative emotions cannot.\n\nTry expressing 10 things you are grateful for every day, and speak them out loud if possible. Make sure it\u2019s coming from the heart and be detailed.\n\n**Meditate.** The practice of meditation expands awareness and improves the connection between mind, body and soul. It helps release negative emotions that might be holding you back, and is definitely one of the most effective ways to increase your positivity.\n\nTo mediate find a quiet and comfortable place. Sit or lie down, then close your eyes. Take a few deep breaths and start to allow yourself to relax. While breathing deeply, feel yourself letting go of whatever emotions you\u2019re holding onto, let go a little more with each breathe.\n\n**Give unconditionally to others.** Share your skills, share your advice, and help people out. Do not hesitate or doubt your value, even the smallest gestures can make a massive difference in someone\u2019s life. It will make you feel great; you\u2019ll reap the reward in increased positivity.\n\nhttp://i64.tinypic.com/mbo2di.jpg\n\n**Breathe fully.** A revealing research [study](http://www.tandfonline.com/doi/pdf/10.1080/02699930143000392) by Pierre Phillipot found that certain emotional states are associated with distinct respiration patterns. Participants were instructed to generate emotions such as sadness, fear, anger and happiness to the best of their ability, while their respiration patterns were closely observed.\n\nEach emotion was associated with a distinct respiration pattern. For example, when the participants were happy they breathed slowly and fully, when they felt anxious or afraid they breathed more quickly and shallowly. In a follow-up study the researchers instructed a different group of participants to breathe in the same patterns they had observed in the first study. The participants started to feel the corresponding emotion to whatever breathing pattern they used!\n\nBreathe slowly and fully, it enables better thinking and makes you feel more positive.\n\n## Happiness Step #2: The True Key - Become More Present\n\nhttp://i64.tinypic.com/210ksbd.jpg\n\nDon\u2019t put your happiness on hold because you\u2019re waiting for something to happen, it might not. There are no guarantees you\u2019re going to get that new job, car or anything for that matter.\n\nIf you detach yourself from the outcome and enjoy the journey you\u2019ll become fully present, living in the moment, and truly experiencing what life is about. You will have found happiness, all from within. It\u2019s contagious too... others will begin to pick up your habit, then it\u2019ll be reflected back to you.\n\nAll we really have is today, so take stock of what you really need, and try to appreciate your life more with each passing day.\n\n> \u201cHappiness, true happiness, is an inner quality. It is a state of mind. If your mind is at peace, you are happy. If your mind is at peace, but you have nothing else, you can be happy. If you have everything the world can give - pleasure, possessions, power - but lack peace of mind, you can never be happy.\u201d - Dada Vaswani\n\nHave gratitude, help others, and most of all be happy.",
+    "body_length": 5202,
+    "cashout_time": "2016-09-07T12:10:54",
+    "category": "happiness",
+    "children": 4,
+    "created": "2016-08-31T12:10:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"happiness\",\"life\",\"philosophy\",\"psychology\",\"empowerment\"],\"image\":[\"http://i65.tinypic.com/2djxchy.jpg\",\"http://i64.tinypic.com/2mw9jqt.jpg\",\"http://i67.tinypic.com/10o1w7t.jpg\",\"http://i64.tinypic.com/mbo2di.jpg\",\"http://i64.tinypic.com/210ksbd.jpg\"],\"links\":[\"http://www.tandfonline.com/doi/pdf/10.1080/02699930143000392\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T17:15:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31029768761714,
+    "parent_author": "",
+    "parent_permlink": "happiness",
+    "pending_payout_value": "115.050 HBD",
+    "percent_hbd": 10000,
+    "permlink": "stop-searching-for-happiness-and-you-might-just-find-it",
+    "post_id": 1069923,
+    "promoted": "98.166 HBD",
+    "replies": [],
+    "root_title": "How lasting happiness can be yours today by living in the 'Now'",
+    "title": "How lasting happiness can be yours today by living in the 'Now'",
+    "total_payout_value": "0.000 HBD",
+    "url": "/happiness/@infotoday/stop-searching-for-happiness-and-you-might-just-find-it"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3126247134380,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 408356350215,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1047378310443,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314688376293,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3100444020,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3764083289,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690489074,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54215350221,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661544327,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213702396,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10777629083,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622914773,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967513764,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 273058616015,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288197194,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 54492837940,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 79341238573,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84061171326,
+        "rshares": 50233452,
+        "voter": "cryptovoices"
+      }
+    ],
+    "author": "cryptovoices",
+    "author_reputation": 84061171326,
+    "beneficiaries": [],
+    "body": "<html>\n<p><em>As the Rio Olympics were getting underway this summer, I was reminiscing with a friend from </em><a href=\"http://www.mises.org.br/\"><em>Instituto Mises Brasil</em></a><em> about a film that both of us found remarkably enjoyable and inspirational.</em> <em>He convinced me to write an article about it.</em> <em>As I have no blog, I figured here would be a good place to start.</em> <em>Believe it or not the following is a movie review\u2026 the preface is my own personal take on how this documentary related to me and my experience.</em></p>\n<p>I'm a descendant of the <a href=\"https://en.wikipedia.org/wiki/World_War_II_evacuation_and_expulsion\">Eastern European displacement of World War II</a>. &nbsp;Growing up in Midwestern USA in the 1980s and 1990s, during a time when the US was thriving and the Soviet Union was crumbling, I always found it difficult to explain the impact of what was going on in Eastern Europe to my childhood friends.</p>\n<p>But it was a big deal. Looking back it\u2019s become clear that the collapse of the Soviet Union was a major turning point in not only the 20th century, but in a centuries\u2019 long battle of ideas among economic thinkers, from Adam Smith to Karl Marx to John Maynard Keynes to Ludwig von Mises, to name a few. The stunning defaults, crumbling infrastructure, and stagnating freedom of expression that all culminated in the (primarily peaceful) collapse of one of the two world superpowers at the time\u2014the <em>communist</em> one\u2014was a huge, huge victory for the freedom of mankind.</p>\n<p>Not that I myself had any real idea what was going on. I was too young to comprehend most of this. But I did know that a large portion of the groundswell for independence was emanating from the place where my relatives lived. A place I had never been to, never seen in person, but had learned about on the weekends in Latvian school, and from stories my father and grandparents told. I was quite aware, and proud, that the first three breakaway nations to secede from the Soviet Union, collectively known as the Baltic States, were Estonia, Latvia and Lithuania.</p>\n<p>But I remember always struggling to bring any comprehension or connection to what I was hearing at home and among Latvian circles to friends back at school. And there was good reason they should have cared. It was a scary time, as the masks were pulled away from the apparatchiks in the Kremlin, no one could be certain how the cards would fall. Would there be large swaths of violence, as the power slipped through their fingertips? The second half of the old Soviet joke, \u201cSo long as the bosses pretend to pay us, we will pretend to work,\u201d was not holding anymore. Lithuania became the first breakaway nation to declare its independence in March 1990. The first violent attack against this freedom movement occurred in January 1991, when Soviet troops killed 14 people and injured hundreds more in Vilnius, Lithuania\u2019s capital. The Lithuanians were crescendoing their rallies for recognized independence, forming barricades to protect their institutions (like the radio and television stations, and parliament) from the Soviet troops still on the ground, digging in their heels.</p>\n<p>To be clear, this wasn\u2019t the first movement for freedom and independence in the illegally annexed Baltic States. After the Soviet Union occupied the three nations in 1944, for <a href=\"https://en.wikipedia.org/wiki/Forest_Brothers\">over 10 years there was calculated guerrilla warfare</a> waged against the Stalinist regime, even into the late 1950s. And certainly there were <a href=\"https://en.wikipedia.org/wiki/Anti-Soviet_partisans\">many movements fighting for freedom across the Soviet Union and its satellites</a> for decades. Likewise, the violence in Vilnius in 1991 (and more followed in Riga) were not the first <a href=\"https://en.wikipedia.org/wiki/Mass_killings_under_Communist_regimes\">signs of aggression in the Soviet Union against its own citizens</a> (those citizens being illegally incorporated or not).</p>\n<p>Back in the United States, we played our own small roles. I recall going to rallies in major cities and seeing my father (always active in foreign Latvian politics and immigrant cultural heritage) speak for independence on the news. I incorporated these events into school projects. But again, I was young, and my friends had more important things to do. I had more important things to do.</p>\n<p>And then it happened. Almost with the flick of a switch, the old regime crumbled. <a href=\"https://en.wikipedia.org/wiki/Singing_Revolution\">The Singing Revolution</a> had achieved its goal, peacefully. Something my grandparents had only dreamed about was finally a reality. Freedom. At last. A white sheet. The Baltics were free, their independence recognized (first internationally by Iceland\u2026 side note, it\u2019s always Iceland, how great are they?!). Other satellites such as Georgia and Armenia quickly followed suit in declaring their own independence. Just like that, in December 1991, the Soviet Union was dissolved. Absolutely remarkable.</p>\n<p>And just as quickly as it ended, everyone realized they needed to rebuild. Fast. <em>Because these nations were behind.</em></p>\n<p>The key takeaway I believe everyone should remember from this time is how stark the economic and cultural contrast really was then between East and West. How utterly stumped\u2014economically and financially\u2014the Soviet Union was at its dissolution in 1991, when matched against its counterpart nations in Western Europe and North America. And remember, in total, the Soviet Union was <a href=\"https://en.wikipedia.org/wiki/List_of_countries_by_largest_historical_GDP\"><em>the second largest economy in the world</em></a><em>.</em> This fact alone, combined with the blunt economic juxtaposition between East and West as the Berlin wall came crumbling down, should make anyone think twice about defending socialism of any kind. People just couldn\u2019t see it. At the time, the combination of propaganda, lack of free press, and lack of internet probably contributed most to this stunning misinformation and misunderstanding between \u201cthem,\u201d and \u201cus\u201d (such perceptions no doubt shared equally and oppositely from both sides of the iron curtain). And yet today, with all of our leaps and bounds in technology and understanding, this battle of economic ideas rages on. People lose interest in the past. People forget. So I firmly believe we should remember this particular battle in perpetuity, as for 50 years it was truly the largest scale economic clash of <em>planned</em> versus <em>free</em> societies the world had ever seen. One more note, there is no time here to qualify all the (many) things Western nations didn\u2019t do well in the 20th century. Rather, on a higher level, I find it hard to argue for the completely disastrous, authoritarian policies of the Union of Soviet Socialist Republics. It\u2019s hard to argue for socialism.</p>\n<p>A lesson worth remembering.</p>\n<p>A quick recap on how the Baltic States in particular have gotten on since then. My first trip to Latvia was in 1996, and coming from a life in the US, it was by far the least developed country I had stepped foot in. The capital Riga was completely dark (I mean no street lights, seemingly no lights at all) in the evenings, almost scary at times. Rusted pipes and plumbing no matter where you stayed. Every car on the road was <a href=\"https://en.wikipedia.org/wiki/VAZ-2101\">hilariously old</a>. &nbsp;The potted roads would seem a luxury once one traveled a few kilometers outside the capital city to the countryside. If and when you finally did arrive at your rural destination, you almost expected dueling banjos to be heard through the trees. But the music? Far better in fact. Disco. That is, if you could find a caf\u00e9 with a stereo. Yet that genre was probably fitting, as it wasn\u2019t a stretch to compare the place to 1970s Western economic levels (if that).</p>\n<p>I moved to live in Latvia full time 10 years later, in 2006. The Ladas had been swapped for Volkswagens. The city had brightened up in a big way. Booms in construction. The disco remained. Fair enough. But the gap was closing.</p>\n<p>10 years later it\u2019s 2016 and I\u2019m still here. The country is still one of the least wealthy in the EU\u2014to be expected when its Western counterparts had such an economic head start\u2014but it is light years ahead of what I witnessed in 1996. Latvia joined the Organisation for Economic Co-operation and Development (OECD) earlier this year, so it seems we can now call it a developed nation, country #35 to join that club. Though I\u2019m Latvian, I\u2019ve had plenty of travel and work experience in Estonia (also in the OECD) and Lithuania, each beautiful and progressing in their own right. Most importantly, they have their freedom.</p>\n<p>But this journey, all these years, for me, was personal. I had some understanding, and knew the backstory. Thinking again about that kid growing up in Midwestern USA, observing the collapse of the USSR back in the 1990s, and since then increasing my own understanding (perhaps more than the average person) of how this was an incredibly meaningful, positive change for society\u2014how could I have more persuasively expressed it all back then to my childhood friends? To my community? More importantly, <em>how can I today</em> still express how crucial these (ongoing) battles for freedom and independence really are?</p>\n<p>I\u2019ve had old friends come visit me over the years, make the trip to the Wild Wild East, see that it\u2019s not so wild anymore. Sure, they\u2019d hear some stories of the grind from communist times, the bread lines, the black markets, the survival mentality my family members had to take in certain situations, even tales of Siberian deportations after the Second World War. But today, if you visit, those things seem very far away. Today, things are pretty damn comfortable and pleasant here, <em>so it\u2019s easy to forget how far we\u2019ve come</em>. Remember, 25 years ago you couldn\u2019t even own real assets in Eastern Europe.</p>\n<p>So I keep coming back to these same questions. 25 years since the dissolution of the Soviet Union\u2014<em>why should anyone care </em>about what happened here? How do you illustrate this amazing fight for freedom against the world\u2019s most authoritarian superpower at the time? How do we keep inspiring others in the same fight? Do people really understand how important the economic, political and individual freedoms being chased today by those in Ukraine, Bahrain, Iran, Myanmar, Cuba and plenty of other places around the world really are?</p>\n<p>A few years ago, I came across a film that addressed all of the aforementioned questions, and more.</p>\n<p>Something entertaining, something interesting, something thought-provoking.</p>\n<p>Something for history buffs; something for people who don\u2019t care much for history at all.</p>\n<p>Something for sports fans; something for people who couldn\u2019t care less for sports.</p>\n<p>Something for those with national pride; something for those who lack that spark and interest in where they come from. Something inspirational\u2026 about liberty.</p>\n<p>The film is called <a href=\"http://www.imdb.com/title/tt1606829/?ref_=fn_al_tt_1\"><em>The Other Dream Team</em></a>.</p>\n<p>The fight for freedom and independence, inspired. The story is told through the eyes of the 1992 Lithuanian Men\u2019s Basketball team competing at the Barcelona Olympics. The same Olympics where Magic, Michael and Larry stormed Las Ramblas in Barcelona with 8 other Hall of Famers (and Christian Laettner!) known as the Dream Team. A true treat to watch, the first time pros competed for the US at the Olympics, and <a href=\"https://www.youtube.com/watch?v=GtoHD89ylSw\">they were a hurricane</a>. But what many forget from that same Olympics in 1992\u2014a whisker in time after the Soviet Union fell apart\u2014was who took the podium after an extremely intense bronze medal game.</p>\n<p>Lithuania. Free Lithuania. It was a game in which a newly independent Lithuania faced their former Soviet teammates from the CIS team, and in a way their former Soviet occupier.</p>\n<p>I cannot recommend this film highly enough. I\u2019m not even Lithuanian. But my brothers across the border who have come to be known as the Green Machine in international basketball are truly an inspirational group\u2014both then and now\u2014and this story puts a human touch on their nation\u2019s ultimate fight for freedom during that volatile time. Again, this film is not just about sports, and will match almost anyone\u2019s attention span. It will show you what life was like during Soviet times, and the tremendous obstacles they had to overcome. This is the movie, back in the 1990s, <em>I wish I could have just pressed \u201cplay\u201d to</em>, when attempting to explain to my friends and community what the hell was going on in Eastern Europe, and why it was time to give freedom a chance. Watch this film, and you will understand.</p>\n<p>Oh yeah, and the Grateful Dead played a role, too.</p>\n<p>It probably goes without saying that I think this story is just as important today. I\u2019m not much for politicized debates about a resurgent Russia or a militant US or how China should fit in or the proper balance of global hegemony that some pundit believes is most appropriate. But I am a sucker for inspiration, especially when it\u2019s conveyed effectively and poignantly and unabashedly in favor of freedom and liberty. These are the stories we need to be reminded of. And not only in Eastern Europe. I genuinely hope to see many more tales of hope and freedom from athletes and teams peacefully chasing their goals against the odds under oppressed regimes around the world today. Sometimes we all need a little inspiration. It is an Olympic year, after all.</p>\n<p>If you have any other stories to recommend (Olympics-related or not), I for one would be delighted to hear about them.</p>\n<p>As I\u2019ve done for many years, I urge everyone to check out this film. I promise you will not be disappointed.</p>\n<p>~</p>\n<p>A small Coda. 24 years after Barcelona, the Olympics in Rio are over. The Lithuanian Men\u2019s Basketball team started strong, going 3-0 in its first three games, but they limped into the quarterfinals after losing the next two in the group, and didn\u2019t make it past Australia in the round of 8. A disappointing outcome for them, but as a country of only 3 million, on the international basketball stage they continue to punch well above their weight. &nbsp;</p>\n</html>",
+    "body_length": 14485,
+    "cashout_time": "2016-09-08T12:47:42",
+    "category": "freedom",
+    "children": 0,
+    "created": "2016-09-01T12:47:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"freedom\",\"film\",\"history\",\"economics\",\"sports\"],\"links\":[\"http://www.mises.org.br/\",\"https://en.wikipedia.org/wiki/World_War_II_evacuation_and_expulsion\",\"https://en.wikipedia.org/wiki/Forest_Brothers\",\"https://en.wikipedia.org/wiki/Anti-Soviet_partisans\",\"https://en.wikipedia.org/wiki/Mass_killings_under_Communist_regimes\",\"https://en.wikipedia.org/wiki/Singing_Revolution\",\"https://en.wikipedia.org/wiki/List_of_countries_by_largest_historical_GDP\",\"https://en.wikipedia.org/wiki/VAZ-2101\",\"http://www.imdb.com/title/tt1606829/?ref_=fn_al_tt_1\",\"https://www.youtube.com/watch?v=GtoHD89ylSw\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T13:11:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5379914965452,
+    "parent_author": "",
+    "parent_permlink": "freedom",
+    "pending_payout_value": "5.260 HBD",
+    "percent_hbd": 10000,
+    "permlink": "25-years-after-the-soviet-union-watch-the-other-dream-team-to-remain-inspired-for-liberty",
+    "post_id": 1083746,
+    "promoted": "97.000 HBD",
+    "replies": [],
+    "root_title": "25 Years after the Soviet Union: Watch 'The Other Dream Team' to Remain Inspired (for Liberty!)",
+    "title": "25 Years after the Soviet Union: Watch 'The Other Dream Team' to Remain Inspired (for Liberty!)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/freedom/@cryptovoices/25-years-after-the-soviet-union-watch-the-other-dream-team-to-remain-inspired-for-liberty"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28865473791883,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2822583339584,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 4339707086,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 5268554676,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 976380503,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 75752807018,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2325712728,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 299151591,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1279332871690,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 871946798,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1354285541,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 403435231,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 57716131545,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432241835,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 602018562,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7007671362,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 917350412,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 534741041304,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37015270307,
+        "rshares": 327889281,
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19561969515,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 16046775777,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2657821576,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18458799241134,
+        "rshares": 42659441690,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 10893076834,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3542969768,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 13857628632,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 243356345,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1254384994,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 51813376221,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1939239897,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2686695411,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 674473714,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570594013620,
+        "rshares": 1855582800,
+        "voter": "cogliostro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 180153284,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17164865565,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 28001566151,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54192730483,
+        "rshares": 397267296,
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 9694463412,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 14373499173,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 843609166,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 29199353747,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 110699909,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11495766018,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1146615954,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 55509747,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2918567318,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24159309306,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1044738152,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 12047560332,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 391259806,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1818363378287,
+        "rshares": 3538727871,
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23192834686,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 226292406,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 94397808,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 18956641949,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1274868167,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 142968891,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 316250142,
+        "voter": "robotev1"
+      }
+    ],
+    "author": "karnal",
+    "author_reputation": 18458799241134,
+    "beneficiaries": [],
+    "body": "![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft1.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcRUQJDxUHXwUw-2IUifJunmmclmXY8N6NIc1svap6AXtqhFO53sNA&sp=9ad62521135e5c6f264578818d174278)\n\nMention the word alimony and a lot of men begin to get uncomfortable. It such a rife subject even in developed nations that political ambitions can be made or broken depending on one's stance about this. Unfortunately so many people have failed to realize that this is quite a private subject for men. There are circumstances that stem up and would make a man have to make a serious decision about his health and his future.\n\nTherefore no socio-political, cultural or religious factor should be made to take the place of his decision. A man should have the right to choose whether he wants to keep a child or not. After all it is his wallet, his wealth and his future that is in jeopardy.\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft2.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcReT4wovWfBByJ2G5q0g7NtdeBNiEBw3UkbpzxENjTi7jhH6LDYzQ&sp=e88be8f88c2ebf5e6b418d469f046195)\n\nIt is, however, unfortunate that a lot of countries continue to criminalize and shame so-called \"dead-beat dads\" even when the wealth of the father is at stake.\n\nFor instance a man called Terry Power. *His face tightened as he listened to his wife's attorney tick off their assets on the final day of his divorce trial. He sat in a leather chair at a glass-covered table inside a paneled judicial chamber and he thought not for the first time that her voice annoyed him.*\n\n*The Jet Ski . . . his wife's attorney said.*\n\n*\"Sold to pay attorney fees,\" Terry interjected.*\n\n*The IRA account?*\n\n*\"Distributed to pay property taxes on the marital property.\"*\n\n*The Raymond James investment account?*\n\n*\"Gone.\"*\n\n*Terry's wife, Murielle, petite with blond highlights, stared at him as if he were an insect, then looked down at her hands. After five years in divorce court, they were like old prizefighters in their respective corners.*\n\n*In February 2008, when Murielle Marie Helene Fournier vs. Terrance Paul Power was but a single document inside a purple file at the Pinellas County Courthouse, when Terry had his own business and made $250,000 a year, he thought of divorce court as a place where grievances were smoothed over and order restored. Now as he represented himself in his own divorce trial because he couldn't afford an attorney, his case having grown to 28 volumes and costing about $400,000 (much of it still unpaid), he viewed the system of marital justice as a journey down the rabbit hole.*\n\n*The gold coins?*\n\n*\"I have no idea.\"*\n\n*The hutch?*\n\n*\"Sold.\"*\n\n*As their divorce trial concluded, Murielle's attorney finally got around to alimony, the issue that had bogged down the case from the start. Terry had delivered his first of six alimony offers to Murielle a month after the divorce was filed: $5,400 a month until he retired, plus $50,000 cash and half the contents of their million-dollar home, which was underwater. The last letter, delivered to her attorney the month before the trial, offered her zero.*\n\n*\"Frankly I don't give a crap if she settles or not,\" he had written. \"I'd rather see her waste even more money. Like she made me do for these past four years.\"*\n\n*Now Murielle's attorney suggested a different amount: \"She's 50 years old and she doesn't have many skills, Judge . . . $6,500 a month should keep her in a decent place.\"*\n\n*Terry rolled his eyes.*\n\n*(adapted from [here](http://www.tampabay.com/features/humaninterest/the-divorce-from-hell-the-battle-for-alimony-and-emptied-pockets/2112875))*\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTmQO0c1JzFPIMQa8Ru-GZ7uNCxPWjtmSjsXXAPtrF28Vpp_Emaow&sp=1c9cf8d87d7d7625aba83f15e30270f3)\n\nMarriage is a very risky condition for the modern man and a lot of men are going to run into complications during this period and suicide is going to be their only saving grace. To cancel this option before hand for them is very inhumane thing to do as far as I\u2019m concerned.\n\n![](http://assets.nydailynews.com/polopoly_fs/1.1906336.1408258966!/img/httpImage/image.jpg_gen/derivatives/article_1200/news-robinwilliams-obit-2-la.jpg)\n\nIn another sad antithetical case, men in most countries are being forced to pay alimony when they clearly do not want such procedures carried out on them. In the United States, in order to uphold the nonsensical drivel of feminist policy, men are forced to go to jail if they refuse to pay - even if the child is not theirs!\n\nIn Switzerland, as many other places, men are forbidden from seeing their children, many times due to false allegations on the part of the mother. It is referred to as female deception. [Recently a new born baby girl was found in a dumpster and had to be rushed to the hospital to received urgent medical attention](http://news.nationalpost.com/news/canada/london-ont-police-charge-23-year-old-mother-two-days-after-dead-baby-found-in-dumpster).\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTqkHuavHk3tNlbtsfZBsUMPdGt6YUNf3b6AmoqFh-F-wd3DWJL-g&sp=dfc9275990e22e1e14f3e6bc00de0df2)\n\nThere are other cases where a man should be allowed to have a future. For example if he is not ready, financially, to support a child it is very unhealthy for such a gentleman to be forced to carry that child to adulthood. Many gentlemen have had to quit school in order to take up poor paying jobs to support a child they were not ready to have. For the welfare of father and child, young gentlemen should be allowed to make decisions on whether they want to keep paying or not.\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTcjI0bLH3GAUML1JKT0gnY073u7KcK6nxcxuz_XM_DOtJslMI6SA&sp=ffe625608bf04a3406b769867fbfab1e)\n\nMost men also get broke from horrifying experiences like divorce rape and to force such a gentleman to keep a child that will only remind him of an unfortunate and painful wife is very wicked. Most people will argue that divorce involves taking the life of an innocent man but they are just a mass of undeveloped testicles that are not even a complete human yet. It doesn't even have a developed nervous system yet and as such cannot feel emotions. And it is even sad that most religions try to guilt people into keeping a marriage at the expense of the husbands's happiness. The fathers\u2019s decision should always hold supreme as it is his wallet and he should have the final decision on what he wants to do with it. And he can always live to have healthy babies in the future.\n\n![](http://www.brocode.com/wp-content/uploads/2012/12/brobama.jpg)",
+    "body_length": 6765,
+    "cashout_time": "2016-09-08T10:22:21",
+    "category": "abortion",
+    "children": 19,
+    "created": "2016-09-01T10:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"abortion\",\"men\",\"pro-choice\",\"life\",\"steemit\"],\"image\":[\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft1.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcRUQJDxUHXwUw-2IUifJunmmclmXY8N6NIc1svap6AXtqhFO53sNA&sp=9ad62521135e5c6f264578818d174278\",\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft2.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcReT4wovWfBByJ2G5q0g7NtdeBNiEBw3UkbpzxENjTi7jhH6LDYzQ&sp=e88be8f88c2ebf5e6b418d469f046195\",\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTmQO0c1JzFPIMQa8Ru-GZ7uNCxPWjtmSjsXXAPtrF28Vpp_Emaow&sp=1c9cf8d87d7d7625aba83f15e30270f3\",\"http://assets.nydailynews.com/polopoly_fs/1.1906336.1408258966!/img/httpImage/image.jpg_gen/derivatives/article_1200/news-robinwilliams-obit-2-la.jpg\",\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTqkHuavHk3tNlbtsfZBsUMPdGt6YUNf3b6AmoqFh-F-wd3DWJL-g&sp=dfc9275990e22e1e14f3e6bc00de0df2\",\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTcjI0bLH3GAUML1JKT0gnY073u7KcK6nxcxuz_XM_DOtJslMI6SA&sp=ffe625608bf04a3406b769867fbfab1e\",\"http://www.brocode.com/wp-content/uploads/2012/12/brobama.jpg\"],\"links\":[\"http://www.tampabay.com/features/humaninterest/the-divorce-from-hell-the-battle-for-alimony-and-emptied-pockets/2112875\",\"http://news.nationalpost.com/news/canada/london-ont-police-charge-23-year-old-mother-two-days-after-dead-baby-found-in-dumpster\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T12:43:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34032380908060,
+    "parent_author": "",
+    "parent_permlink": "abortion",
+    "pending_payout_value": "130.891 HBD",
+    "percent_hbd": 10000,
+    "permlink": "alimony-my-wallet-no-choice",
+    "post_id": 1082491,
+    "promoted": "93.304 HBD",
+    "replies": [],
+    "root_title": "Alimony: His Wallet, No Choice",
+    "title": "Alimony: His Wallet, No Choice",
+    "total_payout_value": "0.000 HBD",
+    "url": "/abortion/@karnal/alimony-my-wallet-no-choice"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 55443872918,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7506279924606,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 956580537487,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 286792162044,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 39580133428,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19451819636,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 289369412128,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6821654706,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 12685758255,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 51683161993,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14092150225,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9002169790,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 2517444616,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 465107574,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5456091909,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 37297723085,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 340794336001,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 5414208804644,
+        "rshares": 3314972930,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7186758,
+        "rshares": 469151600,
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 17741512743,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1062096269,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1430740640,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 46018441212,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 13443704142,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37420356892,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 363256840,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3959154858064,
+        "rshares": 9861567392,
+        "voter": "gsus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12933674542,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 125488800966,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 102981746849,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 21063895973,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5014183284,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 30893616494,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 76784065106,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 16791675664,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 15304296909,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 464300144106,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 66741270,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 61187809,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 332753643138,
+        "rshares": 937524389,
+        "voter": "minergate123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147174247311,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 13265886887,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 531668806,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 192288602621,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 34393459049,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 7593196010,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 77404254739,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 594214785,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2620486879029,
+        "rshares": 1992253521,
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 20246922705,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12972669244,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37545357584,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34932026701489,
+        "rshares": 152849407754,
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14306641323,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 6979374026,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 97881305,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 88204270,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 357865659,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 108849196,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "1000",
+        "reputation": 10519849768972,
+        "rshares": 2036596449,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 17997022527,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 8105938340,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 10956717427,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26544745435,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5153049492,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15517908096,
+        "rshares": 60866822,
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1949167915,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 37382286273,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2697238149,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211462616494,
+        "rshares": 1031420029,
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 13298600041,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 935922893,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10158724335,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 247712895,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1390975245,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 11484038338,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 6147352384,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 47723997975,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6861320744353,
+        "rshares": 2022735682,
+        "voter": "anarchyhasnogods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 23362349178,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12408078567,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 250441174037,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24542129331,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 117344778,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11584736264,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 646708938,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 7218406347,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 37242141910,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24762164330,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 70170304,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 54576373,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 37864594216,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 683829103,
+        "rshares": 54232595,
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 143043369,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166028134,
+        "rshares": 51922018,
+        "voter": "augmentalized"
+      },
+      {
+        "percent": "10000",
+        "reputation": 381798847,
+        "rshares": 50218530,
+        "voter": "worldcitizen"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "It's been a busy week for me, I've started 5 or 6 projects, cancelled/froze one of them, and finished two of them.\n\nThis witness update is a little bit late, but I haven't had much to show until now. My witness server has been up and running 24/7, and I haven't missed a single block, despite running for several weeks now, and going through a hard-fork.\n\nWhat have I done this past week?\n-----\n\n### Created ANONSTEEM - for anonymous STEEM accounts\n\n![](https://i.imgur.com/Y6QDDbD.png)\n\nAnonSteem is my latest medium-sized project. A few people I know have a strong hatred towards social media accounts, and there weren't really any other methods of obtaining accounts outside of steemit.com\n\nSo, I created AnonSteem, where you can purchase your account upfront by paying AnonSteem your creation fee in BTC/LTC. I wasn't certain if it would take off, but there's been quite a few account creations so far, and I hit the frontpage with the post.\n\n**Post:** [ANONSTEEM - Create Anonymous Steem Accounts without social media](https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media)\n\n### Fixed several issues on @xeroc's Piston library\n\nWhile working on AnonSteem, I found two separate issues in the account creation system of Piston, I ended up taking the matter into my own hands, created a fix for the issues, and sent a pull request to solve the issues for everyone.\n\n**Post:** [Have you created any accounts via Piston? Your owner keys and posting keys are swapped!](https://steemit.com/steem-help/@someguy123/have-you-created-any-accounts-via-piston-your-owner-keys-and-posting-keys-are-swapped)\n\n### Ran a game giveaway to try to bootstrap the Game Review category\n\nThe post was also to possibly help me gain some more STEEM power, while at the same time giving out a game in a fair and verifiable way, however it fell flat. Many people loved the idea though, and it helped encourage people to keep writing their reviews.\n\n**Post:** https://steemit.com/gaming/@someguy123/steam-game-giveaway-outlast\n\n### Steem-in-a-box\n\n![](https://i.imgur.com/XOsLHJQ.png)\nAs you might recall from my last witness update, one problem I was trying to solve was the installation effort. I solved it partially with up-to-date instructions on [STEEM.CENTER](https://www.steem.center), but I wanted something better.\n\nSteem-in-a-box is a small shell script designed to make dealing with STEEM inside of a Docker container painless. While the post didn't get too much attention, it has been useful to myself and a few others.\n\nThe most important point of Steem-in-a-box is that using the one-liner in the post, you're able to set up a STEEM seed, witness, or RPC server without having to do anything at all, other than set up your `config.ini` file\n\n**Post:** [Steem-in-a-box - Deploy a new seed, witness, or RPC server with a one-liner](https://steemit.com/steem/@someguy123/steem-in-a-box-deploy-a-new-seed-witness-or-rpc-server-with-a-one-liner)\n\n### Joined the Wiki Content Team\n\n@ned recently asked for people to work on improving the poor quality of documentation for STEEM, for both new users and developers.\n\nI have teamed up with @dragonho and @serejandmyself as the \"Steemit Wiki Content Team\", working together on a new possibly official wiki and FAQ for STEEM/Steemit, so new users don't have to check across 5 different sites, and hundreds of outdated STEEM posts to find the information they need.\n\nIf you think you can help out, feel free to join #wiki on the Steemit.CHAT and let us know where your expertise lies.\n\n\nWhat am I doing next?\n------\n\nI'm going to be continuing to work on new STEEM services, while at the same time working with other people in the community to improve existing services, as well as working with the Steemit Wiki Content Team to produce good quality information to help people out.\n\nI love the idea of a censorship resistant, free (libre) platform, and I may continue to work on more services for that aspect, but may venture out to other areas where I see useful to the community.\n\nCheck out my last witness update [HERE](https://steemit.com/witness-category/@someguy123/someguy123-s-witness-update-2016-08-19)\n----\n\nDo you like what I've been doing? [Vote for me on the witness list](https://steemit.com/~witnesses), and follow me for more content like this.\n========",
+    "body_length": 4345,
+    "cashout_time": "2016-09-06T16:42:09",
+    "category": "witness-category",
+    "children": 10,
+    "created": "2016-08-30T16:42:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"witness-category\",\"witness-update\",\"witness\",\"steem\",\"wiki\"],\"users\":[\"xeroc\",\"ned\",\"dragonho\",\"serejandmyself\"],\"image\":[\"https://i.imgur.com/Y6QDDbD.png\",\"https://i.imgur.com/XOsLHJQ.png\"],\"links\":[\"https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media\",\"https://steemit.com/steem-help/@someguy123/have-you-created-any-accounts-via-piston-your-owner-keys-and-posting-keys-are-swapped\",\"https://steemit.com/gaming/@someguy123/steam-game-giveaway-outlast\",\"https://www.steem.center\",\"https://steemit.com/steem/@someguy123/steem-in-a-box-deploy-a-new-seed-witness-or-rpc-server-with-a-one-liner\",\"https://steemit.com/witness-category/@someguy123/someguy123-s-witness-update-2016-08-19\",\"https://steemit.com/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T16:43:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11996790870948,
+    "parent_author": "",
+    "parent_permlink": "witness-category",
+    "pending_payout_value": "20.006 HBD",
+    "percent_hbd": 10000,
+    "permlink": "someguy123-witness-update-2-2016-08-30",
+    "post_id": 1058170,
+    "promoted": "90.000 HBD",
+    "replies": [],
+    "root_title": "Someguy123 Witness Update #2 (2016-08-30)",
+    "title": "Someguy123 Witness Update #2 (2016-08-30)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/witness-category/@someguy123/someguy123-witness-update-2-2016-08-30"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1300",
+        "reputation": 145171381514207,
+        "rshares": 4000975898439,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33250846024,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 748581030023,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 297041068093,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34688108074,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3933191505,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431723281,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10075379390,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1091598557,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "3900",
+        "reputation": 598181152117,
+        "rshares": 86226608664,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 302683064,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 198782719642,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 53588462318,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 392424265528,
+        "rshares": 10056526674,
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1474999091,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793209170784,
+        "rshares": 1554048723,
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4297945677,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 17119266780,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4370747754,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 452064608,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7768702097,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3500",
+        "reputation": 17698439393799,
+        "rshares": 10248594270,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 95075182250,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 21862344199,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 7428316001,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "1700",
+        "reputation": 10771708337101,
+        "rshares": 187832844048,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2100",
+        "reputation": 18027204457681,
+        "rshares": 6307774269,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 5776723480371,
+        "rshares": 102478673665,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3835966474,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 97845484474,
+        "rshares": 19821725614,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99941487421,
+        "rshares": 86237877,
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "1800",
+        "reputation": 3016325652890,
+        "rshares": 24584535688,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1851205309677,
+        "rshares": 1438747070,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 35467788361,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3552896427510,
+        "rshares": 1551051361,
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3900",
+        "reputation": 4195733833721,
+        "rshares": 3570283559,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "3900",
+        "reputation": 730408370151,
+        "rshares": 235328801,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1325687037,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11509623311,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1400671466,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027674923569,
+        "rshares": 901855752,
+        "voter": "steemzine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 97596413,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 376986574,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 52283518,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 55770485,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322592441,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 136773607,
+        "voter": "iggy"
+      }
+    ],
+    "author": "steemzine",
+    "author_reputation": 1027674923569,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Shit gets rough every now and then. Life is a pain and sometimes you just need something to pick yourself up out of a rut and into a new mind frame.&nbsp;</p>\n<p>Here are 5 simple things you can do if you are not having the greatest day. They can simply change your mood and take you from one negative state to a more optimistic and <a href=\"www.instagram.com\">positive one.&nbsp;</a></p>\n<h2><img src=\"http://www.in-spirelsmagazine.co.uk/wp-content/uploads/2014/04/Think-Positive-In-spire-LS-Magazine-2.jpg\"/></h2>\n<h2>1. Put on your Jam And Throw Away Some Junk&nbsp;</h2>\n<p>Yup pump up your latest \"jam\" and start throwing junk out! One way to decide what to throw out is ask your self these two questions.&nbsp;</p>\n<ul>\n  <li>When was the last time I used this? If the answer is 6 months ago or more....then...</li>\n  <li>Do I really need to keep it? Or can it go to a better home.&nbsp;</li>\n</ul>\n<h2>2. One persons trash is another persons treasure.&nbsp;</h2>\n<p>Don't just throw it in the bin, pass it on to a new home. Go donate it. Someone can probably put it to good use! So this is a sure fire way to start a chain of positivity. Act positive and you will be positive.&nbsp;</p>\n<h2>3. Surround Yourself With Humour And A Good Friend.&nbsp;</h2>\n<p>Pick up the phone and say hello to a friend. Have a laugh, get your funny endorphins rolling around in your body. There is no better way to do this than to make a connection with someone and have a giggle.&nbsp;</p>\n<h2>4. Reminisce A Little&nbsp;</h2>\n<p>This is an odd one, but the brain often glorifies good moments in your life. So pull out the photo album of your last wild getaway or family holiday and have a think of the good times. This will put a smile on your dial.&nbsp;</p>\n<h2>5. Plan Something</h2>\n<p>Last but not least put a plan on paper, book a little trip, book a night out and go to the cinemas. We all need to have things we look forward to on a weekly basis, this is the stuff that keeps you going . You place the light at the end of the tunnel no on else. So turn on the light and plan a little night :)&nbsp;</p>\n<p><br></p>\n<p>I hope you found these helpful. They are things I do all the time if I'm not feeling the best! Share with us below what you do. :)&nbsp;</p>\n<p>#steemit #steemzine #psychology #life &nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 2339,
+    "cashout_time": "2016-09-07T01:44:36",
+    "category": "steemit",
+    "children": 4,
+    "created": "2016-08-31T01:44:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemzine\",\"psychology\",\"life\",\"\"],\"image\":[\"http://www.in-spirelsmagazine.co.uk/wp-content/uploads/2014/04/Think-Positive-In-spire-LS-Magazine-2.jpg\"],\"links\":[\"www.instagram.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T22:02:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 6055119383758,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6.393 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemzine-27-five-things-to-make-you-feel-better",
+    "post_id": 1064846,
+    "promoted": "89.000 HBD",
+    "replies": [],
+    "root_title": "STEEMZINE #27 - Five Things To Make You Feel Better",
+    "title": "STEEMZINE #27 - Five Things To Make You Feel Better",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemzine/steemzine-27-five-things-to-make-you-feel-better"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "6000",
+        "reputation": 13270505121655,
+        "rshares": 37958555221963,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3067363384383,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 478094018503,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1114412761220,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 308797510253,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 117668471628,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 258704941582,
+        "voter": "pal"
+      },
+      {
+        "percent": "2100",
+        "reputation": 15755437221598,
+        "rshares": 5881761534,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "5555",
+        "reputation": 2902053059801,
+        "rshares": 1061225057,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5619821999,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 206055752764,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687457693253,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 6893011543,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 336007709477,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 35382236445,
+        "voter": "clement"
+      },
+      {
+        "percent": "2100",
+        "reputation": 17405459234693,
+        "rshares": 12150749927,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 174834964660,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "2100",
+        "reputation": 4066839697461,
+        "rshares": 1911143023,
+        "voter": "getssidetracked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1106470849861,
+        "rshares": 2260320253,
+        "voter": "cloh76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4997362589971,
+        "rshares": 106715514958,
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 12031186934,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1454011802,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 322883299010,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17817262904,
+        "rshares": 116496190,
+        "voter": "bzeen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45014899,
+        "rshares": 116147067,
+        "voter": "chugumoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 7264246012,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 10147926283,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 309088757,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 202505398624,
+        "rshares": 5405936538,
+        "voter": "livetofly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 7320667894,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984154587642,
+        "rshares": 8481809308,
+        "voter": "chloetaylor"
+      },
+      {
+        "percent": "1200",
+        "reputation": 568560955800,
+        "rshares": 5022832456,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 43547132598,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "8000",
+        "reputation": 7172977970558,
+        "rshares": 2597513528,
+        "voter": "ace108"
+      },
+      {
+        "percent": "500",
+        "reputation": 4063076365725,
+        "rshares": 238512214,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 3864529222,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22613377010,
+        "rshares": 71342284,
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 55075582585,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10279076152,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2704342364,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 6742131662,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1158727876,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 3412724038,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "3000",
+        "reputation": 18890223518661,
+        "rshares": 23315754846,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 17657884574,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 9139349966,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2340457693,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900204,
+        "rshares": 57599950,
+        "voter": "veronik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57487444,
+        "voter": "morega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89481141,
+        "rshares": 2575797724,
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 4654649325,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": 33842169712,
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 1067000528,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 453412386,
+        "voter": "totosky"
+      },
+      {
+        "percent": "1600",
+        "reputation": 176228976143,
+        "rshares": 1523069868,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19226007273,
+        "rshares": 57461594,
+        "voter": "mj6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 860856358,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271380763884,
+        "rshares": 176586448,
+        "voter": "natord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165924295987,
+        "rshares": 196786352,
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1478840966,
+        "rshares": 156821466,
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158532208,
+        "voter": "landria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1309073721476,
+        "rshares": 645216982,
+        "voter": "reddust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735338572201,
+        "rshares": 185748745,
+        "voter": "mrlemmer11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155564281,
+        "voter": "ddh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5727517045,
+        "rshares": 152254165,
+        "voter": "royfft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18462154,
+        "rshares": 154912101,
+        "voter": "diogo.jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 453683074,
+        "rshares": 151754313,
+        "voter": "dek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 527766248,
+        "rshares": 151380239,
+        "voter": "forever-gala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737359525,
+        "rshares": 141937635,
+        "voter": "sawgunner13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 150939275,
+        "voter": "xaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 135751381,
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153386890,
+        "voter": "jvon"
+      }
+    ],
+    "author": "mrlemmer11",
+    "author_reputation": 735338572201,
+    "beneficiaries": [],
+    "body": "<html>\n<p><br>\n</p>\n<p>A simple and informative method to explain Steem Mining to new people:</p>\n<p>A few nights ago my girlfriend Trena asked me what I was doing. My response of 'mining' was quickly met with an elongated pause with 'huh?' immediately proceeding. It was in this moment which I was stuck with the daunting task of making my best attempt to explain exactly what the heck I was doing. Recalling my prior failed efforts to accurately explain this to others, I decided on a different approach. I'm not sure how this came about as I had not invested any time on this analogy prior, but I simply said, 'Mining Steem and crypto-currencies is like being a Taxi Driver.'</p>\n<p><center><img src=\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\"/></center></p>\n<p><center><a href=\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\">Image Credit</a></center></p>\n<h2>What does a Taxi Driver do?</h2>\n<blockquote>A taxi driver is a professional driver who transports passengers to their chosen destinations through the use of a taxi cab. By transporting their passengers, they earn a fare depending on the length of the taxi cab ride.</blockquote>\n<p>https://www.sokanu.com/careers/taxi-driver/</p>\n<p><br></p>\n<p>Why does one want to be a Taxi Driver?</p>\n<ol>\n  <li>They earn a fare</li>\n  <li>They enjoy driving</li>\n  <li>They are comforatable being in a vehicle</li>\n  <li>They like the company of others</li>\n</ol>\n<p>Why does one want to be Miner?</p>\n<ol>\n  <li>they earn a reward</li>\n  <li>they enjoy technology</li>\n  <li>they are comfortable being on a computer</li>\n  <li>they like crypto-currencies</li>\n</ol><center>\n<h2>Just for the Money?</h2>\n<p><img src=\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\"/></p>\n<p><a href=\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\">Image Credit</a></center></p>\n<p>Before venturing into the first desire above, it is important to realize that cumulative weight of secondary motivations and beyond are typically necessary to achieve the fare/reward. From my understanding (and definitely not from waking up in the morning hundreds of dollars short than when I started the night prior!) individuals who dance and take their clothes off can make a very large 'fare/reward' as well! Knowing this, doesn't that mean I should do that too?! For me, the answer is a hard NO. I personally do not have the confidence, dancing abilities or free-natured spirit those individuals have. In the same light, a person who despises driving, is scared in a vehicle and loathes the company of others, likely wouldn't make a very good Taxi Driver. Lastly, individuals who are scared of technology, frightened by computers and do not want to be around crypto-currencies would have a difficult time mining.</p>\n<p><br></p>\n<center><h2>Now that we understand how important the combined weight of secondary motivations are to one's decision to become either a Taxi Driver or a Miner, let's explore how exactly a fare/reward is made.&nbsp;</h2>\n<p><img src=\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\"/></p>\n<p><a href=\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\">Image Credit</a></center></p>\n<ul>\n  <li>The job of the Taxi Driver is to navigate geographic terrain to a specified location provided by the passenger. Payment of a fare from the passenger to the Taxi Driver is confirmation that the job was executed successfully.&nbsp;</li>\n  <li>In terms of mining, the job of the miner is to navigate digital data in an attempt to verify digital contracts and transfers from other users (passengers). Payment of a reward from other users to the miner is confirmation that the digital data was successfully verified. &nbsp;&nbsp;</li>\n</ul>\n<p><br></p>\n<ul>\n  <li>If the Taxi Driver is unsuccessful and drops the passenger off at a different location, or his vehicle breaks down, the passenger does not need to provide compensation regardless of how close they are. Even if the Taxi Driver arrives at the correct location but several hours later than originally required, compensation may and probably won't be provided.</li>\n  <li>If a miner is unsuccessful in verifying assigned transactions of digital data, no reward will be provided. If the miner confirms transactions hours or days later, no reward will be provided.</li>\n</ul>\n<p><br></p>\n<h2>Ok, so this seems broad enough for most individuals to understand. Let us explore what is required to make all this happen.&nbsp;</h2>\n<p><center><img src=\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\" width=\"736\" height=\"920\"/></center></p>\n<p><center><a href=\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\">Image Credit</a></center></p>\n<p>Taxi Drivers should have the following items in order to receive a fare:</p>\n<ol>\n  <li>A Vehicle --- The Taxi Driver does not need to own one. Some Taxi Drivers work for a company who provide one to them for a cost.</li>\n  <li>Gasoline</li>\n  <li>A Map/GPS</li>\n  <li>A pocket for cash payments or a Credit Card machine to take payments</li>\n</ol>\n<p>Miners should have the following items in order to receive a reward: &nbsp;</p>\n<ol>\n  <li>A Computer --- The Miner does not need to own one. Some Miners pay for a computer in the 'cloud.' If a miner chooses this option, a fee will be paid from the Miner to the company providing the computer.</li>\n  <li>Electricity</li>\n  <li>An interface which provides their computer with the information they need to verify</li>\n  <li>A digital wallet to receive payment of their rewards</li>\n</ol>\n<p><br></p><center>\n<h2>I have all of those items! So now I need to sit at my computer all day and actively mine?</h2>\n<p><img src=\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\" width=\"251\" height=\"205\"/></p>\n<p><a href=\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\">Image Credit</a></center></p>\n<p>Nope. When you first get in to a Taxi it is stationary and the driver is paying attention to you to find out where you want to go. From there,&nbsp;the driver typically has a conversation on his phone, chit-chats with you, drinks coffee, eats and obsessively blows his horn. The actual driving of the vehicle for the Taxi Driver is second nature to him and he has an amazing ability to multi-task. The Taxi Driver did all of those&nbsp;things for your entire trip but ultimately he got you to your destination... so you paid him.</p>\n<p>The same goes for mining. You turn on your computer and point the mining program to it's digital destination. From there you are able to&nbsp;minimize the program and do anything else you so choose to. The computer knows in the background what needs to be done and just does it for&nbsp;you.</p>\n<p><br></p><center>\n<h2>Are you telling me that I can Mine while streaming Netflix and building a huge customer database for my company at the same time?</h2>\n<p><img src=\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&amp;h=800&amp;crop=1\" width=\"1200\" height=\"800\"/></p>\n<p><a href=\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&amp;h=800&amp;crop=1\">Image Credit</a></center></p>\n<p>Everything has limitations. For the Taxi Driver who uses a Ford Focus for a vehicle, it would be quite difficult for him to pick of a family of 15&nbsp;Sumo Wrestlers. This is difficult for two reasons:&nbsp;</p>\n<ol>\n  <li>The Taxi Driver will likely not have the space in his Ford Focus for the family.&nbsp;</li>\n  <li>If&nbsp;he is Harry Houdini and somehow fits them all in, the weight of the car will be so tremendous it would take hours to arrive at the&nbsp;destination.</li>\n</ol>\n<p>The same is true for your computer. Mining requires you to have memory and processing power. The Memory is equivalent to the space inside of&nbsp;the Ford Focus. The Processing Power is equivalent to the speed of the Ford Focus. If your other activities take up a lot of memory, or slow down&nbsp;your computer's speed, then it is recommended to using the mining tool when you are not actively using your computer.</p>\n<center><p><img src=\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\" width=\"384\" height=\"352\"/></p>\n<p><a href=\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\">Image Credit</a></center></p>\n<p>Admittingly this analogy does not afford a person the resources to go and create CabCoin anytime soon. It was sufficient enough however for Trena who told me that she understood and appreciated the explanation. After which came another elongated pause and then she asked, 'So, we're going to become millionaires now?!'</p>\n<p><br></p>\n<p><br></p>\n<p><center><img src=\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\" width=\"156\" height=\"70\"/></p>\n</center><center><p>Please share, upvote and follow if you enjoyed this Original Content. Cheers!</p>\n</center></html>",
+    "body_length": 9064,
+    "cashout_time": "2016-09-21T03:07:33",
+    "category": "steemit",
+    "children": 16,
+    "created": "2016-09-14T03:07:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"mining\",\"crypto\",\"guide\",\"life\"],\"image\":[\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\",\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\",\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\",\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\",\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\",\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&h=800&crop=1\",\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\",\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\"],\"links\":[\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\",\"https://www.sokanu.com/careers/taxi-driver/\",\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\",\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\",\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\",\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\",\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&h=800&crop=1\",\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T03:18:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 45496544001648,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "126.774 HBD",
+    "percent_hbd": 10000,
+    "permlink": "how-steem-mining-is-quite-similar-to-being-a-taxi-driver",
+    "post_id": 1239469,
+    "promoted": "80.000 HBD",
+    "replies": [],
+    "root_title": "How Steem Mining is quite similar to being a Taxi Driver",
+    "title": "How Steem Mining is quite similar to being a Taxi Driver",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@mrlemmer11/how-steem-mining-is-quite-similar-to-being-a-taxi-driver"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7522075256853,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 24988348886256,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "3000",
+        "reputation": 1133069631465,
+        "rshares": 9901828793949,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36025763130607,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2496029970194,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "3300",
+        "reputation": 51047995307721,
+        "rshares": 3288561279691,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "500",
+        "reputation": 20297981245452,
+        "rshares": 422917366153,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1112236856849,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1183862689597,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 312196904148,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24248742779,
+        "voter": "jaewoocho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104274241,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3768967241,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10026510714787,
+        "rshares": 98293661014,
+        "voter": "testz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684023815,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6262040942648,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54879922251,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663376608,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213796245,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 211173098584,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185067624745,
+        "rshares": 2179750028854,
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 76449229334,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 3649298703094,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 425545852651,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 412795654359,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 724454198454,
+        "rshares": 149519862664,
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6451379962,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1297104191956,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 479173275727,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 58301259311,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 625011253,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973151466,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 20925089971,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 400815204843,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 25536159117,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 126314629886,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 311760015914,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288356419,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6000",
+        "reputation": 9469162,
+        "rshares": 51523044174,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24301983295,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 317661921087,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 565165844,
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 4092550231,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 79790877765,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25134704062,
+        "rshares": 554083555,
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2999169193553,
+        "rshares": 4229901343,
+        "voter": "atomrigs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 47076852463,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8312507,
+        "rshares": 542657562,
+        "voter": "panmeur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 21463792797,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 401576015977,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 11524469542,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "8065",
+        "reputation": 12382143533351,
+        "rshares": 478171148244,
+        "voter": "eeks"
+      },
+      {
+        "percent": "800",
+        "reputation": 4931834878069,
+        "rshares": 1516993575,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2067432843,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 335151732396,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "800",
+        "reputation": 5414208804644,
+        "rshares": 2660762796,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 1031904899,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 143474566462,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7756564648,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 43838713879,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 490963482,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426405521,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 596609188,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 1014021436859,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 61541292423,
+        "voter": "theshell"
+      },
+      {
+        "percent": "3100",
+        "reputation": 16234753830016,
+        "rshares": 25360606957,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 54554448698,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 147474797358,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 352099935937,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53652979111,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 20737376375,
+        "voter": "samether"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5888717170887,
+        "rshares": 20441782051,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 24830088226,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 191689407723,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2988407596343,
+        "rshares": 31384002121,
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1177241468,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19582695354,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 30445271769,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173865949638,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687283775705,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "800",
+        "reputation": 598181152117,
+        "rshares": 16109589732,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 471231170,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 44581007671,
+        "voter": "clement"
+      },
+      {
+        "percent": "3300",
+        "reputation": 336763673779,
+        "rshares": 67353282904,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 59389039635,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 33316496731,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55883294544,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "5900",
+        "reputation": 1402029831983,
+        "rshares": 8232743777,
+        "voter": "wefdi"
+      },
+      {
+        "percent": "2100",
+        "reputation": 1959446497877,
+        "rshares": 1043405105,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 12819399545,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 805014389604,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "4100",
+        "reputation": 3181753819665,
+        "rshares": 4993479281,
+        "voter": "jay4u"
+      },
+      {
+        "percent": "800",
+        "reputation": 19111656178138,
+        "rshares": 5165462249,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 728943966,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 6226920004,
+        "voter": "owdy"
+      },
+      {
+        "percent": "800",
+        "reputation": 9142611234,
+        "rshares": 52802898,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1591182061,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1468179089306,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982686864185,
+        "rshares": 5543993422,
+        "voter": "secom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1429626348,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1194448323,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4725192532,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10536548854,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 215588792605,
+        "voter": "jesta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 475226720101,
+        "rshares": 17496195281,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3762588821,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24462855657,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 280868838879,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 16063833668,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 399177345,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44419603271,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 37955810506,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 87211957,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127815186400,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 166457850344,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "2500",
+        "reputation": 741654237981,
+        "rshares": 1668103782,
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 20090141106,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 3061930750,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 7507318975,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3573032836,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 23249882297,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182915328244,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 7072481705,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "800",
+        "reputation": 10519849768972,
+        "rshares": 1638811638,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 9869776299,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 3980845591,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 710213220,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 14316005865,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 41105371277,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15588069737,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639294741,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 26668886727,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "800",
+        "reputation": 17698439393799,
+        "rshares": 2640228486,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 5526372219,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 13899591365,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "800",
+        "reputation": 147425730,
+        "rshares": 53921295,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 40053798507,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 156341247,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26059897,
+        "rshares": 113500096,
+        "voter": "peace77"
+      },
+      {
+        "percent": "7500",
+        "reputation": 4063076365725,
+        "rshares": 2305218289,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18454999414,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 3254259308,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1254441972,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "4800",
+        "reputation": 988942038058,
+        "rshares": 35209586477,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7880937531,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8710090850955,
+        "rshares": 36891688832,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 63257042,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 64457212,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "800",
+        "reputation": 10771708337101,
+        "rshares": 95032455818,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23121983186,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "3500",
+        "reputation": 7564464865541,
+        "rshares": 7786511219,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "800",
+        "reputation": 18027204457681,
+        "rshares": 3913140293,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "800",
+        "reputation": 5776723480371,
+        "rshares": 19342356456,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 17327320500,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "800",
+        "reputation": 206355094166,
+        "rshares": 723540075,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "7734",
+        "reputation": 1751717743,
+        "rshares": 11858584602,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 181872789178,
+        "rshares": 1015711349723,
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3715674298536,
+        "rshares": 9752646840,
+        "voter": "mrweed"
+      },
+      {
+        "percent": "800",
+        "reputation": 97845484474,
+        "rshares": 4273763897,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4081288848,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60963253140,
+        "voter": "ssm1810"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150617632004,
+        "rshares": 15450353150,
+        "voter": "tommycoin"
+      },
+      {
+        "percent": "800",
+        "reputation": 3016325652890,
+        "rshares": 10652439829,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1890555526,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21440262662,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5608801378,
+        "rshares": 65105820,
+        "voter": "korose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1296524008,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 62525016,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 116629075,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "800",
+        "reputation": 1851205309677,
+        "rshares": 334316050,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 64952156,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 61009676,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 62978439988,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 170925323,
+        "rshares": 56698723,
+        "voter": "dmns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 59146649,
+        "voter": "steemo"
+      },
+      {
+        "percent": "800",
+        "reputation": 4195733833721,
+        "rshares": 673691369,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 58994070,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58969965,
+        "voter": "nyoba"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 74480084,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50027573,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 59901741,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3991918600385,
+        "rshares": 5635633617,
+        "voter": "userlogin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525888505148,
+        "rshares": 18470040669,
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 12697983735,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57933957,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "5500",
+        "reputation": 1313908206948,
+        "rshares": 3649124709,
+        "voter": "blocho"
+      },
+      {
+        "percent": "1100",
+        "reputation": 13325577893779,
+        "rshares": 3418565775,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2043228058601,
+        "rshares": 190168923,
+        "voter": "cryptomental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 13246920821,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57772261,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57754194,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56573535,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57764404,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56566121,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56161396,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 7674854463,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3837911452,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2688695430,
+        "rshares": 59196527,
+        "voter": "rgla216"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56145566,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4595623910,
+        "rshares": 59160726,
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57991172,
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "5000",
+        "reputation": 17676358821986,
+        "rshares": 14180456361,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 7066713736,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 703482676,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55085378,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14762167320947,
+        "rshares": 43794544469,
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 55091113,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54739685,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54730557,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 10072410872,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55501723,
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54362089,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 352639183151,
+        "rshares": 5774724528,
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54019345,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54017499,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 892494003,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53655807,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53331040,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53324520,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318865,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 2062521702,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25841078460,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54085429,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 3283008303,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641341984,
+        "rshares": 54793782,
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 54556846761,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 394704692,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950372517145,
+        "rshares": 459120073,
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53055629,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1347001825,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 2284345748,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 3196982382,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 175912776027,
+        "rshares": 1610026744,
+        "voter": "bontonstory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 90855304,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 136546238548,
+        "voter": "skt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51484593,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 316214146,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 225136890,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1245115709001,
+        "rshares": 898379463,
+        "voter": "twinbraid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 59746972,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6098187003516,
+        "rshares": 4055464024,
+        "voter": "luzcypher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 543618786,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 79254686,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160907900,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33024540131,
+        "rshares": 111492251,
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116818017503,
+        "rshares": 184673908,
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56431137,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446608067,
+        "rshares": 155990992,
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48393566209,
+        "rshares": 155911120,
+        "voter": "blackheart304"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146185843,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653762508,
+        "rshares": 155496536,
+        "voter": "alterego"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155166744,
+        "voter": "catman69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16912046,
+        "rshares": 154958886,
+        "voter": "jovic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 123954585,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2981585837,
+        "voter": "cgp17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 154476148,
+        "voter": "hacon"
+      }
+    ],
+    "author": "clayop",
+    "author_reputation": 31405352060596,
+    "beneficiaries": [],
+    "body": "## Summary\nThis post introduces two new statistics about influences on rewards with the consideration of the leverage of Steem Power (IPR) to provide more through understanding about the whale issue.\n\n\n## Introduction\n\nThe whale issue of Steem is one of the most frequently debated topic from its beginning. But we still do not have through understanding regarding the current situations, such as how much whales have influences on rewards, or how unequal the situation is. In this post, I would like to introduce two new statistics, 1) Influences on (author) rewards, 2) Influence to Steem Power Ratio (IPR), to provide more comprehensive knowledge about the whale issue.\n\n\n\n## Methods\n\nThe data is from Steem blockchain from 2016/8/16 (After v0.13.0) to 2016/9/8.\nInfluences of whales on rewards is calculated based on the following equations.\n\n```\n- Rshares of a post: sum(voters_rshares)\n- Vshares of a post: (posts_rshares)^2\n- Daily vshares: sum(posts_vshares)\n- Voter's vshares on a post: posts_vshares * (voters_rshares / posts_rshares)\n- Voter's daily vshares: sum(voters_vshares)\n- Voter's influence: voters_daily_vshares / daily_vshares\n```\n\nTo get IPR, we just need a simple equation.\n```\n- IPR = Influence / (voters_vests / total_vests)\n```\n*Note: Steemit account's vests are excluded from total_vests*\n\n\n## Results\n\nRank | Account | Influence(%) | Steem Power (%) | IPR\n:----:|:----:|----|----|----\n1\t|\tsmooth\t|\t13.34\t|\t2.86\t|\t4.67\n2\t|\tblocktrades\t|\t11.60\t|\t3.71\t|\t3.13\n3\t|\tberniesanders\t|\t10.55\t|\t2.97\t|\t3.55\n4\t|\tsteemed\t|\t3.92\t|\t1.62\t|\t2.42\n5\t|\titsascam\t|\t3.82\t|\t1.53\t|\t2.49\n6\t|\ttombstone\t|\t3.62\t|\t1.87\t|\t1.93\n7\t|\tdantheman\t|\t3.51\t|\t2.54\t|\t1.38\n8\t|\tsummon\t|\t3.11\t|\t1.29\t|\t2.41\n9\t|\tjamesc\t|\t2.78\t|\t3.20\t|\t0.87\n10\t|\tcomplexring\t|\t2.37\t|\t0.67\t|\t3.52\n11\t|\tsmooth.witness\t|\t2.32\t|\t0.53\t|\t4.37\n12\t|\twang\t|\t1.97\t|\t0.66\t|\t2.97\n13\t|\tnextgencrypto\t|\t1.81\t|\t0.51\t|\t3.53\n14\t|\trainman\t|\t1.78\t|\t1.51\t|\t1.18\n15\t|\trecursive\t|\t1.56\t|\t0.31\t|\t5.11\n16\t|\tsilversteem\t|\t1.55\t|\t0.46\t|\t3.39\n17\t|\triverhead\t|\t1.53\t|\t0.68\t|\t2.23\n18\t|\tpharesim\t|\t1.53\t|\t0.88\t|\t1.74\n19\t|\tned\t|\t1.52\t|\t5.73\t|\t0.27\n20\t|\tsteemit200\t|\t1.38\t|\t0.57\t|\t2.42\n21\t|\tsteempty\t|\t1.30\t|\t0.69\t|\t1.87\n22\t|\tkushed\t|\t1.15\t|\t0.50\t|\t2.29\n23\t|\txeldal\t|\t1.15\t|\t0.64\t|\t1.79\n24\t|\thr1\t|\t1.00\t|\t0.21\t|\t4.69\n25\t|\tsatoshifund\t|\t0.99\t|\t0.35\t|\t2.85\n26\t|\tenki\t|\t0.91\t|\t0.53\t|\t1.71\n27\t|\tval-a\t|\t0.91\t|\t2.80\t|\t0.32\n28\t|\tsilver\t|\t0.74\t|\t0.19\t|\t3.85\n29\t|\tau1nethyb1\t|\t0.72\t|\t0.42\t|\t1.71\n30\t|\tbadassmother\t|\t0.63\t|\t0.26\t|\t2.44\n\nSurprisingly, top 10 have about 60% (actually over 60% since `smooth` and `smooth.witness` is controlled by same person) of author rewards, while they only have 22% of Steem Power. And the top 3 (`smooth`, `blocktrades`, `berniesanders` consist of 35.5% of influences, for instance, if daily author reward is $20,000, about $7,000 is from these three's voting activities. The average IPR of the top 10 is 2.63, but if we do the same calculation with rank 41~50, they only have IPR of 0.75. This means that influences on rewards is unequally distributed, more specifically it is biased to some whales.\n\n![](http://i.imgsafe.org/26684444a1.jpg)\n\nAdditionally, I calculated some basic statics about top rankers voting patterns.\n\n- Range: Number of unique writers they voted for\n- Mean: Average number of votes per writer\n- Max: Maximum number of votes on a writer\n- Stdev: Standard deviation of votes\n\nRank | Account | Range | Mean | Max | Stdev\n:----:|:----:|----|----|----|----\n1\t|\tsmooth\t|\t340\t|\t2.32\t|\t65\t|\t7.49\n2\t|\tblocktrades\t|\t480\t|\t1.31\t|\t22.4\t|\t1.51\n3\t|\tberniesanders\t|\t785\t|\t1.27\t|\t14.5\t|\t1.7\n4\t|\tsteemed\t|\t80\t|\t3.64\t|\t44\t|\t6.43\n5\t|\titsascam\t|\t79\t|\t3.69\t|\t44\t|\t6.49\n6\t|\ttombstone\t|\t196\t|\t1.64\t|\t12.1\t|\t2.18\n7\t|\tdantheman\t|\t339\t|\t0.66\t|\t10.3\t|\t1.23\n8\t|\tsummon\t|\t220\t|\t1.65\t|\t14.4\t|\t1.99\n9\t|\tjamesc\t|\t135\t|\t1.1\t|\t12.8\t|\t1.81\n10\t|\tcomplexring\t|\t534\t|\t1.75\t|\t39\t|\t3.04\n11\t|\tsmooth.witness\t|\t324\t|\t2.4\t|\t65\t|\t7.61\n12\t|\twang\t|\t213\t|\t8.29\t|\t82\t|\t10.41\n13\t|\tnextgencrypto\t|\t755\t|\t1.4\t|\t14\t|\t1.51\n14\t|\trainman\t|\t170\t|\t1.18\t|\t9.7\t|\t1.3\n15\t|\trecursive\t|\t121\t|\t9.78\t|\t51\t|\t11.76\n16\t|\tsilversteem\t|\t760\t|\t1.82\t|\t15\t|\t2.08\n17\t|\triverhead\t|\t334\t|\t1.53\t|\t12.6\t|\t1.4\n18\t|\tpharesim\t|\t404\t|\t2.03\t|\t54\t|\t3.89\n19\t|\tned\t|\t238\t|\t0.18\t|\t2.6\t|\t0.35\n20\t|\tsteemit200\t|\t175\t|\t2.41\t|\t13\t|\t2.29\n21\t|\tsteempty\t|\t164\t|\t2.89\t|\t34\t|\t4.84\n22\t|\tkushed\t|\t250\t|\t2.61\t|\t84\t|\t7.36\n23\t|\txeldal\t|\t204\t|\t2.92\t|\t48\t|\t5.65\n24\t|\thr1\t|\t104\t|\t10.34\t|\t52\t|\t11.86\n25\t|\tsatoshifund\t|\t130\t|\t2.51\t|\t21\t|\t3.61\n26\t|\tenki\t|\t174\t|\t3.22\t|\t46\t|\t5.58\n27\t|\tval-a\t|\t75\t|\t0.36\t|\t1.5\t|\t0.42\n28\t|\tsilver\t|\t763\t|\t1.83\t|\t15\t|\t2.13\n29\t|\tau1nethyb1\t|\t205\t|\t1.97\t|\t11\t|\t1.79\n30\t|\tbadassmother\t|\t235\t|\t2.75\t|\t15\t|\t2.77\n\n\n\nAmong these statistics, max and stdev should be highlighted, since higher numbers imply that a whale's voting is very concentrated (possibily due to his/her preferences or favorable connection with authors?), and this can further create perception of inequality. (People recursively see high rewards on same author's posts). For comparison, while `blocktrades` and `berniesanders` have similar influences with `smooth`, they have much lower max and stdev, which implies that their votes are widely dispersed to many writers. But we can see very high max and stdev in `hr1`, `recursive`, `wang`, and `smooth`. In addition, we can find `smooth` and `smooth.witness`, and `recursive` and `hr1` have the similar patterns respectively, probably because each pair of accounts is using the same voting bot.\n\n\n## Wrap-up\n\nThe results show that influence is much higher than whales' actual steem power, especially by active whale bots. In my humble opinion, the fundamental cause is the squared rshares, which makes large voting power much greater. We need further discussion about this issue and have to address it for better Steem society.\n\n\n### P.S. Do you think that I have to post these stats everyday, weekly, or monthly? (Everyday data has influence and IPR only because the second table requires more samples)",
+    "body_length": 5929,
+    "cashout_time": "2016-09-16T07:44:36",
+    "category": "stats",
+    "children": 52,
+    "created": "2016-09-09T07:44:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"stats\",\"steemstats\",\"steem\",\"steemit\"],\"image\":[\"http://i.imgsafe.org/26684444a1.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T02:38:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 114295236077684,
+    "parent_author": "",
+    "parent_permlink": "stats",
+    "pending_payout_value": "772.883 HBD",
+    "percent_hbd": 10000,
+    "permlink": "how-much-do-whales-influences-on-rewards-introducing-new-statistics",
+    "post_id": 1181735,
+    "promoted": "80.000 HBD",
+    "replies": [],
+    "root_title": "How Much Do Whales Influences on Rewards? Introducing New Statistics",
+    "title": "How Much Do Whales Influences on Rewards? Introducing New Statistics",
+    "total_payout_value": "0.000 HBD",
+    "url": "/stats/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 29147120174026,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6833057755677,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5923364802528,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1701451058212,
+        "rshares": 3489650620,
+        "voter": "mazi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 331579148862,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225150500580,
+        "rshares": 6130058444,
+        "voter": "tad-auker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 279342363450,
+        "voter": "pal"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1788305838,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 47660657649,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 43176960278,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10554741746,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771738440035,
+        "rshares": 4103670208,
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 9215199356,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1161275060,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 125488800966,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1429359370177,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 52226764896,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 36041529055,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8872871556,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 15304296909,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12755003778,
+        "rshares": 308550471,
+        "voter": "onthewayout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 16413528877,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4206500024,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 89059288467,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8838939591,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 14367239940,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58397797,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 88525673,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 62923696,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111793370,
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 39956231533,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78741972,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2621127096,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58265386995,
+        "rshares": 3719234621,
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7768702097,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 843378883,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 93173678605,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1346175861647,
+        "rshares": 6431609320,
+        "voter": "comealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 24075889262,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 5228940799,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23335486471,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99941487421,
+        "rshares": 84546938,
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 698557363,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3210335542,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 142419208,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 808472077,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3770091283,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 18933467156,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1472797318,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 30188896622,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2551239163442,
+        "rshares": 7662198442,
+        "voter": "johnnyyash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642604166438,
+        "rshares": 114540011,
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3645882665,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 3645428246,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56864468822,
+        "rshares": 68948761,
+        "voter": "mckeever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 14100077577,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6205342073,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4208896605,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 11806678596,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 12153995383,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 784318201,
+        "rshares": 57337407,
+        "voter": "shurik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4392040691,
+        "rshares": 59131048,
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810364,
+        "rshares": 58065672,
+        "voter": "rhysday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 11655869151,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 99548341,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 14193476029,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3218950171903,
+        "rshares": 5291228070,
+        "voter": "brandonv111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1818363378287,
+        "rshares": 3200609229,
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6671012929,
+        "rshares": 52620675,
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106475816,
+        "rshares": 55272409,
+        "voter": "timmyg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 568381891,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290042862358,
+        "rshares": 264146204,
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23182784473,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 54551628,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 70169318,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4069545029880,
+        "rshares": 564726175,
+        "voter": "funnyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329560640,
+        "rshares": 69255373,
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66985407,
+        "rshares": 52750948,
+        "voter": "modus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 520948047119,
+        "rshares": 52223100,
+        "voter": "cathi-xx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51250382,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1150196390848,
+        "rshares": 50572439,
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 680059888,
+        "rshares": 50049318,
+        "voter": "rhedrick32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 595454998,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 102143743229,
+        "rshares": 50291088,
+        "voter": "berwynbass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154251929,
+        "voter": "nathan777"
+      }
+    ],
+    "author": "krnel",
+    "author_reputation": 17676358821986,
+    "beneficiaries": [],
+    "body": "<center><img src=\"https://www.steemimg.com/images/2016/08/30/empowerbreakshacklesc5334.jpg\" alt=\"empowerbreakshacklesc5334.jpg\" /></center>\n<br/>\n#### Why don't things change in our lives? Why don't things change in the world? \n\nMost people don't learn from their mistakes, and keep repeating them. Most people lack an accurate understanding of truth about the current condition of reality. \n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/makingmistakesconfucius1b411.jpg\" alt=\"makingmistakesconfucius1b411.jpg\" /></center>\n\nMost people don't seem to want to learn, as most people (in general) lack real Care for Truth, busy with work, surviving, having fun, etc., yet we dream and hope to do the **right thing** to fix our problems in our ignorant state. \n\nDreams can be fantasy unrealities and blind us to reality. This is wishful thinking, a \"positivity\" mask placed over reality with rosy colored glasses that prevents us from seeing things as they really are. Some of us are too fixated on the pleasure trap of \"feeling-food\" about ourselves because we fear, avoid, deny, reject and deflect most negatives in the world and ourselves from being acknowledged. We just want to believe \"it's all good\" and \"things are as they are supposed to be\", \"no need to do anything\", \"let it flow\", etc.\n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/denyingmistakesrepeatinglearn34678.jpg\" alt=\"denyingmistakesrepeatinglearn34678.jpg\" /></center>\n\nMany people are polarized against the negative and this hinders their accurate perception, conception, understanding and navigation of reality, leading them astray, wandering lost and fooling themselves into acting foolishly. \n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/mistakescorrectionfoolswisdom1c6a7.jpg\" alt=\"mistakescorrectionfoolswisdom1c6a7.jpg\" /></center>\n\n#### How do you empower yourself to change when a problem arises? How do you learn what the right and better thing to do is, that will fix and resolve the issue? You learn. You learn how to learn better, and you learn how to think better. Understanding of Knowledge is the Power to generate the Force of Will that can move you to Change.\n\n\n#### If you are not doing what needs to be done yet (or maybe you don't even know you are doing wrong), then maybe you *lack knowledge* and need to *learn more truth* in order to develop the *motivational power* to engage in the change that is required. Make mistakes, that's life, but learn from them.\n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/mistakesoncesecondtimeischoice3512e.jpg\" alt=\"mistakesoncesecondtimeischoice3512e.jpg\" /></center>\n\n#### Here are some methods of processing the issues, problems, situations and effects we encounter in reality in order to truly empower ourselves with knowledge and understanding, and finally to act wisely, instead of foolishly ignoring reality.\n\n----\n# Empowering Change - Break Free from the Shackles that Bind You from Progress\n\n### Free Will Choice to Care and be Empowered to Change Yourself and the World with Understanding *(why)* of Knowledge *(what)* to Act Wisely *(how)*\n\n1. Situation / Issue / Problem\n2. Empowered (Level I)\n3. Care, Courage, Choice & Will to Change\n4. Knowledge, Grammar, Input\n5. Understanding, Logic, Processing\n6. Empowered (Level II)\n7. More Will-Power & Wisdom, Rhetoric, Output\n8. Change in Your Life and the World!\n<br/>\n\n----\n<center><img src=\"https://www.steemimg.com/images/2016/08/27/head-1597546_128065558.jpg\" alt=\"head-1597546_128065558.jpg\" border=\"0\"></center>\n## #1. Situation / Issue / Problem\n\nAcknowledge the issue.\n\nSee the uncomfortable, undesirable, painful truth as it is, and don't avoid, ignore, deny, reject or deflect it.\n\nRealize and recognize reality in its current condition. Face both the positive and negative, light and dark, beauty and horror, good and evil, moral and immoral, the truth of truth and the truth of falsity. \n\nHave the courage and care to look into the mirror and see the darkness, negative, \"demon\", shadow and wrongs that you may be involved in that you previously ignored being a part of.\n\nYou can do it. We all have this ability in consciousness. We can all start to see reality for what it is if we choose to let go of our fears and face the truth as it is.\n<br/>\n\n-----\n<center><a href=\"https://www.steemimg.com/image/gjmbp\"><img src=\"https://www.steemimg.com/images/2016/08/27/fist-681848_1280a5789.md.jpg\" alt=\"fist-681848_1280a5789.jpg\" border=\"0\" /></a></center>\n## #2. Empowered (Level I)\n\nFeel the empowerment to do something now that you faced the problem. Now you know about it, and that you have the power within you to do something to change the conditions around you. \n\n<br/>\n\n----\n<center><img src=\"https://www.steemimg.com/images/2016/08/27/16332734480_81402c1818_zd14d0.jpg\" alt=\"16332734480_81402c1818_zd14d0.jpg\" border=\"0\"></center>\n## #3. Care, Courage, Choice & Will to Change\n\nChoosing to change and the drive to do it. \n\nYou know you can and need to learn more, and you can care more, and develop the courage to use your will-power to engage in deeper learning and thinking about yourself and reality.\n\nThe only way forward, is by overcoming the problem. You need to **Care** to do that. You need to have the **Courage** to want to do it. And then you need to engage in the **Will-Power** to do something about it.\n\nYou need **knowledge** and **understanding** to do the right change, and not the wrong change, or change ineffectively. Because that just means more mistakes, but you can always correct them too. The point is to take the time to learn properly so you can avoid making more mistakes.\n\nFeel the flame burning within, the care and courage feeding you. Time to collect some knowledge fuel and then ignite your potential to change the conditions in your life, and possibly, the world.\n\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gjKN3\"><img src=\"https://www.steemimg.com/images/2016/08/27/dementia-1528625_128009ee7.md.jpg\" alt=\"dementia-1528625_128009ee7.jpg\" border=\"0\" /></a></center>\n## #4. Knowledge, Grammar, Input\n\nCollect information and data on the situation. \n\nLearn about the problem in order to later understand the core foundational root causal factors that created it. You can only affect proper change of the problem, condition, situation or issue, when you deal with the root, not the leaves, when you deal with the actually cause, and not the effects that are symptoms of the cause. \n\n<center><img src=\"http://media.evolveconsciousness.org/2015/03/Causality-Base17-Wheel-of-Life-OG.png\" alt=\"Causality-Base17-Wheel-of-Life-OG\" /></center>\n\nCause and effect is a universal law that applies everywhere, even in human behavior and the human world and way of life we have created for ourselves.\n\n**What** is happening? Learn about the basics of the situation or problem. \n\nWhat, Who, When, Where. This is the basic **Knowledge** that needs to be gathered, collected and **Input**. This is also the **Grammar** phase in the [Trivium Methodology](http://triviummethod.org/).\n\nNow that you have figured out the basics of what's going on, you can progress to **Process** that information and **Understand** it.\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gjOPu\"><img src=\"https://www.steemimg.com/images/2016/08/27/Knowledge-sharingc795d.md.jpg\" alt=\"Knowledge-sharingc795d.jpg\" border=\"0\" /></a></center>\n## #5. Understanding, Logic, Processing\n\n**Process** the information to determine the root causal factors. This allows you to **Understand** with clarity of precision and higher definition detail. You now understand the meaning, purpose and value of the knowledge that will help to empower you to finally act to change the condition in reality.\n\n**Why** is this happening, really? Use *Logic* to remove contradiction, errors and filter the truth from the falsity.\n\nYou correspond and integrate all the information without contradiction. You validate it by filtering, discerning, judging , analyzing, diagnosing and evaluating the information. Take in quality truth as a foundation for making decisions.\n\n<center><img src=\"http://media.evolveconsciousness.org/2015/03/Causality-Base9.png\" alt=\"Logic\" /></center>\n\nGet down to the root of the issue, the real cause, and deal with it from the source. You now see and understand how the root causal core foundation is the reason for the secondary symptomatic effects to have manifested. There are thousands of effects that can be chased over and over, but until the common root is dealt with, it will continue to generate the same effects over and over. Stop applying band-aids and actually heal the wound.\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gtJyE\"><img src=\"https://www.steemimg.com/images/2016/08/27/love-1127710_1280d7f8d.md.jpg\" alt=\"love-1127710_1280d7f8d.jpg\" border=\"0\" /></a></center>\n## #6. Empowered (Level II)\n\nThe solution is understood from seeing the problem clearly, from gaining clarity. You're vision has been optimized.\n\nNow you're **REALLY** empowered to do something! You learned about the problem, got down to the root causal source of it, and now you understand what you need to do.\n\nFeel that **truth** flowing through you and giving you the energy to change. The fire and flame of **truth** is burning within and ignites you to **ACT**! Keep that care and courage going, and use the truth to ignite your actions.\n\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gjflL\"><img src=\"https://www.steemimg.com/images/2016/08/27/animal-483860_1280c5b94.md.jpg\" alt=\"animal-483860_1280c5b94.jpg\" border=\"0\" /></a></center>\n## #7. More Will-Power & Wisdom, Rhetoric, Output\n\nActualize, Realize, Generate and Manifest the Wisdom of Right-Action.\n\n**How** are you going to change what you do in order to resolve this situation, problem or issue?\n\nYou understand the root cause, and now you understand how to fix the problem. Target the **cause** that created the **effects** you don't want.\n\nThis can involved direct action, or speaking, teaching or preaching the truth of reality, or writing about it. These are all **Outputs** that are guided by the **Wisdom** of knowing what is the Right things to do. This is the 3rd phase in the Trivium Method, known as **Rhetoric**.\n\nUse the empowerment, care, courage and truth fuel to ignite your Will-Power and get things done. \n\nNow you are acting and doing something to get a change to occur. Even if it isn't instantaneous, you can act, and learn, and refine your understanding of what to do. This process can be applied over and over, and needs to be, continually.\n<br/>\n\n----\n<center><a href=\"https://www.steemimg.com/image/gjjYS\"><img src=\"https://www.steemimg.com/images/2016/08/27/Change-1080x67559547.md.jpg\" alt=\"Change-1080x67559547.jpg\" border=\"0\" /></a></center>\n## #8. Change in Your Life and the World!\n\nSee results manifest. \n\nMaybe there is more to do. We are always learning. That is life, to learn. If you stop learning, then you stop taking advantage of the power of your consciousness, and it goes to waste. Use that \"muscle\" and make it stronger as time goes by. \n\n<center><img src=\"https://www.steemimg.com/images/2016/08/30/corectmistakesmakenewversionofselfyangmingc44a9.jpg\" alt=\"corectmistakesmakenewversionofselfyangmingc44a9.jpg\" /></center>\n\nThis is the power we have. We can continually remake ourselves, continually self-renew and be reborn as a phoenix from the ashes. We can be malleable, highly adaptable, and wanting to change and evolve to higher heights. We can be the most fit for survival and optimizing our way of life. Become the change towards more moral truth, don't fight it.\n\n<center><img src=\"http://evolveconsciousness.org/wp-content/uploads/2014/02/ego-phoenix-reborn.jpg\" alt=\"phoenix\" /></center>\n\nWhew! Done! Not so hard was it?\n\nTake a break, lay back and **reap** the rewards that you **sowed**. You earned it!\n\n-----\n*The next time you have an issue, or the next moment in your day you need to think about something, use this process. This is how we optimally process reality around us, and within us. This is the Trivium Methodology. Truth is truly empowering and you can change yourself and change your life!*\n\n*Learning is life. Learn how to learn better, and learn how to think better.*\n\nWe are all in this together in the end. The world is the way it is because we **ALL** make it this way. It's time we all step up and own our personal responsibility to do something about it. What we do matters. We can create more freedom, peace, prosperity and live in an anarchic (no masters, no slaves) way of life.\n\n-----\nWasn't that straightforward? Maybe you want some more information to help you understand the specifics of how to go about that? Check out some of the older work: @krnel\n\n----\nIf you appreciate and value the content, please consider:\nUpvoting <img src=\"https://www.steemimg.com/images/2016/08/30/upvote91a69.png\" alt=\"upvote91a69.png\" /> Sharing <img src=\"https://www.steemimg.com/images/2016/08/30/share2195b.png\" alt=\"share2195b.png\" />  Promoting <img src=\"https://www.steemimg.com/images/2016/08/30/promote4d857.png\" alt=\"promote4d857.png\" /> below.\n\n[![Follow](https://www.steemimg.com/images/2016/08/30/follow2be5e.png)](https://steemit.com/@krnel) me for more great content to come!\n\n#### Thank you for reading! I appreciate the knowledge reaching more people. Take care. Peace.\n\n---\nAuthor: [Kris Nelson](http://evolveconsciousness.org/) / @krnel\nContact: steemit.quality@gmail.com\nDate: 2016-08-30",
+    "body_length": 13544,
+    "cashout_time": "2016-09-06T12:56:39",
+    "category": "empowerment",
+    "children": 18,
+    "created": "2016-08-30T12:56:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"empowerment\",\"life\",\"philosophy\",\"psychology\",\"anarchy\"],\"users\":[\"krnel\"],\"image\":[\"https://www.steemimg.com/images/2016/08/30/empowerbreakshacklesc5334.jpg\",\"https://www.steemimg.com/images/2016/08/30/makingmistakesconfucius1b411.jpg\",\"https://www.steemimg.com/images/2016/08/30/denyingmistakesrepeatinglearn34678.jpg\",\"https://www.steemimg.com/images/2016/08/30/mistakescorrectionfoolswisdom1c6a7.jpg\",\"https://www.steemimg.com/images/2016/08/30/mistakesoncesecondtimeischoice3512e.jpg\",\"https://www.steemimg.com/images/2016/08/27/head-1597546_128065558.jpg\",\"https://www.steemimg.com/images/2016/08/27/fist-681848_1280a5789.md.jpg\",\"https://www.steemimg.com/images/2016/08/27/16332734480_81402c1818_zd14d0.jpg\",\"https://www.steemimg.com/images/2016/08/27/dementia-1528625_128009ee7.md.jpg\",\"http://media.evolveconsciousness.org/2015/03/Causality-Base17-Wheel-of-Life-OG.png\",\"https://www.steemimg.com/images/2016/08/27/Knowledge-sharingc795d.md.jpg\",\"http://media.evolveconsciousness.org/2015/03/Causality-Base9.png\",\"https://www.steemimg.com/images/2016/08/27/love-1127710_1280d7f8d.md.jpg\",\"https://www.steemimg.com/images/2016/08/27/animal-483860_1280c5b94.md.jpg\",\"https://www.steemimg.com/images/2016/08/27/Change-1080x67559547.md.jpg\",\"https://www.steemimg.com/images/2016/08/30/corectmistakesmakenewversionofselfyangmingc44a9.jpg\",\"http://evolveconsciousness.org/wp-content/uploads/2014/02/ego-phoenix-reborn.jpg\",\"https://www.steemimg.com/images/2016/08/30/upvote91a69.png\",\"https://www.steemimg.com/images/2016/08/30/share2195b.png\",\"https://www.steemimg.com/images/2016/08/30/promote4d857.png\",\"https://www.steemimg.com/images/2016/08/30/follow2be5e.png\"],\"links\":[\"https://www.steemimg.com/image/gjmbp\",\"https://www.steemimg.com/image/gjKN3\",\"http://triviummethod.org/\",\"https://www.steemimg.com/image/gjOPu\",\"https://www.steemimg.com/image/gtJyE\",\"https://www.steemimg.com/image/gjflL\",\"https://www.steemimg.com/image/gjjYS\",\"https://steemit.com/@krnel\",\"http://evolveconsciousness.org/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T03:00:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 44833262695027,
+    "parent_author": "",
+    "parent_permlink": "empowerment",
+    "pending_payout_value": "233.249 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-power-of-consciousness-empower-yourself-with-truth",
+    "post_id": 1055633,
+    "promoted": "78.030 HBD",
+    "replies": [],
+    "root_title": "The Power of Consciousness - Empower Yourself with Truth",
+    "title": "The Power of Consciousness - Empower Yourself with Truth",
+    "total_payout_value": "0.000 HBD",
+    "url": "/empowerment/@krnel/the-power-of-consciousness-empower-yourself-with-truth"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30850634397449,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098953009,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762157484,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697282365,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53957148226,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660795487,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213655207,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5449505206339,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622693401,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967137774,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 63905396129,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288133732,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 13735728064,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 23053919574,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431534505,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12095791916,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40298671099,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 67941059139,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 125488800966,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217222224,
+        "rshares": 294364043,
+        "voter": "knopki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 107998011885,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 201234852498,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 28278082847,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7225093759945,
+        "rshares": 8809715045,
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 42465200615,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 59751474240,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 251585044,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8532488200,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 15304296909,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 475569784927,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147173431399,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 35921995525,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 41358191073,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15085871795,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2764978194297,
+        "rshares": 4411172842,
+        "voter": "konti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 2792076049,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 60570197,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 2820120005,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3357881962,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19657188753,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 90832113,
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 36113947662,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "1000",
+        "reputation": 10519849768972,
+        "rshares": 2036507718,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4370747754,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7768702097,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 1304825846,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 27553485310,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 31932954095,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "0",
+        "reputation": 5571312226030,
+        "rshares": 129594107,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26544745435,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1911888642586,
+        "rshares": 2724770489,
+        "voter": "uuuhha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 88063513040,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 426239526,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 559711438,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 18503161084,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 26778402701,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1227331098,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258644544,
+        "rshares": 60326971,
+        "voter": "bitcoingiveaway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12149576930,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 5840337697,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58701743,
+        "voter": "jimukgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24030850409,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 12154041667,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8225043111,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 984374312,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 14146616001,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083886659611,
+        "rshares": 243002660,
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59741874574,
+        "rshares": 66582630,
+        "voter": "expatlove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544245232901,
+        "rshares": 316019070,
+        "voter": "getonthetrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 561774262537,
+        "rshares": 1159739581,
+        "voter": "maryfromsochi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 833066165,
+        "rshares": 56122965,
+        "voter": "kwsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24235309770,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 70169318,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 180341293,
+        "rshares": 52837454,
+        "voter": "devilinlimbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 60571568,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013164758868,
+        "rshares": 90207916,
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19833593,
+        "rshares": 50192260,
+        "voter": "tikimizet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108412302232,
+        "rshares": 159194472,
+        "voter": "robyneggs"
+      }
+    ],
+    "author": "mikehere",
+    "author_reputation": 7258302306624,
+    "beneficiaries": [],
+    "body": "I was absolutely blown away when I got home and saw how well this picture I took while hiking at [Mt Rainier Paradise Park](https://www.google.com/maps/place/Mount+Rainier+National+Park/@46.7866113,-121.7360118,563m/data=!3m1!1e3!4m5!3m4!1s0x5490cde6eec94b87:0x5cf4a1fb4f91a418!8m2!3d46.8799663!4d-121.7269094) turned out. \n\nThis is the best picture I've ever taken.  It seems everything was perfect.  Mt Rainier is stunning.\n\n<a href=\"https://www.google.com/maps/@46.7914506,-121.7327133,3a,75y,299.46h,83.6t/data=!3m6!1e1!3m4!1s6o-B8xUzyc9zJyT4X1knSQ!2e0!7i13312!8i6656!6m1!1e1\" target=\"_blank\"><img src=\"http://mikepotterhere.com/wp-content/uploads/2016/08/mt-rainier-840.jpg\"></a>\n(This was taken by me with an iPhone 4S.  I was amazed!)\n\nI actually found the exact spot I took the picture on [Google 3D camera](https://www.google.com/maps/@46.7914506,-121.7327133,3a,75y,299.46h,83.6t/data=!3m6!1e1!3m4!1s6o-B8xUzyc9zJyT4X1knSQ!2e0!7i13312!8i6656!6m1!1e1).  Click that link.  It is so cool that google now has off road cameras and you can [even hike around Mt Rainier](https://www.google.com/maps/@46.8048848,-121.7330789,3a,75y,211.67h,81.6t/data=!3m6!1e1!3m4!1sjh6G_pbEJRZvVrKbtbBDVg!2e0!7i13312!8i6656).  You can click in a direction and move just like the road maps.\n\nThen [click here to see a 360 from the top](https://www.google.com/maps/@46.850956,-121.7556609,3a,75y,308.97h,92.74t/data=!3m8!1e1!3m6!1s-f9AqXWnTfds%2FV5ju1vVv7pI%2FAAAAAAAAHoE%2Fos26BSZWrrwgXvltMI0xoKrKz-4H_pdaQCLIB!2e4!3e11!6s%2F%2Flh5.googleusercontent.com%2F-f9AqXWnTfds%2FV5ju1vVv7pI%2FAAAAAAAAHoE%2Fos26BSZWrrwgXvltMI0xoKrKz-4H_pdaQCLIB%2Fw203-h101-n-k-no%2F!7i7168!8i3584).\n\n<h2>Here are some FAQ's about Mount Rainier:</h2>\n\n* Located in [Washington State, USA](https://www.google.com/maps/place/Mount+Rainier+National+Park/@46.627832,-122.1628134,613718m/data=!3m1!1e3!4m5!3m4!1s0x5490cde6eec94b87:0x5cf4a1fb4f91a418!8m2!3d46.8799663!4d-121.7269094)\n* The official height is 14,410 ft above sea level.\n* In 2015 - 10,025 people tried to climb Mount Rainier -  4,888 reached the summit.\n* Mount Rainier is considered an 'episodically active' volcano, which means it will erupt again some time.\n* Mount Rainier last erupted about 1,000 years ago.\n\n<h2>Taken from a distance showing the mountain</h2>\n\nhttp://mikepotterhere.com/wp-content/uploads/2016/08/mt-rainier2-840.jpg\n(This was taken awhile ago and I'm only including it here to show the view of the entire mountain)\n\n(These pictures were taken by me)\n\nI'm self promoting this post since it is well received, so there is no need for you to Promote it.  You can support me with your upvotes and comments.  Thanks Steemit community.\n\n<h1>Be sure to check out some of my other posts:</h1>\n\n* [My introduction - Long time Atari game designer saying hi! Going down memory lane](https://steemit.com/introduceyourself/@mikehere/hi-mike-potter-here-long-time-atari-game-designer-saying-hi-going-down-memory-lane)\n* [SteemWho.com - Help People Find You - Get Listed!](https://steemit.com/steemit/@mikehere/steemwho-find-people-and-help-people-find-you-get-listed)\n* [Moving to paradise - From creating QuickPay for Quicken to living on a sailboat in the Caribbean - Part 1](https://steemit.com/life/@mikehere/moving-to-paradise-from-creating-quickpay-for-quicken-to-living-on-a-sailboat-in-the-caribbean-part-1)\n* [Moving to paradise - Part 2 - Sint Maarten to Virgin Gorda and almost crashing on the rocks](https://steemit.com/life/@mikehere/moving-to-paradise-from-creating-quickpay-for-quicken-to-living-on-a-sailboat-in-the-caribbean-part-2-sint-maarten-to-virgin)\n* [At 42 I thought my life was over - My amazing transformation - It is never too late](https://steemit.com/life/@mikehere/at-42-i-thought-my-life-was-over-my-amazing-transformation-it-s-never-too-late)\n* [How to draw a Stick Figure - Complete full body tutorial - lol - just having fun :)](https://steemit.com/art/@mikehere/how-to-draw-a-stick-figure-this-is-for-the-99-99-that-think-they-have-no-talent)\n* [Tropical Paradise - Boracay Philippines - If you need to get away this is it!](https://steemit.com/travel/@mikehere/tropical-paradise-boracay-philippines)\n* [Promoting Steemit while onboard a cruise. Be sure to watch me dock](https://steemit.com/steemit/@mikehere/promoting-steemit-while-onboard-a-cruise-be-sure-to-watch-me-dock)\n* [Our Aqua Safari at Bora Bora - What a wonderful time](https://steemit.com/travel/@mikehere/our-aqua-safari-at-bora-bora-what-a-wonderful-time)\n\n<a href=\"https://steemit.com/@mikehere\"><img src=\"http://mikepotterhere.com/wp-content/uploads/2016/08/steemfollow.gif\"></a>\n\nBefore you click any links please upvote this post first.  Thank you.  I would love to make steemit my home.",
+    "body_length": 4723,
+    "cashout_time": "2016-09-06T13:36:57",
+    "category": "travel",
+    "children": 33,
+    "created": "2016-08-30T13:36:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"travel\",\"photography\",\"hiking\"],\"image\":[\"http://mikepotterhere.com/wp-content/uploads/2016/08/mt-rainier-840.jpg\",\"http://mikepotterhere.com/wp-content/uploads/2016/08/mt-rainier2-840.jpg\",\"http://mikepotterhere.com/wp-content/uploads/2016/08/steemfollow.gif\"],\"links\":[\"https://www.google.com/maps/place/Mount+Rainier+National+Park/@46.7866113,-121.7360118,563m/data=!3m1!1e3!4m5!3m4!1s0x5490cde6eec94b87:0x5cf4a1fb4f91a418!8m2!3d46.8799663!4d-121.7269094\",\"https://www.google.com/maps/@46.7914506,-121.7327133,3a,75y,299.46h,83.6t/data=!3m6!1e1!3m4!1s6o-B8xUzyc9zJyT4X1knSQ!2e0!7i13312!8i6656!6m1!1e1\",\"https://www.google.com/maps/@46.8048848,-121.7330789,3a,75y,211.67h,81.6t/data=!3m6!1e1!3m4!1sjh6G_pbEJRZvVrKbtbBDVg!2e0!7i13312!8i6656\",\"https://www.google.com/maps/@46.850956,-121.7556609,3a,75y,308.97h,92.74t/data=!3m8!1e1!3m6!1s-f9AqXWnTfds%2FV5ju1vVv7pI%2FAAAAAAAAHoE%2Fos26BSZWrrwgXvltMI0xoKrKz-4H_pdaQCLIB!2e4!3e11!6s%2F%2Flh5.googleusercontent.com%2F-f9AqXWnTfds%2FV5ju1vVv7pI%2FAAAAAAAAHoE%2Fos26BSZWrrwgXvltMI0xoKrKz-4H_pdaQCLIB%2Fw203-h101-n-k-no%2F!7i7168!8i3584\",\"https://www.google.com/maps/place/Mount+Rainier+National+Park/@46.627832,-122.1628134,613718m/data=!3m1!1e3!4m5!3m4!1s0x5490cde6eec94b87:0x5cf4a1fb4f91a418!8m2!3d46.8799663!4d-121.7269094\",\"https://steemit.com/introduceyourself/@mikehere/hi-mike-potter-here-long-time-atari-game-designer-saying-hi-going-down-memory-lane\",\"https://steemit.com/steemit/@mikehere/steemwho-find-people-and-help-people-find-you-get-listed\",\"https://steemit.com/life/@mikehere/moving-to-paradise-from-creating-quickpay-for-quicken-to-living-on-a-sailboat-in-the-caribbean-part-1\",\"https://steemit.com/life/@mikehere/moving-to-paradise-from-creating-quickpay-for-quicken-to-living-on-a-sailboat-in-the-caribbean-part-2-sint-maarten-to-virgin\",\"https://steemit.com/life/@mikehere/at-42-i-thought-my-life-was-over-my-amazing-transformation-it-s-never-too-late\",\"https://steemit.com/art/@mikehere/how-to-draw-a-stick-figure-this-is-for-the-99-99-that-think-they-have-no-talent\",\"https://steemit.com/travel/@mikehere/tropical-paradise-boracay-philippines\",\"https://steemit.com/steemit/@mikehere/promoting-steemit-while-onboard-a-cruise-be-sure-to-watch-me-dock\",\"https://steemit.com/travel/@mikehere/our-aqua-safari-at-bora-bora-what-a-wonderful-time\",\"https://steemit.com/@mikehere\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T14:02:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 38314876638905,
+    "parent_author": "",
+    "parent_permlink": "travel",
+    "pending_payout_value": "157.085 HBD",
+    "percent_hbd": 10000,
+    "permlink": "mt-rainier-washington-usa-the-most-stunning-picture-i-ve-ever-taken-links-and-maps",
+    "post_id": 1056015,
+    "promoted": "78.020 HBD",
+    "replies": [],
+    "root_title": "Take a Virtural Hike around Volcano near Seattle - Mt Rainier - Washington, USA - So Cool!",
+    "title": "Take a Virtural Hike around Volcano near Seattle - Mt Rainier - Washington, USA - So Cool!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/travel/@mikehere/mt-rainier-washington-usa-the-most-stunning-picture-i-ve-ever-taken-links-and-maps"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3125880993338,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 408289760599,
+        "voter": "lafona"
+      },
+      {
+        "percent": "2000",
+        "reputation": 20297981245452,
+        "rshares": 1488951561218,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1042393900131,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314660513280,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3718242946,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 204675696436,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4513908950,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836654069,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64676583521,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992692418,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256370467,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 779706217649,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 258831864092,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 15405606665,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747149284,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160439161,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2661949408710,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 294379086507,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345736815,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411003001399,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5074340107,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 37289186848,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 887821271,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787813756,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19203629337,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 351472513122,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 197868013655,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11501194922,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 310003040,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 168786451071,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 207639750909,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21377142974,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 649863857,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 125488800966,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3404245483553,
+        "rshares": 20477012370,
+        "voter": "keithwillshine"
+      },
+      {
+        "percent": "3800",
+        "reputation": 598181152117,
+        "rshares": 81550066393,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 5078101791,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1901149350,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8358099209,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 7061836326,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161732195491,
+        "rshares": 398408180,
+        "voter": "artem-sokoloff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52093500846,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5517904010,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 119597107511,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 10102298181,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5825119560,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25445356820,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 295356843,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12165310382,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 455676704,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11263291480,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 187927799041,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 34393459049,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51605156715,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 235543115,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10404996383,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2210167101,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 18791650123,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 61808290901,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 39381536274,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1666843562,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 14122971768,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 60718837,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 104788510,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 9947377892,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58265386995,
+        "rshares": 3646489258,
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 10898752497,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960761826,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 36290453100,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 17698439393799,
+        "rshares": 10226666674,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 10955022647,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2388216457,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26544745435,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 37382286273,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 14354586582,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "400",
+        "reputation": 10771708337101,
+        "rshares": 61773284051,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2900",
+        "reputation": 18027204457681,
+        "rshares": 11256852364,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 5776723480371,
+        "rshares": 95543829460,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 206355094166,
+        "rshares": 3592062376,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 19797420121,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99941487421,
+        "rshares": 84546938,
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 636463375,
+        "voter": "romancs"
+      },
+      {
+        "percent": "400",
+        "reputation": 3016325652890,
+        "rshares": 7006195248,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10158772596,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 113446972,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127737479,
+        "rshares": 238337441,
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "3400",
+        "reputation": 1851205309677,
+        "rshares": 1313251435,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62218938,
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 49201239700,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -257389679751,
+        "rshares": 117591207,
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 7679327381,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "3800",
+        "reputation": 4195733833721,
+        "rshares": 3302144579,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1718249749,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 730408370151,
+        "rshares": 220517413,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 6147352384,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 5956821758,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 69848769518,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5475236782,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 62279229,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 7876761050,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87991131377,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4410847044,
+        "rshares": 228117853,
+        "voter": "psybin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1941499119,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 54834723,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17973584280,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2918379629,
+        "rshares": 1763904333,
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": -162294290155,
+        "rshares": 60077236,
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11731336511,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12066449411,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 1573966103,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 53433968,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 1345107090,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 222694943448,
+        "rshares": 709360681,
+        "voter": "armenarmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 421813426,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55020754,
+        "voter": "mightypenguin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290042862358,
+        "rshares": 269649250,
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25287187748,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 878883968,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 91630309,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 357194723,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10408522028,
+        "rshares": 52324031,
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5186278337,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1552458038,
+        "rshares": 53222151,
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1699144311,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 183928287,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 75604322,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 1028404751,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322790516,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50245473,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1321908864392,
+        "rshares": 147037069,
+        "voter": "steemitcharity"
+      }
+    ],
+    "author": "james-show",
+    "author_reputation": 5045406568403,
+    "beneficiaries": [],
+    "body": "_Firstly, I must admit I have spent more time thinking about Steem(it) than I have been paid for by it. And to be honest (and disappointing to readers/whales and me as far as payouts go) I have found more than a few BIG Problems with Steem. Problems that if not addressed, will lead to its ultimate failure. Now, you might not agree with me (very likely) but they will.\nAnd I love Steem and I do think it is a few shorts changes short of being \u201cThe Game Changer\u201d!_\n#\n![steemit image](https://steemit.com/images/steemit-share.png)\n#\nOK that was the intro, now to the point\u2026\n#\n I consider [Why I Want to Short Steem  [Beyond Trading \u2013part2. 08/23/2016](https://steemit.com/steemit/@james-show/why-i-want-to-short-steem-beyond-trading-part2-08-23-2016) post of mine, the greatest insight in the Steem space, that I (and most writers that I have come across) ever got. \nI also totally understand why most of you will find the believes of mine expressed  there \u201cstupid\u201d \u201csilly\u201d \u201coutdated\u201d, but that take of yours does not makes them invalid or not true. Actually they are as true as when Adam Smith first thought of them\u2026.\n# Back to the present\u2026\nYes, I do __not__ believe; \u201cThe company\u2019s worth is what N million customers are worth to Facebook (or 100 times more in Steemit\u2019s case)\u201d,  especially when the company has NO CLUE how to monetize on those customers\u2026.\n#\n__And today this changed (maybe alittle, maybe alot [1]) by the introduction of \u201cpromoted posts\u201d__\nWith _promoted posts_ we can see how the system / all Steem power holders can benefit from someone trying to come to the system and pay his way in to all SP holders!\n#\nIt is a great new feature! The best in my humble opinion. The best I have seen from Steem really.\nAnd that\u2019s why I will _donate_ ( donate more or less really) a good sum of SD to put this (Badly written as far as English grammar and spelling go) post on that same list.\n-------\nOther (mostly less controversial posts of mine): \n1. [Beyond the STEEM Whitepaper \u2013 1. Blogging and Curation Rewards Fund; Steem Backed Dollars Creation](](https://steemit.com/steemit/@james-show/3gkvw3-beyond-the-steem-whitepaper-1-blogging-and-curation-rewards-fund-steem-backed-dollars-creation)\n2. [Are all post written for 5 year olds', so they have to be picture heavy????]() ..Uuups sorry, I have not written this one yet, but really???\n3. Ohh what TF just scroll the blog posts on my home page!\n\n#money #trading",
+    "body_length": 2423,
+    "cashout_time": "2016-09-06T03:10:39",
+    "category": "steemit",
+    "children": 19,
+    "created": "2016-08-30T03:10:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"money\",\"trading\"],\"image\":[\"https://steemit.com/images/steemit-share.png\"],\"links\":[\"https://steemit.com/steemit/@james-show/why-i-want-to-short-steem-beyond-trading-part2-08-23-2016\",\"https://steemit.com/steemit/@james-show/3gkvw3-beyond-the-steem-whitepaper-1-blogging-and-curation-rewards-fund-steem-backed-dollars-creation\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T03:10:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 13743910298445,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "25.049 HBD",
+    "percent_hbd": 10000,
+    "permlink": "why-i-am-less-willing-to-short-steem-now",
+    "post_id": 1050992,
+    "promoted": "77.000 HBD",
+    "replies": [],
+    "root_title": "Why I Am Less Willing To Short Steem Now?",
+    "title": "Why I Am Less Willing To Short Steem Now?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@james-show/why-i-am-less-willing-to-short-steem-now"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 56552146057,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7407974462660,
+        "voter": "steempty"
+      },
+      {
+        "percent": "4600",
+        "reputation": 8151223409709,
+        "rshares": 7743922580184,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14423169571983,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40461646370697,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "1400",
+        "reputation": 13270505121655,
+        "rshares": 9024654368742,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7270934718663,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120823881116,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 903658154834,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 955547237819,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 304707236256,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3717560623,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 209125168098,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4512963560,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836545296,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6988007861700,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1648795625161,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "4000",
+        "reputation": 49280708331375,
+        "rshares": 2590155272571,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64607818458,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3745363549909,
+        "rshares": 64079611952,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992338387,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256356620,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 39580133428,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1452601473655,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1331198190646,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 745373510191,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 80690179844,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1135475906992,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 17701813434,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747044457,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 347055943371,
+        "rshares": 414357548,
+        "voter": "grumlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160257208,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2607869395086,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 399850120693,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 20695739170,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 91827078269,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 67474894872,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345705172,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 84752175156,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 22534917345,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1701451058212,
+        "rshares": 3560867980,
+        "voter": "mazi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8289316407,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 8549093805,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13832117218,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 875162057,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 554084160,
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 50655692786,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3208539412,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78056810253,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 90344487995,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 15464522800,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 170836582467,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 241453016290,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5171467941,
+        "rshares": 24534315886,
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8604717232,
+        "rshares": 489114702,
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 2516602969,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 81946124349,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 485266432,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9897310096,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5696495054,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056130698,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 347538684630,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "500",
+        "reputation": 5414208804644,
+        "rshares": 1985132858,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7186758,
+        "rshares": 459952549,
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3342731574,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59223927709,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508314471,
+        "rshares": 603366563,
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 20201603994,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57937290943,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 23511967149,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1192571560,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22378434861462,
+        "rshares": 223682916687,
+        "voter": "stino-san"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787431173,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 371808665,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3085996565,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29602129325,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 421703362290,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 570783738,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6886422212862,
+        "rshares": 45416460571,
+        "voter": "pixellated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18898061785,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 254584445613,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12013107301,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40287404686,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 365694018,
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11260827752,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 309925863,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85870977835,
+        "rshares": 6799149594,
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379019004,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 151933693977,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 231631602196,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 339982051793,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 50737326005,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 76218554853,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4356049611,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8770878211,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2636635441463,
+        "rshares": 6250725075,
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1486037286,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4794047234,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21377142974,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 135526440615,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 696282704,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2108324979,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 151313598203,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 191362456407,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1487612496753,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23705317509,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 112950429384,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 240146584523,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18458799241134,
+        "rshares": 46163941246,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98586802505,
+        "rshares": 356509174,
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8413352005,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12772401769,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 59607501207,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 24845976067,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 59296970731,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 234933448,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 74131257427,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3124603257,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 188239143185,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52093500846,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 299499765807,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4237212015,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 39865290374,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4804447101,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122032656334,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 7756851652,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 10101627148,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132655071824,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 213390961525,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 10295818487,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1285715500,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 322495553,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 149731266,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1926175201,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 53506579516,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12408616589,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 486652600963,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10584865103,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3610613523,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 76946377242,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14091345831,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7725614667,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15305263755,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 5124085338,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4393022921,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 516433597,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3320614763,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 187770538787,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4876469889,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 97667262071,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1509601460,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 38214691392,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 8479287635,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51605156715,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 77914375364,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 247320271,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9037187000,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10168306524,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2210167101,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 74715503526,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 240222938,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 594203592,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17310974719,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4996152370,
+        "rshares": 270329604,
+        "voter": "astorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192124698,
+        "rshares": 225794427,
+        "voter": "chris0502"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 20755384335,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 40253682612,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6775073251,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 120620705591,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373524020,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5600683141,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12972669244,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 13846050753,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2415655330,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7305709760,
+        "rshares": 1463600004,
+        "voter": "slocum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 38295325599,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 196293057448,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 322651547057,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14306641323,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1462310422,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7167353076,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2324876192,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 8983200296,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 70427611427,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2424409113,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 25628695064,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4830973273,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 266607399,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207767589679,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960761826,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 452064608,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 10907428587,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97517122081,
+        "rshares": 156827413,
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20531175873,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 702425502,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54192730483,
+        "rshares": 225878684,
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136260156259,
+        "rshares": 172444925,
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27072053846,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46683248,
+        "rshares": 111147984,
+        "voter": "ryland.townsend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 29014024080,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4491631626,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11220431469,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1201523852,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15517908096,
+        "rshares": 59673355,
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5637635502,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2405411059,
+        "rshares": 159797889,
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1946313851,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23830043508,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8097262355,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2589493888,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211462616494,
+        "rshares": 1011196107,
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 513266800508,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 28746462244,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 32699512403,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2266924190,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 823550089,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 698557363,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1291152324,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14436760417,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 11737514005,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 113446972,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 61274515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 8958644029,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2442169380,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63412334,
+        "voter": "bayern000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 53662708495,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 7679228543,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 229421947,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -61439588,
+        "voter": "gost111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5328695539,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727733310136,
+        "rshares": 61400550,
+        "voter": "mrdsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1934306097,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 634697761,
+        "rshares": 54984896,
+        "voter": "decred"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 9139588670,
+        "rshares": -64218845,
+        "voter": "johnhtims"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 54969817,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 3733986684,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 4916474731,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 77430111,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 537557601,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 69848769518,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816126,
+        "rshares": 59723329,
+        "voter": "blubeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5475203821,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 62279229,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 120171572,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2309373844,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87991131377,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3574312402,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 53588479,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28378684,
+        "rshares": 55945663,
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17973584280,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 925612937,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5448891234,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 24215091196,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87897903,
+        "rshares": 59008544,
+        "voter": "sterl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12403401241,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6718277898,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12002684748,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1499467547,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 11478715301,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56443564,
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24537271972,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 236422965,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 57911021,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 67699642,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2212272906,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1654242144,
+        "rshares": 58155541,
+        "voter": "federicofragola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 115043900,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 11145697310,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3614336062,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 84754573,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55377253,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11501310305,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 182619937252,
+        "rshares": 59216026,
+        "voter": "coolty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12307778400,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 688853443,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4856527764,
+        "rshares": 58818711,
+        "voter": "m12r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2125462805,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 7076868967,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 111770582,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4073388292,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320261717074,
+        "rshares": 1628427434,
+        "voter": "carlyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 52320760,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 58351459,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 55620764,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 2922171431,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -51683826049,
+        "rshares": 59562278,
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 19561952912,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2305186237,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 836954421307,
+        "rshares": 1250725025,
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 632649253,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56143941,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 3309390130,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 666711159,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 189407661696,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 55416927,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9117910781,
+        "rshares": 91152561,
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25813907256,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4685765533,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 73380620,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 41760420240,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 52393318,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 364794611,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 71464098,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 52597837,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84928909264,
+        "rshares": 85301011,
+        "voter": "johnygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 683829103,
+        "rshares": 54232595,
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18081706207,
+        "rshares": 52192153,
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 51871529,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 51814320,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 176715413,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52774418,
+        "voter": "walteraze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69131953,
+        "rshares": 50592846,
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 71251561,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2392485349,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176228976143,
+        "rshares": 8258021605,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 577247264,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 807542498,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 80106845,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14820051763,
+        "rshares": 54672126,
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 2360647659,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 1008239952,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 55523890,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 66564537,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19265611,
+        "rshares": 50996649,
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22546106632,
+        "rshares": 52763087,
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 264508777365,
+        "rshares": 107344655,
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6189604518,
+        "rshares": 52291016,
+        "voter": "bkasante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1398865101,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508583499,
+        "rshares": 50827953,
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 583302856,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50238161,
+        "voter": "robertdpickett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155435909,
+        "voter": "duckfever"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "**Currently, there are two ways to get a STEEM Account.** The first is to sign up for Steemit with a Reddit or Facebook account, the second is to create an account using CLI_WALLET or Piston and have the account **permanently linked to your own account.**\n\nNeither option really allows you to be anonymous. Want to post controversial posts, or say something that would otherwise be illegal in your country? (e.g. poor free speech laws) Then Anonsteem is here to help.\n\n## Introducing: @anonsteem\n\n![](https://i.imgur.com/Y6QDDbD.png)\n\nPUBLIC INTERNET: [anon.steem.network](https://anon.steem.network/)\n----\n\nTOR: [steemlohs6air4h2.onion](http://steemlohs6air4h2.onion/)\n----\n\n----\n\n**So what actually is this?**\n\nAnonSteem allows you to purchase an account using either Bitcoin or Litecoin, and it will be created by the @anonsteem account within a minute of payment.\n\nTo protect your privacy, there are no IP logs, we have a TOR hidden service, and we allow you to remove your keys from our server as soon as you create the account.\n\n![](https://i.imgur.com/4aa6tR7.png)\n\nWe give you detailed instructions on changing your keys after creating the account, so you can be sure we're not just going to steal your account later on.\n\nHow long does it take to get an account?\n-----\n\nTransactions are scanned once a minute, and we accept 0 confirmation transactions. This means you'll most likely have your account within 1-2 minutes of sending the payment, regardless of which coin you paid with.\n\nCan I pay with STEEM?\n----\n\nWe don't accept STEEM directly, as that would ruin your privacy. However, if you REALLY want to pay with STEEM, you can send it via [ShapeShift (precise mode)](https://shapeshift.io/#/inputs/2) to the BTC or LTC address you get during payment.\n\nDoesn't this service mean more spambots?\n----\n\nWe don't have any plans to allow en-masse account creation. Every order has to be placed one at a time, with individual payments. Someone looking to create spam bots would most likely look elsewhere.\n\nAnonsteem is targeted at persons or groups looking for one, or a few accounts, with no social media link, and no third party tracking.\n\n**HELP - my transaction expired?** - The 15 minute limit is just to avoid us checking transactions for abandoned orders. If you've already paid, just PM me on SteemitChat, or send me an email (bottom of the anonsteem page) with your order ID and I'll reset the expiry.\n\nTry it out at [anon.steem.network](https://anon.steem.network)\n----\n\nDo you like what I'm doing? Follow me, and [vote for @someguy123 to be a witness](https://steemit.com/~witnesses)\n====",
+    "body_length": 2607,
+    "cashout_time": "2016-09-05T21:00:18",
+    "category": "steemit",
+    "children": 58,
+    "created": "2016-08-29T21:00:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"bitcoin\",\"litecoin\"],\"users\":[\"anonsteem\",\"someguy123\"],\"image\":[\"https://i.imgur.com/Y6QDDbD.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T22:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 119299865028571,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1520.901 HBD",
+    "percent_hbd": 10000,
+    "permlink": "anonsteem-create-anonymous-steem-accounts-without-social-media",
+    "post_id": 1046758,
+    "promoted": "76.500 HBD",
+    "replies": [],
+    "root_title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2100",
+        "reputation": 145171381514207,
+        "rshares": 6177366490721,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5524453120959,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 118459200229,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1111762764834,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104316216,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3769023210,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684026925,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54893564497,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663393709,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213796245,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 625012807,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973159239,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2426634324,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 196852731768,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288356419,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6000",
+        "reputation": 127159698297,
+        "rshares": 91974415110,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1676057243571,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 42646084026,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426441594,
+        "voter": "murh"
+      },
+      {
+        "percent": "200",
+        "reputation": 3663597787321,
+        "rshares": 914730170,
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 72459361708,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2988407596343,
+        "rshares": 30768675850,
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 170243742354,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 187725199105,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 14468332399,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 6830334777,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 207235087440,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 45105528409,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55888461363,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2666424177,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6704878593,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127664642491,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 84707219423,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 10810017183,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6080328266,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "8200",
+        "reputation": 7172977970558,
+        "rshares": 2870180302,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 11565154708,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "7500",
+        "reputation": 4063076365725,
+        "rshares": 2466552028,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 23482202368,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "4800",
+        "reputation": 988942038058,
+        "rshares": 33679033840,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 12266525730,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 22398900329,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 9896085754,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1146505325539,
+        "rshares": 2266973901,
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 8889605453,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "3700",
+        "reputation": 11490547563070,
+        "rshares": 8646944150,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3386634890,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 261504857808,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 59202973,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3573461197670,
+        "rshares": 5750642945,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "100",
+        "reputation": 66311335718,
+        "rshares": 2135038057,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 7954827193,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1829620177,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415511458887,
+        "rshares": 201245802,
+        "voter": "ratidor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 98655344,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 59126442,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 50326986,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 625158771365,
+        "rshares": 1226505302,
+        "voter": "asolopreneur"
+      },
+      {
+        "percent": "5100",
+        "reputation": 414609406210,
+        "rshares": 596047269,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 1483350426,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 244968251,
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 418652004,
+        "rshares": 158583251,
+        "voter": "tata.lucette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154595895,
+        "voter": "imtwoxic"
+      }
+    ],
+    "author": "peacekeeper",
+    "author_reputation": 3941133391991,
+    "beneficiaries": [],
+    "body": "http://www.steem101.com/facebooktest.jpg\n# My Facebook and Steemit experiment:\n### Two days ago @ around 8:00 am EST I posted an article about my little sweetheart named Jalyn.  She made \"Fall off the bone ribs\" and we documented her work with a video.\n\n### I then posted it on Steemit and Facebook at the exact same time.  \n*  Steemit: I had 68 followers at the time of the post.\n*  Facebook: I had 224 friends, family, coworkers at the time of the post.\n\n---\n\n## Here is a snapshot of both posts:\n\nSteemit Post:            |  FaceBook Post:\n:-------------------------:|:-------------------------:\n![](http://www.steem101.com/Steemit.jpg )  |  ![](http://www.steem101.com/facebook.jpg )\n\n\n\n| Steemit:  |    FaceBook    |  \n|----------|:-------------:|\n| 44 Up Votes |  7 Likes |\n| 4 Comments |    5 Comments  |\n| No Shares | 1 Share |\n| $84.66 | Zero - Cheap Bastards |\n\n## Summary:\nI thought it would be compelling to see how many votes I received with both Social Media Sites.  I found it very interesting that the number of Up Votes from the Steemit Community was more than 6 times the number of Likes from my Facebook Friends.  The reason I found this interesting is because I have 224 Facebook friends and I have known them a lot longer than my new friends at Steemit.  \n\nAnother interesting point is the fact I have been on Facebook for over 6 years.  I have been on Steemit for 2 months.   Looks like my Steemit Friends are more interested in what I have to share..... \n\nIt will also be interesting when I show my Facebook friends this little experiment.\nEspecially the part about the $84.66\n\n## Action:\nStop going to Facebook!\n\n#steemit #facebook #life #craigrant",
+    "body_length": 1672,
+    "cashout_time": "2016-09-15T19:37:39",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-08T19:37:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"experiment\",\"facebook\",\"life\",\"craigrant\"],\"image\":[\"http://www.steem101.com/facebooktest.jpg\",\"http://www.steem101.com/Steemit.jpg\",\"http://www.steem101.com/facebook.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T20:03:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16467096056102,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "28.943 HBD",
+    "percent_hbd": 10000,
+    "permlink": "my-facebook-and-steemit-post-side-by-side-two-2-days-ago",
+    "post_id": 1175979,
+    "promoted": "76.000 HBD",
+    "replies": [],
+    "root_title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@peacekeeper/my-facebook-and-steemit-post-side-by-side-two-2-days-ago"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 20297981245452,
+        "rshares": 6762422493146,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3722167102,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4518923636,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 828866269,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 65291932795,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1994645292,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256490999,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747730879,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1161438487,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345929094,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 38490752763,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 31898709926,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17814707827319,
+        "rshares": 120036771953,
+        "voter": "bbqbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 15817278258,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1424916288,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 64857927561,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 39311342671,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1350953088,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4477107456,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322690670,
+        "voter": "garagebill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 15739145316,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 179192996861,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 598181152117,
+        "rshares": 75625947764,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6740313250,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9434414518400,
+        "rshares": 6414920414,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 49805947674,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55853813712,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3326209124802,
+        "rshares": 9866111769,
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 480670817737,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 638021117,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "100",
+        "reputation": 5463774640621,
+        "rshares": 429990873,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19032649381,
+        "rshares": 181322915378,
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "7000",
+        "reputation": 6030999377480,
+        "rshares": 11531792247,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11034478037,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "100",
+        "reputation": 6892424678378,
+        "rshares": 1410577112,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44336327098,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 79349787046,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 9970599025,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 4486999201,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 473751099,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "3600",
+        "reputation": 17698439393799,
+        "rshares": 11390928300,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5873252645,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17682174654,
+        "rshares": 117698021,
+        "voter": "cameron-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 29635792745,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 1793508440,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "1800",
+        "reputation": 10771708337101,
+        "rshares": 219911318479,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2500",
+        "reputation": 18027204457681,
+        "rshares": 8953837063,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3801791180,
+        "voter": "rich77"
+      },
+      {
+        "percent": "3700",
+        "reputation": 5776723480371,
+        "rshares": 89872995878,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 206355094166,
+        "rshares": 3363521648,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 621407045907,
+        "rshares": 5475636756,
+        "voter": "k4r1nn"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 19862171480,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 2979617190,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8113950766,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "1800",
+        "reputation": 3016325652890,
+        "rshares": 24656414925,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 435439128,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 107084440,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 18249960278,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1425927896964,
+        "rshares": 2100417564,
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "3700",
+        "reputation": 1851205309677,
+        "rshares": 1554626282,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 954937043358,
+        "rshares": 6797668445,
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1433416370023,
+        "rshares": 20160515746,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 12012730878,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 729617548626,
+        "rshares": 234067377,
+        "voter": "giftedgaia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1631018835,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "3700",
+        "reputation": 4195733833721,
+        "rshares": 3130695206,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 72131169,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 901114996,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20803096,
+        "rshares": 61897843,
+        "voter": "geny"
+      },
+      {
+        "percent": "3700",
+        "reputation": 730408370151,
+        "rshares": 206134585,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648377040631,
+        "rshares": 3024339521,
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "7000",
+        "reputation": 1062400368532,
+        "rshares": 69500880949,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 58350694824,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 59609546962,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1423723498,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1262855144,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10486107784,
+        "rshares": 1804085961,
+        "voter": "otisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 4601312529,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2922107498,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2485484872,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329317015182,
+        "rshares": 316012583,
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 1098554901,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21217169177,
+        "rshares": 58872767,
+        "voter": "powmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1354778162586,
+        "rshares": 208026413,
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 405698035912,
+        "rshares": 330609380,
+        "voter": "tfeldman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3090583312974,
+        "rshares": 1088326615,
+        "voter": "geke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3683900274,
+        "rshares": 53968432,
+        "voter": "mooncat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 77663073,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 265151816,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 289905346,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 51783834,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 447567061326,
+        "rshares": 50404082,
+        "voter": "koskl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 77402677,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1321908864392,
+        "rshares": 149994455,
+        "voter": "steemitcharity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2178388003040,
+        "rshares": 50211933,
+        "voter": "powerup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2781294502,
+        "rshares": 122119181,
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76997226,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1564414223,
+        "rshares": 111910065,
+        "voter": "tygeade"
+      }
+    ],
+    "author": "steemitqa",
+    "author_reputation": 954937043358,
+    "beneficiaries": [],
+    "body": "<h1 id=\"steemit-advertise\"><center> Uplift Minnows Initiative</center></h1>\n<p></p><center><hr></center><p></p>\n<center>https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_daf200df05a1435bb441b235515eace3~mv2_d_2941_2046_s_2.jpg?dn=minnow+mission+3.jpg</center>\n<h2>The Idea:</h2>\n \nThis idea is to maximize the \u2018promote post\u2019 feature and allow minnows to get more exposure to their stories, or services on SteemIt, but on a budget. If every day, or every week this account (we\u2019ll be shifting to a new account shortly @advertise) be in the top five on the promo tab and you pay $3-5 you will reap the rewards of being on the top of SteemIt! Promote Post as a minnow is turning out to be a problem for [some](https://steemit.com/steemit/@profitgenerator/analysis-promoted-content) so the power of many seems more logical. \n\nAlso, going forward we\u2019ll be throwing the same amount daily/weekly, or even more toward the post reaching the top. As it stands $100 can get us all on the front page of SteemIt Promote. If 40 of us minnows throw in $5 for the day we can sit our submissions on top. Not only that **ALL SBD** that are earned by this post will go into \u201cpromote post\u201d itself thus helping you get free future advertising for your submissions! We\u2019ll be building out this post as we go as you can see we have a \u201cServices\u201d Category.\n\nIf you wish to get our upvote, just tag us with a SteemIt tag of **#upliftminnows** and we\u2019ll find your post. All proceeds of the post will go back to you so essentially you could have a free advertisement.\n<h2>How to Participate: </h2>\n\n<li>Simply, comment below with your story submission, or service and we\u2019ll add it to the page. Hit \u2018promote post\u2019 and send whatever amount you can and 'pool' it together with all other minnows. Put the $ amount you posted in your comment also. <b>Example: @joesmith $5 ( your link here )</b>.\n<br><br>\n<li>We will post the link you provide via a comment below to the post.\n<br><br>\n<li>The highest paying post will lead the list first and roll off the page after 20 entries.\n<br><br>\n<li>This post will last forever and each day/week a new post will be put up and  your listing could be carried over.\n<br><br>\n</li>\n\n<blockquote>\n  <p><strong>Note</strong> <br>\nFor this very first launch we are adding $50 to the pool. You may add as much as you want to this post, or as little as you want to get listed on <b>Uplift Minnows Initiative</b>.</p>\n</blockquote>\n \n<p><center><hr></center></p>\n <h2 id=\"steemit-story-submissions\"><center><strong>SteemIt Story Submissions:</strong></center></h2>\n<p><center><hr></center></p> \n\n<p></p><center><img src=\"https://payscape.com/wp-content/uploads/icon-globe-blue.png\" alt=\"enter image description here\" title=\"\"></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemtools/@kurtrohlandt/steemit-image-tools-pimp-your-posts\">SD- $6 | @kurtrohlandt: Steemit Image Tools - Pimp your posts</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steem/@williambanks/do-you-feel-taler-gnu-foundation-launches-their-own-cryptocoin\">SD- $5 | @williambanks: Do You Feel Taler? - GNU Foundation Launches Their Own Cryptocoin!</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/life/@michelle.gent/i-went-to-the-beach-and-i-cried\">SD- $5 | @michelle.gent: I went to the beach and I cried</a></b></center><p></p>\n\n\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemit/@me-tarzan/win-500-steempower-enter-steemit-daily-sweepstakes-100-winners-everyday\">SD- $2 | @me-tarzan: WIN !!!!! 500 !!!!!STEEMPOWER !!!!!..... ENTER STEEMIT DAILY SWEEPSTAKES ..... 100 WINNERS EVERYDAY</a></b></center><p></p>\n\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/life/@tfeldman/original-song-for-the-minnows-talkin-usd-01-cent-steemit-post-blues#comments\">SD- $1.50 | @tfeldman: Original Song for the Minnows: Talkin' $.01 Cent Steemit Post Blues</a></b></center><p></p>\n\n<center><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/Zdam6Uc03vc\" frameborder=\"0\" allowfullscreen></iframe></center>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemit/@geke/was-that-make-up-tutorial-really-worth-thousands-of-dollars\">SD -$1 | @geke: Was that make-up tutorial really worth thousands of dollars?</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/philosophy/@steemswede/philosophy-the-value-of-wonder\">SD -$1 | @steemswede: [PHILOSOPHY] The Value of Wonder</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/promoted/steemit\">Place Your Story Submission HERE! for $1 SBD!</a></b></center><p></p>\n  \n<p><center><hr></center></p>\n<h2 id=\"steemit-services\"><center><strong>SteemIt Services:</strong></center></h2>\n <center><hr><br></center>\n\n<center><img src=\"http://www.amesto.global/globalassets/fellesbilder-2015/ikoner/handshake-icon-200px.png\" alt=\"enter image description here\" title=\"\"></center></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"http://randomsteemit.com/\">SD -$2| @tyler-fletcher: RandomSteemit Promotion Article/ RandomSteemit.com (Steem Service)</a></b></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/promoted/steemit\">Place your SteemIt Service HERE!</a></b></center><p></p>\n \n<p></p><center><hr></center><p></p>\n<center><b>Follow us if you love what we are doing!</b> \u2764</center>\n<center><a href=\"https://steemit.com/@steemitqa\"><img src=\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\"></a>http://reneenouveau.com/Steem/100humansmall.jpg</center>\n\n<br><br>",
+    "body_length": 6870,
+    "cashout_time": "2016-09-10T16:49:18",
+    "category": "steemit",
+    "children": 50,
+    "created": "2016-09-03T16:49:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"upliftminnows\",\"steemsquad\"],\"users\":[\"advertise\",\"joesmith\"],\"image\":[\"https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_daf200df05a1435bb441b235515eace3~mv2_d_2941_2046_s_2.jpg?dn=minnow+mission+3.jpg\",\"https://payscape.com/wp-content/uploads/icon-globe-blue.png\",\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\",\"http://www.amesto.global/globalassets/fellesbilder-2015/ikoner/handshake-icon-200px.png\",\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\",\"http://reneenouveau.com/Steem/100humansmall.jpg\"],\"links\":[\"https://steemit.com/steemit/@profitgenerator/analysis-promoted-content\",\"https://steemit.com/steemtools/@kurtrohlandt/steemit-image-tools-pimp-your-posts\",\"https://steemit.com/steem/@williambanks/do-you-feel-taler-gnu-foundation-launches-their-own-cryptocoin\",\"https://steemit.com/life/@michelle.gent/i-went-to-the-beach-and-i-cried\",\"https://steemit.com/steemit/@me-tarzan/win-500-steempower-enter-steemit-daily-sweepstakes-100-winners-everyday\",\"https://steemit.com/life/@tfeldman/original-song-for-the-minnows-talkin-usd-01-cent-steemit-post-blues#comments\",\"https://steemit.com/steemit/@geke/was-that-make-up-tutorial-really-worth-thousands-of-dollars\",\"https://steemit.com/philosophy/@steemswede/philosophy-the-value-of-wonder\",\"https://steemit.com/promoted/steemit\",\"http://randomsteemit.com/\",\"https://steemit.com/@steemitqa\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T16:38:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9097095205888,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "11.997 HBD",
+    "percent_hbd": 10000,
+    "permlink": "uplift-your-story-submission-to-the-top-of-post-promote-uplift-minnows-initiative",
+    "post_id": 1113125,
+    "promoted": "75.915 HBD",
+    "replies": [],
+    "root_title": "Uplift Your Story Submission to the Top of Post Promote:  Uplift Minnows Initiative",
+    "title": "Uplift Your Story Submission to the Top of Post Promote:  Uplift Minnows Initiative",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitqa/uplift-your-story-submission-to-the-top-of-post-promote-uplift-minnows-initiative"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3200",
+        "reputation": 145171381514207,
+        "rshares": 8985284348056,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 347182498336,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1133069631465,
+        "rshares": 6807494375194,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 4393144360640,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2483640452,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1744463573774,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3015449503,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 547246371,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43943051043,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1330803118,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 171039480,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 207056953028,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185067624745,
+        "rshares": 2180060279637,
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 709998844557,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 500032593,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 778573329,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 813852185290,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230690102,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13456874958,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1339573287588,
+        "rshares": 9981315272,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5264976509,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 29703642476,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 335151732396,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 147551184319,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1412786230,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 39924520204,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 29997646492,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 19754123181,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 53304441666,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1380318227,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1457511112,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 32136652184,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 8926706341,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2690420179,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 497410679,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 56702480478,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 68355526825,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 207235087440,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55888461363,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 61723804140,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 87194099793,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14456007797,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967430836,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43291626440,
+        "rshares": 259566753,
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97646232305,
+        "rshares": 2916783620,
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 203941619651,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4913418737,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1255391771,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 14499214780,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8217543952,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 35654305271,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 6496036600,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 91926117,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127811996983,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12391003580,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3404137327,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 513380281140,
+        "rshares": 540910155,
+        "voter": "qonq99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 35423115509,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 231302899,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": -34260804360,
+        "rshares": 428847572,
+        "voter": "leonaugus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614745323,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 5727995375,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2814833271,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5361340393,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 128430788791,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 76539963151,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 4650376230,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 22883800785,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23396082320,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23404647118,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 17330365160,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19073889900896,
+        "rshares": 25983916825,
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319893324917,
+        "rshares": 327484786,
+        "voter": "nessacute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2267296640,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 12539115191,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23400604417,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23398899328,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23396297524,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23393304596,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23389513666,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23387910642,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1404956543,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 19546273639,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1368553119,
+        "voter": "paynode"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 22398900329,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 283251416,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 64621792,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53638070,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 56598010,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56591855,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 83234176,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 663686280832,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 6695859153,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 64878458203,
+        "rshares": 728479455,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 13247318328,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1550433833,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8720302896,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23381814238,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 765546853,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 2636453193,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 78863230555,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 22918561757,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 7674991389,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3838175665,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 915016,
+        "rshares": 58561038,
+        "voter": "drsamkhan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565688,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1947405265,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 2761833688,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 669878419,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887625476110,
+        "rshares": 10692755421,
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 23036045614,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 168510966,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 7954827193,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51223240,
+        "rshares": 397589256,
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 115585338,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 360867793495,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 57674266103,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1445562934,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1996188997,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 95081132,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85063000237,
+        "rshares": 51257071,
+        "voter": "sinsinclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525299486,
+        "rshares": 161225748,
+        "voter": "iliyaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154056498,
+        "voter": "cruise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675589247639,
+        "rshares": 1390524760,
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 158081936,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160057403,
+        "voter": "alvinng77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 185425398,
+        "rshares": 156392532,
+        "voter": "mcwhackery"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159089330,
+        "voter": "tundercat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158189020,
+        "voter": "rhp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16912046,
+        "rshares": 154958886,
+        "voter": "jovic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 142547773,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7237199,
+        "rshares": 154396126,
+        "voter": "lovesickchris"
+      }
+    ],
+    "author": "val-a",
+    "author_reputation": 1133069631465,
+    "beneficiaries": [],
+    "body": "![](http://ap.mnocdn.no/images/268d5cb1-673e-4231-a1ef-c9767d3494f1?fit=crop&h=1152&q=80&w=2048)\n\n> I think it's worth to repost here this [open letter to Mark Zuckerberg by Aftenposten's Editor-in-chief Espen Egil Hansen](http://www.aftenposten.no/meninger/kommentar/Dear-Mark-I-am-writing-this-to-inform-you-that-I-shall-not-comply-with-your-requirement-to-remove-this-picture-604156b.html)\n> If this post will earn any significant amount of SD/STEEM I'll try to get it to the author otherwise I will just burn it by sending to @null account.\n\nDear Mark Zuckerberg.\n\nI follow you on Facebook, but you don\u2019t know me. I am editor-in-chief of the Norwegian daily newspaper Aftenposten. I am writing this letter to inform you that I shall not comply with your requirement to remove a documentary photography from the Vietnam war made by Nick Ut.\n\nNot today, and not in the future.\n\nThe demand that we remove the picture came in an e-mail from Facebook\u2019s office in Hamburg this Wednesday morning. Less than 24 hours after the e-mail was sent, and before I had time to give my response, you intervened yourselves and deleted the article as well as the image from Aftenposten\u2019s Facebook page.\n\nTo be honest, I have no illusions that you will read this letter. The reason why I will still make this attempt, is that I am upset, disappointed \u2013 well, in fact even afraid - of what you are about to do to a mainstay of our democratic society.\n\nFirst some background. A few weeks ago the Norwegian author Tom Egeland posted an entry on Facebook about, and including, seven photographs that changed the history of warfare. You in turn removed the picture of a naked Kim Phuc, fleeing from the napalm bombs \u2013 one of the world\u2019s most famous war photographs.\n\nTom then rendered Kim Phuc\u2019s criticism against Facebook for banning her picture. Facebook reacted by excluding Tom and prevented him from posting a new entry.\n\n\n\n<div class=\"pull-right\">\n\n![](http://ap.mnocdn.no/images/fab84404-efd8-4651-97fb-23fc195b5abb?fit=crop&q=80&w=2048)\n<center><sup>Aftenposten's Editor-in-chief Espen Egil Hansen.</sup></center>\n</div>\nListen, Mark, this is serious. First you create rules that don\u2019t distinguish between child pornography and famous war photographs. Then you practice these rules without allowing space for good judgement. Finally you even censor criticism against and a discussion about the decision \u2013 and you punish the person who dares to voice criticism.\n\nFacebook is for the pleasure and benefit of the whole world, myself included, on a number of levels. I myself, for instance, keep in touch with my brothers via a closed group centered on our 89 year old father. Day by day we share joys and concerns.\n\nFacebook has become a world-leading platform for spreading information, for debate and for social contact between persons. You have gained this position because you deserve it.\n\nBut, dear Mark, you are the world\u2019s most powerful editor. Even for a major player like Aftenposten, Facebook is hard to avoid. In fact we don\u2019t really wish to avoid you, because you are offering us a great channel for distributing our content. We want to reach out with our journalism.\n\n<div class=\"pull-left\">\n\n![](http://ap.mnocdn.no/images/32183194-b955-4167-98b9-a598c510e45e?fit=crop&q=80&w=2048)\n<center><sup>Aftenposten's print front page Friday.</sup></center>\n</div>\n\nHowever, even though I am editor-in-chief of Norway\u2019s largest newspaper, I have to realize that you are restricting my room for exercising my editorial responsibility. This is what you and your subordinates are doing in this case.\n\nI think you are abusing your power, and I find it hard to believe that you have thought it through thoroughly.\n\nLet me return to the picture I mentioned by Nick Ut. The napalm-girl is by far the most iconic documentary photography from the Vietnam war. The media played a decisive role in reporting different stories about the war than the men in charge wanted them to publish. They brought about a change of attitude which played a role in ending the war. They contributed to a more open, more critical debate. This is how a democracy must function.\n\nThe free and independent media have an important task in bringing information, even including pictures, which sometimes may be unpleasant, and which the ruling elite and maybe even ordinary citizens cannot bear to see or hear, but which might be important precisely for that reason.\n\n\u00abIf liberty means anything at all, British George Orwell wrote in the preface to Animal Farm, \u00abit means the right to tell people what they do not want to hear.\u00bb\n\nThe media have a responsibility to consider publication in every single case. This may be a heavy responsibility. Each editor must weigh the pros and cons.\n\nThis right and duty, which all editors in the world have, should not be undermined by algorithms encoded in your office in California.\n\n<div class=\"pull-left\">\n\n![](http://ap.mnocdn.no/images/bf0bf779-a539-44ca-922f-939dc7b5e183?fit=crop&q=80&w=780)\n<center><sup>The original post on Aftenposten's Facebook page.</sup></center>\n</div>\n\nMark, please try to envision a new war where children will be the victims of barrel bombs or nerve gas. Would you once again intercept the documentation of cruelties, just because a tiny minority might possibly be offended by images of naked children, or because a paedophile person somewhere might see the picture as pornography?\n\nFacebook\u2019s Mission Statement states that your objective is to \u201cmake the world more open and connected\u201d.\n\nIn reality you are doing this in a totally superficial sense.\n\nIf you will not distinguish between child pornography and documentary photographs from a war, this will simply promote stupidity and fail to bring human beings closer to each other.\n\nTo pretend that it is possible to create common, global rules for what may and what may not be published, only throws dust into peoples\u2019 eyes.\n\nThe last decade has shown the extent to which unpredicatable and destructive things can happen when publication refuses to take into account the context.\n\nThe controversy over the Mohammad-caricatures, which flared in late 2005 and still remains a heated debate, had unknown consequences simply because the context and the original justification for publication were ignored.\n\nThe drawings were put into entirely new contexts, censured and condemned based on allegedly universal religious rules. This resulted in large demonstrations, violence and killings \u2013 and a remaining, potent threat against the freedom of speech. Some of the persons involved must still live with police protection.\n\nFacebook did not go global until this controversy had passed its peak. Your approach, Mark, might possibly have been to ban publication of Mohammad-drawings? If so, Facebook would in a stereotype way have stood on the side of the extreme religious forces, in opposition to the freedom of speech. You would have overruled the individual editor\u2019s assessment. Those of us who were in the centre of events at the time had to weigh the pros and cons day by day \u2013 and make decisions based on the reality we were in.\n\n![](http://ap.mnocdn.no/images/7c28467a-625c-4487-be16-a70f64e68247?fit=crop&q=80&w=2048)\n<sup>This is the message Aftenposten received from Facebook.</sup>\n\nIt was \u2013 and remains \u2013 different in Oslo and Karachi.\n\nThe controversy over the caricatures demonstrates just how impossible and illogical it is, trying to live with universal rules for publication in a time which is multi-religious, muli-cultural and multi-everything. Every human practice differs a lot as to geography, politics, social and economic conditions.\n\nThe least Facebook should do in order to be in harmony with its time is introduce geographically differentiated guidelines and rules for publication. Furthermore, Facebook should distinguish between editors and other Facebook-users. Editors cannot live with you, Mark, as a master editor.\n\nThese measures would still only soften the problems. If Facebook has other objectives than just being as big as possible and earn as much money as possible \u2013 and this I am still convinced that you have, Mark \u2013 you should undertake a comprehensive review of the way you operate.\n\nYou are a nice channel for persons who wish to share music videos, family dinners and other experiences. On this level you are bringing people closer to each other. But if you wish to increase the real understanding between human beings, you have to offer more liberty in order to meet the entire width of cultural expressions and discuss substantial matters.\n\nAnd then you have to be more accessible. Today, if it is possible at all to get in touch with a Facebook representative, the best one may hope for are brief, formalistic answers, with rigid references to universal rules and guidelines. If you take the liberty to challenge Facebook\u2019s rules, you will be met \u2013 as we have seen \u2013 with censorship. And if someone will protest against the censorship, he will be punished, as Tom Egeland was.\n\nI could have continued, Mark, but I have to stop at this point. I have written this letter to you because I am worried that the world\u2019s most important medium is limiting freedom in stead of trying to extend it, and that this occasionally happens in an authoritarian way. But I am also writing \u2013 and I hope you will understand this \u2013 because I take a positive attitude to the possibilities that Facebook has opened up. I only hope that you will utilize the possibilities in a better way.\n\nSincerely yours Espen Egil Hansen Editor-in-chief and CEO Aftenposten\n\nPS. I enclose a commentary from Aftenposten\u2019s 73 year old cartoonist Inge Gr\u00f8dum to the censorship practiced by Facebook. What does the algorithm say? Would it pass?",
+    "body_length": 9722,
+    "cashout_time": "2016-09-16T21:02:45",
+    "category": "steemit",
+    "children": 17,
+    "created": "2016-09-09T21:02:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"facebook\",\"censorship\",\"liberty\",\"aftenposten\"],\"users\":[\"null\"],\"image\":[\"http://ap.mnocdn.no/images/268d5cb1-673e-4231-a1ef-c9767d3494f1?fit=crop&h=1152&q=80&w=2048\",\"http://ap.mnocdn.no/images/fab84404-efd8-4651-97fb-23fc195b5abb?fit=crop&q=80&w=2048\",\"http://ap.mnocdn.no/images/32183194-b955-4167-98b9-a598c510e45e?fit=crop&q=80&w=2048\",\"http://ap.mnocdn.no/images/bf0bf779-a539-44ca-922f-939dc7b5e183?fit=crop&q=80&w=780\",\"http://ap.mnocdn.no/images/7c28467a-625c-4487-be16-a70f64e68247?fit=crop&q=80&w=2048\"],\"links\":[\"http://www.aftenposten.no/meninger/kommentar/Dear-Mark-I-am-writing-this-to-inform-you-that-I-shall-not-comply-with-your-requirement-to-remove-this-picture-604156b.html\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T21:02:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 29831113552269,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "87.690 HBD",
+    "percent_hbd": 10000,
+    "permlink": "dear-mark-i-am-writing-this-to-inform-you-that-i-shall-not-comply-with-your-requirement-to-remove-this-picture",
+    "post_id": 1188936,
+    "promoted": "75.000 HBD",
+    "replies": [],
+    "root_title": "Dear Mark. I am writing this to inform you that I shall not comply with your requirement to remove this picture.",
+    "title": "Dear Mark. I am writing this to inform you that I shall not comply with your requirement to remove this picture.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@val-a/dear-mark-i-am-writing-this-to-inform-you-that-i-shall-not-comply-with-your-requirement-to-remove-this-picture"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1700",
+        "reputation": 13823888326286,
+        "rshares": 2596225299320,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3097790600,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3760583473,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697086423,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6115157538047,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53831554412,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660189571,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213623916,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2006740845230,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 79076376247,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 15405606665,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622507341,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 903900865326,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 966828196,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 411277150263,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 294379086507,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 34985094686,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288076091,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14127289494,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 839441156,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 82496308215,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4500464238667,
+        "rshares": 25975393213,
+        "voter": "blackjincrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 236718643421,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1842337468,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 19679147025,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 12079683339,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 590065836619,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787404766,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7451914321,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 244193243751,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 14603958905,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40287404686,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2663003206978,
+        "rshares": 10738934951,
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10545091507,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2020624703659,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 105369851838,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 207590047173,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 500195019030,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 48469146637,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 557026163,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2108282088,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1457950444352,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "3700",
+        "reputation": 598181152117,
+        "rshares": 76084362284,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 92401710310,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6591597330,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1901149350,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 1324938374,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 956637447308,
+        "rshares": 1862753166,
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3587533664,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 188239143185,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52093500846,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4237212015,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 41597869493,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 117152284266,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5825119560,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6137063530,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 422975045,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 466928201309,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1926175201,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 55078181896,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 140754777765,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793209170784,
+        "rshares": 1618767968,
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1096870387,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 836507931,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 5232796338,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 486055151,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4403326971786,
+        "rshares": 19120015185,
+        "voter": "cryptobarry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4413329976,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 786431662143,
+        "rshares": 3546316992,
+        "voter": "jvper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 13671594233,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 10147166470,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3655676496603,
+        "rshares": 9667892270,
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 235543115,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10168519193,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2210167101,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 2931200535,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 699063050,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 40253682612,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6628055919,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 71100605693,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2368091479,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 8243851217,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 30950356865,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 13761168642,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7740774800016,
+        "rshares": 26560909561,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 68491878116,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 929113870632,
+        "rshares": 156154164,
+        "voter": "valenttina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078296488269,
+        "rshares": 7146187677,
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 10651053577,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 452064608,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 411247289,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 23441529121,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 1304783473,
+        "voter": "ace108"
+      },
+      {
+        "percent": "3600",
+        "reputation": 17698439393799,
+        "rshares": 10157957204,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 29902474986,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5821731189,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 9299251828,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 112644541,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5054170210,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25927425773,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 30549845433,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 5220399529,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 1347913567,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 714300968,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5765407212,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 2007103472,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 14055532695,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "1900",
+        "reputation": 10771708337101,
+        "rshares": 216054529851,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2730766591183,
+        "rshares": 1019068038,
+        "voter": "handmade"
+      },
+      {
+        "percent": "2800",
+        "reputation": 18027204457681,
+        "rshares": 10004215062,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 5776723480371,
+        "rshares": 95506108335,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 206355094166,
+        "rshares": 3590805824,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 18377003276,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 1499733461,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 5773490194,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150617632004,
+        "rshares": 2830076827,
+        "voter": "tommycoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 636463375,
+        "voter": "romancs"
+      },
+      {
+        "percent": "1900",
+        "reputation": 3016325652890,
+        "rshares": 28004872672,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 366041435,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 130305092,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2464511443415,
+        "rshares": 1872155844,
+        "voter": "alitas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 111083493,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "3300",
+        "reputation": 1851205309677,
+        "rshares": 1203603415,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 621878548,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 954937043358,
+        "rshares": 6640645622,
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10934414249,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 10300574691,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 28675814875,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "3800",
+        "reputation": 4195733833721,
+        "rshares": 3300942483,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5210280082,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2751128831351,
+        "rshares": 5588333756,
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1943068087,
+        "rshares": 60368611,
+        "voter": "lennon15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1611921747,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 730408370151,
+        "rshares": 220497628,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 5408158479,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7059588652,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 9787724736,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 69848769518,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20106804198,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 4989336305,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 290489475,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 10018253562,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4146710249,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1897374139,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12403195264,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 13336237230,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24537256126,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38413210548,
+        "rshares": 67890337,
+        "voter": "nailsbykara01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2918379629,
+        "rshares": 1729317973,
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 420580334986,
+        "rshares": 75387763,
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 117822170,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 578578273,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 875994720,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186924852752,
+        "rshares": 69382211,
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 4799836023,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 14145117683,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225178513133,
+        "rshares": 57706367,
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12066449411,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 18868871215,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1299872756,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 632649253,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 421813426,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 15432445921,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 193616327346,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2253580090,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708267266,
+        "rshares": 851123456,
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25287092822,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 176536848,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4586847136,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 91627009,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 357194723,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5471554000,
+        "rshares": 53783795,
+        "voter": "jod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 55496395,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2341581405,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2339901466,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 50066904,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 80106845,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 1008239952,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 52225804,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 309265057,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288960679,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 155759348,
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73687899905,
+        "rshares": 55168341,
+        "voter": "alyssasanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 374811727,
+        "rshares": 50467991,
+        "voter": "cupang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 153506082,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80388747576,
+        "rshares": 506553224,
+        "voter": "judithgpordon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2093855721226,
+        "rshares": 50922340,
+        "voter": "benberger"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>3 Fantastic Months on Steemit</h1>\n<p><img src=\"https://i.imgsafe.org/45bfed3c9b.jpg\" width=\"811\" height=\"591\"/></p>\n<p>I joined Steemit nearly 3 months ago on the 4th of June 2016. &nbsp;</p>\n<p>I had a brief break after my first \"introduceyourself\" post due to dealing with the aftermath of the DAO hack which I was heavily involved in to my (now) regret.</p>\n<p>I returned a few weeks later to the shock that people actually liked my first post and that it had earned an amazing $600! &nbsp;To say it was a surprise is an understatement. &nbsp;I didn't think anyone would look at it or even appreciate it.</p>\n<p>Since then I have been steadily posting and though I have never reached the same level of earnings as my first post I really enjoy using Steemit.</p>\n<p>I have been gradually powering up through posting rewards and (mainly) through buying Steem and SBD on exchanges. &nbsp;</p>\n<p>I really believe in the platform potential of Steemit and the proof is in my wallet.</p>\n<h3>Over the last few weeks I've gone from just over 1000SP to just over 4000SP - which was one of my major milestone targets! &nbsp;</h3>\n<p>Now I have a new goal to try to double it to 8000SP. &nbsp;So I will continue to keep buying Steem/SBD on the exchanges and powering up gradually over time to reach my new goal.</p>\n<h1><br></h1>\n<h1>My Philosophy - He(or she) Who Dares Wins</h1>\n<p><img src=\"https://i.imgsafe.org/47eb94f996.jpg\" width=\"850\" height=\"564\"/></p>\n<p><em>Whilst others have been expressing fear and doubt over the falling Steem price - I see it as an opportunity to increase my Steem Power and influence in the community.</em></p>\n<p>As I have said before there are no guarantees in cryptocurrency. &nbsp;Investing in cryptocurrency is definitely risky and one should never put all one's eggs in a single cryptocurrency basket. &nbsp;Steemit and Steem have their problems and issues but they are both in their infancy.</p>\n<p>I personally believe the risk of failure in this case is outweighed by the massive potential if Steemit succeeds and I've been backing my opinion with my own money.</p>\n<h3>There is no reward without risk.</h3>\n<p><br></p>\n<p><br></p>\n<h1>Community is Key</h1>\n<p><img src=\"https://i.imgsafe.org/48086f3c2f.jpg\" width=\"848\" height=\"565\"/></p>\n<p>Throughout my experiences on Steemit the most rewarding ones have been in my interaction with other members of the community. &nbsp;</p>\n<p>I get a lot of pleasure from commenting on other people's posts and curating content. &nbsp;</p>\n<p>I think going forward the community is Steemit's greatest asset. &nbsp;I feel I have made many great friends on here and have learned a great deal from the other posters.</p>\n<p>There are too many great posters and community members to really list in full but I would like to give a special mention to @stellabelle and @tuck-fheman for posting great material and being very supportive to me here. &nbsp;@craig-grant also did a lot to help build the community in the first few weeks by creating the \"craigrant\" tag.</p>\n<p>There are many others I could list but I am sure to miss someone out - so I will leave it at that. &nbsp;</p>\n<p>Thank you all for making this such a fantastic community.</p>\n<p><br></p>\n<h1>My Forthcoming (Reluctant) Break from Steemit</h1>\n<p><img src=\"https://i.imgsafe.org/481e88b0b6.jpg\" width=\"848\" height=\"565\"/></p>\n<p>Unfortunately due to having surgery on my left eye (on 1st September - this Thursday) I will likely be unable to post, comment and curate for several days in the first week of September. &nbsp;I would just like to apologise in advance for the break. &nbsp;</p>\n<p>Don't worry I will continue posting over the next few days (up to Thursday) and will be back to posting normally after I have recovered.</p>\n<p>It will probably be tough being away though!</p>\n<p><br></p>\n<h1>A Selection of Photos from My Early Posts</h1>\n<p>I thought I'd post a few photos from those early posts as many of my current followers were probably not even on Steemit at the time and didn't get to see them. &nbsp;I have linked to the original posts so you can see the bigger versions if you want to.</p>\n<p><center><img src=\"https://i.imgsafe.org/487e18fc55.jpg\" width=\"524\" height=\"350\"/></p></center>\n<p>This is \"Venus\" from my <a href=\"https://steemit.com/photo/@thecryptofiend/sometimes-the-best-way-to-get-to-know-someone-is-through-what-they-create\">introductory post</a>. &nbsp;It was one of the finalists in this year's <a href=\"http://www.digitalphotopro.com/photo-contests/the-face-2015/finalists\">\"The Face\" International Photography Competition</a>. Model is Rachelle Summers.</p>\n<p><img src=\"https://i.imgsafe.org/487e1d3949.jpeg\" width=\"350\" height=\"525\"/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"https://i.imgsafe.org/48875807ad.jpeg\" width=\"350\" height=\"525\"/></p>\n<p>This is \"Daydream\" from my <a href=\"https://steemit.com/art/@thecryptofiend/daydream-another-photo-post\">2nd post</a> (w. Rachelle Summers) and \"Oh the Horror!\" from <a href=\"https://steemit.com/photography/@thecryptofiend/oh-the-horror-the-nostalgia-of-1980s-horror-movies-and-my-homage-to-them\">a post </a>a few days later (w. Axel Von Rosencroft).</p>\n<p><br></p>\n<h1>Conclusion and Your Own Milestones</h1>\n<p><img src=\"https://i.imgsafe.org/483b026c25.jpg\" width=\"860\" height=\"557\"/></p>\n<p>It has been a great 3 months and hopefully Steemit will continue to get even better.</p>\n<p>So enough about me and my experiences so far. &nbsp;</p>\n<p>Please feel free to share your experiences and milestones in the comments below or in your own post. &nbsp;</p>\n<p>Let's continue to make Steemit a great place:)</p>\n<p><br></p>\n<p><br></p>\n<p><em>You can see more of my posts and photography work by following me @thecryptofiend</em></p>\n<p><em>(Note images not taken by me were from Istockphoto, Verification for me here: </em><a href=\"http://www.aapicture.com/about-me\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n</html>",
+    "body_length": 5992,
+    "cashout_time": "2016-09-05T19:41:39",
+    "category": "steemit",
+    "children": 104,
+    "created": "2016-08-29T19:41:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"life\",\"money\",\"cryptocurrency\"],\"users\":[\"stellabelle\",\"tuck-fheman\",\"craig-grant\",\"thecryptofiend\"],\"image\":[\"https://i.imgsafe.org/45bfed3c9b.jpg\",\"https://i.imgsafe.org/47eb94f996.jpg\",\"https://i.imgsafe.org/48086f3c2f.jpg\",\"https://i.imgsafe.org/481e88b0b6.jpg\",\"https://i.imgsafe.org/487e18fc55.jpg\",\"https://i.imgsafe.org/487e1d3949.jpeg\",\"https://i.imgsafe.org/48875807ad.jpeg\",\"https://i.imgsafe.org/483b026c25.jpg\"],\"links\":[\"https://steemit.com/photo/@thecryptofiend/sometimes-the-best-way-to-get-to-know-someone-is-through-what-they-create\",\"http://www.digitalphotopro.com/photo-contests/the-face-2015/finalists\",\"https://steemit.com/art/@thecryptofiend/daydream-another-photo-post\",\"https://steemit.com/photography/@thecryptofiend/oh-the-horror-the-nostalgia-of-1980s-horror-movies-and-my-homage-to-them\",\"http://www.aapicture.com/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T19:41:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 20946122760977,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "51.981 HBD",
+    "percent_hbd": 10000,
+    "permlink": "after-3-amazing-months-on-steemit-i-ve-finally-reached-my-4000-sp-target",
+    "post_id": 1045643,
+    "promoted": "75.000 HBD",
+    "replies": [],
+    "root_title": "After 3 Amazing Months on Steemit I've Finally Reached My 4000 SP target",
+    "title": "After 3 Amazing Months on Steemit I've Finally Reached My 4000 SP target",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@thecryptofiend/after-3-amazing-months-on-steemit-i-ve-finally-reached-my-4000-sp-target"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 5693654803574,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2482446812,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3013918996,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 552719781,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43716931512,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1330246238,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 171021933,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 693780599618,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 499896176,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 922756808845,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 775799277,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230662564,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11800403945,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 401158116398,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 80531803932,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "8600",
+        "reputation": 4931834878069,
+        "rshares": 16616708694,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 487241289,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5490844166,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "8600",
+        "reputation": 5414208804644,
+        "rshares": 22519906749,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 14733368028,
+        "voter": "richman"
+      },
+      {
+        "percent": "3000",
+        "reputation": 15755437221598,
+        "rshares": 3389092891,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 490418874,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425753319,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 79064374030,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 48087436852,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 380406839,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 50900746650,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2994428251,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 94229031182,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 3016404662,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 956637447308,
+        "rshares": 1901377462,
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3658130970,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 243464927250,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 42957562242,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 3155578623,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 414194892812,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573516438,
+        "rshares": 2707813985,
+        "voter": "wintrop"
+      },
+      {
+        "percent": "8600",
+        "reputation": 19111656178138,
+        "rshares": 52313345975,
+        "voter": "furion"
+      },
+      {
+        "percent": "8600",
+        "reputation": 3891722,
+        "rshares": 402939077,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "8600",
+        "reputation": 9142611234,
+        "rshares": 452032357,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "8600",
+        "reputation": 3871042,
+        "rshares": 414391534,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 151746469577,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10474968800,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1526055392,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 136135148,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55440603400,
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11466738878,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "500",
+        "reputation": 3979714886621,
+        "rshares": 597215961,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 230802431,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 1568201378,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 9616420958,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692822335938,
+        "rshares": 234932677,
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 71118468142,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64025280742,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14544132145555,
+        "rshares": 10805882232,
+        "voter": "pcste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 4245035026,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 13833357665,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3173709669,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 37872555985,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 88371145550,
+        "voter": "rea"
+      },
+      {
+        "percent": "8600",
+        "reputation": 10519849768972,
+        "rshares": 13870101426,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 32452676226,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 764587130,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 11213216542,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 2912684246,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 23709263345,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "5100",
+        "reputation": 1416246303584,
+        "rshares": 7397086673,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 7836492516,
+        "voter": "logic"
+      },
+      {
+        "percent": "8600",
+        "reputation": 147425730,
+        "rshares": 457213628,
+        "voter": "fnait"
+      },
+      {
+        "percent": "8600",
+        "reputation": 3720753029,
+        "rshares": 417170364,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5554163551,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 7658802979,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 3150384482,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1307922822,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 91099389,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 855277905,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 312126448,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151272123831,
+        "rshares": 214569242,
+        "voter": "xcepta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 12262145072,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497045294796,
+        "rshares": 210424160,
+        "voter": "lordemau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 20776446447,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 73635017,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 5284635480,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 37990828184,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "1200",
+        "reputation": 13325577893779,
+        "rshares": 2400732723,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20128820963,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 7688258688,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 58180110,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2441922074,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4156798201,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 60228370,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 420580334986,
+        "rshares": 77993323,
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 2204914049,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5409679767352,
+        "rshares": 4540164825,
+        "voter": "englishtchrivy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 4783829606,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 75779499,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225178513133,
+        "rshares": 136197250,
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2381484794,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1329813882691,
+        "rshares": 450438581,
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55683468,
+        "voter": "lindasteel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1419563979,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1697265193,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1511210353594,
+        "rshares": 1231870711,
+        "voter": "tsudohnimh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 75564175954,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351488360313,
+        "rshares": 183539658,
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "5100",
+        "reputation": 8189791438741,
+        "rshares": 7375208923,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "3300",
+        "reputation": 563927807986,
+        "rshares": 558411810,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 893293727378,
+        "rshares": 678822499,
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4069545029880,
+        "rshares": 2631047372,
+        "voter": "funnyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 56746345,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 323425237,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 308198215903,
+        "rshares": 157770453,
+        "voter": "james1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151344494,
+        "voter": "oliver.smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 141873513,
+        "voter": "jack.johnson"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>In the city of Newcastle upon Tyne in the UK there is an architectural oddity in the form of a large statue perched on one of the walls of the civic centre building. &nbsp;I have yet to find out what it represents but have heard people referring to it as \"Spiderman\" due to the way the figure is \"sitting\" on the wall. &nbsp;I suspect it probably represents some character from classical (Greco-Roman) mythology.</p>\n<p>These photos show a lot of detail and were taken using my IR converted Canon EOS 450D with EFS 18-200mm lens. &nbsp;In this case the IR shows certain details that would otherwise not be apparent in regular wavelengths of light.</p>\n<p>It gives it a a very high contrast \"graphic novel\" feel to the images which I feel is fitting. &nbsp;Unfortunately due to the position of the statue relative to the building I was limited in the different views and angles I could get of it.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_013of5941bd.jpg\" width=\"800\" height=\"533\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_012of504160.jpg\" width=\"800\" height=\"1200\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_01b1of1be4f1.jpg\" width=\"800\" height=\"1200\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_014of5f221b.jpg\" width=\"800\" height=\"1200\"/></p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_015of500c4b.jpg\" width=\"800\" height=\"1200\"/></p>\n<p>On some of the closer images you can see that the statue has no face. &nbsp;There is hair but the front part of the head &nbsp;is missing. &nbsp;Perhaps this is a clue to the identity?</p>\n<p>If you have any ideas please let me know. &nbsp;I hope you like the photos.</p>\n<p>If you like my work please follow me and check out my previous photography work and tutorials &nbsp;@thecryptofiend - hope you enjoy.</p>\n<p><br></p>\n<h1>Technical Information:</h1>\n<p>Canon EOS 450D with IR conversion</p>\n<p>Canon EF-S 18-200mm lens</p>\n<p>Adobe Lightroom CC and Nik Silver Effex Pro for processing.</p>\n<p>(Verification for me here: <a href=\"http://www.aapicture.com/about-me\">http://www.aapicture.com/about-me</a>)</p>\n</html>",
+    "body_length": 2303,
+    "cashout_time": "2016-09-13T20:51:03",
+    "category": "photography",
+    "children": 36,
+    "created": "2016-09-06T20:51:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"art\",\"steemit\",\"steemsquad\",\"life\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_013of5941bd.jpg\",\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_012of504160.jpg\",\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_01b1of1be4f1.jpg\",\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_014of5f221b.jpg\",\"https://www.steemimg.com/images/2016/09/06/Arif_Akhtar_Statue_CC_015of500c4b.jpg\"],\"links\":[\"http://www.aapicture.com/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T20:51:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9842974759914,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "11.087 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-mysterious-statue-ir-photography",
+    "post_id": 1151229,
+    "promoted": "70.000 HBD",
+    "replies": [],
+    "root_title": "The Mysterious Statue : IR Photography",
+    "title": "The Mysterious Statue : IR Photography",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/the-mysterious-statue-ir-photography"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 297041068093,
+        "voter": "chitty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4931834878069,
+        "rshares": 11588539441,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12946410197,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 198782719642,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8552168479,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 77645335392,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 38212240821,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "1000",
+        "reputation": 10519849768972,
+        "rshares": 2039977412,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 28666886006,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 4451502359,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 4025001582,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 6587080784,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 984913874,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145773793,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 15561961452,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083886659611,
+        "rshares": 238560086,
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 141596712,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 164607675,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1579201846721,
+        "rshares": 50659116,
+        "voter": "pakganern"
+      }
+    ],
+    "author": "mikehere",
+    "author_reputation": 7258302306624,
+    "beneficiaries": [],
+    "body": "As one that has gone through many hurricanes in the Caribbean and actually has lived through a [category 3](https://en.wikipedia.org/wiki/Hurricane_Marilyn) going [right over us](https://www.youtube.com/watch?v=jNe2tTY-mZY).  I have some resources and tips I would like to share.\n\n<a href=\"https://earth.nullschool.net/#current/wind/surface/level/orthographic=-98.70,26.75,671\"><img src=\"http://mikepotterhere.com/wp-content/uploads/2016/08/hurricanes2.png\"></a>\n\n<h1>Weather Forecasting and Information</h1>\n\nForemost is having the tools so you can see if there is anything coming or about to come close.\n\n* [Best earth weather modeling](https://earth.nullschool.net/#current/wind/surface/level/orthographic=-98.70,26.75,671) - Absolutely incredible - Click on the word earth for a menu.\n   - [Surface Winds](https://earth.nullschool.net/#current/wind/surface/level/orthographic=-96.99,28.40,671)\n   - [Currents](https://earth.nullschool.net/#current/ocean/surface/currents/orthographic=-87.06,26.08,671)\n   - [Waves](https://earth.nullschool.net/#current/ocean/primary/waves/overlay=significant_wave_height/orthographic=-96.99,28.40,671)\n    - [Temperature](https://earth.nullschool.net/#current/wind/surface/level/overlay=temp/orthographic=-96.99,28.40,671)\n* [National Hurricane Center](http://www.nhc.noaa.gov/)\n* [AccuWeather](http://www.accuweather.com/en/hurricane)\n* [Intellicast](http://www.intellicast.com/Storm/Hurricane/Track.aspx)\n\n<h1>Resources</h1>\n\n* [Hurricane prepare, plan, stay informed - Ready.gov](https://www.ready.gov/hurricanes)\n* [National Hurricane Center - Hurricane Preparedness - Be Ready](http://www.nhc.noaa.gov/prepare/ready.php)\n\n<h1>Personal Tips</h1>\n\nThis is not exhaustive and what happens in a hurricane is unpredictable.  Just like with a tornado one house could be just fine while another is completely destroyed.  Same if you have a boat.  You could find what you think is the safest place and the waves and winds from a certain direction could still destroy it.\n\n* If you're living on a boat and can't get out of the way:\n   - Ask the locals the best place.  If there are other boat residents that have experience then ask them.  On St. John there were mangroves people would go into and tie on.  We didn't have time to get to the mangroves so we actually just anchored off our [Honeymoon beach](https://www.google.com/maps/place/Honeymoon+Beach/@18.3410287,-64.7928527,1049m/data=!3m1!1e3!4m5!3m4!1s0x8c0512650a0b6081:0x519a3aaf84902550!8m2!3d18.3400308!4d-64.7914364) with 4 anchors with duct tape to help prevent chaffing.  While boats in the harbors and other places were damaged ours just had just the wind vane blown off.\n  - Don't stay on board.  That was a crazy night that night and we took our marine radio with us and stayed in a cement building that night.  We heard constant calls for help from people on their boats saying that it broke lose and the Coast guard saying there was nothing they could do and to put on their life vests.  So scary.\n* If you're in a home:\n   - Board things up even if it is cat 1 because conditions can change fast.\n   - Make sure the roof is secure.\n   - If you're uncertain about your home then leave before the storm is close.\n   - If you happen to stay and as the storm is going over you can take some pressure out of the house by opening the opposite window.  The wind might change directions so be ready.\n   - If it gets really bad then go into the bathroom or another part of the house like a basement as long as there is no chance of flooding and protect yourself.\n* For everyone:\n   - Be sure to get money out.  With electricity out there are no services like ATM's or people taking credit cards or checks but stores might still be able to open for those with cash only.\n   - Of course lamps, battery operated radio and batteries.\n   - Food supplies, fresh water, propane tank with camp stovetop.  (While living in Puerto Rico we didn't have power for 2 months after [Hurricane George](https://en.wikipedia.org/wiki/Hurricane_Georges) which was a category 4).\n\nIf anyone else has any personal experience or you have added resources please leave a comment.",
+    "body_length": 4150,
+    "cashout_time": "2016-09-08T02:28:54",
+    "category": "life",
+    "children": 5,
+    "created": "2016-09-01T02:28:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"weather\",\"sailing\",\"hurricane\",\"travel\"],\"image\":[\"http://mikepotterhere.com/wp-content/uploads/2016/08/hurricanes2.png\"],\"links\":[\"https://en.wikipedia.org/wiki/Hurricane_Marilyn\",\"https://www.youtube.com/watch?v=jNe2tTY-mZY\",\"https://earth.nullschool.net/#current/wind/surface/level/orthographic=-98.70,26.75,671\",\"https://earth.nullschool.net/#current/wind/surface/level/orthographic=-96.99,28.40,671\",\"https://earth.nullschool.net/#current/ocean/surface/currents/orthographic=-87.06,26.08,671\",\"https://earth.nullschool.net/#current/ocean/primary/waves/overlay=significant_wave_height/orthographic=-96.99,28.40,671\",\"https://earth.nullschool.net/#current/wind/surface/level/overlay=temp/orthographic=-96.99,28.40,671\",\"http://www.nhc.noaa.gov/\",\"http://www.accuweather.com/en/hurricane\",\"http://www.intellicast.com/Storm/Hurricane/Track.aspx\",\"https://www.ready.gov/hurricanes\",\"http://www.nhc.noaa.gov/prepare/ready.php\",\"https://www.google.com/maps/place/Honeymoon+Beach/@18.3410287,-64.7928527,1049m/data=!3m1!1e3!4m5!3m4!1s0x8c0512650a0b6081:0x519a3aaf84902550!8m2!3d18.3400308!4d-64.7914364\",\"https://en.wikipedia.org/wiki/Hurricane_Georges\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T20:05:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 708827002916,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "0.325 HBD",
+    "percent_hbd": 10000,
+    "permlink": "psa-hurricane-weather-sites-and-tools-best-resources-and-tips",
+    "post_id": 1079422,
+    "promoted": "61.000 HBD",
+    "replies": [],
+    "root_title": "Hurricane Weather Sites and Tools - Best Resources & Tips",
+    "title": "Hurricane Weather Sites and Tools - Best Resources & Tips",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@mikehere/psa-hurricane-weather-sites-and-tools-best-resources-and-tips"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 633086819262,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 404679283930,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 169841744248,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 7033751692061,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5875183084341,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2103557751171,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5662110027040,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103025387,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1689648756721,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767352996,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690899726,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54637174184,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662793601,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213777416,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 200612864643,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4014919200371,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 61592851076,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 458015222778,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2861850289935,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1496731087,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 897788473738,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 118160004239,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 63015601906,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624870220,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969744364,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288328206,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14604131391,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "5000",
+        "reputation": 14073457536993,
+        "rshares": 71561501024,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78952260790,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 11524172076,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 552252210969,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 19636082604,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 28968508635,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 41768621861,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2062724006,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 25829159688,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "2300",
+        "reputation": 15755437221598,
+        "rshares": 3389028539,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 148362085964,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7288007971,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 534991050,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 67844161338,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425733126,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598588545490,
+        "rshares": 15588807020,
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 42080331973,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 941559463750,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 96338840182,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24888277048,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 4451341567,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3838337146630,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 53176603192,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2025139208,
+        "rshares": 823427901,
+        "voter": "marc-e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 261304389463,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 3441451815,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 34628287751,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5708942608,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 111654368045,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 45184784006,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2439419704,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 536461338,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 39857257953,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 50781480951,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 238284822415,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4671817628,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 92848831566,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 17199527987,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 3286871738,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 1107967509,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 60745552796,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 474020730,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 531777531,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 487494209,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1525982196,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97646232305,
+        "rshares": 2915999793,
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4897981024,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 16130329347,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3758210109,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 24926432348,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 11346587932,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 38296391484,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 12640454898,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 12628860553,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 3281897331,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 15107785138,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 98997356,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 12833880509,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 298428280403,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64250708271,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1107579084929,
+        "rshares": 2691561605,
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 4244719515,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 2330848941,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 97802609,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182751859318,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 15908296316,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4831857977,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96522929177,
+        "rshares": 130642761,
+        "voter": "bigb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 748983311,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15574904567,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 638993066,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1750139335,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2291189222,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 537873144,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 490763421,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13518235137,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1458929155,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 7324558839,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5608453750,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 125165611580,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7870635679,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 850939740,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 24961864826,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24937582428,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24947055712,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 996049,
+        "rshares": 63747178,
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 14586896134,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 239385733055,
+        "rshares": 174815500,
+        "voter": "amanarchymartin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4344894980,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24942736238,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24941237771,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24938781846,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24935966669,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24932342801,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24931131173,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 100860038,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 93238695352,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12780436995,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1232882820,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 468157500,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439786891,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62907097,
+        "voter": "joeschurr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1986846966,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 73061236,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 12022940635,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 62176964,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1720770559,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52467942,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53624183,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 770762207,
+        "rshares": 61533396,
+        "voter": "intothewild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 19605922079,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 56598010,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56591855,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 572779978,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 640484648802,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1371874570,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18105338219923,
+        "rshares": 18633638662,
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2460367072,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642604166438,
+        "rshares": 428345351,
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4276803918,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8469619200,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1768041266,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24925297237,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2925431818,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 23085206501,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415861172879,
+        "rshares": 532839920,
+        "voter": "jelloducky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310309073633,
+        "rshares": 1908971109,
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 71216801175,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1772183617,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 44387786980,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 43624669451,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58485271885,
+        "rshares": 72966189,
+        "voter": "anarchylifter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 834505,
+        "rshares": 58977056,
+        "voter": "jacobberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 8001441651,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91726555,
+        "rshares": 58931893,
+        "voter": "anarchojoe1986"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 18578593063,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2845719983,
+        "rshares": 58933081,
+        "voter": "layl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2858869091,
+        "rshares": 59263960,
+        "voter": "stevenlytle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1429311683,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6522837445845,
+        "rshares": 3113414400,
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 250942364773,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29872020696159,
+        "rshares": 109672624128,
+        "voter": "larkenrose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58509581,
+        "voter": "volunterri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 784318201,
+        "rshares": 58484155,
+        "voter": "shurik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1037909150,
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4392040691,
+        "rshares": 57971616,
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58343541,
+        "voter": "jimjr58"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58330329,
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58309524,
+        "voter": "waldencall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28397805329,
+        "rshares": 62040384,
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2322269215556,
+        "rshares": 682489302,
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23294106,
+        "rshares": 57027057,
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2744889063611,
+        "rshares": 4217936436,
+        "voter": "daniel030"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565688,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 132702859863,
+        "rshares": 130575875,
+        "voter": "tom1gorman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1611307490,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57956267,
+        "voter": "anarchophiliac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 152008975,
+        "rshares": 57949890,
+        "voter": "tigerlily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 887484,
+        "rshares": 57917120,
+        "voter": "anarchyroolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 6057644028,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18873434262,
+        "rshares": 59542406,
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201616978,
+        "rshares": 56680590,
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 505136737966,
+        "rshares": 492121597,
+        "voter": "matthewmencel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 75779499,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 629377466,
+        "rshares": 57685838,
+        "voter": "otis147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2433107936,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 24556201833,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6355191,
+        "rshares": 57390301,
+        "voter": "joseywales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 6881062319,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 362203207,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1616398910,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "800",
+        "reputation": 66311335718,
+        "rshares": 10675056395,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6064514,
+        "rshares": 56782516,
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15150286001,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 2032675263,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5529454886,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 5150706093,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 620115088,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1617611765,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 3064424390,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 85546636,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27728252972,
+        "rshares": 54584395,
+        "voter": "klaartje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54251121598,
+        "rshares": 56233744,
+        "voter": "melody24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2605659713,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 1479963704,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1647174,
+        "rshares": 52705614,
+        "voter": "danbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 334006927574,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59386558781,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 353288883728,
+        "rshares": 464013274,
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950372517145,
+        "rshares": 479604473,
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6995999694,
+        "rshares": 54293577,
+        "voter": "ultiphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4750752870,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53591687,
+        "voter": "petrius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1993716356,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1420402273,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 8712372395,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 826888501848,
+        "rshares": 1491668193,
+        "voter": "dakini-dion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 659608632671,
+        "rshares": 1060158413,
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4689084926,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50235850,
+        "voter": "billkappa442"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46150823,
+        "rshares": 51215236,
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325149909341,
+        "rshares": 412042416,
+        "voter": "emsenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50538694,
+        "voter": "fenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2918150892,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8423377122,
+        "rshares": 158885864,
+        "voter": "cebymaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162925257,
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162904624,
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330431039244,
+        "rshares": 161828383,
+        "voter": "kjsxj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161814063,
+        "voter": "jimmyhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158018960,
+        "voter": "bethesda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157931180,
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160986765,
+        "voter": "getro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157816798,
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12818139,
+        "rshares": 160854446,
+        "voter": "michal-franc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 110355360,
+        "voter": "oliver.smith"
+      }
+    ],
+    "author": "dragonanarchist",
+    "author_reputation": 17140629596244,
+    "beneficiaries": [],
+    "body": "<center>https://s4.postimg.org/ool3c9ust/868cba34acee867680df4de12db011cc.jpg</center>\n\n## <center>The Usual Approaches That Work</center>\n\nThere are two most common ways for a person who values freedom to articulate to others the philosophy of true liberty.  \n\n### <center>#1 What Is NOT Wanted</center> \n\n<center>Anarchism: *without* rulers.  A freedom advocate simply wants to be left alone to live his life in peace, without someone else trying to rule his actions with deadly force.</center>\n\n### <center>#2 What IS Wanted</center>\n\n<center>Voluntaryism: the belief that all human interactions should be based on mutual consent, entered into on a *voluntary basis.*</center>\n\n---\n\n## <center>Do What Works For You</center>\n\nHaving been among the community of amazing people who are advocates of self-ownership and true liberty for some time now, I have been exposed to all or most of the varied *conversational* approaches/techniques that are taken with people who are brand new to the discussion. \n\nThere are those that focus on the word **Voluntaryism (aka \"What do we WANT? Voluntary interaction!\")**. \nThere are those that focus on the word **Anarchy (aka \"What DON'T we want? A ruling class!\")**. \n\nThere are even those that try to ***avoid either term*** in conversation, and just stick to a slow and disarming **Socratic method**, taking the approach of curiosity towards the statist in conversation, aiming to understand why they believe what they believe (knowing that if the statist tries to describe it or defend it, they may see inconsistencies in themselves). \n\nAll of these ways of broaching the topic are truly valuable, because *each approach wins a certain kind of mind* that the other approaches might not have won.  \n\n---\n\n<center>https://s4.postimg.org/a97rr4759/static1_squarespace.jpg</center>\n\n## <center>The Consistent Human</center>\n\nI will mention another thought approach to the philosophy of liberty that I recently found myself considering, **though I'm sure it isn't *new*.**  It is too easy *not* to have been considered, but since I don't often see many people directing conversation in this manner, I will go ahead and throw up the idea for those who may make use of it.  \n\n{Note: I think some major liberty-minded philosophers have already put it rather similarly, a few Lysander Spooner quotes come to mind, but I can't remember more at the moment..}\n\nLet's say you're in a conversation that inevitably leads to someone asking you \"which way\" you lean, politically.  Some anarchists/voluntaryists *hate* when a conversation reaches this moment, some are *filled with glee!*\n\nHowever it's said, however the conversation gets there, you've now plunged into the realm of **politics** (every freedom lover *hates* politics), so you've got an opportunity to now to say something that will get their gears moving.\n\n<center>https://s4.postimg.org/713ae2kvh/images_1.jpg</center>\n\n### <center>Try this perhaps...</center> \n\nAvoiding the usual political circus jargon, and avoiding the false dichotomy of left vs. right, say something like: \n\n##### <center>\"I wouldn't align myself with anything political, but that's because I consider myself to be ***a consistent human being***.\"</center>\n\nBrows furrow, and you're likely to hear a \"What do you mean?\" sort of response.  \n\n##### <center>\"I believe it's wrong for me to steal, threaten people with deadly force, murder, or otherwise bully people who have a different life style than me.  And so I believe it's wrong for *any* human to do that: titles, election rituals, badges and costumes don't grant superhuman rights.  I apply the same rules of what I believe are right and wrong *to everyone.* I'm consistent.\"</center>\n\nOr, put another way, you could say: \n\n##### <center>\"If it's wrong for me to go put a gun to my neighbor's head and tell him to give me all his money or else, then it is wrong for me to *vote for someone else* to do that for me.  I recognize that no amount of voting or layers of hired government employees working to enforce the will of some humans on others, can ever make theft into something moral or good. I'm *consistent*.\"</center> \n\nAnd still another: \n\n##### <center>\"I don't want *my free will* violated, I will defend myself if someone tries to attack me or use the threat of force to steal from me, and so I am a *consistent human* by recognizing that same desire to live free exists in all individuals. It's 'doing unto others as I would have done to me', on the most basic level.\"</center>\n\n###### <center>Left, Right, Anarchy, Libertarian, Moderate... all the usual feels-inducing trigger words were side-stepped.</center>\n\n# <center>~*~</center>\n\n---\n\n<center>https://s4.postimg.org/9h53rx2y5/debate.jpg</center>\n\n# <center>Some Ideas Work Better Than Others, It Varies Person To Person</center> \n\nI encourage no one to get too caught up in the \"right way\" to go about spreading the message of true freedom-- so long as the principles are intact, and uncompromising.  Once you grasp the logic, there's many approaches to the discussion style, and what will work to wake up some will not work on others.  I'm not here to show you any one correct way, I would say to be flexible in your approach and style, and adjust when it seems there's a better approach to be taken.  \n\n### <center>Whether you're socratic, pedantic, abrasive, blunt, charismatic, diplomatic and gentle, or otherwise... some of that is going to work to reach people.  Part of your success in getting people to think is tied to how well you grasp human psychology.  A clue: It starts with \"know thyself\"..</center>\n\n## <center>~*~</center>\n\n<center>**Take from this article what you will, use what you can, discard the rest**.</center>",
+    "body_length": 5726,
+    "cashout_time": "2016-09-13T18:01:36",
+    "category": "anarchism",
+    "children": 16,
+    "created": "2016-09-06T18:01:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"anarchism\",\"politics\",\"psychology\",\"anarchy\",\"philosophy\"],\"image\":[\"https://s4.postimg.org/ool3c9ust/868cba34acee867680df4de12db011cc.jpg\",\"https://s4.postimg.org/a97rr4759/static1_squarespace.jpg\",\"https://s4.postimg.org/713ae2kvh/images_1.jpg\",\"https://s4.postimg.org/9h53rx2y5/debate.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T23:38:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 42502310405685,
+    "parent_author": "",
+    "parent_permlink": "anarchism",
+    "pending_payout_value": "165.619 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-consistent-human",
+    "post_id": 1149040,
+    "promoted": "60.226 HBD",
+    "replies": [],
+    "root_title": "The Consistent Human",
+    "title": "The Consistent Human",
+    "total_payout_value": "0.000 HBD",
+    "url": "/anarchism/@dragonanarchist/the-consistent-human"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 5133129010650,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1031882916236,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 39106143461,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 80546321239,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "300",
+        "reputation": 4931834878069,
+        "rshares": 1010687333,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 447134537,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 886894315803,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5013415689,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 24334244672,
+        "voter": "james-show"
+      },
+      {
+        "percent": "300",
+        "reputation": 5414208804644,
+        "rshares": 1329518504,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 11744107970,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 42646084026,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 446314863,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426345715,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 86505600736,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 48131196667,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16316471180830,
+        "rshares": 138228131452,
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 349023596,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 105805199373,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 551808872924,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 102266459252,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "300",
+        "reputation": 598181152117,
+        "rshares": 10737933696,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "5700",
+        "reputation": 36344377648,
+        "rshares": 25048306642,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 2861774262,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3524497863,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 207235087440,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 51028352883,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 53200787105,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 254702299,
+        "voter": "ivp"
+      },
+      {
+        "percent": "9000",
+        "reputation": 18757150528749,
+        "rshares": 128613923108,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 11653999586,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 12246967483,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 824450668,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "300",
+        "reputation": 19111656178138,
+        "rshares": 1693848216,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10475719848,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1211734909,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 17410903984,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2147843650,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 16642046880,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 26778525771,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10851638564,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 11041385098,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 79624786257,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1386339611284,
+        "rshares": 2811366993,
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 10600135570,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 67912511407,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 748586302572,
+        "rshares": 321731489,
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 14081055736,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3517786621,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 33672189304,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 80649600564,
+        "voter": "rea"
+      },
+      {
+        "percent": "300",
+        "reputation": 10519849768972,
+        "rshares": 818880609,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 15978503091,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 41103939733,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 166570104,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "300",
+        "reputation": 17698439393799,
+        "rshares": 863414182,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 24449858053,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 12739729316,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 8339031252,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1681456071,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 7378295271,
+        "voter": "beanz"
+      },
+      {
+        "percent": "6100",
+        "reputation": 4063076365725,
+        "rshares": 1822108820,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 23482202368,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 6840849470,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "300",
+        "reputation": 10771708337101,
+        "rshares": 31661497810,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 20675507089,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "300",
+        "reputation": 18027204457681,
+        "rshares": 1302419977,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "300",
+        "reputation": 5776723480371,
+        "rshares": 12892722681,
+        "voter": "somebody"
+      },
+      {
+        "percent": "300",
+        "reputation": 206355094166,
+        "rshares": 482292129,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "300",
+        "reputation": 97845484474,
+        "rshares": 2848720408,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "300",
+        "reputation": 3016325652890,
+        "rshares": 3549675644,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053978638105,
+        "rshares": 3071824587,
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "300",
+        "reputation": 1851205309677,
+        "rshares": 222851194,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "4600",
+        "reputation": 3740136030964,
+        "rshares": 424857353,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 13140162501,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3996693884,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "300",
+        "reputation": 4195733833721,
+        "rshares": 449065266,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5502390183,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "1400",
+        "reputation": 3814152361740,
+        "rshares": 1451684469,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1453736644694,
+        "rshares": 2503143724,
+        "voter": "eagleboy"
+      },
+      {
+        "percent": "2000",
+        "reputation": 13325577893779,
+        "rshares": 4246677071,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3789939590477,
+        "rshares": 5638092469,
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1005947450655,
+        "rshares": 190823664,
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 735931525,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "3700",
+        "reputation": 11490547563070,
+        "rshares": 8568009585,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3485898605376,
+        "rshares": 2761345091,
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2402641666,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1999636620,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 2939011273,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 27270217180,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225178513133,
+        "rshares": 138921195,
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 2365271575,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2025702455,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 9403875149,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "500",
+        "reputation": 66311335718,
+        "rshares": 6405114173,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30750856007,
+        "rshares": 55893569,
+        "voter": "damascusvg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 10867499123,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 4584980140,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": -929749229,
+        "rshares": 54659026,
+        "voter": "lewd-conduct"
+      },
+      {
+        "percent": "4000",
+        "reputation": 3301652860610,
+        "rshares": 2165334759,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 349139596,
+        "rshares": 53833088,
+        "voter": "viking-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 1542240432,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 83727122442,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 98655344,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 893293727378,
+        "rshares": 861709729,
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 1322523997,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 87226644,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1206003099947,
+        "rshares": 416157082,
+        "voter": "iontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16681034811,
+        "rshares": 3789871092,
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192046357763,
+        "rshares": 339045960,
+        "voter": "julia26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108412302232,
+        "rshares": 165335582,
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205765983667,
+        "rshares": 158344401,
+        "voter": "kolin.evans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9906297,
+        "rshares": 146428143,
+        "voter": "anysound.studio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 136854832,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146022781,
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155127016,
+        "voter": "pac3mak3r"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>The War on Open Science</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/640px-AaronSwartzPIPAbc599.jpg\" width=\"640\" height=\"424\"/></p>\n<p>1</p>\n<p><em><strong>On the 11th of January 2013, </strong></em><a href=\"https://en.wikipedia.org/wiki/Aaron_Swartz\"><em><strong>Aaron Swartz</strong></em></a><em><strong>, a 26 year old internet activist was found dead in his Brooklyn apartment. &nbsp;He had been arrested 2 years earlier and was facing a variety of charges relating to downloading a large number of academic journal articles from an MIT server with the aim of making them available online for free.</strong></em></p>\n<p>Swartz was facing up to 50 years in prison on what seemed to be an extreme over-reaction to the actions of a young man who was trying to further the cause of the open access movement. &nbsp;It seems the stress of the situation and the aggression of the prosecution of this case caused the young man to take his own life.</p>\n<h3>This was all for the idealism of wanting open access to academic information much of which is publicly funded. &nbsp;He wanted a better world where scientific progress would not be hindered by the vested interests of publishing companies and unfortunately he payed for this \"great crime\" with his life.</h3>\n<p>Similar to what Swartz was attempting, Sci-Hub is an online archive in Russia that shares research articles from many journals freely. &nbsp;It currently hosts over 48 million articles and is being sued by publishing giant Elsevier for copyright infringement. &nbsp;Due to it's location it has been sheltered from the kind of legal sanctions it would face if it were located in the west. &nbsp;</p>\n<p>The final outcome of the legal action against them is anyone's guess but it is likely that the full force of the US government will be used to try to stop them, much in the way it was used against Swartz.</p>\n<p><em><strong>Anyone who dares to challenge the vested interests in this case is likely to have war declared against them by nation states who are more concerned about protecting these interests than their own public or indeed the use of their own funds.</strong></em></p>\n<p>In this case it was the US government but most other Western governments would do exactly the same.</p>\n<h3>Copyright infringement is seemingly one of the worst crimes you can commit. &nbsp;The fact that much of this material was created using public money doesn't seem to matter to those that pursue the infringers.</h3>\n<p>In the rest of this article I hope to briefly cover why I feel that this is basically a form of war on Science and scientific progress itself.</p>\n<hr />\n<h1>The Current Situation is a \"Racket\"</h1>\n<h1><img src=\"https://www.steemimg.com/images/2016/09/08/33-1243179569caiVd09e6.jpg\" width=\"800\" height=\"533\"/></h1>\n<p>2</p>\n<h1><em><strong>Three and a half years after Swartz' death we are still in a situation where the vast majority of scientific research is held captive behind pay walls. &nbsp;This is doubly scandalous given that a significant quantity of this research is publicly funded. &nbsp;</strong></em></h1>\n<p>The US alone spent about $158 billion on publicly funded research in 2013. &nbsp;The vast majority of this research was published in journals that require payment to be viewed.</p>\n<h3>Even if one doesn't believe that all research should be freely available why should research that is funded by the public be closed and require payment to be reviewed? &nbsp;</h3>\n<h3>This is equivalent to making the public pay twice for the same research. &nbsp;</h3>\n<h3><em>All the funds from payment go entirely to the journals. &nbsp;</em></h3>\n<p>None of it goes towards the researchers, authors or back to the public to fund further research. &nbsp;</p>\n<p>The journals are effectively being given free material to publish which they then monetise purely for their own gain. &nbsp;</p>\n<p>They hold the copyright to all their published articles despite not being the original authors of them.</p>\n<h3>In what other situation can someone profit from selling and copyrighting a product which is made and tested almost entirely by others including the public itself?</h3>\n<p>It is complete insanity and it must stop.</p>\n<hr />\n<h1>Journals Have Costs But The Costs Are Inflated</h1>\n<p>Nobody is denying that the journals have costs but there are some misconceptions that relate to this. &nbsp;</p>\n<h3>Firstly the actual peer review process is carried out for free by academics (usually affiliated with Universities).&nbsp;</h3>\n<p>The journals themselves are only responsible for the costs of filtering submissions and the actual publication itself. &nbsp;These are known as APCs (Article Processing Charges). &nbsp;&nbsp;</p>\n<h3>When paid journals have been compared in price to open journals the APCs an be as much as 3 times higher. &nbsp;</h3>\n<p>Further a large chunk of these costs comes from the physical publication process something which does not apply to online publication.</p>\n<hr />\n<h1>The Scientific Method Depends on Openness</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/The_Scientific_Method_as_an_Ongoing_Process.svg8b9c6.png\" width=\"728\" height=\"600\"/></p>\n<p>3</p>\n<h3>I won't bore you all by going into the details of the scientific method. &nbsp;The <a href=\"https://en.wikipedia.org/wiki/Scientific_method\">wikipedia article </a>here covers it quite well and the image above (by <a href=\"https://commons.wikimedia.org/wiki/User:ArchonMagnus\">ArchonMagnus</a>) taken from it provides a nice summary of the basics. &nbsp;</h3>\n<p>The \"other components section\" in the second part of the article is important here and I have summarised the headings here as they are pretty self-explanatory:</p>\n<p><em><strong>\"The scientific method also includes other components required even when all the iterations of the steps above have been completed:</strong></em></p>\n<ol>\n  <li><em><strong>Replication</strong></em></li>\n  <li><em><strong>External review</strong></em></li>\n  <li><em><strong>Data recording and sharing\"</strong></em></li>\n</ol>\n<p>All of the above components are necessary for real scientific progress. &nbsp;</p>\n<p>We need replication to show that research findings are not spurious. &nbsp;External review is necessary to look for and exclude sources of error or poor research technique that the authors may have missed. &nbsp;Data recording and sharing is necessary for the same reason so that others can look at the raw data and perform their own analysis, looking for statistical anomalies etc.</p>\n<h3>This is all vital for the sustained and healthy progress of all scientific fields. &nbsp;Information must be open for true scientific progress to occur.</h3>\n<p>This lack of openness also leads to a slowing down of the scientific process. &nbsp;Papers are often delayed for months due to errors and rewrites. &nbsp;Many of these could be more quickly identified if papers are published in preliminary form online as pioneered by ArXiv.</p>\n<h3>The TLDR is that fighting open research is akin to declaring war on the scientific method itself. &nbsp;</h3>\n<h3>The result is a system which is slower, has more flaws and potentially even shuts down certain potential avenues of advancement.</h3>\n<h3><em>Whatever the journal publishers may say : &nbsp;</em><em><strong>paywalls = censorship</strong></em><em>.</em></h3>\n<hr />\n<h1>Grey Research and Another Type of Censorship</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/iStock_64854985_SMALL46da6.jpg\" width=\"759\" height=\"632\"/></p>\n<p>4</p>\n<h3>Further there is a lot of unpublished \"grey research\" - these are papers that have no findings or have negative findings. &nbsp;</h3>\n<p>This kind of research is not considered \"sexy\" enough to be published by the major journals but from a purely scientific perspective it is just as important as the kind of studies that make headlines.&nbsp;</p>\n<h3>This is a kind of soft censorship.&nbsp;</h3>\n<p>At University I was shocked to see quite how much medical research in particular was consigned to archives where it would not see the light of day because it was not considered to be publishable. &nbsp;Not due to being improper research but because of just this sort of issue. &nbsp;</p>\n<h3>The failure to consider these kinds of studies leads to a significant skewing effect on the positive findings of those studies that do get published. &nbsp;The ultimate effect is that we do not get the big picture. &nbsp;This is particularly of concern in medical research where we only really see overtly positive studies.</h3>\n<p>Some research is also deliberately \"shelved\" if it doesn't agree with the agenda of one or more of the funding organisations. &nbsp;We have seen multiple scandals in relation to drug companies trying to hide certain research related to lucrative drugs as and side effects or adverse outcomes in the last couple of decades. &nbsp;Antidepressants and suicide risk is <a href=\"http://www.telegraph.co.uk/science/2016/03/14/antidepressants-can-raise-the-risk-of-suicide-biggest-ever-revie/\">just one recent example</a>.</p>\n<p>It is impossible to say how many people may have died or been seriously harmed as a result of these kind of actions.</p>\n<p><em><strong>This is not a new thing and is more akin to a deliberate hard censorship. </strong></em>&nbsp;</p>\n<h3>This is one of the reasons why I believe all research particularly that with public safety/health implications should be made public.</h3>\n<hr />\n<h1>Even Large Universities Can't Afford Access</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/Widener_Library_Harvard_University_Cambridge_MA6978c.jpg\" width=\"640\" height=\"408\"/></p>\n<p>5</p>\n<h3>In 2012 Havard University which is one of the worlds largest and wealthiest Universities announced that it could no longer continue affording to subscribe to all the journals which it had previously. &nbsp;</h3>\n<p>They cited multiple increases in journal prices in the preceeding years as the reason. &nbsp;The vast majority of journals are owned by 3 major publishers who offer them in bundles - much like cable TV packages. &nbsp;Universities must negotiate prices for bundles and there is no set price. &nbsp;</p>\n<h3>The vast monopolies created by these companies mean that there is little competition to lower prices.</h3>\n<p>Prices have continued to increase despite the fact that the internet has substantially lowered the costs of publishing and disseminating information. &nbsp;From 1984 to 2002 alone the cost increased by 600%.</p>\n<h3>This is particularly ridiculous when some of the research that the Universities must pay for is research they themselves conducted!</h3>\n<p>If large Universities can't afford this then there is no way that smaller institutions or indeed individual scientists or members of the public can afford to.</p>\n<hr />\n<h1>What is Open Access?</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/open-book-1378562978Vki3650a.jpg\" width=\"800\" height=\"531\"/></p>\n<p>6</p>\n<p>There are a number of slightly <a href=\"https://en.wikipedia.org/wiki/Open_access\">different definitions</a> but the basic thrust of it is contained in this excerpt from the Budapest Open Access Initiative in February 2002 relating to online access to academic journal articles:</p>\n<h3><em>\"There are many degrees and kinds of wider and easier access to this literature. By 'open access' to this literature, we mean its free availability on the public internet, permitting any users to read, download, copy, distribute, print, search, or link to the full texts of these articles, crawl them for indexing, pass them as data to software, or use them for any other lawful purpose, without financial, legal, or technical barriers other than those inseparable from gaining access to the internet itself. The only constraint on reproduction and distribution, and the only role for copyright in this domain, should be to give authors control over the integrity of their work and the right to be properly acknowledged and cited.\"</em></h3>\n<p>This is what Swartz and many others in the open access community have been trying to achieve. &nbsp;</p>\n<p><strong>Sadly it seems the main thing holding open access back is&nbsp;</strong></p>\n<ul>\n  <li><strong>The \"culture\" within the scientific community which falsely believes that paid journals are a necessity.&nbsp;</strong></li>\n  <li><strong>The vast lobbying power that the large consolidated multi-billion dollar publishing companies that own the big journals have which allows them to manipulate governments.</strong></li>\n</ul>\n<hr />\n<h1>Can Blockchains Help?</h1>\n<p>I am not a programmer or coder so I must apologise if I am incorrect in my understanding here. &nbsp;</p>\n<h3>If a platform like Steemit can place large amounts of articles on a blockchain then I don't see why something similar could not be done for scientific research.</h3>\n<h3>The decentralised nature of a blockchain would prevent censorship by vested interests (publishers, drug companies etc.). &nbsp;</h3>\n<p>If a culture could be created where all research was placed on an academic blockchain like this as a basic prerequisite then both issues of access and lost research could be substantially reduced.</p>\n<p>As long as the blockchain remained in existence so would the research and all the associated data. &nbsp;Grey or hidden research could potentially be made a thing of the past.</p>\n<p>Anyone could access any research data anywhere in the world. &nbsp;It would require a lot of work and a lot of cultural change but I believe it to be feasible.</p>\n<hr />\n<h1>Some Signs of Hope</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_76511897_SMALL42a71.jpg\" width=\"848\" height=\"565\"/></p>\n<p>7</p>\n<p>There do appear to be some signs of change. &nbsp;Organisations such as PLoS (<a href=\"https://www.google.co.uk/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=1&amp;cad=rja&amp;uact=8&amp;ved=0ahUKEwjmlq-bpYDPAhWFCMAKHdbbD8oQFggeMAA&amp;url=https%3A%2F%2Fwww.plos.org%2F&amp;usg=AFQjCNHD3YE-emOnoKJ8zjKDZ7ANvWFlIw&amp;sig2=a7_T5eyYCS8dC4UNNabgSw\">Public Library of Science</a>), <a href=\"https://en.wikipedia.org/wiki/PubMed_Central\">PubMed Central</a> and <a href=\"https://www.google.co.uk/url?sa=t&amp;rct=j&amp;q=&amp;esrc=s&amp;source=web&amp;cd=4&amp;sqi=2&amp;ved=0ahUKEwignZCEqIDPAhVlLMAKHV7ZB8gQFggzMAM&amp;url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FArXiv&amp;usg=AFQjCNFtJ0miuq3iMwen_obEMJQsE-4XUw&amp;sig2=MMLyMay5noGlB6c7w6BbYA&amp;bvm=bv.131783435,d.ZGg\">ArXiv</a> have embraced the open access ethos. &nbsp;</p>\n<p>PLOS has a \"no questions asked\" waver for APCs to remove any financial barriers to publication. &nbsp;Some open access journals don't charge any fees at all.</p>\n<p>Governments have also tried to embrace change to some degree. &nbsp;For example the US National Institute for Health (NIH) which accounts for 50% of government funding aims to make all research which it funds publicly available within a year. &nbsp;</p>\n<h3>The major publishers had asked for a longer embargo so whilst the delay is not ideal it can be seen as a victory of sorts if a mixed one at that.</h3>\n<p><em><strong>Edit: @lemouth has also made me aware of the following iniative in the comments (his words):</strong></em></p>\n<p>\"First, about the <a href=\"https://scoap3.org/\">SCOAP3 initiative</a>. It is a particle physics initiative where a fee is paid to all publishers. In exchange, all particle physics research articles are freely available to anyone. It is not really open access, but it is already a progress.</p>\n<p>An interesting other example in particle physics is the <a href=\"http://jhep.sissa.it/jhep/\">JHEP journal</a> which is a peer-reviewed journals that is entirely online and free.</p>\n<p>You may also want to check the <a href=\"https://pevo.science/\">pevo project</a>.\"</p>\n<hr />\n<h1>Conclusions</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/08/Aaron_Swartz_at_Boston_Wikipedia_Meetup_2009-08-188dad3.jpg\" width=\"600\" height=\"480\"/></p>\n<p>8</p>\n<h3>The lack of open access to scientific research is something that affects us all and not just individuals like the late Aaron Swartz.</h3>\n<p>A slow cultural change seems to be occurring within the scientific community however this change is not occurring quickly enough and there is significant resistance from the publishing companies whose profits depend on keeping the status quo.&nbsp;</p>\n<h3>Raising awareness of this issue through discussions and articles such as this is an important part of assisting this change.</h3>\n<h3>My hope is that that we can have unfettered access to all publicly funded research at the very least within the next decade.</h3>\n<p>How many more lives could be saved and enhanced by the accleration of progress that could be accomplished by the adoption by Open Access and publicly available research?</p>\n<h3>Let us hope that Aaron Swartz did not die in vain and that the madness of the current system will be abolished. &nbsp;</h3>\n<h3><em>That would be a fitting tribute to a young man whose only real crime was idealism.</em></h3>\n<h3><em>THE END</em></h3>\n<hr />\n<p><em>I hope you found this article stimulating and easy to read. &nbsp;Please feel free to add your comments and continue the discussion below.</em></p>\n<p><em><strong>(Apologies in advance for any mistakes I may have missed.)</strong></em></p>\n<p><em><strong>If you like my work please follow me and check out my previous work, photography and tutorials &nbsp;@thecryptofiend .</strong></em></p>\n<hr />\n<h2><em>Credits:</em></h2>\n<p><em>Although I used a lot of my own personal experience and knowledge in writing this I also found a number of sources to be invaluable. &nbsp;The following articles are great sources of information and well worth reading for further information:</em></p>\n<ol>\n  <li><a href=\"http://www.wired.com/2016/04/stealing-publicly-funded-research-isnt-stealing/\"><em>Merkley, Ryan (2016) \"You Pay to Read Research You Fund. That\u2019s Ludicrous\" &nbsp;: Wired Magazine 18th April 2016: Accessed 7th September 2016</em></a></li>\n  <li><em>&nbsp;</em><a href=\"http://gizmodo.com/why-is-science-behind-a-paywall-504647165\"><em>Mayyasi, Alex (2013).\"Why Is Science Behind a Paywall?\": Gizmodo. &nbsp;13th May 2013: Accessed 7th September 2016</em></a></li>\n  <li><a href=\"https://www.theguardian.com/science/blog/2013/jan/17/open-access-publishing-science-paywall-immoral\"><em>Taylor, Mike (2016) \"Hiding your research behind a paywall is immoral\": The Guardian. &nbsp;17th January 2013: Accessed 7th September 2016</em></a></li>\n</ol>\n<p><em>I have also linked to relevant Wikipedia articles which I found useful in the actual body of the post.&nbsp;</em></p>\n<ul>\n  <li><a href=\"https://en.wikipedia.org/wiki/File:AaronSwartzPIPA.jpg\"><em>Photograph 1 of Aaron Swartz is CC by Daniel J. Sieradski and taken from Wikepedia</em></a><em>. &nbsp;</em></li>\n  <li><em>Photo 5 is Widener Library, Harvard University, Cambridge Massachusetts by John Phelan.&nbsp;</em></li>\n  <li><a href=\"https://en.wikipedia.org/wiki/File:Aaron_Swartz_at_Boston_Wikipedia_Meetup,_2009-08-18.jpg\"><em>Photo 8 is Aaron Swartz at Boston Wikipedia Meetup, 2009 08 18 - by Sage Ross.</em></a></li>\n  <li><em>All other photographs are either licensed from IstockPhoto(4,7) or are public domain (2).&nbsp;</em></li>\n</ul>\n</html>",
+    "body_length": 19426,
+    "cashout_time": "2016-09-15T20:45:12",
+    "category": "science",
+    "children": 41,
+    "created": "2016-09-08T20:45:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"science\",\"politics\",\"life\",\"steemit\",\"steemsquad\"],\"users\":[\"lemouth\",\"thecryptofiend\"],\"image\":[\"https://www.steemimg.com/images/2016/09/08/640px-AaronSwartzPIPAbc599.jpg\",\"https://www.steemimg.com/images/2016/09/08/33-1243179569caiVd09e6.jpg\",\"https://www.steemimg.com/images/2016/09/08/The_Scientific_Method_as_an_Ongoing_Process.svg8b9c6.png\",\"https://www.steemimg.com/images/2016/09/08/iStock_64854985_SMALL46da6.jpg\",\"https://www.steemimg.com/images/2016/09/08/Widener_Library_Harvard_University_Cambridge_MA6978c.jpg\",\"https://www.steemimg.com/images/2016/09/08/open-book-1378562978Vki3650a.jpg\",\"https://www.steemimg.com/images/2016/08/31/iStock_76511897_SMALL42a71.jpg\",\"https://www.steemimg.com/images/2016/09/08/Aaron_Swartz_at_Boston_Wikipedia_Meetup_2009-08-188dad3.jpg\"],\"links\":[\"https://en.wikipedia.org/wiki/Aaron_Swartz\",\"https://en.wikipedia.org/wiki/Scientific_method\",\"https://commons.wikimedia.org/wiki/User:ArchonMagnus\",\"http://www.telegraph.co.uk/science/2016/03/14/antidepressants-can-raise-the-risk-of-suicide-biggest-ever-revie/\",\"https://en.wikipedia.org/wiki/Open_access\",\"https://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwjmlq-bpYDPAhWFCMAKHdbbD8oQFggeMAA&url=https%3A%2F%2Fwww.plos.org%2F&usg=AFQjCNHD3YE-emOnoKJ8zjKDZ7ANvWFlIw&sig2=a7_T5eyYCS8dC4UNNabgSw\",\"https://en.wikipedia.org/wiki/PubMed_Central\",\"https://www.google.co.uk/url?sa=t&rct=j&q=&esrc=s&source=web&cd=4&sqi=2&ved=0ahUKEwignZCEqIDPAhVlLMAKHV7ZB8gQFggzMAM&url=https%3A%2F%2Fen.wikipedia.org%2Fwiki%2FArXiv&usg=AFQjCNFtJ0miuq3iMwen_obEMJQsE-4XUw&sig2=MMLyMay5noGlB6c7w6BbYA&bvm=bv.131783435,d.ZGg\",\"https://scoap3.org/\",\"http://jhep.sissa.it/jhep/\",\"https://pevo.science/\",\"http://www.wired.com/2016/04/stealing-publicly-funded-research-isnt-stealing/\",\"http://gizmodo.com/why-is-science-behind-a-paywall-504647165\",\"https://www.theguardian.com/science/blog/2013/jan/17/open-access-publishing-science-paywall-immoral\",\"https://en.wikipedia.org/wiki/File:AaronSwartzPIPA.jpg\",\"https://en.wikipedia.org/wiki/File:Aaron_Swartz_at_Boston_Wikipedia_Meetup,_2009-08-18.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T16:02:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9629533121706,
+    "parent_author": "",
+    "parent_permlink": "science",
+    "pending_payout_value": "11.714 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-war-on-open-science-scientific-journals-and-the-research-racket",
+    "post_id": 1176760,
+    "promoted": "60.000 HBD",
+    "replies": [],
+    "root_title": "The War on Open Science: Scientific Journals and the Research Racket",
+    "title": "The War on Open Science: Scientific Journals and the Research Racket",
+    "total_payout_value": "0.000 HBD",
+    "url": "/science/@thecryptofiend/the-war-on-open-science-scientific-journals-and-the-research-racket"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 290979005478,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 35527177082,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 36068796273,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 198782719642,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12378453737,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7262323231,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 38550496952,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 237985094,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 3826447878,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1812767730,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2314406420479,
+        "rshares": 1913344238,
+        "voter": "earnest"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 13397353064,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1639613775527,
+        "rshares": 3475085906,
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17164865565,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19368188223,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41231458058,
+        "rshares": 62500297,
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 4581182987,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 6078750587,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310309073633,
+        "rshares": 1864520703,
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1987750394564,
+        "rshares": 154961508,
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 3397993185,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50196187,
+        "voter": "post-successful"
+      }
+    ],
+    "author": "anarcho-andrei",
+    "author_reputation": 4775359646971,
+    "beneficiaries": [],
+    "body": "When we last saw our fearless captain and his android co-pilot, [they had reluctantly taken on a contract](https://steemit.com/fiction/@anarcho-andrei/the-stellar-wild-chapter-2) from a less-than-reputable contact in the government.  Read on and find out what happens to them next!\n\nUpvotes are appreciated, and let me know what you thought of the story so far in the comments!\n\n---------------\n\n<center>http://i.imgur.com/a0xXr4e.jpg</center>\n\n**She disliked wearing United Terran Systems Naval utility uniforms.**  She very rarely ever had to wear them - generally only when she was travelling with Marines as part of a military-intel joint operation - and she was thankful for that, so why she'd been told to put one on today was beyond her.  Functionally, they were serviceable; they had two chest pockets, a shoulder pocket on each upper arm, and a stay-flat collar that never popped up from the seam along the back of the collar.  The cargo pockets on the trousers were also lay-flat pockets, with a fair amount of expansion room.  The muted olive color reinforced the fact that these were utility uniforms.  Thankfully the female variants were cut closer at the waist; she'd only had to make due with a male variant once, and, despite being the proper size, it looked like she was wearing a green trash bag.\n\nTo take her mind off of it, she was reviewing her mission brief over and over again in her head.  It seemed simple enough: intercept the transport that they'd lost contact with, board it, and ascertain the state of its cargo.  If it was simply a communications issue, the crew would thank her and be on their way.  However, given the length of time they'd been in radio silence, it was likely the second scenario that she'd be dealing with: figure out what happened to the crew.  The internal surveillance logs would provide her that information.  Once the cargo was secured and transferred to the contractor ship the UTS had hired, they'd bring it back to Naval Intelligence Division's black site on the edge of the Nether, near to wear they had planned to deploy it in the first place.  Simple, straightforward, and a perfect assignment to spruce up her lieutenant commander's jacket for promotion, her commander had told her.\n\nAll of which made her wonder why in the hell they had opted for the cloak-and-dagger routine in the first place.  It wouldn't be the first time the UTSN had sent a detachment after a transport vessel broke contact.  Pirates were a constant problem in that part of the galaxy, so it was assumed that it would happen from time to time.  Granted, it happened near Kirauthi space, but she didn't see how that made a difference.  All the Monarchy ever did was rattle their saber at the Galactic Union about seceding because of this perceived slight or that aggressive action by the UTS.  If she could draw a historical parallel, North Korea's foreign relations with the United States in Earth's 21st century history was as perfect as any.  They complained, often and loudly, but they were quick to let it go once concessions were made.  They still controlled some of the most resource-rich mining planets in the Union, so the rest of the member organizations had to just grin and bear it.\n\n\"I'm sure these no-name contractors are going to be _consummate_ professionals, too,\" she muttered, staring out at the rain from under the covered loading area adjacent the landing pads.  She checked the holographic data assistant on her wrist.  They should be landing any minute, assuming they were on time.  Sure enough, as soon as she turned her eyes back to the cloud-covered skies above Krixus, the _Hound_ began to make its descent toward the landing pad she was standing nearest to.  _Curb-side service_, she mused, reaching down to grab her pack as the oblong, vaguely bullet-shaped cargo freighter landed on the slick asphalt.\n\nThe _Hound_ lurched forward as Cole cut the maneuvering thrusters, depositing the ship on its landing feet.  As was his custom, he gave it about five seconds before he unbuckled his harness and slid out of the captain's chair.  Edward shook his head and hit the switch to lower the boarding ramp behind them.  The way the ramp was set up made it exceptionally easy to run at full sprint into the ship from outside and land in the pilot's seat within two strides.  It was something both he and Edward had taken advantage of when bounties were less than willing to cooperate and happened to be heavily defended, too.\n\n\"You realize that, statistically speaking, if the landing arms were to fail, they would fail the moment that a load was placed on them,\" he remarked to Cole, unbuckling himself from his chair and standing up.  Cole scoffed.\n\n\"It never hurts to be safe about it; the _Hound's_ almost as old as you are, and it isn't nearly in as good a shape.  Now c'mon,\" he said, zipping up his worn leather jacket as he made his way down the ramp, \"we have a hefty payday just waiting to be collected.\"  Edward let out a sound approximating a sigh as he fell into step behind Cole, earning a look over the fearless captain's shoulder. \"I heard that, you.\"\n\nLieutenant Commander Miranda Rackham ducked her head down as she left the shelter of the extended awning, jogging briskly across the open ground that separated the UTSN forward post facility from the landing pad.  As she neared the _Hound_, she realized that it wasn't actually a cargo freighter; that's what those two that were making their way down the ramp used it for, no doubt, but really it was a decommissioned Chieftan-class corvette.  It had been modified, but the flight deck on the top and the underslung command deck were unmistakable.  _They took the last one out of service nearly a century ago,_ she mused, narrowing her eyes against the rain.  If she had some free time she'd have to find out what the original designation of this particular vessel was back when it was in service.\n\nCole came to a stop under the protective bulk of his ship, looking out at the figure hustling toward them across the asphalt.  He'd expected some pencil-necked, bespectacled kid who was barely strong enough to carry a daypack behind him.  Instead, he was presented with a fairly tall woman, her hair cut in a short bob, and a determined look on her face.  She had no name tape on her uniform, nor any rank insignia, so he had no idea how to address her, but he decided that this was going to be significantly more enjoyable than transporting some snot-nosed teenager.  Edward fell in beside him as he donned a smile.\n\n\"Good evening, ma'am.  My name is Joshua Cole and this is my co-pilot Edward.  We're going to be your ri-\" he started, before she abruptly cut him off, cutting her stride to a confident march.\n\n\"We need to be gear up in five minutes.  I'll stow my things in a spare bunk while you get underway,\" she replied curtly, walking past both of them and heading up the ramp with nothing less than utter disdain.  Cole just stood there for a second, blinking.  _Never been shot down that quick before,_ he thought.  Edward looked back over his shoulder to the ramp, then back to Cole.\n\n\"I like her,\" he remarked, his tone chipper and excited.  \"She's going to be great company on this trip.\"  He turned and walked back up the ramp before Cole could retort.  With a resigned sigh, he turned and made his way back up the ramp, punching the button to raise it as he settled back into the pilot chair, prepping the ship for take off.",
+    "body_length": 7463,
+    "cashout_time": "2016-09-07T23:35:24",
+    "category": "fiction",
+    "children": 6,
+    "created": "2016-08-31T23:35:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"fiction\",\"scifi\",\"writing\",\"life\",\"payitforward\"],\"image\":[\"http://i.imgur.com/a0xXr4e.jpg\"],\"links\":[\"https://steemit.com/fiction/@anarcho-andrei/the-stellar-wild-chapter-2\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T05:00:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 696935115547,
+    "parent_author": "",
+    "parent_permlink": "fiction",
+    "pending_payout_value": "0.325 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-stellar-wild-chapter-3",
+    "post_id": 1077868,
+    "promoted": "60.000 HBD",
+    "replies": [],
+    "root_title": "The Stellar Wild - Chapter 3",
+    "title": "The Stellar Wild - Chapter 3",
+    "total_payout_value": "0.000 HBD",
+    "url": "/fiction/@anarcho-andrei/the-stellar-wild-chapter-3"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 56552011596,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17094999940,
+        "rshares": 511469118897,
+        "voter": "panadacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7555713528500,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30843061442454,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 27395041579722,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14710620152586,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7285545853827,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 639017949223,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120823881116,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1361006942848,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 3087717611170,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 903644666773,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4773090322616,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 304707236256,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3717261539,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 204675696436,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4512589209,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836491819,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6994301163857,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1681576142026,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64585928477,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26807960299,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25493341985045,
+        "rshares": 52040947652,
+        "voter": "simba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992183894,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256346717,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 16137456259,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2461162230926,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 17227720501,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1481653503129,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 79076376247,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1158072809579,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19379068574,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 746998903,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160170058,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 21226399148,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 79849633278,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 7072408018,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345687346,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5047240025934,
+        "rshares": 61971937067,
+        "voter": "jbrukh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14120286327,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11764194990,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 857301606,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 50653316655,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 331445397660,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146338907129,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 596707334180,
+        "rshares": 3904328205,
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 15120895778,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9393268741,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2886728165,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 236718643421,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 19760502492,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5175826909,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3991057200,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 594411779965,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83585046836,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "0",
+        "reputation": 3380310417590,
+        "rshares": 194066877,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24100152340,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46956093933,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6578969489361,
+        "rshares": 253328229625,
+        "voter": "streemian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 333917831941,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3433964636,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 60408406263,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 19678749446,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 76885823202,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 17150857868,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 55570611575,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 71029480563,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 602274816695,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22378434861462,
+        "rshares": 219296977144,
+        "voter": "stino-san"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787378347,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7087964556647,
+        "rshares": 79323081826,
+        "voter": "kennyrowe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7451914321,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 348076197,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 328466573548,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 13341936959,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 184099934656,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29602012033,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5975309259,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 41365731817,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 421645670832,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 600824988,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 244193243751,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12012664886,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 12656777577,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8330279054423,
+        "rshares": 63730888119,
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40287404686,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 4385951167,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 35520505469,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 10882055117,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 90474123932,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11980312580,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16316471180830,
+        "rshares": 128358585351,
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 361800166976,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 333724711,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4260826979219,
+        "rshares": 7993852323,
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 8884312004,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1544049507187,
+        "rshares": 14102203767,
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 52891144095,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 251773480648,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51864731391,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 98645191189,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 47923726610,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 76218554853,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 120980236742,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4356049611,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 9210929839,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 489781497415,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 50447479153,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4794047234,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13619007326,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 72772268054,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1021214632,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1987820492,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 5519713990,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2108350694,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 177093906602,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2676865682314,
+        "rshares": 35389878923,
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 7127732569,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 193323965629,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5587050400,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23705317509,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5005078083,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 115459710020,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "3700",
+        "reputation": 598181152117,
+        "rshares": 76100049533,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 245355474944,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6627517,
+        "rshares": 281681849,
+        "voter": "mark-larkento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 5144476703,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 58484100128,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6591597330,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1024125426441,
+        "rshares": 1998200922,
+        "voter": "uniwhisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 7741509209,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1057565128,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1901149350,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 36625674455,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 43717579213,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 58427909109,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2181554739322,
+        "rshares": 14008729067,
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 25188580874,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9400857896911,
+        "rshares": 825830940409,
+        "voter": "coinfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2272555442064,
+        "rshares": 4062959194,
+        "voter": "azaan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 59296970731,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17542635624,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5647458531,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5826412643,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 250579833,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 49960466722,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 230286299005,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3124603257,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 188239143185,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156169282296,
+        "rshares": 294757358,
+        "voter": "sonyanka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4237212015,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 39864624930,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 254327145,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1260650049067,
+        "rshares": 1049350171,
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 30857263588,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5007128291,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 27485211482,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5071655236,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2762148097,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 29657229926,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10171002020923,
+        "rshares": 46620076246,
+        "voter": "krypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12009755121,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2459491151,
+        "rshares": 464246337,
+        "voter": "paliboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10571066240,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129516230177,
+        "rshares": 310534090,
+        "voter": "freemanit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 248004578,
+        "voter": "daskalov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 220027099642,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 14365696774,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 10295818487,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 68899170977,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1260505392,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 626349713189,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24946428255,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122710540595,
+        "rshares": 774112662,
+        "voter": "instancex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6834470355,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 149731266,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1926175201,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 56651802574,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23728968576,
+        "rshares": 263387483,
+        "voter": "devnull"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 67378517201,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 497898464578,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 1678609165,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10584865103,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 105794058385,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 2470800174,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1307280568,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56256651602417,
+        "rshares": 92285211197,
+        "voter": "alexbeyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6682163970142,
+        "rshares": 4888687973,
+        "voter": "anasya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 42566323881,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1074932980,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7880126960,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 365864974,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 27985896579,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 724161745,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 46654773154,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 173088114185,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 5455209595,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 561842584,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3401605367,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2097337325719,
+        "rshares": 2790641567,
+        "voter": "dogguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13515182413,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 170107519020,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 191671368237,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34302508750,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 100539828602,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1752183397,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 8744167389,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 473559669,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4620424754,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569604784188,
+        "rshares": 7188408038,
+        "voter": "matrioshka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14826352016829,
+        "rshares": 33815172651,
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 14475805658,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 25437260334,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 8122847828,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 26602862663,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 74435622434,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 10147166470,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 14003146160,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2162692228861,
+        "rshares": 3592262846,
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 270874583,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 33027429562,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9538122829,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 9932083483,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11450220486,
+        "rshares": 271185119,
+        "voter": "gobbahfett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1989150391,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 78451278702,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508062166232,
+        "rshares": 582581401,
+        "voter": "damiancraymond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8790939342,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 240222938,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1196844666,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 646633321,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 17908735056,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 16956772233,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 270836448791,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 64497895581,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 46173705636,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192124698,
+        "rshares": 230498477,
+        "voter": "chris0502"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 40253682612,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 14477210934,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239794058,
+        "voter": "bertrandlarsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4286053540,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2546024388,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3802303915,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1452681946,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5599726368,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089175666268,
+        "rshares": 1001372367,
+        "voter": "jsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1639905382,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1560786654602,
+        "rshares": 2867879894,
+        "voter": "algimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4617586503531,
+        "rshares": 7018155550,
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13520823020,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12199815886,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2423471098,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 200207618991,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 4211356469,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 10586787745,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 4480541057,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2440775410341,
+        "rshares": 1306432008,
+        "voter": "iamwne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 741654237981,
+        "rshares": 5695265896,
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 252892414867,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1312097787,
+        "voter": "dkpl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 322651547057,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1523240023,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1265576474,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 31443934085,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8079416854,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6880658953,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 19139615934,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2324876192,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118833099,
+        "voter": "kattokassinen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 2876522405,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 25069699585,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 3119153378,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4435851942,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 9162864301,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 40718816585,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 70427611427,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 671977617081,
+        "rshares": 2850893413,
+        "voter": "mookosoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -486009658404,
+        "rshares": 116921735,
+        "voter": "armen7777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116065815,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1303549017,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3415496053078,
+        "rshares": 3583759645,
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 897000392259,
+        "rshares": 1526851146,
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 107117143,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 214143937384,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 383182964,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101628344707,
+        "rshares": 804229760,
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 27456682950,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1639613775527,
+        "rshares": 3441729150,
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 3356845875,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19973803502,
+        "rshares": 124907433,
+        "voter": "biternator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9224124607,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 10651053577,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 216424572582,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 795632907,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1124482896,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960761826,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4457136555,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 461208353,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39913884914319,
+        "rshares": 18590977273,
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20782968,
+        "rshares": 116415503,
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 9971862369,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 877304786,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20107215646,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 447867199,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 702710547,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 23919927675,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7331110558,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 19352042538,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 548923337,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 1365471076,
+        "voter": "ace108"
+      },
+      {
+        "percent": "3500",
+        "reputation": 17698439393799,
+        "rshares": 10225419274,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 33224823611,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54192730483,
+        "rshares": 225878684,
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5820030787,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 9501409477,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 265198657980,
+        "rshares": 291479339,
+        "voter": "nickjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 498982439,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67422364209,
+        "rshares": 3551218245,
+        "voter": "mpa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136260156259,
+        "rshares": 172444925,
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 12210513842,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351862685320,
+        "rshares": 364684943,
+        "voter": "angielb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20324923696,
+        "rshares": 3261041090,
+        "voter": "talyvale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 238898910625,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2471214,
+        "rshares": 110860946,
+        "voter": "enkaptor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8543772043,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1213863676,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112697881,
+        "voter": "quantum5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25927425773,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 30549845433,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1717244666,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2712088097,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4272386107,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 5119555899,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 103731938872,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11449419866,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1227088189,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 1448774124,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 49271789490,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9674452329,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 728878539,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5765763582,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 2007092576,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 34409024043,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1170215099621,
+        "rshares": 1505062449,
+        "voter": "shaheer001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11009445667,
+        "rshares": 67661904,
+        "voter": "elec365"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 3776140615,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1142487188749,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 604356859725,
+        "rshares": 2551337745,
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24326163087,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7564464865541,
+        "rshares": 18971432280,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2695153877,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 27001013725,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27030190153,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27041373157,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "2900",
+        "reputation": 18027204457681,
+        "rshares": 11256068901,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 5776723480371,
+        "rshares": 89157742160,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 503001464498,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1674465751,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 4298529631,
+        "voter": "darknet"
+      },
+      {
+        "percent": "3700",
+        "reputation": 206355094166,
+        "rshares": 3352051439,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 118825691,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 3663741566,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3602804983584,
+        "rshares": 5716725347,
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 32699512403,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22613377010,
+        "rshares": 66620085,
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 18380455246,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 5749922769,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1577306627,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 7630701393,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12393203621507,
+        "rshares": 26032801888,
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27037187449,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27036106589,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27033478003,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27030667482,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27027905937,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 714080860,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 519457263879,
+        "rshares": 62499680897,
+        "voter": "poteshnik83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27026422775,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 83194809457,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 2003393404,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 115810450,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10083212488,
+        "rshares": 59999750,
+        "voter": "dedushkadiesel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 62525016,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 443999506,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "3300",
+        "reputation": 1851205309677,
+        "rshares": 1203705002,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2491516344,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62218938,
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 621878548,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1981322769,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 773487823,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 11196260325,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14884694373,
+        "rshares": 66841036,
+        "voter": "rdigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 1282476312,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1176471216,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 219820935,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3552896427510,
+        "rshares": 1581151357,
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3700",
+        "reputation": 4195733833721,
+        "rshares": 3081456880,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 21084547386,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1481642028772,
+        "rshares": 774463286,
+        "voter": "digitalhound"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727733310136,
+        "rshares": 61400550,
+        "voter": "mrdsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4882282176511,
+        "rshares": 2286794384,
+        "voter": "kiddarko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30877532500,
+        "rshares": 67378137,
+        "voter": "sakkievw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 3296276802,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1146505325539,
+        "rshares": 368346483,
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 29016292156,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 61150408,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1934306097,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 87933277074,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51172913,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 8603025524,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 30790641567,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 634697761,
+        "rshares": 61094329,
+        "voter": "decred"
+      },
+      {
+        "percent": "3700",
+        "reputation": 730408370151,
+        "rshares": 205797786,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 5489423513,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 64006701,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 57412920,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5297329962603,
+        "rshares": 6721098212,
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 2132924628,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40980532,
+        "rshares": 1009987028,
+        "voter": "shinji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 5408158479,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6751064659,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53786603507,
+        "rshares": 78032233,
+        "voter": "aleksrav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3537992772642,
+        "rshares": 38169102709,
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 10302828511,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339316349435,
+        "rshares": 61941561,
+        "voter": "robertm"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 77430111,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3789939590477,
+        "rshares": 4314960490,
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 588978698,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 596175316539,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 39706426221,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5584825445,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 57137328867,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 62279229,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2051850885932,
+        "rshares": 419866589,
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1005947450655,
+        "rshares": 178000640,
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 120171572,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1310778341,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15908343365,
+        "rshares": 60816781,
+        "voter": "gmskov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258644544,
+        "rshares": 60326971,
+        "voter": "bitcoingiveaway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2459985182,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 86222282088,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24003660,
+        "rshares": 59989087,
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 2058848510,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8517078800,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 2205820361,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 63325102,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 6052199234,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44060299159,
+        "rshares": 61414192,
+        "voter": "tltran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 3625170549,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 661355116,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27020719955,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 62312186,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17238251931,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 925612937,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3561429993,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 23281645867,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 64500879503,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12403860648,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179991301994,
+        "rshares": 182816069,
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "0",
+        "reputation": 3135058867066,
+        "rshares": 65639915,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63845074863,
+        "rshares": 1670127515,
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6563374439,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 390240189,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 7269979111,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 11805399986,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1808675047,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57595473,
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1802656474490,
+        "rshares": 4751073341,
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 25046976482,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 12412591029,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 58823974,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57186597,
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10614920699,
+        "rshares": 236254009,
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39279686642,
+        "rshares": 105341723,
+        "voter": "jusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1768694119,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 57911021,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5788018857372,
+        "rshares": 5897105214,
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4595623910,
+        "rshares": 59160726,
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 341202534995,
+        "rshares": 151511582,
+        "voter": "elemenya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 677034093,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11452945189,
+        "rshares": 56814493,
+        "voter": "voluntaryelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3765065044,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 326859258,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 57813247,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387438670668,
+        "rshares": 641422439,
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186924852752,
+        "rshares": 70753066,
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 4901960194,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4397439641,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225178513133,
+        "rshares": 56574870,
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11501310305,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12307727942,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 10669669552,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 26619749642,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1595948373990,
+        "rshares": 2346590146,
+        "voter": "liquidrainbowx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 17521798409,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2497221434587,
+        "rshares": 4058298817,
+        "voter": "jaytaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 63486894,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 1698145451,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1581743436,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 111770582,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4073388292,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1329813882691,
+        "rshares": 55892382,
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90062656329,
+        "rshares": 86890350,
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 301500778,
+        "rshares": 4326090147,
+        "voter": "dangis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 53433968,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 12983438771,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 54536747,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 57565305,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7306624703593,
+        "rshares": 11813727828,
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -51683826049,
+        "rshares": 60753524,
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5459503279,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 966857371343,
+        "rshares": 1659124232,
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442182311998,
+        "rshares": 8937897868,
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 645560462,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55020754,
+        "voter": "mightypenguin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56217302217,
+        "rshares": 72261653,
+        "voter": "readwriteshare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8859041042380,
+        "rshares": 37145604020,
+        "voter": "natureofbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 13824417965,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129741556,
+        "rshares": 55982050,
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 332957533,
+        "rshares": 55960386,
+        "voter": "ramonphillips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 666711159,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34351625465,
+        "rshares": 64313705,
+        "voter": "soddenguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 210444900261,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 266281705,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 56349749,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2205631577,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 95892869,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25287092822,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 95195985,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 878868143,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2574202274,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4685749074,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 346099916175,
+        "rshares": 218583799,
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4495110193,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 73301607,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 53724029,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 372394498,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 216178911754,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 74968074,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 53671263,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5014250342169,
+        "rshares": 3524973426,
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5290003904,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 438649068,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950372517145,
+        "rshares": 1192974984,
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50050365062,
+        "rshares": 59538285,
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70707045777,
+        "rshares": 158058475,
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 53103516,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 54408230,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 10536396534,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1811724100,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18081706207,
+        "rshares": 53257299,
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 52930132,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32819947524,
+        "rshares": 56067023,
+        "voter": "sic-savidicus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 52871755,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 183928287,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52834077,
+        "voter": "brazine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75159533,
+        "rshares": 52818992,
+        "voter": "cryptvs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52815493,
+        "voter": "dilmacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52812458,
+        "voter": "goldenage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164294739,
+        "rshares": 52809020,
+        "voter": "martexcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75163710,
+        "rshares": 53862086,
+        "voter": "rogercript"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52802225,
+        "voter": "gnumix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52799734,
+        "voter": "neolus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52791079,
+        "voter": "julivs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52788300,
+        "voter": "dogeconha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52784773,
+        "voter": "faberium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52780229,
+        "voter": "aritanas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 206212756,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53829906,
+        "voter": "walteraze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78223607,
+        "rshares": 52768593,
+        "voter": "cryptonovas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6085877784,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69131953,
+        "rshares": 52700881,
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2341581405,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 51234642,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2538790355,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52544177,
+        "voter": "neosteem"
+      },
+      {
+        "percent": "0",
+        "reputation": 11141357037522,
+        "rshares": 621745669,
+        "voter": "steemcleaners"
+      },
+      {
+        "percent": "10000",
+        "reputation": 619923193031,
+        "rshares": 713530224,
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 57317168,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10341114686313,
+        "rshares": 47243001315,
+        "voter": "robinhoodwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327349908318,
+        "rshares": 324296672,
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 52710031,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 67291773,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 807542498,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25997423602,
+        "rshares": 58144446,
+        "voter": "timothylyrics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1453401802,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351968663984,
+        "rshares": 224325449,
+        "voter": "dedi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6522189180,
+        "rshares": 53565619,
+        "voter": "scotty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 126484492,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 444900926552,
+        "rshares": 6901812621,
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 2409827818,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 1066883733,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51565073,
+        "voter": "mattmclester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52553508,
+        "voter": "akaskew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 988075153,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 857199870585,
+        "rshares": 54101961,
+        "voter": "iuliuspro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 55523890,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414887802912,
+        "rshares": 651302553,
+        "voter": "antifragile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 52098977,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 894021690,
+        "rshares": 52032356,
+        "voter": "stir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4613621559,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 264508777365,
+        "rshares": 107344655,
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2111088178436,
+        "rshares": 866184453,
+        "voter": "carlitashaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106202842802,
+        "rshares": 148269828,
+        "voter": "jimcropper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 281956744731,
+        "rshares": 314429739,
+        "voter": "mattmacreadie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 564755466,
+        "rshares": 50398372,
+        "voter": "madikantia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182688037,
+        "rshares": 51359698,
+        "voter": "dex-san"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 51185859,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51155635,
+        "voter": "btc125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2400105,
+        "rshares": 50147782,
+        "voter": "disha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9050222935,
+        "rshares": 53070760,
+        "voter": "neophonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51893966,
+        "rshares": 51081240,
+        "voter": "juliecolby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 464502884,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508583499,
+        "rshares": 50827953,
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 619759284,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787466,
+        "rshares": 50397860,
+        "voter": "imitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50369022,
+        "voter": "borderlinepro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50273081,
+        "voter": "j373my"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16681034811,
+        "rshares": 3905901072,
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71521371,
+        "rshares": 159333932,
+        "voter": "sourdough"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775179801689,
+        "rshares": 1383492866,
+        "voter": "evalynn25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804954090860,
+        "rshares": 329629477,
+        "voter": "aldentan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200359231752,
+        "rshares": 188217107,
+        "voter": "techslut"
+      }
+    ],
+    "author": "robinhoodwhale",
+    "author_reputation": 10341114686313,
+    "beneficiaries": [],
+    "body": "<html>\n<p>http://i.imgur.com/8fIQCqX.png</p>\n<p><br></p>\n<p>Robin Hood Whale (RHW) is the community's solution to an essential problem that plagues Steemit: how to get noticed and upvoted before you have a big enough following. Right now, if you are not upvoted by a \u201cwhale\u201d account, it is very difficult to get exposure and any substantial rewards, which leads to many great authors leaving Steemit.</p>\n<p>Robin Hood wants to be the \u201cwhale\u201d that finds and helps a diverse set of talented, yet unrecognized authors. The proposed way of doing this is to cycle between different authors, upvoting ~10-20 quality posts daily. RHW won't upvote the same authors twice in any 10-day period in an effort to support more people and discourage any kind of abuse or ulterior motives.</p>\n<p>For RHW to have any meaningful impact, it must reach whale-status of SP and/or many bot followers. Yet, this is just the tip of the iceberg for this initiative. As featured authors and posts will be publicly announced periodically, we hope to inspire a movement that will lead &nbsp;to authors gaining fans, following and eventually to be able to self-sustain a blog on SteemIT without the RHW help at all.</p>\n<p>In a way, RHW's ultimate goal would be to not be needed at all. But as new enthusiastic authors join, RHW will be here to find them, help them and upvote them, growing the community and the overall quality of what you can find on Steemit.</p>\n<p><br></p>\n<p>http://i.imgur.com/iu8Uf8b.png</p>\n<h2>Curators</h2>\n<p>There\u2019s a total of 10 official curators with a waiting list of other fellow Steemians. Curators are well known SteemIT individuals that dig through the vast amount of content to find hidden gems and undervalued authors.&nbsp;</p>\n<p>We would like to keep the curators list private for the time being, so they can continue working without interruptions.&nbsp;</p>\n<p>*Curators can publicly state they are part of Robin Hood at their sole discretion.*</p>\n<h2>Curation Process</h2>\n<p>Each curator discovers interesting content, including, but not limited to, the new section, steemviz, steemd, promotional channels on Steemit.chat and robinhood-links channel.</p>\n<ol>\n  <li>The author name is checked to ensure it\u2019s out of the 10-day cycle&nbsp;&nbsp;</li>\n  <li>The post is digested</li>\n  <li>The post is checked for plagiarism (with online tools and google)</li>\n  <li>The post is checked for Image sources and/or mention of own work</li>\n  <li>The images are run through online tools for reverse image search (if own work is mentioned)</li>\n  <li>If everything stated above is in check the link is submitted to the curator private chat</li>\n  <li>Other curators chime in if they agree or disagree and why</li>\n  <li>If agreed upon the post is upvoted by RHW, mentioned in general chat and listed in the official spreadsheet</li>\n</ol>\n<p>What's In It For Me?</p>\n<p>The more we elevate varied authors the larger the economy of Steemit gets. This benefits everyone since more members will have incentive to stick around. Satisfied members invite more friends if they themselves are successful. As an investor you get a percentage of your total contribution back as Steem each month.</p>\n<p><br></p>\n<p>http://i.imgur.com/HGkOE5P.png</p>\n<p><br></p>\n<h2>Who Will Control The Keys?</h2>\n<p>A multi-signature system is currently being developed to add security and reassure investors that their funds are safe. The system will require two curators to sign off on an upvote, and more team members to agree on more sensitive actions.</p>\n<p>Currently the master key is held by @repholder, the backup master key by @kyriacos and the active key has been added to Streemian (owner - @xeroc).</p>\n<h2>Alpha Testing Results</h2>\n<p>Sample Dates : 20/08-28/08</p>\n<p>Sample Size : 78 Unique Authors&nbsp;</p>\n<p>Average payout : $134.48</p>\n<p>Issues Found: 2 - ID Theft/Plagiarism (which was unvoted) and a manual upvote mistake</p>\n<p><a href=\"https://docs.google.com/spreadsheets/d/11UkN21t27uG9Fo_vRjX8lKasXOU0xIEL4AviCvlMMNw/edit#gid=0\">Spreadsheet of Alpha Testing Featured Authors</a>&nbsp;</p>\n<p><a href=\"https://steemit.com/@laonie\">Updates for users that are censored from Google services</a></p>\n<h2>How Can I Take Part ?</h2>\n<ul>\n  <li>Help find great authors and provide a link to their posts in #robinhood-links.</li>\n  <li>Connect to <a href=\"https://streemian.com/\">Streemian</a> and join the robinhoodwhale trail ( for invite codes contact @instructor2121 on steemit.chat). <em>Note:</em> Streemian uses the active key.</li>\n  <li>Use @lukestokes <a href=\"https://steemit.com/robinhoodwhale/@lukestokes/trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale\">advanced bot guide</a>&nbsp;</li>\n  <li>Provide your posting key to @laonie to add to his own RHW bot follower or use his <a href=\"https://steemit.com/robinhoodwhale/@laonie/how-to-set-up-your-own-voting-bot-for-robinhoodwhale\">setup voting bot guide</a></li>\n  <li>Invest in RHW by sending Steem, SD or Steem power to @robinhoodwhale</li>\n</ul>\n<h2>Steemit.chat Channels</h2>\n<p><a href=\"https://steemit.chat/channel/robinhood\">robinhood</a> - General discussion about the Robin Hood Whale initiative&nbsp;</p>\n<p><a href=\"https://steemit.chat/channel/robinhood-links\">robinhood-links</a> - These are posts to be considered by curators of the Robin Hood Whale initiative. Post other people's work ONLY and please be sure to check if the author has already been featured in the previous 10-day cycle.</p>\n<p><br></p>\n<p>http://i.imgur.com/8TjoV8Y.png</p>\n<p><br></p>\n<h2>Investment in RHW</h2>\n<p>The Robin Hood Whale is accepting investments directly to @robinhoodwhale in the form of Steem, SD or direct Steem powerup.</p>\n<p><strong>Investor Payout</strong> \u2013 A percentage based off total investor contributions (90% for all investors)</p>\n<p><strong>Curator Payout</strong> - 10% of total monthly power down</p>\n<p><strong>Liquid Asset Funds</strong> - Liquid assets from RHW post rewards might be held back by the curator team at their sole discretion.</p>\n<p><strong>Cut-Off for Investments</strong> : 29 September 2016 18:00 UTC</p>\n<p><strong>First Investor Payout</strong> : 7 October 2016&nbsp;</p>\n<p><a href=\"https://docs.google.com/spreadsheets/d/1gkxfeYcKAlJXfa0h7PX0wmHbYf2IjZx3MhJwOsyRsME/edit?ts=57b9723b#gid=0\">Investor List Spreadsheet</a></p>\n<h2>The Team</h2>\n<p>Chief Executive Officer / Curator &nbsp;- @repholder</p>\n<p>Chief Operations Officer / Curator - @instructor2121</p>\n<p>Creative director / Curator - @kyriacos</p>\n<p>Curators - An additional 7 Anonymous SteemIT Users</p>\n<h2>Sister Projects</h2>\n<p><a href=\"https://steemit.com/@steemcleaners\">Steemcleaners</a></p>\n<p><a href=\"https://steemit.com/@steemdrive\">Steemdrive</a></p>\n<h2>Disclaimer</h2>\n<p>Investing in robinhoodwhale (RHW) involves significant risk and can result in the loss of your invested capital. You should not invest more than you can afford to lose and should ensure that you fully understand the risks involved. The bulk of investments will be held as Steem Power.</p>\n<p>&nbsp;[Special thanks to <a href=\"https://steemit.com/@kyriacos\">@kyriacos</a> for the awesome <a href=\"https://steemit.com/introduceyourself/@robinhoodwhale/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore\">poem</a>,logo and graphics]&nbsp;</p>\n</html>",
+    "body_length": 7352,
+    "cashout_time": "2016-09-05T18:20:15",
+    "category": "robinhoodwhale",
+    "children": 134,
+    "created": "2016-08-29T18:20:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"robinhoodwhale\",\"rhw\",\"steem\",\"steemit\",\"robinhood-links\"],\"users\":[\"repholder\",\"kyriacos\",\"xeroc\",\"instructor2121\",\"lukestokes\",\"laonie\",\"robinhoodwhale\"],\"image\":[\"http://i.imgur.com/8fIQCqX.png\",\"http://i.imgur.com/iu8Uf8b.png\",\"http://i.imgur.com/HGkOE5P.png\",\"http://i.imgur.com/8TjoV8Y.png\"],\"links\":[\"https://docs.google.com/spreadsheets/d/11UkN21t27uG9Fo_vRjX8lKasXOU0xIEL4AviCvlMMNw/edit#gid=0\",\"https://steemit.com/@laonie\",\"https://streemian.com/\",\"https://steemit.com/robinhoodwhale/@lukestokes/trusting-the-hive-mind-building-my-own-voting-bot-for-robinhoodwhale\",\"https://steemit.com/robinhoodwhale/@laonie/how-to-set-up-your-own-voting-bot-for-robinhoodwhale\",\"https://steemit.chat/channel/robinhood\",\"https://steemit.chat/channel/robinhood-links\",\"https://docs.google.com/spreadsheets/d/1gkxfeYcKAlJXfa0h7PX0wmHbYf2IjZx3MhJwOsyRsME/edit?ts=57b9723b#gid=0\",\"https://steemit.com/@steemcleaners\",\"https://steemit.com/@steemdrive\",\"https://steemit.com/@kyriacos\",\"https://steemit.com/introduceyourself/@robinhoodwhale/hi-i-am-robinhood-whale-and-here-is-my-story-from-the-blockchain-folklore\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T12:37:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 133805889100534,
+    "parent_author": "",
+    "parent_permlink": "robinhoodwhale",
+    "pending_payout_value": "1987.240 HBD",
+    "percent_hbd": 10000,
+    "permlink": "announcing-robinhoodwhale-the-steemit-deep-sea-savior",
+    "post_id": 1044672,
+    "promoted": "58.148 HBD",
+    "replies": [],
+    "root_title": "Announcing RobinHoodWhale, the Steemit Deep Sea Savior",
+    "title": "Announcing RobinHoodWhale, the Steemit Deep Sea Savior",
+    "total_payout_value": "0.000 HBD",
+    "url": "/robinhoodwhale/@robinhoodwhale/announcing-robinhoodwhale-the-steemit-deep-sea-savior"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103012759,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767337211,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690899726,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54630385693,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662788865,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213777416,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624870220,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969741207,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7854212531,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 196172883822,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 42614571388,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288328206,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 36843514345,
+        "voter": "james-show"
+      },
+      {
+        "percent": "4200",
+        "reputation": 15755437221598,
+        "rshares": 4969366608,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425719235,
+        "voter": "murh"
+      },
+      {
+        "percent": "4600",
+        "reputation": 1598588545490,
+        "rshares": 7317086245,
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1952410101,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 772232700742,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "3800",
+        "reputation": 598181152117,
+        "rshares": 81263693100,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 90260645656,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 70211465386,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12270078085,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 21814595794,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 5036496063,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 82825665707,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 281411321206,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 7349035006,
+        "voter": "dasha"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9786117166130,
+        "rshares": 6902979677,
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1146952603502,
+        "rshares": 3123302265,
+        "voter": "shemthepenman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 26082666611,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 199604454,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5181663,
+        "rshares": 241777638,
+        "voter": "joseph.kalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 10804582219,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 5207653127,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 1915822410,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3786490978,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12724748758,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 698553562,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 542854211690,
+        "rshares": 500969295,
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "3600",
+        "reputation": 17698439393799,
+        "rshares": 11746757675,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5708364182,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 28391457290,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 6816768480,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "1500",
+        "reputation": 10771708337101,
+        "rshares": 158049175233,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2800",
+        "reputation": 18027204457681,
+        "rshares": 10368282090,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 5776723480371,
+        "rshares": 96582809483,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 206355094166,
+        "rshares": 3613605686,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3800",
+        "reputation": 97845484474,
+        "rshares": 21342093177,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 144042539115,
+        "rshares": 592163663,
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1413423437,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "1600",
+        "reputation": 3016325652890,
+        "rshares": 17722631016,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 90362837190,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 97359072,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 17630450937,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 18707660801,
+        "voter": "velourex"
+      },
+      {
+        "percent": "3700",
+        "reputation": 1851205309677,
+        "rshares": 1558601458,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 492521414,
+        "voter": "future24"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10809787058917,
+        "rshares": 6163744743,
+        "voter": "cristi"
+      },
+      {
+        "percent": "3800",
+        "reputation": 4195733833721,
+        "rshares": 3364592382,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 983179914,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 11791793035,
+        "voter": "mione"
+      },
+      {
+        "percent": "3800",
+        "reputation": 730408370151,
+        "rshares": 221063150,
+        "voter": "microluck"
+      },
+      {
+        "percent": "5200",
+        "reputation": 13325577893779,
+        "rshares": 9602930892,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7297087216805,
+        "rshares": 5633302818,
+        "voter": "pjheinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 95348313569,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1443290254,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3176016038,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 7388942832,
+        "voter": "onetree"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4502523550,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 95263797323,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 354657306,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70707045777,
+        "rshares": 64424885,
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 1529842033,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 54504938,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 71766021,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 57334634,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 90080404,
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1564414223,
+        "rshares": 128214991,
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108412302232,
+        "rshares": 152826693,
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 582579725,
+        "rshares": 152373326,
+        "voter": "elgatow10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2066096601,
+        "rshares": 155201147,
+        "voter": "rarcntv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585181578869,
+        "rshares": 91692568,
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": -565298235179,
+        "rshares": 107496727,
+        "voter": "elsi"
+      }
+    ],
+    "author": "micheletrainer",
+    "author_reputation": 5078903531942,
+    "beneficiaries": [],
+    "body": "<html>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/hands-600497_1920.jpg</p>\n<p><strong>Where are YOU from?</strong>&nbsp;</p>\n<p>While I\u2019m sitting in LA&nbsp;</p>\n<p>I\u2019m just wondering today&nbsp;</p>\n<p>Are you in a nice caf\u00e9?</p>\n<p>With a view of a nice bay?</p>\n<p>Or maybe in a barn with hay?</p>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/netherlands-97830_1920.jpg</p>\n<p>&nbsp;Is your weather today grey?&nbsp;</p>\n<p>Or perhaps it\u2019s super sunny&nbsp;</p>\n<p>Are you looking at a bunny?&nbsp;</p>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/rabbit-1422882_1920.jpg</p>\n<p>I\u2019m not trying to be funny&nbsp;</p>\n<p>Are you drinking tea with honey?&nbsp;</p>\n<p>We\u2019re all here from different places&nbsp;</p>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/new-york-city-78181_1920.jpg</p>\n<p>Writers, artists with unique faces&nbsp;</p>\n<p>If you wanna share the name of your city&nbsp;</p>\n<p>In the comments or reply&nbsp;</p>\n<p>Maybe someday we\u2019ll eat a pizza pie&nbsp;</p>\n<p>http://i.giphy.com/u98zWbe3jgJoI.gif</p>\n<p>With our Steem dollars we will fly!</p>\n<p>&nbsp;___&nbsp;</p>\n<p>Also share links to your writing or art&nbsp;</p>\n<p>So we won\u2019t feel so far apart!&nbsp;</p>\n<p>__</p>\n<p>If you\u2019re not a robot, why not? &nbsp;</p>\n<p>http://www.engineeringwellness.com/wp-content/uploads/2016/09/robot-1214536_1280.png</p>\n<p>__</p>\n<p>&nbsp;<a href=\"https://steemit.com/@micheletrainer\"><strong>For more Michele the Trainer follow me on Steemit&nbsp;</strong></a><a href=\"https://twitter.com/MicheleTrainer\"><strong>and at @MicheleTrainer</strong></a><a href=\"https://twitter.com/MicheleTrainer\"><strong> &nbsp;</strong></a> <strong>Email is my favorite for questions or requests, thanks! &nbsp;&nbsp;</strong>&nbsp;</p>\n<p>Poem is my own, images from Pixabay and gifs from Giphy.</p>\n<p>__</p>\n<p><img src=\"https://robohash.org/stellabelle.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@stellabelle</p>\n<p><img src=\"https://robohash.org/ericvancewalton.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@ericvancewalton</p>\n<p><img src=\"https://robohash.org/cristi.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@cristi</p>\n<p><img src=\"https://robohash.org/micheletrainer.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@micheletrainer</p>\n<p><img src=\"https://robohash.org/mctiller.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@mctiller</p>\n<p><img src=\"https://robohash.org/lukeofkondor.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@lukeofkondor</p>\n<p><img src=\"https://robohash.org/soulsistashakti.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@soulsistashakti</p>\n<p><img src=\"https://robohash.org/mindover.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@mindover</p>\n<p><img src=\"https://robohash.org/mars-eve.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@mars-eve</p>\n<p><img src=\"https://robohash.org/patrick-g.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@patrick-g</p>\n<p><img src=\"https://robohash.org/kaylinart.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@kaylinart</p>\n<p><img src=\"https://robohash.org/romanskv.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@romanskv</p>\n<p><img src=\"https://robohash.org/the-alien.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@the-alien</p>\n<p><img src=\"https://robohash.org/razvanelulmarin.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@razvanelulmarin</p>\n<p><img src=\"https://robohash.org/strangerarray.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@strangerarray</p>\n<p><img src=\"https://robohash.org/lat-nayar.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@lat-nayar</p>\n<p><img src=\"https://robohash.org/ann-hoy.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@ann-hoy</p>\n<p><img src=\"https://robohash.org/future24.png?size=48x48\" width=\"48\" height=\"48\"/><br>\n@future24</p>\n</html>",
+    "body_length": 3816,
+    "cashout_time": "2016-09-12T14:39:15",
+    "category": "introduceyourself",
+    "children": 31,
+    "created": "2016-09-05T14:39:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduceyourself\",\"steemit\",\"steem\",\"travel\",\"life\"],\"users\":[\"stellabelle\",\"ericvancewalton\",\"cristi\",\"micheletrainer\",\"mctiller\",\"lukeofkondor\",\"soulsistashakti\",\"mindover\",\"mars-eve\",\"patrick-g\",\"kaylinart\",\"romanskv\",\"the-alien\",\"razvanelulmarin\",\"strangerarray\",\"lat-nayar\",\"ann-hoy\",\"future24\"],\"image\":[\"http://www.engineeringwellness.com/wp-content/uploads/2016/09/hands-600497_1920.jpg\",\"http://www.engineeringwellness.com/wp-content/uploads/2016/09/netherlands-97830_1920.jpg\",\"http://www.engineeringwellness.com/wp-content/uploads/2016/09/rabbit-1422882_1920.jpg\",\"http://www.engineeringwellness.com/wp-content/uploads/2016/09/new-york-city-78181_1920.jpg\",\"http://i.giphy.com/u98zWbe3jgJoI.gif\",\"http://www.engineeringwellness.com/wp-content/uploads/2016/09/robot-1214536_1280.png\",\"https://robohash.org/stellabelle.png?size=48x48\",\"https://robohash.org/ericvancewalton.png?size=48x48\",\"https://robohash.org/cristi.png?size=48x48\",\"https://robohash.org/micheletrainer.png?size=48x48\",\"https://robohash.org/mctiller.png?size=48x48\",\"https://robohash.org/lukeofkondor.png?size=48x48\",\"https://robohash.org/soulsistashakti.png?size=48x48\",\"https://robohash.org/mindover.png?size=48x48\",\"https://robohash.org/mars-eve.png?size=48x48\",\"https://robohash.org/patrick-g.png?size=48x48\",\"https://robohash.org/kaylinart.png?size=48x48\",\"https://robohash.org/romanskv.png?size=48x48\",\"https://robohash.org/the-alien.png?size=48x48\",\"https://robohash.org/razvanelulmarin.png?size=48x48\",\"https://robohash.org/strangerarray.png?size=48x48\",\"https://robohash.org/lat-nayar.png?size=48x48\",\"https://robohash.org/ann-hoy.png?size=48x48\",\"https://robohash.org/future24.png?size=48x48\"],\"links\":[\"https://steemit.com/@micheletrainer\",\"https://twitter.com/MicheleTrainer\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T14:47:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 2601056621774,
+    "parent_author": "",
+    "parent_permlink": "introduceyourself",
+    "pending_payout_value": "1.549 HBD",
+    "percent_hbd": 10000,
+    "permlink": "where-are-you-from-an-original-interactive-poem",
+    "post_id": 1134802,
+    "promoted": "56.500 HBD",
+    "replies": [],
+    "root_title": "Where are YOU from?  an original interactive poem",
+    "title": "Where are YOU from?  an original interactive poem",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduceyourself/@micheletrainer/where-are-you-from-an-original-interactive-poem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 936485500020,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3718242946,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4513908950,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836654069,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64676583521,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992692418,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256370467,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 779706217649,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19451819636,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747149284,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160439161,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6821654706,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345736815,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11533590302,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 177816889458,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62974883695,
+        "rshares": 542833790,
+        "voter": "pinnpe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 861550113201,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787980118,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12095791916,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11501242325,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192312398750,
+        "rshares": 413536128,
+        "voter": "lyubovnam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 649863857,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 1293405725,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 59751474240,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 39504015264,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 140706312966,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1074932980,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 16192083951,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 34393459049,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 235543115,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6039610222,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38681973250,
+        "rshares": 1722523564,
+        "voter": "cats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 70060197,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 128178174,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 26803377685,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9224124607,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 8183954680,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 2245256363,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36311220707,
+        "rshares": 68374322397,
+        "voter": "malaiandrueth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25927425773,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 28503380534,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 6457378869,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 65123045108,
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 562498382,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 270786218,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12664228330,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 25564668758,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1269737381,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199905262704,
+        "rshares": 87000119,
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 109956371,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 54408230,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20789357061,
+        "rshares": 56130433,
+        "voter": "jessica.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322790516,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50387100,
+        "voter": "lockon"
+      }
+    ],
+    "author": "knircky",
+    "author_reputation": 3320684282022,
+    "beneficiaries": [],
+    "body": "A little while ago I wrote a [story](https://steemit.com/photography/@knircky/lion-hunting-zebras-and-being-chased-by-buffalo-in-the-masai-mara-afrika) of how the marsh pride of roughly 17 lions had killed a zebra. At the end Scarface showed up and feasted with the rest of the pride. He is the dominant male of a coalition of 3 males that rule several prides in the Masai Mara. He is also a bit of a celebrity. \n\nMe and my wife have been in the Mara for 3 nights now and today is our last day here. We have looked for the pride every day but could not find them again. We have seen one of the other males the day before. He was beautiful but his mane was not as dark as that of Scar. After our drive yesterday, we decided to get up and do one last game drive in the morning before catching our plane at 11 am which will take us to the Serengeti.\n\nWe will be rewarded for waking up early today by getting to see the king of the land one last time.\n\n<a target='_BLANK' href='https://ipfs.pics/QmYfPVJdAcuizxjj6ya3BZmiSSudpFriQ4Tkrq8tV1SuAc'><img src='https://ipfs.pics/ipfs/QmYfPVJdAcuizxjj6ya3BZmiSSudpFriQ4Tkrq8tV1SuAc'/></a>\n\nIt is rainy season in east Africa right now, as it is April. We have experienced quite a bit of rain the last few days. The clouds and rains are different here from what I have ever seen. I think it is truly magnificent. My wife is not as enthusiastic and it was not always best for pictures. \n\nWe have also gotten stuck a few times, but our driver always managed to get unstuck without us having to shovel or call other rangers. His name is Benson and he is a true Masai that lives in a Masai village a short travel away from our camp. He is amazing and he loves this place. It is clearly his home and he has a deep connection with the land and many of the animals, such as Scar.\n\nHere is a view over the Mara with the rainy clouds from when we stopped for picnic the day before.\n\n<a target='_BLANK' href='https://ipfs.pics/QmSVsmBmQf7DrEzssrnA6y4G5DGcgdg8qPDLMtJQS3B7Zr'><img src='https://ipfs.pics/ipfs/QmSVsmBmQf7DrEzssrnA6y4G5DGcgdg8qPDLMtJQS3B7Zr'/></a>\n\nThis morning we have been on the road for only a short time. All of a sudden Benson stops the car. He is speaking Masai on the walkie talkie and suddenly is turning around. We are going towards the edge of the Masai game park, where he is allowed to drive the range rover on the gras and off roads.\n\nWe have been here before, it is a huge wide open grassland with almost no trees that stretches towards the Mara river. At the river the landscape changes dramatically. It is bushy there and also forms the end of the game reserve. Our camp is on the other side of the river and it is outside the park. \n\nWe see some cars at a distance gathered around something. And there are hyenas everywhere. We have seen many hyenas the days before as they are truly the most successful predator and certainly the most abundant here. But I have never seen this many together. They are scattered over a large area and some are fighting and quarreling like they always seem to do.\n\n<a target='_BLANK' href='https://ipfs.pics/Qmc51FkjyrzktSrrJg1JqgDAX3TTon1XDHwGadMQhLMf2q'><img src='https://ipfs.pics/ipfs/Qmc51FkjyrzktSrrJg1JqgDAX3TTon1XDHwGadMQhLMf2q'/></a>\n\nIt must be a very successful clan as usually hyenas live in groups around thirty. Today there are certainly more than 30 hyenas here. It looks more like the numbers are in the hundreds, although the biggest clans usually comprise around 80 members. They are scattered in a half-circle around where all the cars are parked and are running around anxiously.\n\n<a target='_BLANK' href='https://ipfs.pics/QmP7WoZkGZptyEkoosqyugxgeZjErfRYnAAxpKBZ14MhMF'><img src='https://ipfs.pics/ipfs/QmP7WoZkGZptyEkoosqyugxgeZjErfRYnAAxpKBZ14MhMF'/></a>\n\nWe get to the where the other cars are and now see what the fuss is all about.\n\n<a target='_BLANK' href='https://ipfs.pics/QmfE8EM7REGqvTEe4sSu9qehQtb2TttYSWhnGGz3ktyCCt'><img src='https://ipfs.pics/ipfs/QmfE8EM7REGqvTEe4sSu9qehQtb2TttYSWhnGGz3ktyCCt'/></a>\n\nIt is Scareface and what appears to be a dead hippo. Because Scarface is part of a coalition that control at least two prides, they often split up and travel back and forth between the two territories. Lions are known to patrol their lands while females tend to stay together forever and do not move quite as much.\n\nWhen we saw the females kill the zebra a few days before some people in the cars were talking about how male lions are lazy and rarely kill anything. \n\nBenson laughed at them. Clearly that is not the case. Around the dead hippo there is mud everywhere. A small circle of mud is around the carcass but there is a much bigger area where the grass has been replaced by wet black dirt. The struggle must have been enormous, quite different from the practical instant kill the lionesses have performed on the zebra. A hippo is probably quite a difficult animal to kill. I did not even know that these animals were on the lions menu.\n\n<a target='_BLANK' href='https://ipfs.pics/QmReNuJjduduswRJYwsmEwL9kF11gEScgJcgNK2V9NLHGv'><img src='https://ipfs.pics/ipfs/QmReNuJjduduswRJYwsmEwL9kF11gEScgJcgNK2V9NLHGv'/></a>\n \nScarface is eating the intestines and the belly flesh of the hippo. He is clearly enjoying it. \nI ask Benson to move around to get different views of him. At one point we get a sniff of what was inside that belly. It stinks horribly bad. Benson quickly moves the car again so he does not have to smell it, while holding his nose closed. Quite a wuss for a former Masai warrior.\n\nWe are not the only ones watching the spectacle. There are many other photographers, tourists in range rovers and of course the hyenas are still lurking and quarreling. Either there are members of different clans around the kill or they are pre-negotiating the access to the hippos when Scar moves on. For a big lion this animal might appear huge but for all these hyenas it won't be enough.  \n\n<a target='_BLANK' href='https://ipfs.pics/QmdLpkhx9P4eG32CWyGDjUobVmutAnwuqNoxSj5xLyeDn1'><img src='https://ipfs.pics/ipfs/QmdLpkhx9P4eG32CWyGDjUobVmutAnwuqNoxSj5xLyeDn1'/></a>\n\nThey still keep their distance. \n\n<a target='_BLANK' href='https://ipfs.pics/QmTchpqWxG4NqoMegWY6RAvxMxQARfKSTRH4kziqeKhuMr'><img src='https://ipfs.pics/ipfs/QmTchpqWxG4NqoMegWY6RAvxMxQARfKSTRH4kziqeKhuMr'/></a>\n\nScar is not the least bit worried. He guards his kill and shows some minor sings of territorial behavior here and there, but mostly he just enjoys his kill and ignores everything else, like a true king would.\n\n<a target='_BLANK' href='https://ipfs.pics/QmbXJtziTZUY8fsVYFWJRBuBFwe11pVGwD6K1x7Q43VNs6'><img src='https://ipfs.pics/ipfs/QmbXJtziTZUY8fsVYFWJRBuBFwe11pVGwD6K1x7Q43VNs6'/></a>\n\nHe must have been eating for a while as he seems to be getting full. There is only one feisty little jackal that comes very close. Scar seems not happy about it, but also too lazy to do much about it. Further back we see two other jackal fight for access to the scene.\n\n<a target='_BLANK' href='https://ipfs.pics/QmYmJ8xBavR6qTz18ww9LYrSvHbTdSKJPXcg5iqbmhTgVe'><img src='https://ipfs.pics/ipfs/QmYmJ8xBavR6qTz18ww9LYrSvHbTdSKJPXcg5iqbmhTgVe'/></a>\n\nAfter a while Scar seems to have a full belly, as all he does now is look around. I wonder if he is looking for other members of his pride.\n\n<a target='_BLANK' href='https://ipfs.pics/QmcE8PUJtv3tUA7hFLwNrSsb7qc9MphYroSZDQ5U15niee'><img src='https://ipfs.pics/ipfs/QmcE8PUJtv3tUA7hFLwNrSsb7qc9MphYroSZDQ5U15niee'/></a>\n\nShortly thereafter even that is too much work and he just lays sleepy in the mud. You can see on the edge of the picture there is a camp. That camp is outside of the park, that is how close we are to the edge of the park. This is also why the hyenas are not on the pictures with Scar. They are behind the cars coming from inside the park.\n\n<a target='_BLANK' href='https://ipfs.pics/QmZSRV6CYNEbLc4JEi2MaL7uuCphpSKkdGmVwDK1N5TACk'><img src='https://ipfs.pics/ipfs/QmZSRV6CYNEbLc4JEi2MaL7uuCphpSKkdGmVwDK1N5TACk'/></a>\n\nEven though Scarface is laying flat on the ground now, the hyenas are still not coming closer. I cannot believe the respect this huge clan is showing to this one lion.\n\nWe do not stick around to the end and I do not know when Scarface will leave and if the hyenas get to finish off the hippo or if the rest of the marsh pride will show up after all.\n\nBenson wants to show us one other places and we drive on.\n\n\nBelow is also a video that tells the same story. I have made it particularly for steem and used an intro from @blockcore. I have tried something new by narrating over it in one take. Let me know if you like it.\n\nThe video is 5 minutes long.\n\nhttps://www.youtube.com/watch?v=4f0h8E2QYrs\n\nAlso check out the other story of the march pride that features Scar as well https://steemit.com/photography/@knircky/lion-hunting-zebras-and-being-chased-by-buffalo-in-the-masai-mara-afrika\n\nIt also comes with a video of the whole event.\n\n\n\n### Pleas make sure to upvote and follow me [@knircky](http://steemit.com/photography/@knircky) if you like this story.\n\n## Thank you for your time and attention. \n\nI hope you enjoyed the story, the pictures and my video.\n\nThe pictures and video footage is all taken by me and my wife. She took the first picture of this set, where Scar looks directly at us. This is my favorite picture out of all the roughly 6000 pictures we took over the entire trip.\n\n#### ps. I am reposting this to see if there is an issue with this post or if it just wasn't noticed the first time. I also want to test the new promotion feature and see if that makes a difference.",
+    "body_length": 9590,
+    "cashout_time": "2016-09-06T06:37:42",
+    "category": "lion",
+    "children": 3,
+    "created": "2016-08-30T06:37:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"lion\",\"photography\",\"africa\",\"masai\",\"travel\"],\"users\":[\"blockcore\"],\"image\":[\"https://ipfs.pics/ipfs/QmYfPVJdAcuizxjj6ya3BZmiSSudpFriQ4Tkrq8tV1SuAc\",\"https://ipfs.pics/ipfs/QmSVsmBmQf7DrEzssrnA6y4G5DGcgdg8qPDLMtJQS3B7Zr\",\"https://ipfs.pics/ipfs/Qmc51FkjyrzktSrrJg1JqgDAX3TTon1XDHwGadMQhLMf2q\",\"https://ipfs.pics/ipfs/QmP7WoZkGZptyEkoosqyugxgeZjErfRYnAAxpKBZ14MhMF\",\"https://ipfs.pics/ipfs/QmfE8EM7REGqvTEe4sSu9qehQtb2TttYSWhnGGz3ktyCCt\",\"https://ipfs.pics/ipfs/QmReNuJjduduswRJYwsmEwL9kF11gEScgJcgNK2V9NLHGv\",\"https://ipfs.pics/ipfs/QmdLpkhx9P4eG32CWyGDjUobVmutAnwuqNoxSj5xLyeDn1\",\"https://ipfs.pics/ipfs/QmTchpqWxG4NqoMegWY6RAvxMxQARfKSTRH4kziqeKhuMr\",\"https://ipfs.pics/ipfs/QmbXJtziTZUY8fsVYFWJRBuBFwe11pVGwD6K1x7Q43VNs6\",\"https://ipfs.pics/ipfs/QmYmJ8xBavR6qTz18ww9LYrSvHbTdSKJPXcg5iqbmhTgVe\",\"https://ipfs.pics/ipfs/QmcE8PUJtv3tUA7hFLwNrSsb7qc9MphYroSZDQ5U15niee\",\"https://ipfs.pics/ipfs/QmZSRV6CYNEbLc4JEi2MaL7uuCphpSKkdGmVwDK1N5TACk\",\"https://img.youtube.com/vi/4f0h8E2QYrs/0.jpg\"],\"links\":[\"https://steemit.com/photography/@knircky/lion-hunting-zebras-and-being-chased-by-buffalo-in-the-masai-mara-afrika\",\"https://ipfs.pics/QmYfPVJdAcuizxjj6ya3BZmiSSudpFriQ4Tkrq8tV1SuAc\",\"https://ipfs.pics/QmSVsmBmQf7DrEzssrnA6y4G5DGcgdg8qPDLMtJQS3B7Zr\",\"https://ipfs.pics/Qmc51FkjyrzktSrrJg1JqgDAX3TTon1XDHwGadMQhLMf2q\",\"https://ipfs.pics/QmP7WoZkGZptyEkoosqyugxgeZjErfRYnAAxpKBZ14MhMF\",\"https://ipfs.pics/QmfE8EM7REGqvTEe4sSu9qehQtb2TttYSWhnGGz3ktyCCt\",\"https://ipfs.pics/QmReNuJjduduswRJYwsmEwL9kF11gEScgJcgNK2V9NLHGv\",\"https://ipfs.pics/QmdLpkhx9P4eG32CWyGDjUobVmutAnwuqNoxSj5xLyeDn1\",\"https://ipfs.pics/QmTchpqWxG4NqoMegWY6RAvxMxQARfKSTRH4kziqeKhuMr\",\"https://ipfs.pics/QmbXJtziTZUY8fsVYFWJRBuBFwe11pVGwD6K1x7Q43VNs6\",\"https://ipfs.pics/QmYmJ8xBavR6qTz18ww9LYrSvHbTdSKJPXcg5iqbmhTgVe\",\"https://ipfs.pics/QmcE8PUJtv3tUA7hFLwNrSsb7qc9MphYroSZDQ5U15niee\",\"https://ipfs.pics/QmZSRV6CYNEbLc4JEi2MaL7uuCphpSKkdGmVwDK1N5TACk\",\"https://www.youtube.com/watch?v=4f0h8E2QYrs\",\"http://steemit.com/photography/@knircky\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T06:37:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 3481571268038,
+    "parent_author": "",
+    "parent_permlink": "lion",
+    "pending_payout_value": "2.884 HBD",
+    "percent_hbd": 10000,
+    "permlink": "scarface-the-lion-king-of-the-masai-mara-having-breakfast",
+    "post_id": 1052531,
+    "promoted": "56.500 HBD",
+    "replies": [],
+    "root_title": "Scarface, the lion King of the Masai Mara having breakfast",
+    "title": "Scarface, the lion King of the Masai Mara having breakfast",
+    "total_payout_value": "0.000 HBD",
+    "url": "/lion/@knircky/scarface-the-lion-king-of-the-masai-mara-having-breakfast"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 289672111903,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14163917784755,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13270505121655,
+        "rshares": 63264215903793,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 7008652489816,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5561457497398,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185067624745,
+        "rshares": 2168262535121,
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 88420265451,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1168173562906,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 137139646097,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 47633356096,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "3218",
+        "reputation": 12382143533351,
+        "rshares": 224671051401,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 508881476,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 6128985263,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 47419915237,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "2900",
+        "reputation": 1663549830469,
+        "rshares": 268813336,
+        "voter": "coar"
+      },
+      {
+        "percent": "5555",
+        "reputation": 2902053059801,
+        "rshares": 1414262212,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 414873886403,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5502742374,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10900407436,
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6499415173,
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3552258858,
+        "voter": "aizen03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1167892678,
+        "voter": "aizen04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 494011890,
+        "voter": "aizen05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4792503154,
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2866396620,
+        "voter": "aizen08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1018758155,
+        "voter": "aizen09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 440815198,
+        "voter": "aizen10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7251352623,
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3046246145,
+        "voter": "aizen11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2093766327,
+        "voter": "aizen14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2461979195,
+        "voter": "aizen19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 648934214,
+        "voter": "aizen15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6424687447,
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 645100690,
+        "voter": "aizen20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4217308295,
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1120984313,
+        "voter": "aizen23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2204835021,
+        "voter": "aizen17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3470343919,
+        "voter": "aizen24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 490553110,
+        "voter": "aizen18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1314165947,
+        "voter": "aizen25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2232368724,
+        "voter": "aizen28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3435213218,
+        "voter": "aizen26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1127650669,
+        "voter": "aizen27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3875576479,
+        "voter": "aizen32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2120310130,
+        "voter": "aizen30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3922031715,
+        "voter": "aizen31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1290987596,
+        "voter": "aizen33"
+      },
+      {
+        "percent": "1000",
+        "reputation": 16234753830016,
+        "rshares": 7897522470,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1553035109,
+        "voter": "aizen34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 311774459,
+        "voter": "aizen35"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5849292526,
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1459315560,
+        "voter": "aizen37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 408290923,
+        "voter": "aizen29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2872459339,
+        "voter": "aizen21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4407402890,
+        "voter": "aizen12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1876568717,
+        "voter": "aizen38"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 523210618,
+        "voter": "aizen39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 397051543,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5888717170887,
+        "rshares": 33767375079,
+        "voter": "ratel"
+      },
+      {
+        "percent": "2200",
+        "reputation": 6200536920826,
+        "rshares": 17023109715,
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6744340925,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 11724844430,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 58921570387,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 245172817,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 389458625,
+        "voter": "aizen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3344834193,
+        "voter": "aizen41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 950518795,
+        "voter": "aizen42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3238155527,
+        "voter": "aizen46"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 886279462,
+        "voter": "aizen47"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 217253386,
+        "voter": "aizen48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 113259366,
+        "voter": "aizen49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 941000373,
+        "voter": "aizen51"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1267671657295,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 455780965,
+        "voter": "aizen43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 67659539,
+        "voter": "aizen44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 763269188,
+        "voter": "aizen54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1422705803,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2328013953,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 312801577458,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4709498423,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 4338003613,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3779872763249,
+        "rshares": 20362567901,
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24478695193,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4997362589971,
+        "rshares": 109932408114,
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 233569693,
+        "voter": "aizen52"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 399177345,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1682066491,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 4295922141,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 190269483,
+        "voter": "aizen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6881734510,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 11121059561,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 256616601778,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 9502194625,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1878917499597,
+        "rshares": 5244790636,
+        "voter": "sharker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54051855495,
+        "rshares": 141429957,
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 7837739118,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 231816568,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19395686276,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 3306119556,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3627578747,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 83707323,
+        "voter": "aizen53"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 26794677003,
+        "voter": "fabien"
+      },
+      {
+        "percent": "1100",
+        "reputation": 4063076365725,
+        "rshares": 467096193,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7424874957,
+        "rshares": 108721833,
+        "voter": "cryptoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 921882750,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 449108428,
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 753110728,
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1534315395,
+        "voter": "aizen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239545179,
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 551525219,
+        "voter": "bento01"
+      },
+      {
+        "percent": "4000",
+        "reputation": 10137266406870,
+        "rshares": 6519151447,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 887519432562,
+        "rshares": 1651089101,
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61374667649460,
+        "rshares": 248311264506,
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 876981522843,
+        "rshares": 5102245996,
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65300521,
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24365622803,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65308725,
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 24019810112,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24534454832,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24543057596,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81826244,
+        "voter": "bento06"
+      },
+      {
+        "percent": "3286",
+        "reputation": 1751717743,
+        "rshares": 6664176466,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22613377010,
+        "rshares": 74378126,
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 79900402938,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1018522724,
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 101572397,
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24538538513,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24536039997,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24533093295,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3524384056312,
+        "rshares": 4336505805,
+        "voter": "armen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24529111489,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24525562069,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24522807346,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 104692799,
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11496127617,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "9800",
+        "reputation": 954937043358,
+        "rshares": 7525884432,
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 4098512589,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 179351183,
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59618782,
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1046033907,
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 831573857,
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 232896636,
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 740811240,
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55704135,
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3933588893,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1178231206,
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1223550869,
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 437783005,
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 44282381365,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 106860965,
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 896976221,
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 8968836569,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 30570344850,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 6745075226,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 64878458203,
+        "rshares": 699530791,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 489129872,
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 61520687,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 13443129420,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 64732326,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 2205240368,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24516526583,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 362426778,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 194739083,
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 9504908244,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1669616654,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2600508548,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1183314250,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 83925616,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 4592499069,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 23655969247,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 1687924866,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59794878176,
+        "rshares": 77004567,
+        "voter": "chrisaiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 56705725699,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 504619233,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11937003273,
+        "rshares": 51939094,
+        "voter": "freesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 177656553,
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 122884931,
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 2142141248,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3493374201,
+        "rshares": 53613334,
+        "voter": "paxmagnus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 574180710,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51415300,
+        "voter": "timothy.sykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 454340855,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55848311,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 858672756,
+        "rshares": 810369666,
+        "voter": "bapparabi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16681034811,
+        "rshares": 3066838916,
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 538039419,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80674477,
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213762437,
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678509864471,
+        "rshares": 426281596,
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165924295987,
+        "rshares": 202251096,
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16892648,
+        "rshares": 156261069,
+        "voter": "ibm1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158187618,
+        "voter": "mirelasto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2798971603,
+        "rshares": 106367912,
+        "voter": "paulocouto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16572462573,
+        "rshares": 4781575087,
+        "voter": "exploretraveler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16791486869,
+        "rshares": 138977944,
+        "voter": "newsfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 141784776,
+        "voter": "dirlei.sdias"
+      }
+    ],
+    "author": "pkattera",
+    "author_reputation": 4997362589971,
+    "beneficiaries": [],
+    "body": "![Group34d0c4.jpg](https://www.steemimg.com/images/2016/09/14/Group34d0c4.jpg)\n\n<br>\nThis is my partial* application for @ned's inaugural bounty, [for design and implementation of a Steemit bounty system](https://steemit.com/bounties/@ned/it-s-time-for-a-steem-bounty-system). \n\n*It's a partial application because designing a bounty system for Steemit is very complex (at least for a blockchain n00b like me). There are many different ways to implement this system. I feel like I need more collaboration with developers and the business to fully understand the technical constraints and business objectives. As @jesta said in his [post](https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal) yesterday:\n> TLDR: This project, done right, really isn't as simple as it sounds.\n\nAnyway, for now, the most valuable thing I can do to contribute is to post some lower fidelity (not polished) mobile web designs that outline my proposed Information Architecture (IA) and User Experience (UX). Once we can agree on the right content and feature set for the MVP version of Bounties, I'd like to polish the visual design and create desktop designs.\n\n## Assumptions and mechanics\nI agree with most of the mechanics outlined by @jesta in his [Steemit Bounty System proposal](https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal). If you haven't read it, please check it out. There are a few things that I want to challenge though:\n\n1. I think that the Bounty system should live within steemit.com (and not on a separate domain). There are pros and cons of this approach but I think keeping bounties native to the steemit.com ecosystem will create the most long term value due to it's ease of use for most non-advanced users. \n  \u2013 I propose that it lives at: http://steemit.com/bounties\n  \u2013 In case bounties are required to live on a separate domain for technical or legal reasons, perhaps it could live on the http://bounties.steemit.com subdomain. \n\n2. I'm leaning towards requiring bounty creators to be registered and logged into Steemit.com to post a new bounty.     \n\u2013 This would make posting a new bounty very similar to posting a new blog post. \n\u2013 It would also enable people to fund bounties using a similar mechanism to 'Promote a post' (instead of transferring funds to @bounty via steempay.io/shapeshift/cli_wallet commands as proposed by @jesta.\n\u2013 Requiring registration for bounty creators should increase the overall quality and reduce the potential for bounty abuse and misuse by increasing accountability and Steemit reputation transparency (like that outlined by @mrosenquist [here](https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal#@mrosenquist/re-jesta-steem-bounty-system-milestone-1-proposal-20160913t041449326z)) \n\n## Design ethos\n\nSince these designs are intended to live on Steemit.com, I've tried to adhere to Steemit's visual styles and retain it's interaction patterns for similar tasks. For example:\n  \u2013 Creating a bounty should be as easy and as similar as posting a blog post. \n  \u2013 Funding a bounty should be as easy and as similar as promoting a blog post. \n\n# Competitor analysis\n\nTo kick off the design process, I reviewed several comparable website earlier this week. Check it out here: \n\n[https://steemit.com/bounties/@pkattera/competitor-analysis-for-ned-s-proposed-bounty-management-system](https://steemit.com/bounties/@pkattera/competitor-analysis-for-ned-s-proposed-bounty-management-system)\n\n# Information Architecture \n\nHere's my proposed structure for the Bounties website:\n\n![Information-ArchitectureCopy2f439.jpg](https://www.steemimg.com/images/2016/09/14/Information-ArchitectureCopy2f439.jpg)\n\nAlthough I'd love to include a Bounty Hunter leaderboard and user profiles, I think we should keep the MVP as simple as possible for now and include it in a future version. \n\n# Content and features\n\nNow that I've outline the page templates and structure above, the Content Hierarchy diagram below shows a high level view of content and features to be included on each page. \n\n![Content77511.jpg](https://www.steemimg.com/images/2016/09/14/Content77511.jpg)\n\n# Mobile UX designs\n\nBelow are the mobile designs. Note: All copy, images and icons are placeholder for now.\n\n<br>\n## Bounties home / landing page\n\n![1.Bounty-home-page3de51.jpg](https://www.steemimg.com/images/2016/09/14/1.Bounty-home-page3de51.jpg)\n\n<br>\n## Post a bounty (excluding milestones)\n\nAs per my previous post, adding milestones to bounties increases the complexity of the whole bounty system. \n> My gut feeling is to keep it super simple for version 1 and exclude milestones. People could still create individual bounties for separate tasks and link related bounties within the description.\n\nThis design excludes the concept of milestones. \n\n![2.Post-a-bounty4b820.jpg](https://www.steemimg.com/images/2016/09/14/2.Post-a-bounty4b820.jpg)\n\n<br>\n## Post a bounty (including milestones)\n\nBut if people feel strongly about keeping milestones, here is a design. \n\n![Milestones78f61.jpg](https://www.steemimg.com/images/2016/09/14/Milestones78f61.jpg)\n\n<br>\n## Bounty template\n\n![3a.Bounty-template-brief1aec2.jpg](https://www.steemimg.com/images/2016/09/14/3a.Bounty-template-brief1aec2.jpg)\n\n![3b.Bounty-template-submissions05700.jpg](https://www.steemimg.com/images/2016/09/14/3b.Bounty-template-submissions05700.jpg)\n\n<br>\n## Submission template\n\n![4a-Submission6c0f1.jpg](https://www.steemimg.com/images/2016/09/14/4a-Submission6c0f1.jpg)\n\n<br>\n## Submit work\n\n![4b.Submit-a-post81120.jpg](https://www.steemimg.com/images/2016/09/14/4b.Submit-a-post81120.jpg)\n\n<br>\n## My bounties\n\nA place to keep track of all the bounties that you've posted, entered, or watched.\n\n![5.My-bountiesf7ffb.jpg](https://www.steemimg.com/images/2016/09/14/5.My-bountiesf7ffb.jpg)\n\n<br>\n## Filters on the bounty home / landing page\n\n![1a.filtersf0c90.jpg](https://www.steemimg.com/images/2016/09/14/1a.filtersf0c90.jpg)\n\n\n<br>\n---\n#### Questions or concerns?\n\nMessage me on steemit.chat (pkattera)\n\n<br>\n#### Thank you\n\nA few people to thank for inspiring me to design the Bounty System:\n\n\u2013 @ned for kicking off this initiative \n\u2013 @jesta for [this post](https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal)\n\u2013 @steve-walschot for [this post](https://steemit.com/bounty/@steve-walschot/application-for-bounty-system-by-ned)\n\u2013 @blueorgy for image hosting ([SteemIMG](https://www.steemimg.com/) gets better and better!) \n\n<br>\n#### Acknowledgements \n\nI used a few icons from The [Noun Project](https://thenounproject.com/). Credit to:\n\u2013  Ryo Sato (filter icon)\n\u2013 Kid A (calendar icon)\n\nSome photos are from [unsplash.com](http://unsplash.com) \u2013 a free image site.",
+    "body_length": 6729,
+    "cashout_time": "2016-09-21T10:30:54",
+    "category": "bounties",
+    "children": 17,
+    "created": "2016-09-14T10:30:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"bounties\",\"bounty\",\"steemit\",\"steemian\",\"design\"],\"users\":[\"ned\",\"jesta\",\"bounty\",\"mrosenquist\",\"steve-walschot\",\"blueorgy\"],\"image\":[\"https://www.steemimg.com/images/2016/09/14/Group34d0c4.jpg\",\"https://www.steemimg.com/images/2016/09/14/Information-ArchitectureCopy2f439.jpg\",\"https://www.steemimg.com/images/2016/09/14/Content77511.jpg\",\"https://www.steemimg.com/images/2016/09/14/1.Bounty-home-page3de51.jpg\",\"https://www.steemimg.com/images/2016/09/14/2.Post-a-bounty4b820.jpg\",\"https://www.steemimg.com/images/2016/09/14/Milestones78f61.jpg\",\"https://www.steemimg.com/images/2016/09/14/3a.Bounty-template-brief1aec2.jpg\",\"https://www.steemimg.com/images/2016/09/14/3b.Bounty-template-submissions05700.jpg\",\"https://www.steemimg.com/images/2016/09/14/4a-Submission6c0f1.jpg\",\"https://www.steemimg.com/images/2016/09/14/4b.Submit-a-post81120.jpg\",\"https://www.steemimg.com/images/2016/09/14/5.My-bountiesf7ffb.jpg\",\"https://www.steemimg.com/images/2016/09/14/1a.filtersf0c90.jpg\"],\"links\":[\"https://steemit.com/bounties/@ned/it-s-time-for-a-steem-bounty-system\",\"https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal\",\"http://steemit.com/bounties\",\"https://steemit.com/bounty/@jesta/steem-bounty-system-milestone-1-proposal#@mrosenquist/re-jesta-steem-bounty-system-milestone-1-proposal-20160913t041449326z\",\"https://steemit.com/bounties/@pkattera/competitor-analysis-for-ned-s-proposed-bounty-management-system\",\"https://steemit.com/bounty/@steve-walschot/application-for-bounty-system-by-ned\",\"https://www.steemimg.com/\",\"https://thenounproject.com/\",\"http://unsplash.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T10:30:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 97843608402227,
+    "parent_author": "",
+    "parent_permlink": "bounties",
+    "pending_payout_value": "560.001 HBD",
+    "percent_hbd": 10000,
+    "permlink": "my-application-for-ned-s-steemit-bounty-management-forum-milestone-1-design-phase",
+    "post_id": 1241840,
+    "promoted": "56.001 HBD",
+    "replies": [],
+    "root_title": "My application for @ned's Steemit Bounty Management Forum: Milestone 1: Design Phase",
+    "title": "My application for @ned's Steemit Bounty Management Forum: Milestone 1: Design Phase",
+    "total_payout_value": "0.000 HBD",
+    "url": "/bounties/@pkattera/my-application-for-ned-s-steemit-bounty-management-forum-milestone-1-design-phase"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2429032704,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34637775323,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 394735060526,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173921081175,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1425501767,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17817262904,
+        "rshares": 116496190,
+        "voter": "bzeen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 230027365,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 53903761679,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 118592809668,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11649393204,
+        "rshares": 9511629517,
+        "voter": "masterline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5766569295559,
+        "rshares": 7402178350,
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46105524125,
+        "rshares": 165621540,
+        "voter": "zerozone"
+      }
+    ],
+    "author": "zerozone",
+    "author_reputation": 46105524125,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hey steemit,</p>\n<p>Ths is the start of my novel Zero Zone, which takes place in a world where the ozone layer is shrinking every year. But as it is shrinking at a different rate each year, no one knows how much longer they have. The story starts when plane travel is coming to an end, and people have decided where they want to spend their last years. I'm hoping to release the novel here exclusively for six months and start a kickstarter campaign, but that will depend on interest.</p>\n<p>Thank you to everyone who is checking it out.</p>\n<p><img src=\"https://s14.postimg.org/6mw4j2fap/cloud_cover_1005177_640.jpg\" width=\"640\" height=\"425\"/>t</p>\n<p>Chapter 1 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Sandra jolted forward as the plane skid across the landing. &nbsp;All that kept her in was her seat belt, which twisted and dug into her skin.. &nbsp;It would hurt later, after the fear had subsided. &nbsp;Beside her a large gentleman grabbed the breathing apparatus that dangled before him. &nbsp;Deep breaths. &nbsp;Sandra closed her eyes as the plane came to a complete spot. &nbsp;She chuckled to herself as a thought came to her. &nbsp;To die on the last plane that would ever leave the ground. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cAre you alright?\u201d Sandra asked the man beside her. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>He took another deep breath with closed eyes. &nbsp;Then, opening them, nodded. &nbsp;Sandra returned the nod with a smile before placing a comforting hand on his shoulder. His breathing slowed. &nbsp;He nodded again, slower. &nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>The speaker crackled above her, \u201cThis is pilot Edward Tarp. &nbsp;You have safely landed in Toronto, Canada. &nbsp;Thank you for flying with us. &nbsp;I have been flying planes for my whole life and wanted to say it has been an honour. &nbsp;Thank you.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>A person in the back started to clap. &nbsp;Then another. &nbsp;Before long, everyone started to cheer. &nbsp;A burst of emotion flooded the plane. &nbsp;Some people couldn\u2019t stop crying. &nbsp;Sandra politely clapped her hands a few times before getting up to grab her luggage. &nbsp;She had already shed her tears. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>With her luggage in hand, Sandra entered the airport. &nbsp;Everything looked normal still. &nbsp;Take a snapshot of a random group of people anywhere in the planet and it was like it was before things started to change. &nbsp;But then talk to those people. &nbsp;One quit his job and is following his dream. &nbsp;A couple can't muster the strength to get out of bed. &nbsp;While a woman is trading up on her addictions, looking to avoid any shred of reality. &nbsp;Everyone grieves differently. &nbsp;Sandra just didn't want to be alone. &nbsp;Now that air travel was no longer an option, people had to quickly decide who it was the wanted to spend their last couple of years with. &nbsp;Sandra chose Greg. &nbsp;She wasn't stuck. &nbsp;There was boats. &nbsp;Ways to return home. &nbsp;Back to Ryan. &nbsp;No. &nbsp;She made her decision. &nbsp;&nbsp;&nbsp;</p>\n<p>\"Sandra!\u201d &nbsp;A bearded man in his late twenties waved his hands in the air. &nbsp;He had on a muscle shirt and long shorts. &nbsp;He rushed towards Sandra. &nbsp;Without warning, &nbsp;he picked her up and spun her around the airport for all to see. &nbsp;Then he put her down to admire her. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cHow have you been?\u201d she asked &nbsp;Greg fixed his glasses. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cGood, you know for the world ending and everything.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cYou were never one to let just trivial things ruin your mood.\u201d &nbsp;&nbsp;&nbsp;</p>\n<p>Greg smiled and winked. &nbsp;He took out a rolled joint and placed it in his mouth. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cI know Canada is relaxed Greg, but we are still in an airport.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Greg finished lighting. &nbsp;He took a drag. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cAirport security isn't what it used to be. &nbsp;They still give a shit in England?\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Greg started to walk to his car. &nbsp;Sandra followed behind him, carrying her own luggage. &nbsp;&nbsp;&nbsp;</p>\n<p>\u201cOh yeah, it's worse. &nbsp;They are cracking down. &nbsp;Trying to keep things civil. &nbsp;Normal. &nbsp;I even got a ticket &nbsp;for littering the other day.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Greg laughed. &nbsp;\u201cWhat a joke. &nbsp;Always so fucking proper. &nbsp;Even doomsday can wait until tea time is finished. &nbsp;&nbsp;&nbsp;</p>\n<p>Greg started to sing a brit punk song about anarchy. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cStill signing I see.\u201d &nbsp;Sandra placed her bags in the back seat of a convertible. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cYeah the band has been booked non-stop. &nbsp;Nobody wants quiet anymore.\u201d &nbsp;&nbsp;&nbsp;</p>\n<p>Greg took another dragged. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cOr sobriety.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cHey I was stoned way before I found out we were all going to die. &nbsp;Everyone else is a poser.\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>Before Greg could take another hit, Sandra took the blunt from his mouth and placed it in hers. &nbsp;</p>\n<p>\u201cCan at you at least get us home before you get fucked up?\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cHome... I like that.\u201d &nbsp;Greg revved up the engine. &nbsp;Music blasted from the speakers. &nbsp;Sandra let it hit her as she sunk in the seat. &nbsp;With a deep breath she let the smoke fill her lungs.</p>\n<p>Chapter 2</p>\n<p>Sandra woke up with a headache. &nbsp;She hasn't partied like this in years. &nbsp;Around here empty bottles of vodka and gin decorated the loft. &nbsp;A full ashtray. &nbsp;Getting up, slowly, she stretched her body. &nbsp;Draping her body with an over-sized robe, Sandra grabbed her cell phone. &nbsp;She double checked to make sure Greg was still passed out before sneaking out the sliding door that lead to the beach. &nbsp;A slight breeze rushed against her face. &nbsp;It was warm out for a January night. &nbsp;But that was normal now. &nbsp;Winters were like summers. &nbsp;And the summers... &nbsp;&nbsp;</p>\n<p>Sandra waited as the phone rang. &nbsp;Thomas answered on the third ring. &nbsp;</p>\n<p>\u201cHello.\u201d &nbsp;</p>\n<p>\u201cHey stranger.\u201d &nbsp;</p>\n<p>\u201cSandra, is that you? &nbsp;It's four in the morning.\u201d &nbsp;\u201c</p>\n<p>We both knew you would be up.\u201d &nbsp;</p>\n<p>Thomas laughed. &nbsp;\u201cTrue... but what about you?\u201d &nbsp;</p>\n<p>\u201cCan't sleep.\u201d &nbsp;</p>\n<p>A beat. &nbsp;</p>\n<p>\u201cHow was the flight?\u201d &nbsp;</p>\n<p>\u201cGood, until we almost crashed on landing.\u201d &nbsp;</p>\n<p>\u201cAre you okay?\u201d Thomas asked. &nbsp;</p>\n<p>\"Yeah.\u201d &nbsp;</p>\n<p>\u201cTo die on the last plane ride.\u201d &nbsp;</p>\n<p>Sandra smiled, \u201cI thought the same thing... so... how goes the research? &nbsp;Have you saved the world yet?\u201d &nbsp;</p>\n<p>\u201cYou probably would have heard something if I did.\u201d &nbsp;</p>\n<p>\u201cHas there been any progress?\u201d &nbsp;</p>\n<p>Thomas let out a sigh. &nbsp;</p>\n<p>\u201cThomas?\u201d &nbsp;</p>\n<p>\u201cNo Sandra. &nbsp;Nothing. &nbsp;We can't even figure out at what rate the ozone layer is shrinking, let alone what is causing it. &nbsp;Some months it's a lot, some months it's barely noticeable.\u201d &nbsp;</p>\n<p>\u201cHow long do we have?\u201d &nbsp;</p>\n<p>\u201cSome people saw five, some say ten. &nbsp;No one knows.\u201d&nbsp;</p>\n<p>&nbsp;\u201cAnd you're still determined to spend them in a lab?\u201d &nbsp;</p>\n<p>Yep, I will die with a beaker in my hand.\u201d &nbsp;</p>\n<p>Sandra smiled. &nbsp;</p>\n<p>Silence. &nbsp;&nbsp;</p>\n<p>\u201cI miss you,\u201d said Thomas. &nbsp;</p>\n<p>\u201cDon't... please don't.\u201d &nbsp;</p>\n<p>\u201cWhy, you didn't give me a chance to say it before you left.\u201d &nbsp;</p>\n<p>\u201cI gave you plenty of chances, maybe if you looked at me once, you would have seen that I was tired of &nbsp;waiting.\u201d &nbsp;</p>\n<p>\u201cAm I suppose to apologize because of what is happening?\u201d &nbsp;</p>\n<p>\u201cI was waiting for you long before this happened.\u201d &nbsp;</p>\n<p>\u201cYou still blame me. &nbsp;You were with Greg.\u201d &nbsp;</p>\n<p>\u201cYeah and you were with Linda... and they were out of the picture for six months. &nbsp;One of them wasn't even in the country.\u201d &nbsp;</p>\n<p>\u201cWe were BOTH busy then Sandra. &nbsp;Remember, you didn't want to get involved, to mess up our friendship while things were hectic. &nbsp;You just started your job at the hospital. &nbsp;Or did you forget about all that?\u201d &nbsp;</p>\n<p>\u201cAt least I still made time to see you. &nbsp;And no I didn't forget. &nbsp;Don't shove that in my face\u201d &nbsp;</p>\n<p>\u201cSo you're practising medicine out there in Toronto? &nbsp;Making a difference.\u201d &nbsp;</p>\n<p>\u201cOh fuck you Thomas. &nbsp;On your high horse. &nbsp;You work for one person, you, to keep your mind busy, not all of us can find escape like that, so don't make us feel like shit.\u201d &nbsp;</p>\n<p>\u201cI didn't mean to...\u201d Thomas swallowed hard, \u201cI'm just mad Sandra. &nbsp;You left so suddenly. &nbsp;So permanently. &nbsp;And to Greg. &nbsp;Of all people. &nbsp;This isn't the worse part of it I know. &nbsp;It would have been just as bad if you were alone. &nbsp;But still...\u201d &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cIf you it makes you feel better, he didn't win, you lost.\u201d &nbsp;</p>\n<p>\u201cThanks, I feel so much better now.\u201d &nbsp;</p>\n<p>Sandra. &nbsp;\u201cAnd I miss you too.\u201d &nbsp;</p>\n<p>\u201cLet's try to keep in touch. &nbsp;I don't know how much longer our phones will work.\u201d &nbsp;</p>\n<p>\u201cWhat do you mean?\u201d &nbsp;</p>\n<p>\u201cThe satellites, didn't you hear?\u201d &nbsp;</p>\n<p>\u201cNo.\u201d &nbsp;</p>\n<p>\u201cYeah we are heading back to the stone age... you don't know about the boats either?\u201d &nbsp;</p>\n<p>Sandra stared off into the distant sea. &nbsp;\u201cBoats?\u201d &nbsp;</p>\n<p>\u201cCommercial ships are stopping at the end of February. &nbsp;Too dangerous with the weather.\u201d &nbsp;</p>\n<p>\u201cOh.\u201d &nbsp;</p>\n<p>\u201cIt's not too late you know... you can come home.\u201d &nbsp;&nbsp;</p>\n<p>\u201cI can't do that to Greg.\u201d &nbsp;</p>\n<p>\u201cHe would probably be too high to remember it.\u201d &nbsp;&nbsp;</p>\n<p>\u201cI'm sorry Thomas.\u201d &nbsp;</p>\n<p>\u201cWas worth a shoot.\u201d &nbsp;</p>\n<p>\u201cI should go...\u201d &nbsp;</p>\n<p>\u201cI understand. &nbsp;We will talk soon.\u201d &nbsp;</p>\n<p>\u201cYeah... we will... bye Thomas.\u201d &nbsp;</p>\n<p>A tear started to slide down Sandra's cheek. &nbsp;She let herself feel the wind brush against it before wiping it off. &nbsp;Then she turned around to go back to bed. &nbsp;But before she left the beach something caught her eye. &nbsp;There was a man with a camera pointed towards the sky, over the water. &nbsp;Sandra wandered over to get closer. &nbsp;When she was a couple of feet away she looked up to see what he was looking at. &nbsp;Nothing. &nbsp;It was pitch black. &nbsp;But then the sun started to rise. &nbsp;Magnificent shades of red and orange illuminated the air. &nbsp;It was like being under a blanket of fire. &nbsp;Sandra watched on in awe as the sound of a clicking camera went off beside her. &nbsp;</p>\n<p>\u201cIs this the first sunset you have seen since it started.\u201d &nbsp;</p>\n<p>\u201cYeah,\u201d she said, still looking at the sky. &nbsp;&nbsp;&nbsp;&nbsp;</p>\n<p>\u201cThey get more beautiful each day. &nbsp;As the sun gets closer.\u201d &nbsp;&nbsp;</p>\n<p>\u201cThe sun isn't getting closer.\u201d &nbsp;</p>\n<p>\u201cI know, but it's easier to say that. &nbsp;People spend too much time trying to explain things.\u201d &nbsp;He took another couple of shots. &nbsp;\u201cI've been getting a lot of great shots. &nbsp;Of people too. &nbsp;It's like a magnifying glass. &nbsp;We are still who we are, just now exposed. &nbsp;Maybe intensified is the better word. &nbsp;So much emotion.\u201d &nbsp;</p>\n<p>\u201cIt's too bad...\u201d &nbsp;Sandra stopped what she was saying. &nbsp;It didn't need to be said: too bad no one will see them. &nbsp;</p>\n<p>The photographer looked at Sandra. &nbsp;He gave her a slight nod and went back to taking photos. &nbsp;\u201cIt won't hurt.\u201d &nbsp;</p>\n<p>\u201cSorry.\u201d &nbsp;</p>\n<p>\u201cThe sun... when the ozone layer can't protect us anymore and the sun engulfs us. &nbsp;It won't hurt.\u201d &nbsp;</p>\n<p>Sandra just stared back. &nbsp;Her hands started to shake. &nbsp;Light at first, but then. &nbsp;She rushed back into the house and flung open the cabinet doors. &nbsp;With force she moved things around and through pots out of her way. &nbsp;The sound echoed through the loft. &nbsp;Greg woke up. &nbsp;He walked up behind Sandra who was rustling through the entire kitchen. &nbsp;</p>\n<p>\u201cSandra?\u201d &nbsp;</p>\n<p>\u201cI need a drink.\u201d &nbsp;</p>\n<p>\u201cCome back to bed.\u201d &nbsp;</p>\n<p>Sandra turned and looked at Greg. &nbsp;&nbsp;\u201cI need a fucking drink.\u201d &nbsp;</p>\n<p>Greg moved over to his closet and pulled out a half empty bottle of vodka. &nbsp;Sandra took it and chugged it back. &nbsp;She almost finished it before gasping for air. &nbsp;Then she shrunk to the floor, balling up as tight as she could. &nbsp;Greg wrapped his arms around her. &nbsp;Tears. &nbsp;It was going to be a long night.</p>\n</html>",
+    "body_length": 13002,
+    "cashout_time": "2016-09-20T18:25:12",
+    "category": "story",
+    "children": 2,
+    "created": "2016-09-13T18:25:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"story\",\"scifi\",\"novel\",\"writing\",\"fiction\"],\"image\":[\"https://s14.postimg.org/6mw4j2fap/cloud_cover_1005177_640.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T18:25:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 797070975804,
+    "parent_author": "",
+    "parent_permlink": "story",
+    "pending_payout_value": "0.199 HBD",
+    "percent_hbd": 10000,
+    "permlink": "welcome-to-zero-zone-what-would-you-do-if-the-ozone-layer-started-shrinking-every-year-chapter-1-and-2-sci-fi",
+    "post_id": 1234606,
+    "promoted": "56.000 HBD",
+    "replies": [],
+    "root_title": "Welcome To Zero Zone: What Would You Do If The Ozone Layer Started Shrinking Every Year? (Chapter 1 and 2, sci fi)",
+    "title": "Welcome To Zero Zone: What Would You Do If The Ozone Layer Started Shrinking Every Year? (Chapter 1 and 2, sci fi)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/story/@zerozone/welcome-to-zero-zone-what-would-you-do-if-the-ozone-layer-started-shrinking-every-year-chapter-1-and-2-sci-fi"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 494391642947,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 31610662290478,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 289529505831,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 16854949545468,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14163917784755,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 39155848943904,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 35326666852152,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 7059606189796,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3128476167880,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2096256423767,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 487651405903,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120843729141,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1135004981085,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1119990128446,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1122770847303,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314958306539,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3959838555687,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6378059750943,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 75962203474,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4806113946001,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 62376610768,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 14534235538,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1208243538,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250001478305,
+        "rshares": 108230094933,
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 729564542117,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6951530929,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1766385155,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5899599110744,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 990796481001,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 449991408466,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 85657413997,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1192013839700,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2801441900430,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 137137151597,
+        "voter": "team"
+      },
+      {
+        "percent": "1000",
+        "reputation": 37454101478493,
+        "rshares": 31544281136,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 117668471628,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 48494829719,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2165622245848,
+        "rshares": 3109630138,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 52359143205,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 16821575841,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1249553519798,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "4140",
+        "reputation": 12382143533351,
+        "rshares": 254434812899,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 24664809533,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35537325381339,
+        "rshares": 993850916624,
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 6128545979,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 40660963309,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2111077828,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 336296162518,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 33078614731,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1679913286804,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 6908648654,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 607350582205,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "2400",
+        "reputation": 15755437221598,
+        "rshares": 7318111876,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1320082412,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101998016993,
+        "rshares": 438906687,
+        "voter": "btbrokersm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 49788861896,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 187619295851,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "2900",
+        "reputation": 1663549830469,
+        "rshares": 268562243,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 642644074896,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "5555",
+        "reputation": 2902053059801,
+        "rshares": 1766943395,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 6513117311,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 12100632650,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 31247944841,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10685141101,
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6371125766,
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3482166581,
+        "voter": "aizen03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1144871387,
+        "voter": "aizen04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 484279852,
+        "voter": "aizen05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4697910260,
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2809843705,
+        "voter": "aizen08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 998676247,
+        "voter": "aizen09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 432141410,
+        "voter": "aizen10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7108197911,
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2986136394,
+        "voter": "aizen11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2052469222,
+        "voter": "aizen14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2413401557,
+        "voter": "aizen19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 63404356848,
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 636164483,
+        "voter": "aizen15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6297863286,
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 52068817069,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 632406127,
+        "voter": "aizen20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4134069580,
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1098897970,
+        "voter": "aizen23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2161329779,
+        "voter": "aizen17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3401857817,
+        "voter": "aizen24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 480904068,
+        "voter": "aizen18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1288276552,
+        "voter": "aizen25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2188323605,
+        "voter": "aizen28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3367431130,
+        "voter": "aizen26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1105433613,
+        "voter": "aizen27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3799083911,
+        "voter": "aizen32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2078492559,
+        "voter": "aizen30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3844628260,
+        "voter": "aizen31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1265552678,
+        "voter": "aizen33"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1522416482,
+        "voter": "aizen34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 305646057,
+        "voter": "aizen35"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5733902324,
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1430549748,
+        "voter": "aizen37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 400254865,
+        "voter": "aizen29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2815787548,
+        "voter": "aizen21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 65442064945,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4320391334,
+        "voter": "aizen12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1839575941,
+        "voter": "aizen38"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 10902354441,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 13255149623,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 512906056,
+        "voter": "aizen39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 410265352,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55570956452,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 112713628663,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 394735060526,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13621999256,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1177272136,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173921081175,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6071598234,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 231594690436,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 273577264647,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2806302424,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "5000",
+        "reputation": 811919161664,
+        "rshares": 4089836867,
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 64046822402,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 35372396884,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 362176333,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 280810708,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 184760362426,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 38200160741,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 73762609484,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "3900",
+        "reputation": 9956734090708,
+        "rshares": 18189030328,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 158039253094,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 30778616845,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 381791828,
+        "voter": "aizen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3278869761,
+        "voter": "aizen41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 931805289,
+        "voter": "aizen42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3174298011,
+        "voter": "aizen46"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 868825550,
+        "voter": "aizen47"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 212978339,
+        "voter": "aizen48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111038594,
+        "voter": "aizen49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 93226714854,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 760726433,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 589691172,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 661803442,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 606579517,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 922473502,
+        "voter": "aizen51"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3408873480106,
+        "rshares": 30493392653,
+        "voter": "etherdesign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 446813730,
+        "voter": "aizen43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 66332881,
+        "voter": "aizen44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 748242419,
+        "voter": "aizen54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 109306599844,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 18352072104,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1422705803,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 17991991431,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "8500",
+        "reputation": 2821855573125,
+        "rshares": 21616460291,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 277673518969,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 137726541,
+        "voter": "snowden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4705279583,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 3712452505,
+        "voter": "bitland"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2397831198773,
+        "rshares": 886111341,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3779872763249,
+        "rshares": 19960858318,
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24967411073,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2432538531735,
+        "rshares": 9956318457,
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852532944,
+        "rshares": 237453951,
+        "voter": "hankrearden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 243649644994,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3655676496603,
+        "rshares": 10130788801,
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 6260649223,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 4121277460,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 228974719,
+        "voter": "aizen52"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 91537541765,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1517806453887,
+        "rshares": 2493530595,
+        "voter": "jza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1425501767,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 95629552818,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3870393694,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373905586833,
+        "rshares": 570455242,
+        "voter": "chrishronic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1942913778,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 186523532,
+        "voter": "aizen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 179094095267,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 392803861037,
+        "rshares": 1760131389,
+        "voter": "rockymtnbarkeep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7311842917,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9792777,
+        "rshares": 144764547,
+        "voter": "bsgomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 5994171994,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17817262904,
+        "rshares": 116496190,
+        "voter": "bzeen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3412494832,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 250932332076,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54051855495,
+        "rshares": 138656821,
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45014899,
+        "rshares": 118470008,
+        "voter": "chugumoto"
+      },
+      {
+        "percent": "1000",
+        "reputation": 14988694886527,
+        "rshares": 43069591066,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 20001018371,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 24291698019,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59822924,
+        "voter": "steemchain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59822924,
+        "voter": "whalepool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 9804149992,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 102875990,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 1007768722,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20688732028,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1376683720,
+        "voter": "pump"
+      },
+      {
+        "percent": "1000",
+        "reputation": 58190631451,
+        "rshares": 3634707952,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 658167005,
+        "voter": "curator"
+      },
+      {
+        "percent": "5100",
+        "reputation": 7172977970558,
+        "rshares": 1806888364,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 36939521968,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1404116436,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 687422157,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 610698043,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82066003,
+        "voter": "aizen53"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 11340560412,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 146197966,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 938060542524,
+        "rshares": 810978006,
+        "voter": "candy49"
+      },
+      {
+        "percent": "500",
+        "reputation": 2889656462700,
+        "rshares": 348925355,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 947311657,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 440272027,
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 738283145,
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1504063821,
+        "voter": "aizen"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1275505236,
+        "rshares": 1838470192,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234833038,
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 540665469,
+        "voter": "bento01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8710090850955,
+        "rshares": 41501523047,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 887519432562,
+        "rshares": 1618547851,
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 57873464,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 406607053254,
+        "rshares": 240147448,
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 5969959739,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 58971492,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1304888347445,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61374667649460,
+        "rshares": 240068982327,
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 876981522843,
+        "rshares": 5001534185,
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64020118,
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24852103427,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64028162,
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 24020626157,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24535386306,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24544058590,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80221808,
+        "voter": "bento06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 43704576634,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 265158148559,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206355094166,
+        "rshares": 10399345553,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 5477690509,
+        "voter": "brendio"
+      },
+      {
+        "percent": "4140",
+        "reputation": 1751717743,
+        "rshares": 7070364590,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3602804983584,
+        "rshares": 6276503481,
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 61435217888,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 81519384165,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 998445432,
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4274854743,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 99580782,
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58150459,
+        "voter": "michellek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24539525603,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24537013181,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24534080382,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3524384056312,
+        "rshares": 4337200195,
+        "voter": "armen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24530098576,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6143207897,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24526507450,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24523766631,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3299212767,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 102639999,
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3016325652890,
+        "rshares": 146258198190,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11508002267,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 144762864,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 95622288000,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 60024015,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4804440310,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 2403604526,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 59424313,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 54654502,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 14027961743,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 52985539,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2860793589,
+        "rshares": 1001983645,
+        "voter": "fooblic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 175834493,
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 278291283,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 9684009449,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 52848854,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58449787,
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1025417180,
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 815207781,
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 228314859,
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 649597112137,
+        "rshares": 61313637,
+        "voter": "jfelton5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50133213259,
+        "rshares": 111955254,
+        "voter": "sandziro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 726224822,
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 3745978172,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54611897,
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 69649131,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11789352705,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 4015538661,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1155022375,
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1199438241,
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 429168672,
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 42612416132,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56563243,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 104765652,
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 53661976,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 634792077,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 221431500,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 879312568,
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 77220767,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 6669342810,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 12152847854,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9301205100,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 118588335255,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3789939590477,
+        "rshares": 7822130251,
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59750246,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 64878458203,
+        "rshares": 699530791,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 479508737,
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2043228058601,
+        "rshares": 2786029062,
+        "voter": "cryptomental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 14992200918,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 12236504108,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50698107,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50691211,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3657683169,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 310097833,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 71768449,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 8994081971,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 2307010202,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24517458061,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23413430011,
+        "rshares": 63610163,
+        "voter": "steempipe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10119267928702,
+        "rshares": 14514190599,
+        "voter": "nastik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 190905492,
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4536175742,
+        "rshares": 55543445,
+        "voter": "bitchplease"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 77396528139,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 16095463618,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3485898605376,
+        "rshares": 3708243581,
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 80071335,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "7100",
+        "reputation": 4533929087960,
+        "rshares": 6041489948,
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1258844947,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18957179674,
+        "rshares": 62828027,
+        "voter": "uri-bruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3232646,
+        "rshares": 57881328,
+        "voter": "landas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 91390518,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 4437105078,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 23656839672,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 1759632380,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78138793415,
+        "rshares": 64527759,
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9989999558,
+        "rshares": 58930836,
+        "voter": "cryptohazard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1692418493,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 98163194,
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 13529851827,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "2000",
+        "reputation": 837791549130,
+        "rshares": 9962881029,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 4987124277,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15886429679,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177940547303,
+        "rshares": 5796897349,
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 474964783,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3867093626,
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11937003273,
+        "rshares": 53093296,
+        "voter": "freesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71073572115,
+        "rshares": 83379327,
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 2477345340,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5805155009,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148331179950,
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 633563845,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16147984004,
+        "rshares": 59219559,
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50370757,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11649393204,
+        "rshares": 9325126978,
+        "voter": "masterline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 174157915,
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 10060752182,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55271378,
+        "voter": "negre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2730258409,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 7301936139,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 120475423,
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51830988,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17384813,
+        "rshares": 51729228,
+        "voter": "jeff-kubitz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 2021693984,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50377764,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "2000",
+        "reputation": 26215514,
+        "rshares": 9951069551,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50210467,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50933404,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4971665568,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 219004308,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 2451682766,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 50852949,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50407156,
+        "voter": "timothy.sykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 215238581,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 5641974804,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 11966203508,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4915054987,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50602980,
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013164758868,
+        "rshares": 463846689,
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39516054142,
+        "rshares": 61035542,
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16681034811,
+        "rshares": 3147545204,
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151518932812,
+        "rshares": 4541294541,
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3765176609,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69576474,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525299486,
+        "rshares": 158001233,
+        "voter": "iliyaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 141653069,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4857670,
+        "rshares": 158649039,
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158641883,
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157805871,
+        "voter": "serena199"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157774885,
+        "voter": "gia7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157303076,
+        "voter": "richie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157241455,
+        "voter": "coraline88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156977663,
+        "voter": "harlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156939548,
+        "voter": "yanuel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118310383,
+        "rshares": 156889267,
+        "voter": "daritza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10568161397,
+        "rshares": 160719976,
+        "voter": "jasonxg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16892648,
+        "rshares": 159386290,
+        "voter": "ibm1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3460752,
+        "rshares": 159106214,
+        "voter": "chocolatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 584475717,
+        "rshares": 96638506,
+        "voter": "dealzgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1091185643,
+        "rshares": 155548144,
+        "voter": "crowkeep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15827302113,
+        "rshares": 158504837,
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86373454182,
+        "rshares": 148942803,
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 133720923,
+        "voter": "bromejs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2798971603,
+        "rshares": 115485161,
+        "voter": "paulocouto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4793577,
+        "rshares": 151875752,
+        "voter": "oniondog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77882742,
+        "rshares": 154693792,
+        "voter": "kindle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151525581,
+        "voter": "kevinfoesenek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16791486869,
+        "rshares": 148041723,
+        "voter": "newsfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737359525,
+        "rshares": 154017434,
+        "voter": "sawgunner13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 150939275,
+        "voter": "xaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 147818170,
+        "voter": "dirlei.sdias"
+      }
+    ],
+    "author": "furion",
+    "author_reputation": 19111656178138,
+    "beneficiaries": [],
+    "body": "![](http://i.imgur.com/jVLWgAY.png)\n*graphics by @etherdesign*\n\n## Why steemtools\nI have been pretty busy in the past month, working on several Steem related projects:\n- SteemQ, a video platform on top of STEEM\n- steem.li, real-time voting and curation tools\n- IM market-maker, running 24/7\n- a set of curation bots\n- weekly reports on various topics\n\nI had spent a fair amount of time writing code and looking for solutions that would enable me to in part do these things.\n\nThe need for the library emerged, as I realized I had scattered code over all of my projects, in many cases, implementing the same functionalities.\n\nI have also been contacted by half a dozen people on https://steemit.chat, asking for advice on certain problems - problems I had already solved myself.\n\nI think that different people solving the same problems makes no sense - when all we really want is to achieve a higher level goal.\n\nThe purpose of this library is to enable others to do what I do, and avoid the colossal waste of time.\n\n\n## Acknowledgments\nsteemtools is built on top of [piston](https://github.com/xeroc/piston) and [python-steemlib](https://github.com/xeroc/python-steemlib), the awesome Python libraries made by @xeroc.\n\n@jesta has been very helpful in #piston channel on https://steemit.chat, and **steem.ws**, a fast and reliable node cluster has saved me a lot of time, and allowed me to keep working while my local node was re-compiling/replaying.\n\nAnd lastly, @burnin, a guy that [reverse-engineered the voting mechanisms](https://steemit.com/steemit/@burnin/reward-shares-understanding-how-your-votes-affect-a-post), and saved me so much time with the Converter module. \n\nThank you guys, I could not have done this without you.\n\n# Installation\nI highly recommend starting off with [Anaconda distribution of Python 3.5](https://www.continuum.io/downloads).\n\nAfter that, we only need to run one command:\n```\npip install steemtools\n```\n\n\n# Modules\nsteemtools is currently comprised of 4 modules:\n- `blockchain`: all utilities for blockchain traversal/parsing\n- `base`: contains our `Post`, `Account` and `Converter` classes\n- `helpers`: static helper functions\n- `node`: a convenient way to connect to local RPC, with automatic failover to steem.ws\n\n## Blockchain\n-----------------\n\n**Replaying History:**\n```\nfrom steemtools.blockchain import Blockchain\n\nfor event in Blockchain().replay():\n    print(\"Event: %s\" % event['op_type'])\n    print(\"Time: %s\" % event['timestamp'])\n    print(\"Body: %s\\n\" % event['op'])\n```\n\nThis function allows us to go back in time, and replay the entire STEEM blockchain from start to finish. Once it reaches the present moment, it will keep going, printing events with every new block (every 3 seconds or so).\n\nThe output will look a little bit like this:\n![](http://i.imgur.com/HPhjgyp.png)\n\n**Operation Types:**\nPerhaps we aren't interested in all the events, but just specific ones.\nWe can ask `replay` to only give us **votes**:\n```\nfor event in Blockchain().replay(filter_by=\"vote\")\n```\nOr a set of events, such as **votes and comments**:\n```\nfor event in Blockchain().replay(filter_by=[\"vote\", \"comment\"])\n```\n\nFor the reference, the full list of currently available operations is:\n```\nblockchain_operations = [\n    'vote', 'comment', 'delete_comment', 'account_create', 'account_update',\n    'limit_order_create', 'limit_order_cancel',\n    'transfer',  'transfer_to_vesting', 'withdraw_vesting', 'convert', 'set_withdraw_vesting_route',\n    'pow', 'pow2', 'feed_publish',  'witness_update',\n    'account_witness_vote', 'account_witness_proxy',\n    'recover_account', 'request_account_recovery', 'change_recovery_account',\n    'custom', 'custom_json'\n]\n```\n\n**Time Constraints:**\nParsing the ENTIRE blockchain is often unnecessary. We can specify a desired range:\n```\nstart_block = 3598980\nend_block = 4260042\nfor event in Blockchain().replay(start_block, end_block=end_block, filter_by=[\"vote\", \"comment\"]):\n\tpprint(event)\n```\n\nWorking with block numbers is painful, and this is why `blockchain` module comes with 2 helpers:\n```\nget_current_block()\nget_block_from_time(\"2016-09-01T00:00:00\")\n```\n\n**Putting it all together...**\n```\nb = Blockchain()\nhistory = b.replay(\n    start_block=b.get_block_from_time(\"2016-09-01T00:00:00\"),\n    end_block=b.get_current_block(),\n    filter_by=['transfer']\n)\nfor event in history:\n    payment = event['op']\n    print(\"@%s sent %s to @%s\" % (payment['from'], payment['amount'], payment['to']))\n```\nThe above code will fetch all the transfers from September 9th going forward, up until present.\n```\n...\n@victoriart sent 1.000 SBD to @null\n@dude sent 5.095 STEEM to @bittrex\n@devil sent 5.107 STEEM to @poloniex\n@pinoytravel sent 0.010 SBD to @null\n@aladdin sent 5.013 STEEM to @poloniex\n@mrwang sent 31.211 STEEM to @blocktrades\n@kodi sent 0.030 SBD to @steembingo\n...\n```\n\n## Account History\n-----------------\nAccount module allows us to lookup virtual operations, as well as some of the common operations for an individual account.\nUsually it is more efficient to query the account history over parsing the blockchain block-by-block.\n\n\n**Looking up the account history:**\nAccounts module gives us 2 generators for the task, **history**, which gives us account history from inception forward and **history2** which gives us account history newest to oldest. The interface should look familiar, as it is similar to the **replay** from the *blockchain* module.\n```\nfrom steemtools.base import Account\nfrom steemtools.helpers import parse_payout\n\nfor event in Account(\"furion\").history(filter_by=[\"transfer\"]):\n    transfer = event['op']\n    if transfer['to'] == \"null\":\n        print(\"$%.1f :: %s\" % (parse_payout(transfer['amount']), transfer['memo']))\n```\nThe code above will pull the transfer history for my account, find promoted posts by looking for transfers to @null, and finally print the $ amount spent as well as the permlink to the post.\n\n```\n$11.1 :: @furion/steem-analysis-ownership-distribution-and-the-whale-selling-pressure\n$11.0 :: @furion/using-machine-learning-to-fight-plagiarism\n$41.0 :: @furion/a-quick-look-at-null-and-the-profitability-of-promoted-posts\n```\n\n**Virtual Operations:**\nAs mentioned above, there are several operations that are *virtual*, and we cannot obtain these by parsing the blockchain itself. We can however lookup the history of virtual operations on a specific account with the **history** method.\n```\nAccount(\"furion\").history(filter_by=[\"curate_reward\", \"fill_order\"])\n```\nCurrently, the following types are available for the lookup (both virtual and not):\n```\naccount_operations = {\n    'account_create',\n    'account_update',\n    'account_witness_vote',\n    'comment',\n    'comment_reward',\n    'convert',\n    'curate_reward',\n    'fill_order',\n    'fill_vesting_withdraw',\n    'fill_convert_request',\n    'interest',\n    'limit_order_cancel',\n    'limit_order_create',\n    'transfer',\n    'transfer_to_vesting',\n    'vote',\n    'witness_update',\n    'account_witness_proxy',\n    'feed_publish',\n    'pow', 'pow2',\n    'withdraw_vesting',\n}\n```\n\n## Account Methods\n-----------------\nAccount has several helper methods. Here are a few:\n```\nfrom steemtools.base import Account\n\naccount = Account(\"furion\")\n\naccount.get_sp()\n#> 6211.590278675119\n\naccount.reputation()\n#> 62.76\n\naccount.voting_power()\n#> 80.75\n\naccount.avg_payout_per_post()\n#> 142.7166\n```\n\nWe can also easily obtain the latest blog posts. Lets get the titles of most recent 3:\n```\nblog = account.get_blog()\nfor post in blog[:3]:\n\tprint(post['title'])\n\n# outputs:\n# A quick look at @null, and the profitability of Promoted Posts\n# A quick look at the top curators and their rewards\n# Homepage Payout Distribution, Power Law and Project Curie\n\n```\nHow about a list of followers:\n```\nfollowers = account.get_followers()\n#> ['anns', 'benjy33', 'negoshi', ...]\n\n```\n\nLets obtain the curation stats:\n```\naccount.curation_stats()\n# outputs\n# {'24hr': 9.627790750805277, '7d': 57.82547153222017, 'avg': 8.260781647460025}\n```\n\nOr get a basket of features:\n```\naccount.get_features(max_posts, payout_requirement)\n```\n\nOutputs:\n```\n{'author': {'followers': 281,\n  'post_count': 10,\n  'ppp': 142,\n  'rep': 62.76,\n  'sp': 6211,\n  'ttw': 281.0,\n  'winners': 2},\n 'name': 'furion',\n 'settings': {'max_posts': 10, 'payout_requirement': 300}}\n ```\n Check out the `base.py` module for all the methods.\n\n## Posts\n-----------------\nPost is a superset of `piston.steem.Post`. This means that, it behaves the same way, and has all the niceties and helpers that piston's Post object has.\n\nWe can initialize it in any of these ways:\na) using the identifier string\n```\nPost(\"@furion/homepage-payout-distribution-power-law-and-project-curie\")\n```\n\nb) using a piston.steem.Post object\n```\nlast_post = Account(\"furion\").get_blog()[0]\nPost(last_post)\n```\n\nc) using a author+permlink containing dictionary, such as vote\n```\nfor vote in s.rpc.stream(\"vote\"):\n        print(vote)\n        print(Post(vote))\n        \n# {'voter': 'ats-david', 'author': 'whatsup', 'weight': 10000, 'permlink': 're-steve-walschot-investigating-the-wale-scam-assumptions-above-knowledge-20160912t020220232z'}\n# <Steem.Post-@whatsup/re-steve-walschot-investigating-the-wale-scam-assumptions-above-knowledge-20160912t020220232z>\n```\n\n----------\nNow that our Post is initialized, we have access to extra methods. Here are a few:\n```\np = Post(\"@furion/homepage-payout-distribution-power-law-and-project-curie\")\n\np.payout()\n#> 456.003\n\n# if the post was 10 minutes old, this would output 33.33\np.calc_reward_pct()\n#> 100\n\np.is_comment()\n#> False\n\n# not a spam tagged post\np.contains_tags(filter_by=[\"spam\"])\n#> False\n\np.get_votes()\n#> [list of active votes]\n\n```\nCheck out the `base.py` module for all the methods.\n\n\n## Converter\n-----------------\nConverter is a class that tries to convert/calculate different units. I won't go into details in this post, aside from listing the available methods:\n```\nfrom steemtools.base import Converter\n\nc = Converter()\n\nc.sbd_median_price()\nc.steem_per_mvests()\n\nc.vests_to_sp(vests)\nc.sp_to_vests(sp)\nc.sp_to_rshares(sp)\nc.steem_to_sbd(steem)\nc.sbd_to_steem(sbd)\nc.sbd_to_shares(sbd)\nc.rshares_to_weight(rshares)\n```\n\n## Helpers\n-----------------\nHelpers is a set of static methods that are generally useful when dealing with Steem objects.\n```\nfrom steemtools import helpers\n\n# get just the digit part of any asset (STEEM, VESTS, SBD)\nhelpers.parse_payout(\"12.3456 SBD\") \n#> 12.3456\n\n# break down our asset\nhelpers.read_asset(\"12.3456 SBD\")\n#> {'symbol': 'SBD', 'value': 12.3456}\n\n# get time difference in seconds between lets say 2 posts\nhelpers.time_diff(time1, time2)\n#> 1337\n\n# determine if our object is a post or a comment\nhelpers.is_comment(object)\n#> False\n\n# time elapsed in seconds \nhelpers.time_elapsed(post)\n#> 9001\n```\n\n\n## Going forward\nI wanted to be as minimal as possible with the first version, and only include the most essential components.\n\nThere are many new features, and areas in which steemtools can be expanded upon. For instance, an exchange module, that would allow for quick bootstrapping of a market-maker or arbitrage bot. These features may be added later on.\n\nFor now, I am looking for feedback and new ideas on how to improve whats already there, and make the library stable, so people can depend on it.\n\nGithub: [Netherdrake/steemtools](https://github.com/Netherdrake/steemtools)\n\n-------------------\n\n<center>![](http://i.imgur.com/5MaAhy7.png)  Don't miss out on the next post. [Follow me.](https://steemit.com/@furion)</center>\n\n-------------------",
+    "body_length": 11558,
+    "cashout_time": "2016-09-20T11:25:42",
+    "category": "steemtools",
+    "children": 36,
+    "created": "2016-09-13T11:25:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemtools\",\"steem\",\"programming\",\"python\",\"piston\"],\"users\":[\"etherdesign\",\"xeroc\",\"jesta\",\"burnin\",\"null\"],\"image\":[\"http://i.imgur.com/jVLWgAY.png\",\"http://i.imgur.com/HPhjgyp.png\",\"http://i.imgur.com/5MaAhy7.png\"],\"links\":[\"https://steemit.chat\",\"https://github.com/xeroc/piston\",\"https://github.com/xeroc/python-steemlib\",\"https://steemit.com/steemit/@burnin/reward-shares-understanding-how-your-votes-affect-a-post\",\"https://www.continuum.io/downloads\",\"https://github.com/Netherdrake/steemtools\",\"https://steemit.com/@furion\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T11:25:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 195934837419741,
+    "parent_author": "",
+    "parent_permlink": "steemtools",
+    "pending_payout_value": "1963.324 HBD",
+    "percent_hbd": 10000,
+    "permlink": "ann-steemtools-a-high-level-python-library-for-steem",
+    "post_id": 1230572,
+    "promoted": "56.000 HBD",
+    "replies": [],
+    "root_title": "[ANN] steemtools - A High-Level Python library for Steem",
+    "title": "[ANN] steemtools - A High-Level Python library for Steem",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemtools/@furion/ann-steemtools-a-high-level-python-library-for-steem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 688300389712,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 32496623460377,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 173136963840,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 159918861664,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2005390105155,
+        "voter": "hr1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 608057298751,
+        "rshares": 289360051453,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3101900144,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3765915056,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690731471,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54440008673,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 29743986876,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 358100743277,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23660560627,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662255525,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213742499,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2085987925412,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 11623788462,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 444535034035,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2789462741052,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1713240173,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 134364046875,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5906126324652,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 11952912096,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624719426,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969479298,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288275841,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 25812388884,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1856861244,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 83748417354,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1032897136819,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "9600",
+        "reputation": 4931834878069,
+        "rshares": 20550877396,
+        "voter": "fkn"
+      },
+      {
+        "percent": "9600",
+        "reputation": 5414208804644,
+        "rshares": 27953788939,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6880931154142,
+        "rshares": 89407523441,
+        "voter": "hossary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 667610657,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 79823816109,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1424990406,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2686093987,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 752459162917,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 409864476,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "5500",
+        "reputation": 3804349938696,
+        "rshares": 30166315569,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 376661423303,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6072969766,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 113581323847,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 3813615376,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2756685682,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 4916142248,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3143039437,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 5979417458,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4167036688,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 272228330,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 20522473005,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 392424265528,
+        "rshares": 9656416508,
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 4059619633,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 105627974515,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122116899729,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 4284633003,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 4515466234,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 516176839,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 13423595459,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1629124913,
+        "voter": "sergei"
+      },
+      {
+        "percent": "9600",
+        "reputation": 19111656178138,
+        "rshares": 61535157339,
+        "voter": "furion"
+      },
+      {
+        "percent": "9600",
+        "reputation": 3891722,
+        "rshares": 496081464,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "9600",
+        "reputation": 9142611234,
+        "rshares": 556512758,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "9600",
+        "reputation": 3871042,
+        "rshares": 510162053,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 386493228,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1855825,
+        "rshares": 227600854,
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3975122477,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 242542379761,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 17179512142,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 9002241723,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3940960554,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 741654237981,
+        "rshares": 5932840499,
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 8305436807,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 26713896525,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261378365712,
+        "rshares": 684274715,
+        "voter": "reilag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 102459876,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 193368396334,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 408181962,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "9600",
+        "reputation": 10519849768972,
+        "rshares": 17052738387,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 91303944644,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 14426656380,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2964244437505,
+        "rshares": 1135212709,
+        "voter": "viktorrabec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 16480329840,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 152480033,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 2904531568,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "9600",
+        "reputation": 147425730,
+        "rshares": 562846622,
+        "voter": "fnait"
+      },
+      {
+        "percent": "9600",
+        "reputation": 3720753029,
+        "rshares": 513581347,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255549221406,
+        "rshares": 330141710,
+        "voter": "esqil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136260156259,
+        "rshares": 170287271,
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19410587962,
+        "rshares": 1994890816,
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50308101136,
+        "rshares": 123410225,
+        "voter": "ap2002"
+      },
+      {
+        "percent": "4100",
+        "reputation": 988942038058,
+        "rshares": 29050892521,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1977162029930,
+        "rshares": 3551081489,
+        "voter": "litrbooh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8325460600,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 25710756547,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 3058183535,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 10194363319,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31031494498,
+        "rshares": 1351652050,
+        "voter": "littleboo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2300718527,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12393203621507,
+        "rshares": 25787605683,
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 683118671,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 78019119466,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "8000",
+        "reputation": 14083609085,
+        "rshares": 14582509984,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 93029388808,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5011545711,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 108992985,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 383650129482,
+        "rshares": 308376087,
+        "voter": "steemnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8163134605,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151272123831,
+        "rshares": 61277568,
+        "voter": "xcepta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 891327,
+        "rshares": 4722575225,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928428,
+        "rshares": 62485067,
+        "voter": "denxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 181116291,
+        "rshares": 62482118,
+        "voter": "markcarlos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9616115,
+        "rshares": 62478934,
+        "voter": "frdm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62469352,
+        "voter": "glory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13011736,
+        "rshares": 62463281,
+        "voter": "crack777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1556647371,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5882833,
+        "rshares": 62151104,
+        "voter": "garryod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60692343,
+        "rshares": 62147052,
+        "voter": "jhonny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33578564,
+        "rshares": 62143955,
+        "voter": "eddy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39581455,
+        "rshares": 62140797,
+        "voter": "evilone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 490170833577,
+        "rshares": 170625312,
+        "voter": "njall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691436050,
+        "rshares": 60427814,
+        "voter": "photo00"
+      },
+      {
+        "percent": "10000",
+        "reputation": 360557825466,
+        "rshares": 604151974,
+        "voter": "tagira"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1447489205,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6583775730,
+        "rshares": 63080486,
+        "voter": "makaka777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 215058263,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1937930779,
+        "rshares": 60679524,
+        "voter": "wildkids"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 6591414005,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283748031991,
+        "rshares": 187650986,
+        "voter": "vivalavida"
+      },
+      {
+        "percent": "5000",
+        "reputation": 11490547563070,
+        "rshares": 6195256861,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8402961472,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1734036671982,
+        "rshares": 1020526308,
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 132960466,
+        "rshares": 58188307,
+        "voter": "upvoteman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 55750195,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1332554034,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 955109745,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 162955094991,
+        "rshares": 122167193,
+        "voter": "godo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1720181032,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 123427432,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 652958439639,
+        "rshares": 692727252,
+        "voter": "ksena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 34366449613,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15936701702,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177940547303,
+        "rshares": 5071716072,
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5882340031,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60003778949,
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2772237230,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 25109370708,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177420040,
+        "rshares": 54477900,
+        "voter": "annet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950372517145,
+        "rshares": 1098123949,
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1065275299,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1621372058,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1581938185,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 8163222158,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4988399339,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 520948047119,
+        "rshares": 53267563,
+        "voter": "cathi-xx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2074375314979,
+        "rshares": 56874844,
+        "voter": "aksinya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3104875897,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 57640928,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41596863062,
+        "rshares": 67814291,
+        "voter": "brainup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10962748498,
+        "rshares": 161180081,
+        "voter": "dikanevroman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1564414223,
+        "rshares": 108712635,
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 159092709,
+        "voter": "chanceskain"
+      }
+    ],
+    "author": "terrycraft",
+    "author_reputation": 66769295082002,
+    "beneficiaries": [],
+    "body": "<br />\n\n---\n\n\nToday I would like to talk with you about one of the most important, I believe, the problem of humanity.  In our days this problem is urgent as never before. And what's more, because of it generates a lot of evil in the world today. So what kind of problem is it? Let's find out.\n\nNo matter who you are - believer or atheist, you've probably heard about the seven deadly sins:\n\n* Lust\n* Greed\n* Gluttony\n* Envy \n* Wrath\n* Pride\n* Sloth\n\nAnd you know, someone will agree with me, someone will judge and that's fine, because people are different, but I do not see much of a problem, and really deadly sins. I see human emotions, which is likely was felt by every person in his life.\n\n>\u0421\u0435\u0433\u043e\u0434\u043d\u044f \u044f \u0431\u044b \u0445\u043e\u0442\u0435\u043b \u043f\u043e\u0433\u043e\u0432\u043e\u0440\u0438\u0442\u044c \u0441 \u0432\u0430\u043c\u0438 \u043e\u0431 \u043e\u0434\u043d\u043e\u0439 \u0438\u0437 \u0433\u043b\u0430\u0432\u043d\u0435\u0439\u0448\u0438\u0445, \u043a\u0430\u043a \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u043f\u0440\u043e\u0431\u043b\u0435\u043c \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u0442\u0432\u0430. \u0412 \u043d\u0430\u0448\u0438 \u0434\u043d\u0438 \u0434\u0430\u043d\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0441\u0442\u043e\u0438\u0442 \u043a\u0430\u043a \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043e\u0441\u0442\u0440\u043e. \u0418 \u0431\u043e\u043b\u0435\u0435 \u0442\u043e\u0433\u043e, \u043e\u043d\u0430 \u043f\u043e\u0440\u043e\u0436\u0434\u0430\u0435\u0442 \u043c\u043d\u043e\u0433\u043e \u0437\u043b\u0430, \u0442\u0432\u043e\u0440\u044f\u0449\u0435\u0433\u043e\u0441\u044f \u0432 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043c\u0438\u0440\u0435. \u0427\u0442\u043e \u0436\u0435 \u044d\u0442\u043e \u0437\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430? \u0414\u0430\u0432\u0430\u0439\u0442\u0435 \u0432\u044b\u044f\u0441\u043d\u0438\u043c.\n\n>\u041d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u0442\u043e\u0433\u043e, \u0432\u0435\u0440\u0443\u044e\u0449\u0438\u0439 \u0432\u044b \u0438\u043b\u0438 \u0430\u0442\u0435\u0438\u0441\u0442, \u0432\u044b \u043d\u0430\u0432\u0435\u0440\u043d\u044f\u043a\u0430 \u0441\u043b\u044b\u0448\u0430\u043b\u0438 \u043e \u0441\u0435\u043c\u0438 \u0441\u043c\u0435\u0440\u0442\u043d\u044b\u0445 \u0433\u0440\u0435\u0445\u0430\u0445:\n\n>* \u043f\u043e\u0445\u043e\u0442\u044c\n>* \u0430\u043b\u0447\u043d\u043e\u0441\u0442\u044c\n>* \u0447\u0440\u0435\u0432\u043e\u0443\u0433\u043e\u0434\u0438\u0435\n>* \u0417\u0430\u0432\u0438\u0441\u0442\u044c\n>* \u0433\u043d\u0435\u0432\n>* \u0433\u043e\u0440\u0434\u044b\u043d\u044f\n>* \u043b\u0435\u043d\u044c (\u0443\u043d\u044b\u043d\u0438\u0435)\n\n>\u0418 \u0432\u044b \u0437\u043d\u0430\u0435\u0442\u0435, \u043a\u0442\u043e-\u0442\u043e \u0441\u043e \u043c\u043d\u043e\u0439 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0442\u0441\u044f, \u043a\u0442\u043e-\u0442\u043e \u043e\u0441\u0443\u0434\u0438\u0442 \u0438 \u044d\u0442\u043e \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u043b\u044e\u0434\u0438 \u0440\u0430\u0437\u043d\u044b\u0435, \u043d\u043e \u044f \u043d\u0435 \u0432\u0438\u0436\u0443 \u0437\u0434\u0435\u0441\u044c \u043e\u0441\u043e\u0431\u043e\u0439 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0441\u043c\u0435\u0440\u0442\u043d\u044b\u0445 \u0433\u0440\u0435\u0445\u043e\u0432. \u042f \u0432\u0438\u0436\u0443 \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u043a\u0438\u0435 \u044d\u043c\u043e\u0446\u0438\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435, \u0441\u043a\u043e\u0440\u0435\u0435 \u0432\u0441\u0435\u0433\u043e, \u0438\u0441\u043f\u044b\u0442\u044b\u0432\u0430\u043b \u0432 \u0441\u0432\u043e\u0435\u0439 \u0436\u0438\u0437\u043d\u0438 \u043a\u0430\u0436\u0434\u044b\u0439 \u0447\u0435\u043b\u043e\u0432\u0435\u043a.\n\n<br />\n\nhttp://eleveneight.co.uk/wp-content/uploads/2015/09/The-7-Deadly-Sins-Of-Social-Media-New-Blog.png\n<a href=\"http://eleveneight.co.uk/7-deadly-sins-of-social-media/\">image credit</a>\n\n<br />\n\n---\n\nHaving gone through many extreme situations, I am hold the opinion that the main problem of mankind - indifference.\n\nOne such situation:\n\nWalked past the tram station on which stood about 20 people. I saw a man lying on the rails... but all of these 20 people just stood and waited for the tram. Of course I went up to this man. Very strong smell of alcohol was from he and he was sleeping. I examined him for signs of damage (anything can happen), in appearance all was well with him. So, i tried to wake him up, i did not succeed. He certainly showed signs of life and even tried to open his eyes, but alcohol in blood was very much, he could not even say anything. So I just pulled him of the tram paths and put it in a safe place. And no one helped me. But when i finished, i heard that in the crowd began to talk about what I did right thing and what would happen if I did not. That is, all these people are not even thinking about it before, they're like a zombie, just doing something for which came to a stop - waiting for the tram.\n\nAs Mother Teresa said:\n> The greatest sin of a man is not the hatred, but indifference to his brothers.\n\nI added this saying, by my thoughts. Indifference - sin, vice, bad character trait, bad parenting... call it what you want. Indifference is the problem! And problem is not only in indifference to people, like Mother Teresa said. Anyone who watches calm, although he could help as the animal dies, just as calmly pass by a person who needs help.\n\nAnd if people were not be indifferent, then didn't happen many terrible things. Just ask yourself how many times you have seen something strange, wrong. Maybe girl in a side street, to which molested drunk guys, or an old man who could not cross the road, because no one was stops... maybe worth to come and help?! But perhaps it is not my business! Maybe girl familiar with them, and maybe they're just fooling around. Maybe this old man does not want to cross the road, and just waiting for someone. It would be nice if everything in life came to good end, but life is cruel! Not helped the old man, thought it was not your business, and in the morning saw on the news that he was hit by a car or read about a girl who was raped in nearby alley.\n\n>\u041f\u0435\u0440\u0435\u0436\u0438\u0432 \u043c\u043d\u043e\u0433\u0438\u0435 \u044d\u043a\u0441\u0442\u0440\u0435\u043c\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0438, \u044f \u043f\u0440\u0438\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0441\u044c \u043c\u043d\u0435\u043d\u0438\u044f, \u0447\u0442\u043e \u0433\u043b\u0430\u0432\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u0442\u0432\u0430 - \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435.\n\n>\u041e\u0434\u043d\u0430 \u0438\u0437 \u0442\u0430\u043a\u0438\u0445 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0439:\n\n>\u042f \u043f\u0440\u043e\u0445\u043e\u0434\u0438\u043b \u043c\u0438\u043c\u043e \u0442\u0440\u0430\u043c\u0432\u0430\u0439\u043d\u043e\u0439 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438, \u043d\u0430 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0432 \u043e\u0436\u0438\u0434\u0430\u043d\u0438\u0438 \u0441\u0442\u043e\u044f\u043b\u043e \u043e\u043a\u043e\u043b\u043e 20 \u0447\u0435\u043b\u043e\u0432\u0435\u043a. \u0410 \u043d\u0430 \u0440\u0435\u043b\u044c\u0441\u0430\u0445 \u043b\u0435\u0436\u0430\u043b \u043c\u0443\u0436\u0447\u0438\u043d\u0430. \u0418 \u0432\u0441\u0435 \u044d\u0442\u0438 20 \u0447\u0435\u043b\u043e\u0432\u0435\u043a \u043f\u0440\u043e\u0441\u0442\u043e \u0441\u0442\u043e\u044f\u043b\u0438 \u0438 \u0436\u0434\u0430\u043b\u0438 \u0442\u0440\u0430\u043c\u0432\u0430\u0439... \u0415\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e, \u044f \u043f\u043e\u0434\u043e\u0448\u0451\u043b \u043a \u044d\u0442\u043e\u043c\u0443 \u043c\u0443\u0436\u0447\u0438\u043d\u0435. \u041e\u0442 \u043d\u0435\u0433\u043e \u043e\u0447\u0435\u043d\u044c \u0441\u0438\u043b\u044c\u043d\u043e \u043f\u0430\u0445\u043b\u043e \u0430\u043b\u043a\u043e\u0433\u043e\u043b\u0435\u043c, \u043e\u043d \u0441\u043f\u0430\u043b. \u042f \u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043b \u0435\u0433\u043e \u043d\u0430 \u043f\u0440\u0435\u0434\u043c\u0435\u0442 \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0439 (\u0432\u0441\u044f\u043a\u043e\u0435 \u0431\u044b\u0432\u0430\u0435\u0442), \u043d\u0430 \u0432\u0438\u0434, \u0441 \u043d\u0438\u043c \u0432\u0441\u0451 \u0431\u044b\u043b\u043e \u0445\u043e\u0440\u043e\u0448\u043e. \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u044f \u043f\u043e\u043f\u044b\u0442\u0430\u043b\u0441\u044f \u0435\u0433\u043e \u0440\u0430\u0437\u0431\u0443\u0434\u0438\u0442\u044c, \u043c\u043d\u0435 \u044d\u0442\u043e \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c. \u041e\u043d, \u043a\u043e\u043d\u0435\u0447\u043d\u043e, \u043f\u043e\u0434\u0430\u0432\u0430\u043b \u043f\u0440\u0438\u0437\u043d\u0430\u043a\u0438 \u0436\u0438\u0437\u043d\u0438 \u0438 \u0434\u0430\u0436\u0435 \u043f\u044b\u0442\u0430\u043b\u0441\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0433\u043b\u0430\u0437\u0430, \u043d\u043e \u0432\u0438\u0434\u043d\u043e \u0430\u043b\u043a\u043e\u0433\u043e\u043b\u044f \u0432 \u043a\u0440\u043e\u0432\u0438 \u0431\u044b\u043b\u043e \u043e\u0447\u0435\u043d\u044c \u043c\u043d\u043e\u0433\u043e, \u043e\u043d \u0434\u0430\u0436\u0435 \u043d\u0435 \u0441\u043c\u043e\u0433 \u043d\u0438\u0447\u0435\u0433\u043e \u0441\u043a\u0430\u0437\u0430\u0442\u044c. \u041f\u043e\u044d\u0442\u043e\u043c\u0443 \u044f \u043f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u0442\u0430\u0449\u0438\u043b \u0435\u0433\u043e \u0441 \u043f\u0443\u0442\u0435\u0439 \u0438 \u043f\u043e\u043b\u043e\u0436\u0438\u043b \u0432 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e. \u041c\u043d\u0435 \u0442\u0430\u043a \u043d\u0438\u043a\u0442\u043e \u0438 \u043d\u0435 \u043f\u043e\u043c\u043e\u0433. \u0417\u0430\u0442\u043e, \u043a\u043e\u0433\u0434\u0430 \u044f \u043f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u043b \u0435\u0433\u043e, \u0443\u0441\u043b\u044b\u0448\u0430\u043b, \u0447\u0442\u043e \u0432 \u0442\u043e\u043b\u043f\u0435 \u043d\u0430\u0447\u0430\u043b\u0438\u0441\u044c \u0440\u0430\u0437\u0433\u043e\u0432\u043e\u0440\u044b \u043e \u0442\u043e\u043c, \u0447\u0442\u043e \u044f \u043f\u043e\u0441\u0442\u0443\u043f\u0438\u043b \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u0438 \u0447\u0442\u043e \u0431\u044b \u0441\u043b\u0443\u0447\u0438\u043b\u043e\u0441\u044c, \u0435\u0441\u043b\u0438 \u0431\u044b \u044f \u044d\u0442\u043e\u0433\u043e \u043d\u0435 \u0441\u0434\u0435\u043b\u0430\u043b. \u0422\u043e \u0435\u0441\u0442\u044c \u0432\u0441\u0435 \u044d\u0442\u0438 \u043b\u044e\u0434\u0438, \u0434\u0430\u0436\u0435 \u043d\u0435 \u0437\u0430\u0434\u0443\u043c\u0430\u043b\u0438\u0441\u044c \u043e\u0431 \u044d\u0442\u043e\u043c \u0440\u0430\u043d\u044c\u0448\u0435, \u043e\u043d\u0438 \u043a\u0430\u043a \u0437\u043e\u043c\u0431\u0438, \u043f\u0440\u043e\u0441\u0442\u043e \u0434\u0435\u043b\u0430\u043b\u0438 \u0442\u043e, \u0434\u043b\u044f \u0447\u0435\u0433\u043e \u043f\u0440\u0438\u0448\u043b\u0438 \u043d\u0430 \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 - \u0436\u0434\u0430\u043b\u0438 \u0442\u0440\u0430\u043c\u0432\u0430\u0439.\n\n>\u0415\u0449\u0451 \u041c\u0430\u0442\u044c \u0422\u0435\u0440\u0435\u0437\u0430 \u0433\u043e\u0432\u043e\u0440\u0438\u043b\u0430: \u0412\u0435\u043b\u0438\u0447\u0430\u0439\u0448\u0438\u0439 \u0433\u0440\u0435\u0445 \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430 \u2014 \u044d\u0442\u043e \u043d\u0435 \u043d\u0435\u043d\u0430\u0432\u0438\u0441\u0442\u044c, \u0430 \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435 \u043a \u0441\u0432\u043e\u0438\u043c \u0431\u0440\u0430\u0442\u044c\u044f\u043c. \n\n>\u042f \u0434\u043e\u043f\u043e\u043b\u043d\u044e \u044d\u0442\u043e \u0438\u0437\u0440\u0435\u0447\u0435\u043d\u0438\u0435, \u0441\u0432\u043e\u0438\u043c\u0438 \u043c\u044b\u0441\u043b\u044f\u043c\u0438. \u0420\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435 - \u0433\u0440\u0435\u0445, \u043f\u043e\u0440\u043e\u043a, \u0434\u0443\u0440\u043d\u0430\u044f \u0447\u0435\u0440\u0442\u0430 \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0430, \u043f\u043b\u043e\u0445\u043e\u0435 \u0432\u043e\u0441\u043f\u0438\u0442\u0430\u043d\u0438\u0435... \u043d\u0430\u0437\u044b\u0432\u0430\u0439\u0442\u0435 \u043a\u0430\u043a \u0445\u043e\u0442\u0438\u0442\u0435. \u0420\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435 \u044d\u0442\u043e \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430! \u0418 \u0434\u0435\u043b\u043e \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0438 \u043a \u043b\u044e\u0434\u044f\u043c, \u0441\u0432\u043e\u0438\u043c \u0431\u0440\u0430\u0442\u044c\u044f\u043c, \u043a\u0430\u043a \u0433\u043e\u0432\u043e\u0440\u0438\u043b\u0430 \u041c\u0430\u0442\u044c \u0422\u0435\u0440\u0435\u0437\u0430. \u0422\u043e\u0442 \u043a\u0442\u043e \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u0441\u043c\u043e\u0442\u0440\u0438\u0442, \u0445\u043e\u0442\u044f \u043c\u043e\u0433 \u0431\u044b \u043f\u043e\u043c\u043e\u0447\u044c, \u043a\u0430\u043a \u0433\u0438\u0431\u043d\u0435\u0442 \u0436\u0438\u0432\u043e\u0442\u043d\u043e\u0435, \u0442\u0430\u043a \u0436\u0435 \u0441\u043f\u043e\u043a\u043e\u0439\u043d\u043e \u043f\u0440\u043e\u0439\u0434\u0451\u0442 \u043c\u0438\u043c\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043d\u0443\u0436\u043d\u0430 \u043f\u043e\u043c\u043e\u0449\u044c.\n\n>\u0418 \u0435\u0441\u043b\u0438 \u0431\u044b \u043b\u044e\u0434\u0438 \u043d\u0435 \u0431\u044b\u043b\u0438 \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u043d\u044b, \u043d\u0435 \u0441\u043b\u0443\u0447\u0430\u043b\u043e\u0441\u044c \u0431\u044b \u043c\u043d\u043e\u0433\u0438\u0445 \u0443\u0436\u0430\u0441\u043d\u044b\u0445 \u0432\u0435\u0449\u0435\u0439. \u041f\u0440\u043e\u0441\u0442\u043e \u0437\u0430\u0434\u0430\u0439\u0442\u0435 \u0441\u0435\u0431\u0435 \u0432\u043e\u043f\u0440\u043e\u0441, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0440\u0430\u0437 \u044f \u0432\u0438\u0434\u0435\u043b \u0447\u0442\u043e-\u0442\u043e \u0441\u0442\u0440\u0430\u043d\u043d\u043e\u0435, \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435. \u041c\u043e\u0436\u0435\u0442 \u0434\u0435\u0432\u0443\u0448\u043a\u0443 \u0432 \u043f\u0435\u0440\u0435\u0443\u043b\u043a\u0435, \u043a \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u0430\u043b\u0438 \u043f\u044c\u044f\u043d\u044b\u0435 \u043f\u0430\u0440\u043d\u0438 \u0438\u043b\u0438 \u0441\u0442\u0430\u0440\u0438\u043a\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u043d\u0435 \u043c\u043e\u0433 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e\u0440\u043e\u0433\u0443, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0435\u0433\u043e \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u043b... \u043c\u043e\u0436\u0435\u0442 \u0441\u0442\u043e\u0438\u043b\u043e \u043f\u043e\u0434\u043e\u0439\u0442\u0438 \u0438 \u043f\u043e\u043c\u043e\u0447\u044c?! \u041d\u043e \u0432\u0435\u0434\u044c, \u043d\u0430\u0432\u0435\u0440\u043d\u043e\u0435 \u044d\u0442\u043e \u043d\u0435 \u043c\u043e\u0451 \u0434\u0435\u043b\u043e, \u043c\u043e\u0436\u0435\u0442 \u0434\u0435\u0432\u0443\u0448\u043a\u0430 \u0437\u043d\u0430\u043a\u043e\u043c\u0430 \u0441 \u043d\u0438\u043c\u0438, \u0430 \u043c\u043e\u0436\u0435\u0442 \u043e\u043d\u0438 \u043f\u0440\u043e\u0441\u0442\u043e \u0434\u0443\u0440\u0430\u0447\u0438\u043b\u0438\u0441\u044c. \u041c\u043e\u0436\u0435\u0442 \u044d\u0442\u043e\u0442 \u0441\u0442\u0430\u0440\u0438\u043a \u0432\u043e\u0432\u0441\u0435 \u0438 \u043d\u0435 \u0445\u043e\u0447\u0435\u0442 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u0434\u043e\u0440\u043e\u0433\u0443, \u0430 \u043f\u0440\u043e\u0441\u0442\u043e \u0436\u0434\u0451\u0442 \u043a\u043e\u0433\u043e-\u0442\u043e. \u0425\u043e\u0440\u043e\u0448\u043e \u0431\u044b, \u0435\u0441\u043b\u0438 \u0431\u044b \u0432 \u0436\u0438\u0437\u043d\u0438 \u0432\u0441\u0451 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u043b\u043e\u0441\u044c \u0434\u043e\u0431\u0440\u043e\u043c, \u043d\u043e \u0436\u0438\u0437\u043d\u044c \u0436\u0435\u0441\u0442\u043e\u043a\u0430! \u041d\u0435 \u043f\u043e\u043c\u043e\u0433 \u0441\u0442\u0430\u0440\u0438\u043a\u0443, \u043f\u043e\u0434\u0443\u043c\u0430\u043b, \u0447\u0442\u043e \u044d\u0442\u043e \u043d\u0435 \u0442\u0432\u043e\u0451 \u0434\u0435\u043b\u043e, \u0430 \u0441 \u0443\u0442\u0440\u0430 \u0443\u0432\u0438\u0434\u0435\u043b \u0432 \u043d\u043e\u0432\u043e\u0441\u0442\u044f\u0445, \u0447\u0442\u043e \u0435\u0433\u043e \u0441\u0431\u0438\u043b\u0430 \u043c\u0430\u0448\u0438\u043d\u0430 \u0438\u043b\u0438 \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043b \u043e \u0434\u0435\u0432\u0443\u0448\u043a\u0435, \u0438\u0437\u043d\u0430\u0441\u0438\u043b\u043e\u0432\u0430\u043d\u043d\u043e\u0439 \u0432 \u043f\u0435\u0440\u0435\u0443\u043b\u043a\u0435 \u043d\u0435\u043f\u043e\u0434\u0430\u043b\u0451\u043a\u0443.\n\n<br />\n\nhttp://rampages.us/washingtonstuniv112/wp-content/uploads/sites/9900/2015/09/Screen-Shot-2015-09-29-at-9.54.01-PM.png\n<a href=\"http://rampages.us/washingtonstuniv112/2015/09/30/visual-literacy-response/\">image credit</a>\n\n<br />\n\n---\n\nOne of the most famous cases of indifference occurred with Kitty Genovese, 13 March 1964. She was murdered and raped and several neighbors heard her cry but no one helped her. After this incident, for the study of this issue were took psychologists and studies have been conducted. The result was revealed the so-called \"bystander effect\", proving that the greater the number of people present at the crime, the less likely that someone will help.\n\nFrom wikipedia:\n* The bystander effect, or bystander apathy, is a social psychological phenomenon that refers to cases in which individuals do not offer any means of help to a victim when other people are present. The probability of help is inversely related to the number of bystanders. In other words, the greater the number of bystanders, the less likely it is that any one of them will help. Several variables help to explain why the bystander effect occurs.\n\n\n\n>\u041e\u0434\u0438\u043d \u0438\u0437 \u043d\u0430\u0438\u0431\u043e\u043b\u0435\u0435 \u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0445 \u0441\u043b\u0443\u0447\u0430\u0435\u0432 \u043f\u0440\u043e\u044f\u0432\u043b\u0435\u043d\u0438\u044f \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u044f \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u0451\u043b \u0441 \u041a\u0438\u0442\u0442\u0438 \u0414\u0436\u0435\u043d\u043e\u0432\u0435\u0437\u0435 13 \u043c\u0430\u0440\u0442\u0430 1964\u0433. \u041e\u043d\u0430 \u0431\u044b\u043b\u0430 \u0443\u0431\u0438\u0442\u0430 \u0438 \u0438\u0437\u043d\u0430\u0441\u0438\u043b\u043e\u0432\u0430\u043d\u0430, \u043f\u0440\u0438 \u0447\u0451\u043c \u043c\u043d\u043e\u0433\u0438\u0435 \u0441\u043e\u0441\u0435\u0434\u0438 \u0441\u043b\u044b\u0448\u0430\u043b\u0438 \u0435\u0451 \u043a\u0440\u0438\u043a\u0438, \u043d\u043e \u043d\u0438\u043a\u0442\u043e \u043d\u0435 \u043f\u043e\u043c\u043e\u0433. \u041f\u043e\u0441\u043b\u0435 \u044d\u0442\u043e\u0433\u043e \u0441\u043b\u0443\u0447\u0430\u044f \u0437\u0430 \u0438\u0437\u0443\u0447\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0432\u043e\u043f\u0440\u043e\u0441\u0430 \u0432\u0437\u044f\u043b\u0438\u0441\u044c \u043f\u0441\u0438\u0445\u043e\u043b\u043e\u0433\u0438 \u0438 \u0431\u044b\u043b\u0438 \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u044b \u0438\u0441\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u044f. \u0412 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0435 \u0431\u044b\u043b \u0432\u044b\u044f\u0432\u043b\u0435\u043d \u0442\u0430\u043a \u043d\u0430\u0437\u044b\u0432\u0430\u0435\u043c\u044b\u0439 \"\u044d\u0444\u0444\u0435\u043a\u0442 \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u044f\", \u0434\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0449\u0438\u0439, \u0447\u0442\u043e \u0447\u0435\u043c \u0431\u043e\u043b\u044c\u0448\u0435\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u043b\u044e\u0434\u0435\u0439 \u043f\u0440\u0438\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u043f\u0440\u0438 \u043f\u0440\u0435\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0438, \u0442\u0435\u043c \u043c\u0435\u043d\u044c\u0448\u0435 \u0448\u0430\u043d\u0441\u043e\u0432 \u0447\u0442\u043e \u043a\u0442\u043e-\u0442\u043e \u043e\u043a\u0430\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0449\u044c.\n\n>\u0412\u044b\u0434\u0435\u0440\u0436\u043a\u0430 \u0441 \u0432\u0438\u043a\u0438\u043f\u0435\u0434\u0438\u0438:\n> * \u042d\u0444\u0444\u0435\u043a\u0442 \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u044f, \u044d\u0444\u0444\u0435\u043a\u0442 \u043f\u043e\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0435\u0433\u043e, \u0441\u0438\u043d\u0434\u0440\u043e\u043c \u0414\u0436\u0435\u043d\u043e\u0432\u0435\u0437\u0435 \u2014 \u043f\u0441\u0438\u0445\u043e\u043b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u044d\u0444\u0444\u0435\u043a\u0442, \u043f\u0440\u043e\u044f\u0432\u043b\u044f\u044e\u0449\u0438\u0439\u0441\u044f \u0432 \u0442\u043e\u043c, \u0447\u0442\u043e \u043b\u044e\u0434\u0438, \u043e\u043a\u0430\u0437\u0430\u0432\u0448\u0438\u0435\u0441\u044f \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u044f\u043c\u0438 \u0447\u0440\u0435\u0437\u0432\u044b\u0447\u0430\u0439\u043d\u043e\u0439 \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u0438 (\u0414\u0422\u041f, \u043f\u0440\u0435\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0438\u0445), \u043d\u0435 \u043f\u044b\u0442\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u043c\u043e\u0447\u044c \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0438\u043c. \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e, \u0447\u0442\u043e \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u044c \u0442\u043e\u0433\u043e, \u0447\u0442\u043e \u043a\u0442\u043e-\u043d\u0438\u0431\u0443\u0434\u044c \u0438\u0437 \u0441\u0432\u0438\u0434\u0435\u0442\u0435\u043b\u0435\u0439 \u043d\u0430\u0447\u043d\u0451\u0442 \u043f\u043e\u043c\u043e\u0433\u0430\u0442\u044c \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0438\u043c, \u0442\u0435\u043c \u043c\u0435\u043d\u044c\u0448\u0435, \u0447\u0435\u043c \u0431\u043e\u043b\u044c\u0448\u0435 \u043b\u044e\u0434\u0435\u0439 \u0441\u0442\u0430\u043d\u0443\u0442 \u043f\u0440\u043e\u0441\u0442\u043e \u0441\u0442\u043e\u044f\u0442\u044c \u0438 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c. \u0414\u0440\u0443\u0433\u0438\u043c\u0438 \u0441\u043b\u043e\u0432\u0430\u043c\u0438, \u043a\u0430\u0436\u0434\u044b\u0439 \u0438\u0437 \u043e\u0447\u0435\u0432\u0438\u0434\u0446\u0435\u0432 \u0441\u0447\u0438\u0442\u0430\u0435\u0442, \u0447\u0442\u043e \u043f\u043e\u043c\u043e\u0447\u044c \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0438\u043c \u0434\u043e\u043b\u0436\u0435\u043d \u043d\u0435 \u043e\u043d, \u0430 \u043a\u0442\u043e-\u0442\u043e \u0434\u0440\u0443\u0433\u043e\u0439. \u041d\u0430\u043e\u0431\u043e\u0440\u043e\u0442, \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u043e\u0447\u0435\u0432\u0438\u0434\u0435\u0446 \u043f\u043e\u043d\u0438\u043c\u0430\u0435\u0442, \u0447\u0442\u043e \u043a\u0440\u043e\u043c\u0435 \u043d\u0435\u0433\u043e \u043f\u043e\u043c\u043e\u0447\u044c \u043f\u043e\u0441\u0442\u0440\u0430\u0434\u0430\u0432\u0448\u0438\u043c \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435\u043a\u043e\u043c\u0443, \u0438 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u0435\u0442 \u0433\u043e\u0440\u0430\u0437\u0434\u043e \u0440\u0435\u0448\u0438\u0442\u0435\u043b\u044c\u043d\u0435\u0435\n\n<br />\n\nhttps://upload.wikimedia.org/wikipedia/en/5/51/KittyGenovese.JPG\n<a href=\"https://en.wikipedia.org/wiki/Murder_of_Kitty_Genovese#/media/File:KittyGenovese.JPG\">image credit</a>\n\n<br />\n\n---\n\nAs a result, apart from the fact that many people are indifferent in themselves, so still and gathering together many people lose the ability to respond to situation adequately.\n\nQuote from \"man in black\" film:\n* A person is smart. People are dumb, panicky dangerous animals and you know it.\n\nThat is why I think that indifference - main problem, evil, generating even more evil.\n\n\n>\u0412 \u0438\u0442\u043e\u0433\u0435, \u043f\u043e\u043c\u0438\u043c\u043e \u0442\u043e\u0433\u043e, \u0447\u0442\u043e \u043c\u043d\u043e\u0433\u0438\u0435 \u043b\u044e\u0434\u0438 \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u043d\u044b \u0441\u0430\u043c\u0438 \u043f\u043e \u0441\u0435\u0431\u0435, \u0442\u0430\u043a \u0435\u0449\u0451 \u0438 \u0441\u043e\u0431\u0438\u0440\u0430\u044f\u0441\u044c \u0432\u043c\u0435\u0441\u0442\u0435 \u043c\u043d\u043e\u0433\u0438\u0435 \u0442\u0435\u0440\u044f\u044e\u0442 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c \u0440\u0435\u0430\u0433\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0434\u0435\u043a\u0432\u0430\u0442\u043d\u043e.\n\n>\u0426\u0438\u0442\u0430\u0442\u0430 \u0438\u0437 \u0444\u0438\u043b\u044c\u043c\u0430 \"\u041b\u044e\u0434\u0438 \u0432 \u0447\u0451\u0440\u043d\u043e\u043c\":\n> * \u0427\u0435\u043b\u043e\u0432\u0435\u043a \u0440\u0430\u0437\u0443\u043c\u0435\u043d. \u0410 \u0442\u043e\u043b\u043f\u0430 \u2014 \u044d\u0442\u043e \u0442\u0443\u043f\u043e\u0439, \u0441\u043a\u043b\u043e\u043d\u043d\u044b\u0439 \u043a \u043f\u0430\u043d\u0438\u043a\u0435 \u043e\u043f\u0430\u0441\u043d\u044b\u0439 \u0437\u0432\u0435\u0440\u044c.\n\n>\u0418\u043c\u0435\u043d\u043d\u043e \u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u044f \u0441\u0447\u0438\u0442\u0430\u044e, \u0447\u0442\u043e \u0440\u0430\u0432\u043d\u043e\u0434\u0443\u0448\u0438\u0435 / \u0431\u0435\u0437\u0440\u0430\u0437\u043b\u0438\u0447\u0438\u0435 - \u043e\u0434\u043d\u0430 \u0438\u0437 \u0433\u043b\u0430\u0432\u043d\u0435\u0439\u0448\u0438\u0445 \u043f\u0440\u043e\u0431\u043b\u0435\u043c, \u0437\u043b\u043e, \u043f\u043e\u0440\u043e\u0436\u0434\u0430\u044e\u0449\u0435\u0435 \u0435\u0449\u0451 \u0431\u043e\u043b\u044c\u0448\u0435 \u0437\u043b\u0430.\n\n<br />\n\n---\n\n<br />\n\nAs usual, I'm interested in your opinion. And gladly I will discuss this issue.\n\n>\u041a\u0430\u043a \u043e\u0431\u044b\u0447\u043d\u043e, \u043c\u043d\u0435 \u0438\u043d\u0442\u0435\u0440\u0435\u0441\u043d\u043e \u0432\u0430\u0448\u0435 \u043c\u043d\u0435\u043d\u0438\u0435. \u0418 \u0441 \u0443\u0434\u043e\u0432\u043e\u043b\u044c\u0441\u0442\u0432\u0438\u0435\u043c \u043e\u0431\u0441\u0443\u0436\u0443 \u0434\u0430\u043d\u043d\u044b\u0439 \u0432\u043e\u043f\u0440\u043e\u0441.\n\n<br />\n\n---\n\n<br />\n\nSincerely, TerryCraft.",
+    "body_length": 9534,
+    "cashout_time": "2016-09-11T16:52:03",
+    "category": "life",
+    "children": 19,
+    "created": "2016-09-04T16:52:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"ru\",\"psychology\",\"society\",\"thoughts\"],\"image\":[\"http://eleveneight.co.uk/wp-content/uploads/2015/09/The-7-Deadly-Sins-Of-Social-Media-New-Blog.png\",\"http://rampages.us/washingtonstuniv112/wp-content/uploads/sites/9900/2015/09/Screen-Shot-2015-09-29-at-9.54.01-PM.png\",\"https://upload.wikimedia.org/wikipedia/en/5/51/KittyGenovese.JPG\"],\"links\":[\"http://eleveneight.co.uk/7-deadly-sins-of-social-media/\",\"http://rampages.us/washingtonstuniv112/2015/09/30/visual-literacy-response/\",\"https://en.wikipedia.org/wiki/Murder_of_Kitty_Genovese#/media/File:KittyGenovese.JPG\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T16:52:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 51874060688418,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "283.260 HBD",
+    "percent_hbd": 10000,
+    "permlink": "most-evil-thing-of-humanity-samoe-bolshoe-zlo-chelovechestva",
+    "post_id": 1124408,
+    "promoted": "56.000 HBD",
+    "replies": [],
+    "root_title": "Most evil thing of humanity / \u0421\u0430\u043c\u043e\u0435 \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0437\u043b\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u0442\u0432\u0430",
+    "title": "Most evil thing of humanity / \u0421\u0430\u043c\u043e\u0435 \u0431\u043e\u043b\u044c\u0448\u043e\u0435 \u0437\u043b\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u0447\u0435\u0441\u0442\u0432\u0430",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@terrycraft/most-evil-thing-of-humanity-samoe-bolshoe-zlo-chelovechestva"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 14765040488827,
+        "rshares": 12704385632203,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9326993992,
+        "rshares": 105034260744,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "5000",
+        "reputation": 608057298751,
+        "rshares": 304436054466,
+        "voter": "justin"
+      },
+      {
+        "percent": "5000",
+        "reputation": 138490649,
+        "rshares": 680873179904,
+        "voter": "silver"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4018307276106,
+        "rshares": 1559039534729,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 27931460807554,
+        "rshares": 2265252921483,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3820217513376,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099190450,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762481721,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697315118,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54008589524,
+        "voter": "bue"
+      },
+      {
+        "percent": "5000",
+        "reputation": 29449063355738,
+        "rshares": 212539266004,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660921578,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213661759,
+        "voter": "moon"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1241362310762,
+        "rshares": 7747691597,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622724514,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1096208710228,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967195088,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288140285,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24444650979,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 46091338521,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15462863713,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1545200716692,
+        "rshares": 7731203787,
+        "voter": "nate-atkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 14461373144,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431846323,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 195623493637,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 38891594263,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14734236654427,
+        "rshares": 40582077328,
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 49459902417,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 17904315172,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 58324369537,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 269921024,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8820348623,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 198782719642,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 32000322278,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1754810863,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1416077654,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 15137777269,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4405562279,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3655676496603,
+        "rshares": 10494607724,
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 44055891876,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1981014395,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 62388024554,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 222541650110,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4301982638,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 35137895022,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 214413449699,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 373770800,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97517122081,
+        "rshares": 156827413,
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7093464346,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18452890042,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4018940869,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 6589126730,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 27754280909,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9225263659,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 34806924023,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 20214947680,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7204798505,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1911888642586,
+        "rshares": 2724786905,
+        "voter": "uuuhha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 343630735,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 749461135,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849623403126,
+        "rshares": 1051682203,
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11737919032,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 85929715216,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 29985095390,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "5000",
+        "reputation": 31215012571,
+        "rshares": 18497505764,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166185808108,
+        "rshares": 89949939,
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 7757965105,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4371892494,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 709202486,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 14193476029,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 61025286,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 112625060,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 477969572,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 267639325,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 294937368742,
+        "rshares": 3377536592,
+        "voter": "steemokto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 54321981,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5550288535,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51575887,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454788,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51519509,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1493629031,
+        "voter": "meerkat"
+      }
+    ],
+    "author": "hitmeasap",
+    "author_reputation": 19462531467501,
+    "beneficiaries": [],
+    "body": "# Life is unfair.. and it's okay.\n\nSome people will have better luck and fortune than others. Nothing will ever stop that. Life is unfair. - **We all know it**. However, people also tend to discuss the fairness of steemit. - I've done it myself too so I know what I'm talking about.\n\n<center>http://cdn.h3sean.com/wp-content/uploads/2011/10/Unfair.png</center>\n<center>[Source](http://h3sean.com/god-unfair/)</center>\n\n> *\"Steemit is unfair.\"*\n\nBut.. Is it really unfair? - **I don't know. Perhaps. Probably.**\n\nHave you ever gambled on a casino? In real life or online doesn't matter.\n\n**- I bet some of you've done that.**\n\nHave you ever played a computer game, a card game or have you ever played monopoly with your family, friends or against other people?\n\n**- I bet most of you have done that.**\n\n<center>http://blogs.lasprovincias.es/elsindromededarrin/files/2016/07/o-MONOPOLY-facebook-1.jpg</center>\n<center>[Source](http://blogs.lasprovincias.es/elsindromededarrin/)</center>\n\n### The follow-up questions are..\n- Did you win? - Did you win every single time you played? - Are you the best there is at the game?\n\nI bet most of you would love to answer **yes** on these questions but in reality, most of you would lie if you did that. - You didn't win everytime and you're probably not the best player ever at these games. - **Is that unfair?**\n\n- It's life. It's bound to happen. You'll never be able to win everytime you play a game against others. At some point you'll meet someone who's better than you. A person with more skills. A person with more knowledge, experience or a person who've trained more than you. A person with more luck.\n\nYou will lose that game.. **And that's okay.**\n\n---\n\n<center>http://i.imgur.com/bYmdHcX.gif</center>\n<center>[Source](https://www.reddit.com/r/gifs/comments/1ubutj/the_power_of_mike_tyson_in_his_prime/)</center>\n\n### With that being said..\nIf I tried to fight Mike Tyson or Muhammad Ali, in the past, during their glory days.. I would probably end up dead. I don't have the fighting skills it takes to bring down such monstrous beasts.\n\nSo.. **How can I expect to get a ton of rewards on Steemit with every single post of mine?** - It's impossible.. Or is it..?\n\nWhat you count as *\"a ton of reward\"* would obviously play a major role in this so let's say anything between $100 and $300+. That would be 1 or 2 whales. On each post. **Roughly estimated.**\n\nI've told you this before. I had never owned a bitcoin before I joined steemit. I don't consider myself to be *\"the lucky guy\"*, but I'm not unlucky either. **I believe I deserve what I've made so far.**\n\nI share content, I try to promote steemit and I try to help others and all that.. I contribute. More on that later in this post.\n\n---\n\n<center>http://www.worldmomsblog.com/wp-content/uploads/2013/10/ID-10086141.jpg</center>\n<center>[source](http://www.worldmomsnetwork.com/2013/10/30/egypt-can-life/)</center>\n\nAnyhow, I never owned a bitcoin before I joined steemit... **So I wouldn't call myself a bitcoin expert would I?** - Especially since there's thousands of other people here with more knowledge than me. People who are true experts. I leave that subject where it is. **In the hands of the real experts**. In the hands of people who understand what it's all about. People who know every single detail about it.\n\n### So, what can I do? - And what should I post?\n\nFirst of all, I would give myself some time and think about this entire community we have here. What can I do for steemit? - What can I do for you? - **What can I bring to the table?**\n\nDo I have something that others lack? - Am I better at something than others..?\n\n- **In my case I would say no**. I never compare myself with others like that. I find it stupid.. And I would probably only hurt myself if I did.\n\n## Why do I even mention this then..?\n\n<center>http://2.bp.blogspot.com/-y0CGvDsBGMI/UszG2RE2SkI/AAAAAAAACWk/_5DP51zVdwM/s1600/standinginyourway.png</center>\n<center>[Source](http://quotesgram.com/your-own-worst-enemy-quotes/)</center>\n\n- Because **time** and **thoughts** is what will give you an upper hand. **An upper hand against yourself.**\n\nYou are your biggest hinder. On steemit and in life. You are the one standing in front of the treasure but you lack the courage to grab it. I've been there too and it's okay. - **As long as you are aware of it.**\n\nYou are your own enemy so don't spend time comparing yourself with others.. **Don't get more enemies.**\n\n---\n\n## Moving on..\n\nYou should always publish content you want to share. Things you believe in, things you like. What you truly want to share. Not what you think others would like. That's a pretty common sentence these days. I've said it myself too a bunch of times already.. **So why do I bring it up once more?**\n\nI don't know you in person. I don't know what type of person you are or what you can or cannot do.. But I do know that there's an endless ocean of people out there (perhaps not on steemit alone) who doesn't know what to write.. Even though they know that they should publish content they like to share!\n\n**And why is that?**\n\n- The main reason for this is that some people aren't aware of the things they are good at.\n\nThey know but they would never answer a question with that.\n\n---\n\n### I'll give you an example of this:\n\nImagine a job interview. Some people are nervous so they shake and others are filled with confidence.\n\n<center>http://i.huffpost.com/gen/1937498/original.jpg</center>\n<center>[Source](http://www.huffingtonpost.com/2014/07/30/hunger-entitlement-study_n_5631594.html)</center>\n\nSuddenly the question comes..\n\n- **What are your qualities as a person?**\n\nor\n\n- **Why should we hire you instead of someone else?**\n\nAny of these two questions means instant death to some people. **They don't know how to answer that.**\n\nThey know that they are a great parent, amazing artists or very skilled football players.. But they don't mention that during the interview or as answers for these questions because it doesn't *\"fit\"*.\n\nThe job is for a grocery store or as a salesperson, literally anything that doesn't *\"fit\"* your category.. So to be a great football player or a good artist doesn't count.. Right? - **Wrong.**\n\n<center>http://cyrusevanado.s3.amazonaws.com/ai/selfmarketing/images/shoppingdude.jpg</center>\n<center>[Source](http://cyrusevanado.s3.amazonaws.com/ai/selfmarketing/index.html)</center>\n\n## A great answer is more important than \"the answer\".\n\nWhat do I mean by that? - **Take a look at this:**\n\n- **What are your qualities as a person?**\n\n> *\"I am a humble person with a burning desire to build a family, raising two beautiful kids, driving a SUV and take my kids to Disneyland. I would love to see my kids with that super-smile on their face when they hug Mickey Mouse. That's who I am. Do you have kids?\"*\n\n- **Why should we hire you instead of someone else?**\n\n> *\"I've always loved to share my creations as an artist with the people around me. I'm hardworking and I've been freelancing full time for 5 years now.\"*\n\n**Now your face probably looks like this:**\n\n<center>https://static4.fjcdn.com/comments/What+face+_78d9aaf81a6f9b7902ca1ee371b90428.png</center>\n<center>[Source](https://funnyjunk.com/channel/feels/We+all+know+that+feel/XsvvGKf/6)</center>\n\nAnd yeah, I can understand why.. This was confusing for me too when I first encountered this.. But let me break this down for you even further..\n\n**What did I accomplish with these answers? - None of them are actually *\"related\"* to the questions, right?**\n\n- **In the first answer I actually tell them this:**\n\n> I am humble person, a good listener and I'm willing to help others.. I am a dreamer and I will work hard to get there. I will bring my A game at all times.\n\n- That's not at all the things I said, but that's how most people will interpret it. Having a family, raising kids and having dreams about vacations, smiles and a SUV. **That speaks for itself.** That means you're willing to push yourself to get there. You also touch their hearts with this. You go deep. You go to a personal level.\n\n**In my second answer, I tell them this:**\n\n> I care about others. I help others and I feel good about it. I work hard no matter what's at stake and I always deliver. I've delivered for 5 years already and I won't stop now.\n\n- Again, this isn't near the things I said.. But between the lines, this is a perfect match of what I gave as an answer. You share your creations which basically means that you care about others and that's important no matter what you'll work with. You've also been working full time for the past 5 years, so you are filled with confidence, know-how and you're still alive.. **So that means that you know what you're doing.**\n\n---\n\n### Most people would answer these questions like this:\n\n> My name is ______ and I'm ___ years old. I live ______ and I'm interested in this job. I previously worked at ________. I am honest, loyal and trustworthy. I am a nice person if you asked my friends.\n\nAnd sure, this isn't bad.. But it's the same type of answer they got a billion times before.. - Hopefully, you understand my point with this. - Use your talents. Think about it. **You have much more than you are able to see!**\n\n<center>http://img12.deviantart.net/62ed/i/2011/140/d/6/be_you_wallpaper__grey_by_lileviljess-d3gs5ts.jpg</center>\n<center>[Source](http://lileviljess.deviantart.com/art/Be-You-Wallpaper-Grey-209586304)</center>\n\n---\n\nShare what you are. Share the things you are good at. Share things you've done and things you do.. **Be you.** - That's what will bring you the most rewards in the long run. Especially on a personal level.\n\n<center>**Be the best you can be.**</center>\n\n---\n\n### What do I do..?\n\nI share things I care about. I share things from my personal life. I share things I feel good about.\n\nI also share *\"Hidden Photography Gems\"*. - None of them have reached high rewards.. I've also just recently launched a special contest. A \"secret contest\" and I've even sent the winner the prize money. I earned 1.8 STEEM POWER and lost $27 SBD in total doing that.. - **And I'm truly glad I did what I did.**\n\nI do this to help others. I do this to bring value, faith and happiness to steemit. It's not much but it's something. Hopefully I can encourage people. I can't change a person's life with my votes or with $27 SBD but I can make a huge difference with my words. I can spread the word as much as possible and hopefully, at some point, someone will pick that up.. **And that's the chance we're looking for!** \n\n<center>**That's the chance I want to give to all of us.**</center>\n\nWhen I feature people's posts I always wish that they will receive comments and upvotes, I would love to see that. On each and everyone of the posts I feature.. I will continue to spread my word and publish authors from the photography section because I feel that the photography section deserves much more attention.\n\nIt doesn't matter if it will get more attention in a month or a year automatically when more users have joined steemit.. I want to be part of this. I want to spread the word. I want to help. - **And I will continue to do that.**\n\n<center>**I do this because I feel good about it .. And in return, I help you. In one way or another.**</center>\n\n<center>http://www.sirenconsultingfirm.com/wp-content/uploads/2015/04/something-better-than-nothing.jpg</center>\n<center>[Source](http://www.sirenconsultingfirm.com/in-marketing-something-is-better-than-nothing/)</center>\n\n---\n\n<center>[**Feel Free To Follow Me**](https://steemit.com/@hitmeasap)</center>\n\n---",
+    "body_length": 11587,
+    "cashout_time": "2016-09-07T12:07:36",
+    "category": "steemit",
+    "children": 19,
+    "created": "2016-08-31T12:07:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"writing\",\"life\",\"blog\",\"steem-help\"],\"image\":[\"http://cdn.h3sean.com/wp-content/uploads/2011/10/Unfair.png\",\"http://blogs.lasprovincias.es/elsindromededarrin/files/2016/07/o-MONOPOLY-facebook-1.jpg\",\"http://i.imgur.com/bYmdHcX.gif\",\"http://www.worldmomsblog.com/wp-content/uploads/2013/10/ID-10086141.jpg\",\"http://2.bp.blogspot.com/-y0CGvDsBGMI/UszG2RE2SkI/AAAAAAAACWk/_5DP51zVdwM/s1600/standinginyourway.png\",\"http://i.huffpost.com/gen/1937498/original.jpg\",\"http://cyrusevanado.s3.amazonaws.com/ai/selfmarketing/images/shoppingdude.jpg\",\"https://static4.fjcdn.com/comments/What+face+_78d9aaf81a6f9b7902ca1ee371b90428.png\",\"http://img12.deviantart.net/62ed/i/2011/140/d/6/be_you_wallpaper__grey_by_lileviljess-d3gs5ts.jpg\",\"http://www.sirenconsultingfirm.com/wp-content/uploads/2015/04/something-better-than-nothing.jpg\"],\"links\":[\"http://h3sean.com/god-unfair/\",\"http://blogs.lasprovincias.es/elsindromededarrin/\",\"https://www.reddit.com/r/gifs/comments/1ubutj/the_power_of_mike_tyson_in_his_prime/\",\"http://www.worldmomsnetwork.com/2013/10/30/egypt-can-life/\",\"http://quotesgram.com/your-own-worst-enemy-quotes/\",\"http://www.huffingtonpost.com/2014/07/30/hunger-entitlement-study_n_5631594.html\",\"http://cyrusevanado.s3.amazonaws.com/ai/selfmarketing/index.html\",\"https://funnyjunk.com/channel/feels/We+all+know+that+feel/XsvvGKf/6\",\"http://lileviljess.deviantart.com/art/Be-You-Wallpaper-Grey-209586304\",\"http://www.sirenconsultingfirm.com/in-marketing-something-is-better-than-nothing/\",\"https://steemit.com/@hitmeasap\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T12:07:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 24514948172217,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "73.495 HBD",
+    "percent_hbd": 10000,
+    "permlink": "be-you-and-do-what-you-can-something-is-better-than-nothing-and-i-will-prove-it",
+    "post_id": 1069884,
+    "promoted": "55.593 HBD",
+    "replies": [],
+    "root_title": "Be You And Do What You Can. Something is better than nothing.. And I will prove it!",
+    "title": "Be You And Do What You Can. Something is better than nothing.. And I will prove it!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@hitmeasap/be-you-and-do-what-you-can-something-is-better-than-nothing-and-i-will-prove-it"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2000",
+        "reputation": 261787136527,
+        "rshares": 98923186797,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7555040626678,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 260689951378,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170434439410,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2331336777611,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "2000",
+        "reputation": 8272495818727,
+        "rshares": 1445386678882,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3067363384383,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 478094018503,
+        "voter": "lafona"
+      },
+      {
+        "percent": "500",
+        "reputation": 20297981245452,
+        "rshares": 428577128724,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1120609046294,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1114483148331,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 308797510253,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6368563416960,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1828303912855,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "2500",
+        "reputation": 49280708331375,
+        "rshares": 1780689138136,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1773112285575,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4728021694081,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "2000",
+        "reputation": -296615780418,
+        "rshares": 256455387,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": 1390921990,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 450781632550,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 37842725376,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 10604863428,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5146683930,
+        "voter": "sakr"
+      },
+      {
+        "percent": "1000",
+        "reputation": 37454101478493,
+        "rshares": 31546083620,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1825706210,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 11068501198,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12594877551576,
+        "rshares": 74263607249,
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5380704535,
+        "rshares": 182177994109,
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "898",
+        "reputation": 12382143533351,
+        "rshares": 74889124791,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83797997544,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 519059105,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 6128985263,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 30442733029,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 336358998413,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 160495569982,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 39839920604,
+        "voter": "klye"
+      },
+      {
+        "percent": "2900",
+        "reputation": 1663549830469,
+        "rshares": 268806071,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 109399697896,
+        "voter": "asch"
+      },
+      {
+        "percent": "5555",
+        "reputation": 2902053059801,
+        "rshares": 1413666370,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2380117566,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 39098174016,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 71077636927,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 69227137467,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 31562570480,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 404992574,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 145991259402,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 17036466670,
+        "voter": "samether"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5888717170887,
+        "rshares": 33767337247,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 53446026484,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4888412869111,
+        "rshares": 26481261248,
+        "voter": "vladislav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 388023535378,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 4489216732,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 30490397432,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5946322288,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 108679378818,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 43188957880,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811919161664,
+        "rshares": 8018982007,
+        "voter": "svamiva"
+      },
+      {
+        "percent": "2500",
+        "reputation": 861737606263,
+        "rshares": 2190228775,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 33966901180,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 11724343347,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 458398081,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 38013683029,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 44994193660,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 67181381625,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 69428388695,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 174502281215,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 38574415785,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 62650245884,
+        "voter": "lehard"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1700182089209,
+        "rshares": 15194332212,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 245172817,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 46278606394,
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 12297660066,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158344982568,
+        "rshares": 2564759836,
+        "voter": "razorwave8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 150601945044,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 32022215321,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 540619706561,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 167274467203,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 19332722377,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2226795955,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 40728115733,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1106470849861,
+        "rshares": 2214191268,
+        "voter": "cloh76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 303442287792,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114002438,
+        "voter": "snowden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4709458476,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 15580284917,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 40368331645,
+        "voter": "biophil"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2397831198773,
+        "rshares": 1107671033,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 28215193752,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24973952155,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 11321267800,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 5718121463,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1425501767,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 798945222,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 458089722672,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2620486879029,
+        "rshares": 2224388314,
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 38834491135,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 84865861,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 129238783594,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1721184731,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 44807585729,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 183071361701,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "8000",
+        "reputation": 2339981102950,
+        "rshares": 4211214665,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 4922477300,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3755219518,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 34500248130,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45014899,
+        "rshares": 116147067,
+        "voter": "chugumoto"
+      },
+      {
+        "percent": "1000",
+        "reputation": 14988694886527,
+        "rshares": 53839922255,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 29212975976,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 818966646,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 23815723291,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 6972519497,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 206056754,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 7164728215,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 201571130,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 42693267253,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "1000",
+        "reputation": 58190631451,
+        "rshares": 4543553357,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 658363526,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 3525252375,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 45789163018,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1736279223,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "1400",
+        "reputation": 4063076365725,
+        "rshares": 583870241,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 3392010133,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 6406856963,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 125291181970,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1075365048,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 55154162145,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1275505236,
+        "rshares": 2298187874,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15517908096,
+        "rshares": 93149833,
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 10429146358,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 3192662723,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 141850846085,
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 4038742528,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 25085423770,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25599123033,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25608099829,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 6513732761,
+        "voter": "brendio"
+      },
+      {
+        "percent": "899",
+        "reputation": 1751717743,
+        "rshares": 2082524882,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22613377010,
+        "rshares": 71342284,
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4277108961,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 5551174113,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 2128821752,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58150459,
+        "voter": "michellek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25603442348,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25600704557,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25597687811,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25593532882,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 5813008317,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25589829152,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25586983681,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3300399043,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21109148575,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11496127617,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 121314249,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2033278442,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 13507419666,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 2555223700,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1434064827,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 65792487895,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 25208068509,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 67627457,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2704342364,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50027573,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51199976,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 9423604529,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9233804145,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "4900",
+        "reputation": 13325577893779,
+        "rshares": 15596955812,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 57816760,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57810474,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 86712034,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3789939590477,
+        "rshares": 7981765563,
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 706168759118,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "1900",
+        "reputation": 11683040603469,
+        "rshares": 18699439170,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 6742538723,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "3200",
+        "reputation": 44529428534261,
+        "rshares": 27315404640,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4974768209,
+        "voter": "almerri"
+      },
+      {
+        "percent": "5000",
+        "reputation": 64878458203,
+        "rshares": 728677907,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2043228058601,
+        "rshares": 3497401523,
+        "voter": "cryptomental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 284256346,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 3341359657,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5385371031617,
+        "rshares": 4717567649,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25580444366,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2982102775,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4536175742,
+        "rshares": 55543445,
+        "voter": "bitchplease"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 77719182822,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 86699261626,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 18011042265,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 27999285274,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3200",
+        "reputation": 3725920343994,
+        "rshares": 3803431159,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54719920,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 5031873993,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 1698796327,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 117344778,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 3367402144,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 1418049412,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89831340905,
+        "rshares": 77846143,
+        "voter": "arandu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 24705440619,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1660563580,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 1536187649,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2529023976,
+        "rshares": 55687591,
+        "voter": "broadperspective"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 4545264668,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15559178946,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3789038184,
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11937003273,
+        "rshares": 53093296,
+        "voter": "freesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 6826783194,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 836954421307,
+        "rshares": 1357013119,
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 994238100,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 1072423575,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 207196967560,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27728252972,
+        "rshares": 63060920,
+        "voter": "klaartje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2673786276,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 6023904178,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 644566982,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 379814419137,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 60084414328,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 683829103,
+        "rshares": 54232595,
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 60333104,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 2042093794,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 574180710,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 2399818471,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 54951573,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 597816915,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 11700961387,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 56908444,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121767758976,
+        "rshares": 65261900,
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4813604877,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46150823,
+        "rshares": 51215236,
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39516054142,
+        "rshares": 62256253,
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50871059,
+        "voter": "motion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50796122,
+        "voter": "factom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50572441,
+        "voter": "unilever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50568084,
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50484452,
+        "voter": "connect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3687368618,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3948329433364,
+        "rshares": 2339122417,
+        "voter": "senseye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162917785,
+        "voter": "ctu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675589247639,
+        "rshares": 1319293556,
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4857670,
+        "rshares": 161822020,
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161814721,
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161212160,
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161089804,
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160973134,
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157799009,
+        "voter": "photorealistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160961988,
+        "voter": "serena199"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160930383,
+        "voter": "gia7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165924295987,
+        "rshares": 196786352,
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160449137,
+        "voter": "richie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160386285,
+        "voter": "coraline88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160117216,
+        "voter": "harlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160078339,
+        "voter": "yanuel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118310383,
+        "rshares": 160027052,
+        "voter": "daritza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159984914,
+        "voter": "correct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159164412,
+        "voter": "disneypixar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159025535,
+        "voter": "xtreme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158732321,
+        "voter": "steemwallet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158541985,
+        "voter": "citigroup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 584475717,
+        "rshares": 77949421,
+        "voter": "dealzgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 86562486,
+        "voter": "storage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124988927947,
+        "rshares": 191907698,
+        "voter": "antaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735338572201,
+        "rshares": 152969555,
+        "voter": "mrlemmer11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 70767496,
+        "voter": "blackmarket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76913589,
+        "voter": "gifts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82837073,
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200359231752,
+        "rshares": 151515793,
+        "voter": "techslut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 132153069,
+        "voter": "steemtrail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 405982369,
+        "rshares": 149761866,
+        "voter": "gramion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 453683074,
+        "rshares": 151754313,
+        "voter": "dek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151416253,
+        "voter": "dukeofasia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4679904,
+        "rshares": 148244276,
+        "voter": "jahtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 135751381,
+        "voter": "dirlei.sdias"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "Some people are still confused as to what a witness is. There's a lot of mixed information on Steemit as to what a witness does, and how much they earn.\n\nI'm here to clear this up with a thorough post, with simple explanations where possible.\n\n## What is a witness?\n\n**A witness plays a crucial part in how the STEEM network functions. Some people might not be aware of this, but Steemit is just a fancy web interface on top of a large network called STEEM, which operates remotely similar to Bitcoin.**\n\nSimple Definition:\n\n>A STEEM witness is a person whom operates a **witness server** (which produces blocks), and publishes a price feed of STEEM/USD to the network.\n\nWitnesses have many tasks. **The first and foremost is to produce blocks (thus process transactions)**, the second most important is to produce a price feed, which is how STEEM Dollars are always worth 1 US Dollar in STEEM (using the 7 day exchange).\n\nYou may have heard of the term **51% attack** before. Unlike Bitcoin, miners don't matter much to the STEEM network, instead, that is a witnesses job: \n\n**A hard fork happens when 67% of the top witnesses are all running a certain version of STEEM**, which means the top 19 witnesses can pick and choose whether to agree with a fork or not. (e.g. Hard Fork 13 and 14 were both postponed for a week, and re-designed because witnesses refused to update)\n\nTl;Dr\n\n - They're the main producer of blocks (not miners)\n - They maintain a price feed, which is how SBD functions\n - They play the role of consensus (decide whether to hard fork or not)\n - Many witnesses, such as myself, @riverhead, @roadscape @jesta and @arhag work on important things to help the STEEM network function and grow\n - Some witnesses don't produce any content, or work on anything STEEM related, e.g. @gtg - however, they are sometimes highly focused witnesses, who are very reliable (gtg has only missed 2 blocks after running for months)\n\n## Why should I care?\n\nA witness is paid proportionally to how high they are in the witness ranks, excluding the top 19 witnesses (who get 1 block every ~63 seconds).\n\nBut how do they get to those ranks? **They get voted in, by people like YOU**. It's just like an election, **if you don't vote, other people may vote in witnesses who are malicious or simply unreliable.**\n\n@thecryptofiend has came up with a questionnaire for witnesses, which may help people decide on who to vote for: https://steemit.com/steemit/@thecryptofiend/witness-questionnaire-a-solution-for-voter-confusion\n\n![](https://i.imgur.com/Ldf0VnV.png)\n<center>Witness voting page</center>\n\nYou can see the witness ranks, and vote for witnesses at https://steemit.com/~witnesses\n\n## How are blocks created/scheduled?\n\nIt's not a very even mixture as you would hope. Blocks are produced in \"rounds\", which are 21 blocks long, and blocks are created every 3 seconds.\n\nDuring each 21 block round, the blocks are distributed as such:\n\n - 19 blocks go to the top 19 voted witnesses (who are slightly shuffled to avoid witnesses purposely skipping blocks)\n - 1 block goes to a Proof-of-Work miner, who becomes a witness for just 1 block.\n - 1 semi-random witness outside of the top 19, which is influenced by their ranking\n\nYou can read more about the witness scheduling (it's very complicated!) in this article by Steemit CTO @dantheman :\n\nhttps://steemit.com/steem/@dantheman/steem-witness-scheduling-algorithm\n\n## How often do they get blocks (how much do they earn)?\n\nAs mentioned in the previous section, witnesses are paid proportional to their rank in the system. A witness at rank 30 can produce as many as 4 blocks/hour, compared to a witness at rank 50, which may produce less than 1 block/hour.\n\n**A STEEM block is worth 1 STEEM Power (not STEEM, or SBD), which means all rewards for miners/witnesses are trickle-paid for 2 years.**\n\n![](https://i.imgur.com/OaOiNlf.png)\n<center>[@someguy123 on SteemDB](https://steemdb.com/@someguy123)</center>\n\nIn my current position, 39, I create between 2 to 3 blocks per hour. `(2 * 24) * 31 = 1488` - that's approximately 1,500 STEEM Power per month at rank 39.\n\n### But what about the top 19? What do they get?\n\nThe top 19 witnesses get 1 block each, per 21 block round. This means they get approximately 1 block per 63 seconds.\n\nPer day they get roughly 1400 SP\n\n```(60 * 60 * 24) / 63 = 1,371.42```\n\nPer month they get roughly 42,500 SP\n\n```(60 * 60 * 24 * 31) / 63 = 42,514.28```\n\nAnd per year they get roughly 510,000 SP\n\n```(60 * 60 * 24 * 31 * 12) / 63 = 510,171.42```\n\n## Can anyone become a witness?\n\nThe short answer is: Yes.\n\nBecoming a witness requires several things:\n\n - A powerful (and reliable) server to run a witness server on\n - A second powerful server, with good bandwidth - to operate a Steem Seed (similar to a Bitcoin full node, distributes blocks)\n - Creating a **signing key**, and then broadcasting your intent to become a witness from `cli_wallet`\n - An accurate price feed of STEEM/USD which is updated *at least* once per day\n - Technical capabilities - you should understand most STEEM concepts, and be able to deal with server problems quickly\n - Trust from the community that you would be a good candidate for a witness\n\nSome of these steps are optional (e.g. the seed), while others might not matter until you approach the top 19 (the price feed) however, they're all very strongly recommended if you want to succeed as a witness.\n\n------\n\nI will be posting an in-depth tutorial on setting up a witness soon, as many of the existing articles lack important details. Until then, if you want to set up a witness, I recommend joining `#witness` on [STEEMIT.CHAT](https://steemit.chat) and asking for up to date guidance.\n\n------\n\n\n---\n\nDo you like what I'm doing for STEEM/Steemit?\n----\n[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. \n----\nDon't forget to follow me for more like this.\n----",
+    "body_length": 5906,
+    "cashout_time": "2016-09-21T07:07:03",
+    "category": "witness-category",
+    "children": 27,
+    "created": "2016-09-14T07:07:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"witness-category\",\"steem\",\"steem-help\",\"steemit\"],\"users\":[\"riverhead\",\"roadscape\",\"jesta\",\"arhag\",\"gtg\",\"thecryptofiend\",\"dantheman\"],\"image\":[\"https://i.imgur.com/Ldf0VnV.png\",\"https://i.imgur.com/OaOiNlf.png\"],\"links\":[\"https://steemit.com/steemit/@thecryptofiend/witness-questionnaire-a-solution-for-voter-confusion\",\"https://steemit.com/~witnesses\",\"https://steemit.com/steem/@dantheman/steem-witness-scheduling-algorithm\",\"https://steemdb.com/@someguy123\",\"https://steemit.chat\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T07:23:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 43314926686863,
+    "parent_author": "",
+    "parent_permlink": "witness-category",
+    "pending_payout_value": "115.893 HBD",
+    "percent_hbd": 10000,
+    "permlink": "seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer",
+    "post_id": 1240794,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "Seriously, what is a STEEM witness? Why should I care? How do I become one? (Answer)",
+    "title": "Seriously, what is a STEEM witness? Why should I care? How do I become one? (Answer)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/witness-category/@someguy123/seriously-what-is-a-witness-why-should-i-care-how-do-i-become-one-answer"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4000",
+        "reputation": 14765040488827,
+        "rshares": 10614103331311,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "4000",
+        "reputation": 9326993992,
+        "rshares": 59458642275,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "4000",
+        "reputation": 608057298751,
+        "rshares": 228718504444,
+        "voter": "justin"
+      },
+      {
+        "percent": "4000",
+        "reputation": 27931460807554,
+        "rshares": 1926094932850,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "4000",
+        "reputation": 29449063355738,
+        "rshares": 134423167163,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2426353149,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 89459145905,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 13273883907,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 280970691743,
+        "voter": "pal"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426202100,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 28284373008,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 49836148737,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 569217189,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2501570496,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 748586302572,
+        "rshares": 386077786,
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 23482202368,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 10940508683,
+        "voter": "mione"
+      },
+      {
+        "percent": "4000",
+        "reputation": 31215012571,
+        "rshares": 13686287140,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177940547303,
+        "rshares": 6038280485,
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451285776301,
+        "rshares": 1305322446,
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5766569295559,
+        "rshares": 4006599711,
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3938805566864,
+        "rshares": 627733468,
+        "voter": "nathanjtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161727291,
+        "voter": "crimson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108412302232,
+        "rshares": 164522103,
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29605154,
+        "rshares": 156621194,
+        "voter": "my-art"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144014259,
+        "voter": "fer32p"
+      }
+    ],
+    "author": "jonnyrevolution",
+    "author_reputation": 3509662488161,
+    "beneficiaries": [],
+    "body": "If you *choose*...the next images you will see were created at the peaks of spiritual awareness from within. **LOVE**, **LIFE**, **DEATH**, and **UNDERSTANDING** are the themes that I gather after atmospheric introspection of the experiences that I had while creating. \n\n<center>[![SomethingSacredce779.jpg](https://www.steemimg.com/images/2016/09/07/SomethingSacredce779.jpg)](https://www.steemimg.com/image/u0XSs)\n**Something Sacred?** *[click to enlarge]*</center>\n\n<center>[![SunraysFromPaper66100.jpg](https://www.steemimg.com/images/2016/09/07/SunraysFromPaper66100.jpg)](https://www.steemimg.com/image/u0hf1)\n**Spiral Sunrays Arise On Tabbed Sheet** *[click to enlarge]*</center>\n\nAs I have said before:\n> What may still be a controversy in some circles....and yet a paradigm shifting universe with much left to discover for others.\n\n<center>[![SkeletalShockee040.jpg](https://www.steemimg.com/images/2016/09/07/SkeletalShockee040.jpg)](https://www.steemimg.com/image/u0ax8)\n**Skeletal Shock Protoplasm** *[click to enlarge]*</center>\n\n<center>[![ShapeshiftingSnakeskin55785.jpg](https://www.steemimg.com/images/2016/09/07/ShapeshiftingSnakeskin55785.jpg)](https://www.steemimg.com/image/u0Bza)\n**Shapeshifting Snakeskin** *[click to enlarge]*</center>\n\nA daytrip creation...\n\n<center>[![PsychedelicSunseta559b.jpg](https://www.steemimg.com/images/2016/09/07/PsychedelicSunseta559b.jpg)](https://www.steemimg.com/image/u05Ue)\n**Psychedelic Sunset** *[click to enlarge]*</center>",
+    "body_length": 1485,
+    "cashout_time": "2016-09-15T01:58:48",
+    "category": "art",
+    "children": 7,
+    "created": "2016-09-08T01:58:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"art\",\"life\",\"lifestyle\",\"craigrant\",\"truecrypto\"],\"image\":[\"https://www.steemimg.com/images/2016/09/07/SomethingSacredce779.jpg\",\"https://www.steemimg.com/images/2016/09/07/SunraysFromPaper66100.jpg\",\"https://www.steemimg.com/images/2016/09/07/SkeletalShockee040.jpg\",\"https://www.steemimg.com/images/2016/09/07/ShapeshiftingSnakeskin55785.jpg\",\"https://www.steemimg.com/images/2016/09/07/PsychedelicSunseta559b.jpg\"],\"links\":[\"https://www.steemimg.com/image/u0XSs\",\"https://www.steemimg.com/image/u0hf1\",\"https://www.steemimg.com/image/u0ax8\",\"https://www.steemimg.com/image/u0Bza\",\"https://www.steemimg.com/image/u05Ue\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T01:58:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 13494290558026,
+    "parent_author": "",
+    "parent_permlink": "art",
+    "pending_payout_value": "24.641 HBD",
+    "percent_hbd": 10000,
+    "permlink": "venerated-visionary-vibrations-or-or-or-artwork-evoked-during-enlightening-hallucinations",
+    "post_id": 1167009,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "Venerated Visionary Vibrations  |||  Artwork Evoked During Enlightening Hallucinations",
+    "title": "Venerated Visionary Vibrations  |||  Artwork Evoked During Enlightening Hallucinations",
+    "total_payout_value": "0.000 HBD",
+    "url": "/art/@jonnyrevolution/venerated-visionary-vibrations-or-or-or-artwork-evoked-during-enlightening-hallucinations"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 687927480502,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1125797750526,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "7500",
+        "reputation": 8151223409709,
+        "rshares": 12675771238280,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14716755413855,
+        "voter": "summon"
+      },
+      {
+        "percent": "1500",
+        "reputation": 13270505121655,
+        "rshares": 10215229972277,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5979783617948,
+        "voter": "freedom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7027643085984,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9729206209895,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3095797559053,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1909967245886,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 438953140136,
+        "voter": "lafona"
+      },
+      {
+        "percent": "500",
+        "reputation": 20297981245452,
+        "rshares": 414026826146,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1049209595233,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 963067321029,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314699645432,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3101239322,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1646318723440,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 229926510732,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3765078220,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690619464,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54343547981,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661932309,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213718493,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2042749976061,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 60985849882,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 418288473653,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2651243328828,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1784795277,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1045404344798,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 134283650613,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9580939663,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1307178472534,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7628389412,
+        "voter": "ass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257181187,
+        "rshares": 7697170818,
+        "voter": "daftpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7468804309,
+        "voter": "jaws"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7467122178,
+        "voter": "kingkong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8131084771,
+        "voter": "morpheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7457329195,
+        "voter": "chef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7457263770,
+        "voter": "catwoman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8121515563,
+        "voter": "harrypotter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7468490405,
+        "voter": "tron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7444669084,
+        "voter": "beavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 437880810359,
+        "rshares": 9625203353,
+        "voter": "steemjesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8628123900,
+        "voter": "sara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8457870600,
+        "voter": "starbucks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1130716083518,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8315335800,
+        "voter": "soccer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 11712977391,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 623025846,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7582112243,
+        "voter": "rap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7501012150,
+        "voter": "cinema"
+      },
+      {
+        "percent": "2900",
+        "reputation": 268787058152,
+        "rshares": 7873444778,
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967711760,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7851901285,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 832744796187,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10146079231,
+        "rshares": 664452002,
+        "voter": "maxkeiser"
+      },
+      {
+        "percent": "2000",
+        "reputation": 179829390709,
+        "rshares": 3642760385,
+        "voter": "fusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 299060776997,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288235837,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21527783969006,
+        "rshares": 141090052837,
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 13880531955,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1803979740,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "100",
+        "reputation": 12712877967688,
+        "rshares": 1579018170,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "1000",
+        "reputation": 526710884366,
+        "rshares": 774836319,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 21728469163,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 496331651,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5595432304,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 26384601601,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2062708806,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 331130366436,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 29903838745,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 742481510504,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 14828727252,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 134325670238,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57965547486,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 234685997034,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 55119276585,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 666851926,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 74098286425,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1419659881,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2632215590,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 64526080312,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24382234821,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37856084701,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 11009212383,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 372762911375,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 400699491,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 387552370,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 56402334767,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 105652838636,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 49383341547,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4477107456,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "3800",
+        "reputation": 1116909606233,
+        "rshares": 5341000925,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 201445269428,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 2076078248,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 265794063853,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2786982187,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 32893244268,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 182849996797,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 110959403268,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 862610149295,
+        "rshares": 5495252511,
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 32557478181,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 13820475127,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1052188679,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 509943734,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 49140208479,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 272212638,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 47322393466,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 105564708828,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254364900,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 18644817812,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 125467733607,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 15480910118,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24970935785,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6917937631,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1908562777,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 133323313264,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 64418549797,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 523677225523,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 530911560,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 595616216,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 545983534,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81102912,
+        "rshares": 236699236,
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1467336120,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40458404980,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1649863673,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 26363447152,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 15526993858,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 880403645,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 202014054940,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33640995047,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26199931018,
+        "rshares": 828629042,
+        "voter": "bmmmmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 14818183448,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1870744093,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4193943830,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24948544169,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 10730068002,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3575697079,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 38785156768,
+        "voter": "condra"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3674446315320,
+        "rshares": 5485605141,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2138956517,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 2904872111,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 84060380413,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1453995527,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 20008737165,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1248165138944,
+        "rshares": 3023523774,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 94244751,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5531768448,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12991972635,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 201176042966,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 259628018962,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 7831421142,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1878917499597,
+        "rshares": 5572644736,
+        "voter": "sharker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 8134046284,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 204041320243,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1016566875787,
+        "voter": "james212"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4226573244868,
+        "rshares": 19495977070,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 18416219648,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4831508419,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2553528319,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 897758945,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 18858765110,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17558316880,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 594907055,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 221401214,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12521809,
+        "rshares": 225852101,
+        "voter": "dubraman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 1941806075,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 602388131,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 549647063,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 6351454293,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4429007921326,
+        "rshares": 1548603448,
+        "voter": "jillstein2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1353528110,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1858242719,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 27744624566,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 34328972158,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1850996140,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1984412570795,
+        "rshares": 2938041239,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 116018039597,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1254010823,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "6500",
+        "reputation": 988942038058,
+        "rshares": 48887462921,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8783443865,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23608715787,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7564464865541,
+        "rshares": 19976972801,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "2500",
+        "reputation": 97328985094,
+        "rshares": 1368387313,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 10192425561,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2348650163,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4338106663,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 2979617190,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8279541598,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1965200089,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3653299044116,
+        "rshares": 6164810854,
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 107084440,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 17892117920,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 18439853853,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 92922845131,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1072419639,
+        "voter": "paynode"
+      },
+      {
+        "percent": "1400",
+        "reputation": 73944659327428,
+        "rshares": 21851097144,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1425927896964,
+        "rshares": 2058409213,
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 825877945,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3509559363,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151272123831,
+        "rshares": 62528131,
+        "voter": "xcepta"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 12012730878,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80947204062,
+        "rshares": 36863064220,
+        "voter": "dowha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 76170225,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61269912,
+        "voter": "svetanyk"
+      },
+      {
+        "percent": "2000",
+        "reputation": 9332405310628,
+        "rshares": 5776599727,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 60717532,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 901114996,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 75676352,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40980532,
+        "rshares": 1010019521,
+        "voter": "shinji"
+      },
+      {
+        "percent": "100",
+        "reputation": 3814152361740,
+        "rshares": 243771797,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7833422368,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 54189584,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54183691,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 589622381758,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 61595666714,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1394667916,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 11202143454,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1237582343,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2359854110,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8234924133,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1854373937,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 18890223518661,
+        "rshares": 18108534499,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 61502725136,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 10320663417,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51286297,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8641078629,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1232211618,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 754019861,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 54272735,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2381725865,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 62245792,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80500300321,
+        "rshares": 81876495,
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6064514,
+        "rshares": 55669133,
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 34325741440,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3475969893,
+        "rshares": 53238597,
+        "voter": "gumer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 666711159,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25835980056,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 226876451,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 343458881,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 1139389514,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 280985935123,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 56306822468,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 23579608214,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5290020548,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 294937368742,
+        "rshares": 3276071690,
+        "voter": "steemokto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1198017550,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74558454,
+        "rshares": 51817146,
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 62359614,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 894167573,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 63543002,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 51109965,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726647930107,
+        "rshares": 1896168752,
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122413067028,
+        "rshares": 73947493,
+        "voter": "steemrocket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1721773629,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 27408100635,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3333759844,
+        "rshares": 53579928,
+        "voter": "luup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 385752375,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23031447736,
+        "rshares": 52610096,
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 302995626,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 70448698,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99160090205,
+        "rshares": 162979078,
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68065278228,
+        "rshares": 72444138,
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1692916388,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663398753211,
+        "rshares": 1137952293,
+        "voter": "ayim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3563119282,
+        "rshares": 82470147,
+        "voter": "robermulima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2781294502,
+        "rshares": 160683133,
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 125120492,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1564414223,
+        "rshares": 108712635,
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5082960080,
+        "rshares": 156488587,
+        "voter": "tanemahuta"
+      }
+    ],
+    "author": "steve-walschot",
+    "author_reputation": 42741727265739,
+    "beneficiaries": [],
+    "body": "# Last week i wrote a post on getting a consensus on how to handle new user registrations. \n## For those who missed it, the post can be found [here](https://steemit.com/steempay/@steve-walschot/developer-preview-steempay-mobile-wallet-or-qr-to-upvote-or-consensus-needed).\n\nAfter long debating on chats, interacting with users and listening to their feedback here's what i've decided;\n\n### SteemPay.io pays the account creation fee during startup.\nAfter the startup phase, i'll start playing around with having **paid ads** in the app.\n\n## Paid ads? I don't want to see some viagra commercial in my app!\n### Touch\u00e9. But here's the businessmodel behind it:\n\n- Only ads linking to a **steemit post** will be allowed.\n- Only a small text banner on the top will be allowed. No images, only text.\n- No forced clicks or upvotes; The user will only **see** the ad.\n- Every ad needs to have **approval** before being listed.\n- First come, first served system.\n- Visibility and duration will be announced later.\n\n----\n## Note that ads will only be visible for users who create an account trough our app. Existing users will be completely ad-free.\n----\n# General progress\n\nhttps://img1.steemit.com/0x0/http://i.imgur.com/819S9aW.jpg\n\nThe overall developement is inline with our expectations., the first public android version will be online by the end of next week.\n\nCurrently the code is about 90% completed, so is the UI design ([see this showcase](https://steemit.com/steempay/@cass/steempay-io-mobile-payment-solution-ui-ux-playground) ) by @cass.\n\nMake sure to [follow me](https://steemit.com/@steve-walschot) to stay updated.\n\nIf you want to support Steempay.io, consider giving me a [witness vote](https://steemit.com/witness-category/@steve-walschot/witness-application-post-steve-walschot-creator-of-steempay).\n\n# Steem on!",
+    "body_length": 1822,
+    "cashout_time": "2016-09-10T19:10:33",
+    "category": "steempay",
+    "children": 14,
+    "created": "2016-09-03T19:10:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steempay\",\"mobile\",\"wallets\",\"developer\",\"update\"],\"users\":[\"cass\"],\"image\":[\"https://img1.steemit.com/0x0/http://i.imgur.com/819S9aW.jpg\"],\"links\":[\"https://steemit.com/steempay/@steve-walschot/developer-preview-steempay-mobile-wallet-or-qr-to-upvote-or-consensus-needed\",\"https://steemit.com/steempay/@cass/steempay-io-mobile-payment-solution-ui-ux-playground\",\"https://steemit.com/@steve-walschot\",\"https://steemit.com/witness-category/@steve-walschot/witness-application-post-steve-walschot-creator-of-steempay\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T19:10:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 91134703917103,
+    "parent_author": "",
+    "parent_permlink": "steempay",
+    "pending_payout_value": "858.774 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steempay-mobile-wallet-developer-update-consensus-reached",
+    "post_id": 1114632,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "STEEMPAY mobile wallet developer update - Consensus reached",
+    "title": "STEEMPAY mobile wallet developer update - Consensus reached",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steempay/@steve-walschot/steempay-mobile-wallet-developer-update-consensus-reached"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33250846024,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 290979005478,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 200086864853,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 14756348450,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 38472977395,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 331726253139,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 33891443561,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9248653425,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3934271770,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 17801450353,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 13348811873,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 259753743155,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13821321667,
+        "rshares": 753502879,
+        "voter": "christoph3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 205139978,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3374026415,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 193551595441,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 54492837940,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 8135417710,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9081117484953,
+        "rshares": 30669376448,
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 16250564070,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 108945051515,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131860560605,
+        "rshares": 315110283,
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2768225332,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 523349272991,
+        "rshares": 6875953091,
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 332453178,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2085357345,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3784339280,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 25045323080,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19817905281,
+        "rshares": 202731558,
+        "voter": "jasen.g1311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 16644718123,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5655389326,
+        "rshares": 8404566484,
+        "voter": "youngkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": -39372262885,
+        "rshares": 59017018,
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958503,
+        "rshares": 54969517,
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 23050926868,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 136485074,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3410342216,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 151302584,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145609627,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1568155549,
+        "rshares": 61296223,
+        "voter": "strangedays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1157113501,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 7241046641,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 801075067,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 499905278,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 905160938,
+        "rshares": 54679571,
+        "voter": "cnmtz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6190294,
+        "rshares": 10280181725,
+        "voter": "stiant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 1580324483,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 444410694,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3970810,
+        "rshares": 53451619,
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708267266,
+        "rshares": 783048637,
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 94346928,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2921775535,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 89309975,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2093855721226,
+        "rshares": 78281569,
+        "voter": "benberger"
+      }
+    ],
+    "author": "craig-grant",
+    "author_reputation": 54345938068170,
+    "beneficiaries": [],
+    "body": "### Good food is happy freedom\nhttps://www.youtube.com/watch?v=7CbwrsfB5-g\n\n### Every day is the same day repeating itself, just as 1 second of now.\n\n### Inequality is having to get permission or give apology.\n\n### JOY is my force field.\n\n---\n\nOn the way to the sushi restaurant...\nhttps://www.youtube.com/watch?v=V2gmGK3ftOY\n\n---\n\n## Craig Grant in 1999\nI no longer had the financial support of my girlfriend, and things slowed down for me with music. I had now admitted to myself that I had failed at becoming famous hip hop star and was ready to go back to school. I moved back to my mothers house and cut myself off from most of my music friends. I started night classes at Palm Beach Community college. I hated it. I continued to work with my rap group ACU to complete their album, but stopped with everything after that. Julie was working in a salon and would occasionally come to visit me. We talked allot on the phone at night while I worked delivering pizza. She had some cute girlfriends and I always asked her to hook me up. Our long phone conversations would often venture into sexual subjects. Julie(Yuliana's nick name) had a girlfriend that was bisexual, she often spent the night at Julie\u2019s house and they would pretend to be messing with each other while I was on the phone. One night me and a friend named Mr. Menace picked up Julie and her bisexual friend to hang out. We went to my mothers house and all got drunk. They were scared to have sex with us, but we convinced them to let us watch them. They did a little bit, not much. I was pleased to see Julie in just her panties for the first time. I was so drunk and started talking about my childhood for a long time.\n\nI was desperate to find a way out of my mothers house and out of school. I started thinking maybe now it\u2019s time to find a rich old woman, my last resort to wealth. Early in the year I found a flier advertising Unlimited long distance for a flat rate of $59 per month. I could tell this was a new company and new technology, and I wanted to get involved. The company was International Communications Corporation from Boca Raton, Fl. I called them and asked if there was a away I could make $$ promoting their service. They signed me up as a reseller making $25 per new customer plus 10% of the recurring phone bill. I made fliers and advertised the service in the local news paper. I made a web site called LongDistanceFlat.com that was programmed to sign up new customers online. At first my web site collected the customer information, then I would print and fax the order. When I started the service was only available locally, but the company grew fast and then it was available nationwide. I started learning how to promote my web site online to get more customers. I started getting checks in the mail. I was happy to be making $$ this way. It took allot of work but I was working for myself without a boss on my back and making my own hours, I liked it. I spent all the $$ I made delivering pizza on promoting LongDistanceFlat.com.\n\nIn August my daily routine was to deliver pizza and get on the Internet, I quit school. My mother was concerned. One Saturday night she yelled at me to get out the house and go party, she was all dressed up to go out. She said I was spending too much time on that dam computer. I told her \u201cThis is going to pay off\u201d. My only friends in this time was Lesmes and Julie. Me and Lesmes were doing music, and Julie would visit about 3 times per week. I started showing her all the cool stuff I am doing online and how I am making $$ with it. I also showed her a personal ad I had on excite.com to find a girlfriend. I had a few responses and went on a couple dates, but nothing good. Julie put a personal ad in excite.com just for the fun of it, she got hundreds of responses in just 2 days, it was overwhelming. She read the messages and laughed. She brought a very sexy friend to my house once, her name was Sophie. Julie started looking better now that she had been working in the salon, she also had a nice car, a red convertible Mustang.\n\nWhile promoting LongDistanceFlat.com I started a promotion offering a free cordless phone to new customers. Free stuff offers got allot of attention online, and it was easy to get links on free stuff sites for my offer. I started surfing the Internet to find free stuff sites to place my offer. I noticed how well built these sites were and everything was free. I knew there was $$ being made and I wanted to know how to make it too. I dug deeper and after a month I figured out what affiliate programs were. Many of the free offers were companies collecting information and would pay me up to $1.00 for a name and address and send a free product to that customer.\n\nIn three months I taught myself how to use Front Page and launched my first free stuff site free4women.com in late 1999. I made the free4wmaon.com site with 2 pages, 1 page with the TOP 100 FREE STUFF offers online, all these offers I get paid $$. The other page was a collection of legitimate FREE beauty product offers for women. These offers were REAL free offers that I did not get paid for, but was a GREAT way to market the site to get traffic. I worked VERY HARD loooong hours to market my site with every tool available to me. I created a personality called \u201cJanet\u201d for posting in forums..ect, because free stuff surfers respond more to women online than men. I had spent about $500 of my own $$ and I made that $500 back before I was able to spend more, so the site was paying for itself and then some. One of my biggest offers was an online bank called x.com (now PayPal). They offered $20 free to open a bank account online, and $20 for very person your refer, deposited to your x.com online bank account. X.com also sent a visa debit card for the account. The online form to open the account was one page, and short. You would see the $20 instantly in your new online bank account. I promoted that offer and made $2000 per week. I spent most of the $$ I made on promoting the web site. My web site was making $5,000 per month. I had an account with LinkShare.com and made about $10,000 for my first big check, it was scheduled to arrive in January 2000. I was worried about Y2K.\n\nlongdistanceflat.com @ https://web.archive.org/web/19991128041952/http://www.longdistanceflat.com/\n\nfree4women.com @ https://web.archive.org/web/20000816005758/http://www.free4women.com/beauty.htm\n\n---\nSteem City - Politics, Security, Tax, Trade, Police, and Social Services\nhttps://www.youtube.com/watch?v=pDdxihuCXMk\n\n---\n\nFollow @craig-grant\n\nhave fun : )",
+    "body_length": 6583,
+    "cashout_time": "2016-09-07T18:08:21",
+    "category": "freedom",
+    "children": 6,
+    "created": "2016-08-31T18:08:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"freedom\",\"food\",\"introduceyourself\"],\"users\":[\"craig-grant\"],\"image\":[\"https://img.youtube.com/vi/7CbwrsfB5-g/0.jpg\",\"https://img.youtube.com/vi/V2gmGK3ftOY/0.jpg\",\"https://img.youtube.com/vi/pDdxihuCXMk/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=7CbwrsfB5-g\",\"https://www.youtube.com/watch?v=V2gmGK3ftOY\",\"https://web.archive.org/web/19991128041952/http://www.longdistanceflat.com/\",\"https://web.archive.org/web/20000816005758/http://www.free4women.com/beauty.htm\",\"https://www.youtube.com/watch?v=pDdxihuCXMk\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T19:40:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 1784235859976,
+    "parent_author": "",
+    "parent_permlink": "freedom",
+    "pending_payout_value": "0.986 HBD",
+    "percent_hbd": 10000,
+    "permlink": "hot-saki-and-tuna-tataki-for-lunch-with-yuliana-wednesday-august-31-2016",
+    "post_id": 1073941,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "Hot Saki and Tuna Tataki for lunch with Yuliana - Wednesday, August 31, 2016",
+    "title": "Hot Saki and Tuna Tataki for lunch with Yuliana - Wednesday, August 31, 2016",
+    "total_payout_value": "0.000 HBD",
+    "url": "/freedom/@craig-grant/hot-saki-and-tuna-tataki-for-lunch-with-yuliana-wednesday-august-31-2016"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3524228779652,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6477125435976,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098742961,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3761875241,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697251186,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53918968411,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660692110,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213653566,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4790525555711,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19451819636,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622663865,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967093470,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 120064536876,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6963772512,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288128811,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 174336102579,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9897393976,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 267941793269,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 19711517082,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1788305838,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12103154713,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10305797835,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12933012144,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 557026163,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 29863829277,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 16091694977,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13785536342,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 38979119618,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4403600439,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 10677362107,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 43992127824,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 6300860897,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81756916,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 88525673,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 65254203,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 20050332528,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 102477256,
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3415496053078,
+        "rshares": 3584463911,
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 214295992700,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78741972,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 26224201592,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "2000",
+        "reputation": 10519849768972,
+        "rshares": 4072989135,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1849155799051,
+        "rshares": 9927906746,
+        "voter": "crypto.owl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18443477896,
+        "voter": "proto"
+      },
+      {
+        "percent": "0",
+        "reputation": 5571312226030,
+        "rshares": 129594107,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25927425773,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9220847952,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 65123045108,
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80161954041,
+        "rshares": 87343265,
+        "voter": "steemit-inga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 547949043629,
+        "rshares": 1130098597,
+        "voter": "grinderman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 412085238059,
+        "rshares": 73035596,
+        "voter": "themagus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99941487421,
+        "rshares": 84546938,
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85099309,
+        "rshares": 4846062340,
+        "voter": "lianbing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1605846633393,
+        "rshares": 299755454,
+        "voter": "coloured-content"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1390975245,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 85835245422,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 168708476366,
+        "rshares": 235147262,
+        "voter": "remington-art"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1247707985,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8652306644,
+        "rshares": 51304758,
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 2427002800,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 561774262537,
+        "rshares": 1159739581,
+        "voter": "maryfromsochi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 70169318,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5820808435,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329560640,
+        "rshares": 67870265,
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22546106632,
+        "rshares": 54495464,
+        "voter": "lexikon082"
+      }
+    ],
+    "author": "mranderson",
+    "author_reputation": 3380310417590,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Okay folks, just to spark your interest. When I am done with this SteemAway campaign for Ted I have plans to do something exciting with a car of mine (Very nice car) that will result in someone getting it delivered by me for free. &nbsp;So show your support for this amazing artist and then find out how you can get one of my cars for FREE (For Freedom).</p>\n<p>When \"<strong>Promote</strong>\" came on the scene and combining that with my previous attempts at pay it now has led me to this new iteration of STEEMAWAY. &nbsp;I have no doubt that once this algorithm is figured out correctly people are going to be filling up the site with steemaways. I hope with the geniuses behind SteemIt.com they will be able to filter these into their own category. Based on my newest change I think we are going to get there sooner rather than later @steemit</p>\n<h3><br>\nOkay biggest change: <strong>10 SBD = 1 Entry into the active</strong> <strong>SteemAway</strong>.</h3>\n<h3>There are <strong>two ways you can increase your odds</strong> by powering up your vote (Every Voter receives at least one entry):</h3>\n<p>1) Heavy Weighted Steem Power: We all know folks (Whales) with one vote can bring a lot of SBD to any post. Same as before the top ten voters with the highest cumulative weight q score will get 10 entries per their 1 upvote for that steemaway; so the top 10 usernames still get x10 for this steemaway's vote.</p>\n<p>2) I read the recommendations in the promote post of allowing us smaller fish in the sea to have ability to temporarily be whales. Well this is your chance. Every 10 SBD (No Limit!) you send @remington-art you will get 1 entry into the steemaway; so with 100 SBD you can get as many entries as the top ten whales.</p>\n<pre><code><em>Instructions on how to increase your odds: </em><em><strong>send SBD</strong></em><em> in increments of 10 (10SD/1Entry) to </em><em><strong>@remington-art with /world-famous-american-pastel-artist-gives-his-original-art-away-to-one-lucky-steemit-voter-and-you-can-also-vote-like-a-whale --in the memo</strong></em><em>.</em></code></pre>\n<h3><a href=\"http://steemaway.win/\">http://SteemAway.Win</a> to easily see who is steemawaying on STEEMIT</h3>\n<h1>Today's Painting:</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/AutumnBlossoms85dc1.jpg\" alt=\"AutumnBlossoms85dc1.jpg\" width=\"686\" height=\"904\"/></p>\n<p><strong>Autumn Blossoms</strong></p>\n<blockquote>I have always loved creating variations on Autumn scenes, the golden season, providing an Artist with stunning colors, the o most effulgent time of the year; affording an Artist an opportunity to turn inward as well as observe outwardly, letting the eyes and imagination to roam freely.</blockquote>\n<h2>Product Description</h2>\n<p>Dimensions: Image Size: 25\" x 20\"</p>\n<p>Medium: Soft Pastel</p>\n<p><br></p>\n<p>The winner is welcome to pick any of Ted's previous SteemAway's (Except the $3,500 and any other sold already)<br>\n</p>\n<p>Throw your Steem Dollars (vote and/or donate) in for a chance to receive free an Original Painting with a personal message written on the back from the artist, Ted F. Remington.</p>\n<h3>Shipped to your home at <strong>NO COST</strong>. We have shipped all over the world.</h3>\n<p><br></p>\n<h2>The Terms for this STEEMAWAY:</h2>\n<p>Minimum Steem Dollars for the Give Away (SteemAway): 2,000 SBD</p>\n<p>We will add up total SBD @remington-art receives (10SBD for 1Entry; unlimited on how much you donate); Votes received from all previous SteemAways. So keep voting to increase your chances of winning the current active SteemAway.</p>\n<p>Current SteemAway SD for Ted Remington: 501.944 SBD (Goal needed to be reached for this SteemAway is 2,000 SBD) so we are already getting there.</p>\n<p>One Randomly selected Upvoter/Donation-username will chose one of the equal value paintings Ted has posted thus far and comment below their selection. We will keep private information private and have several options for the winner to share their shipping address and personal note from Ted Remington written on the back of the painting (Optional); Steemit makes it easy to verify winner:) We will attempt to ship anywhere there is postal services -- FREE of Charge. Of course these paintings will need to be signed for and they will be insured. Once the painting is received we ask you please comment here confirming the fact (Pictures and/or blog post would be great!).</p>\n<p>The winner for this round will be announced here and also using random.org premium service to pick a name that is a independent third party publicly verified results. Ted and I plan to post one painting every day or two for the next 30 days, so follow me and you can also bookmark <a href=\"http://steemaway.win/\">http://steemaway.win</a> to see all current and past SteemAways.</p>\n<p>-------------------------------------------------------------------------------</p>\n<p>Current Top Ten Heavy Weight Leader Board (Get x10 for this steemaway vote)</p>\n<p>SteemStats.com (I will be adding up sum of all previous steemaways vote weights for ted until the minimum for that giveaway is reached)</p>\n<p>(1)<strong>9,776.6q Weight @au1nethyb1</strong></p>\n<p>(2)<strong>9,366.8q Weight @nextgencrypto</strong></p>\n<p>(3)<strong>8,646.4q Weight @berniesanders</strong></p>\n<p>(4)<strong>8,547.1q Weight @silversteem</strong></p>\n<p>(5)<strong>6,675.9q Weight @complexring</strong></p>\n<p>(6)<strong>5,940.7q Weight @wang</strong></p>\n<p>(7)<strong>4,164.7q Weight @laonie</strong></p>\n<p>(8)<strong>3,034.1q Weight @roadscape</strong></p>\n<p>(9)<strong>2,951.4q Weight @silver</strong></p>\n<p>(10)<strong>1,312.5q Weight @riverhead</strong><br>\n</p>\n</html>",
+    "body_length": 5690,
+    "cashout_time": "2016-09-06T12:47:42",
+    "category": "steemaway",
+    "children": 3,
+    "created": "2016-08-30T12:47:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemaway\",\"art\",\"promote\",\"giveaway\",\"marketplace\"],\"users\":[\"steemit\",\"remington-art\",\"au1nethyb1\",\"nextgencrypto\",\"berniesanders\",\"silversteem\",\"complexring\",\"wang\",\"laonie\",\"roadscape\",\"silver\",\"riverhead\"],\"image\":[\"https://www.steemimg.com/images/2016/08/30/AutumnBlossoms85dc1.jpg\"],\"links\":[\"http://steemaway.win/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T22:24:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16179555547257,
+    "parent_author": "",
+    "parent_permlink": "steemaway",
+    "pending_payout_value": "36.771 HBD",
+    "percent_hbd": 10000,
+    "permlink": "world-famous-american-pastel-artist-gives-his-original-art-away-to-one-lucky-steemit-voter-and-you-can-also-vote-like-a-whale",
+    "post_id": 1055519,
+    "promoted": "55.000 HBD",
+    "replies": [],
+    "root_title": "World Famous American Pastel Artist Gives His Original Art Away To One Lucky SteemIt Voter & You Can Also Vote Like a Whale",
+    "title": "World Famous American Pastel Artist Gives His Original Art Away To One Lucky SteemIt Voter & You Can Also Vote Like a Whale",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemaway/@mranderson/world-famous-american-pastel-artist-gives-his-original-art-away-to-one-lucky-steemit-voter-and-you-can-also-vote-like-a-whale"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 17094999940,
+        "rshares": 484901235657,
+        "voter": "panadacoin"
+      },
+      {
+        "percent": "3000",
+        "reputation": 20297981245452,
+        "rshares": 2087539816353,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 299917820362,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103025387,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767352996,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690899726,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54637182074,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662793601,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213777416,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624870220,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969744364,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2731909066647,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 308816806541,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 40484384632,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288328206,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3532411814632,
+        "rshares": 21861003206,
+        "voter": "teatree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 639548657,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 37994042628,
+        "voter": "klye"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425733126,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6960979873594,
+        "rshares": 55942426104,
+        "voter": "aenor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 77690187245,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 8983016326,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "3200",
+        "reputation": 3460995705314,
+        "rshares": 14077045233,
+        "voter": "lindee-hamner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 518132808761,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1461277721254,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "3700",
+        "reputation": 598181152117,
+        "rshares": 75806022693,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 73402547085,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 465405174131,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 5352858265,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 20170428904,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 243464927250,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 525219461966,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 19288999540,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 43292776156,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 13278882511,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 230802431,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 5702723613,
+        "voter": "krystle"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1248165138944,
+        "rshares": 1814856827,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 225813886252,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 29012717347,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 84769136894,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 24460059681,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "3600",
+        "reputation": 17698439393799,
+        "rshares": 10902438772,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54192730483,
+        "rshares": 384092099,
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 22568372246,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 938060542524,
+        "rshares": 814606016,
+        "voter": "candy49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 42180606091,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 111067211132,
+        "voter": "shaka"
+      },
+      {
+        "percent": "1600",
+        "reputation": 10771708337101,
+        "rshares": 157843508356,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14562499786,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2963111990,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "2800",
+        "reputation": 18027204457681,
+        "rshares": 10365332825,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 5776723480371,
+        "rshares": 90096160267,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 206355094166,
+        "rshares": 3370934025,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 5581906854,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 51344068474,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "3700",
+        "reputation": 97845484474,
+        "rshares": 19908969014,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 103523281457,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "1600",
+        "reputation": 3016325652890,
+        "rshares": 21238872163,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1348324437,
+        "voter": "dolov"
+      },
+      {
+        "percent": "3600",
+        "reputation": 1851205309677,
+        "rshares": 1557858482,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 312108786,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3509986623,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 12517158549,
+        "voter": "cristi"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9523766827937,
+        "rshares": 15981225498,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "3700",
+        "reputation": 4195733833721,
+        "rshares": 3138632175,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 20776446447,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99615783344,
+        "rshares": 198225056,
+        "voter": "chinesetalkeze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725736773651,
+        "rshares": 501206246,
+        "voter": "sc-steemit"
+      },
+      {
+        "percent": "3700",
+        "reputation": 730408370151,
+        "rshares": 206268122,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2706836213015,
+        "rshares": 1279285824,
+        "voter": "nextgen622"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 8285594241,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 94246101,
+        "rshares": 61439317,
+        "voter": "tammyyin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57000440,
+        "rshares": 60613963,
+        "voter": "ffcrossculture"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3376192744,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 11975172762,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 58830557,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394281102105,
+        "rshares": 3389417054,
+        "voter": "victoryang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 369749107,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1818363378287,
+        "rshares": 4182946770,
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955050298650,
+        "rshares": 715921724,
+        "voter": "masonmiler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 59448552,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57759302,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585181578869,
+        "rshares": 91692568,
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14542508249,
+        "rshares": 160649364,
+        "voter": "trevorlyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116818017503,
+        "rshares": 154109909,
+        "voter": "jameshowarrd"
+      }
+    ],
+    "author": "nextgen622",
+    "author_reputation": 2706836213015,
+    "beneficiaries": [],
+    "body": "After writing my first introduction post without pics and receiving $0.03, and then reposting my intro with picks which earned $18.29, it quickly cemented in my mind the importance of having pics in my posts on Steemit. But you see, for me to include images in my posts is many times more difficult than the average Steemian. \n\n## Because I\u2019m vision impaired and can\u2019t see any of the images!\n\nHowever, somehow it seemed to me that to have any kind of success on Steemit, there was a commonly accepted rule that your posts need to contain images; whether you\u2019re writing a novel, or a philosophical piece, *almost all the trending posts have images!*\n\n### So, for the past few weeks of my Steemit life, I\u2019ve been asking my wife to help me find suitable pics for my posts. \nBut this has become an extremely stressful process, because we have a two year old son, and my wife rarely has any time to rest during the day. Therefore she looks forward to the small amounts of time that she gets to rest and relax in the evening. You can imagine how annoying it is for her when I\u2019m constantly interrupting her relaxation time, requesting her to find pics for me on Steemit. Thankfully, I\u2019m blessed with a kind and generous wife. She loves me very much, and often tells me that she is happy to help me with whatever I need, especially with what I love doing. But I don\u2019t want to be relying on her all the time. \n\nLast night however, when like previous nights, I asked my wife for her help.  But this time around, it was following a very exhausting week for her when my son and I had both been sick, and she had just recently become pregnant with our second child. So she blew up at me and became upset when I had taken up more than 40 minutes of her chill time. \n\n## And by the way, that post we worked so hard on all day earned us less than $1. \nSo this morning, I resolved to start writing about the topics I truly care about. No more stressing out about posts, no more fussing over optimum times to post my articles, and no more needing to find images for each post. \n\n# I\u2019m going to start enjoying my time on Steemit.\n\n## O yes, again, do we really need images on each post?\n\nFor more posts without images, follow me @nextgen622\n\nJimmy\n\nPS. Thanks @deanliu for the recommendation to post more Chinese articles. I will definitely do more of them in the future.",
+    "body_length": 2352,
+    "cashout_time": "2016-09-13T07:25:39",
+    "category": "steemit",
+    "children": 28,
+    "created": "2016-09-06T07:25:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"life\",\"content\",\"images\",\"cn\"],\"users\":[\"nextgen622\",\"deanliu\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T13:01:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 10910071755402,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "13.235 HBD",
+    "percent_hbd": 10000,
+    "permlink": "why-this-post-doesn-t-have-images",
+    "post_id": 1144012,
+    "promoted": "54.520 HBD",
+    "replies": [],
+    "root_title": "Why this post doesn't have images",
+    "title": "Why this post doesn't have images",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@nextgen622/why-this-post-doesn-t-have-images"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "8000",
+        "reputation": 8151223409709,
+        "rshares": 13468729518250,
+        "voter": "rainman"
+      },
+      {
+        "percent": "5000",
+        "reputation": 25104157850610,
+        "rshares": 1118849774900,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "8000",
+        "reputation": 18336382560162,
+        "rshares": 144758293075,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 878769686330,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099089014,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762354107,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10026510714787,
+        "rshares": 97789176845,
+        "voter": "testz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697302029,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 481270665604,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53983143453,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660870860,
+        "voter": "mini"
+      },
+      {
+        "percent": "8000",
+        "reputation": 8717425187,
+        "rshares": 4614169027056,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213660123,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 14594785261,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622713062,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967170547,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6821654706,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288138648,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4500464238667,
+        "rshares": 25455885349,
+        "voter": "blackjincrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2999169193553,
+        "rshares": 4061680519,
+        "voter": "atomrigs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5380704535,
+        "rshares": 167616779494,
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35537325381339,
+        "rshares": 1013421916583,
+        "voter": "hipster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431628926,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 343484501460,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 13439762220,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 71610085231,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21383864845,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1907309700,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 287289557872,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 5411588369,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 125488800966,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 193343156138,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "3800",
+        "reputation": 598181152117,
+        "rshares": 81560035813,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 269617629291,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 27723610634,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 1261911904,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 48542520862,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 53588462318,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4450692887,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 392424265528,
+        "rshares": 9855428224,
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132655580031,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 13525449189,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 13582023290,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 453924439,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 27806701251,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 295356843,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 74915596398,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12190374285,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 140754777765,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 133875725706,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 32959549825,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 234379829569,
+        "rshares": 2785576986,
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 18468714196,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15107890721,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6480896113,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 115918736753,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 3003762640,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 7174158649,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 86428740,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 93413596,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69870856,
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 536325914524,
+        "rshares": 600604713,
+        "voter": "greengo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 128178174,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960761826,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7768702097,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3600",
+        "reputation": 17698439393799,
+        "rshares": 10231831964,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 11346788997,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8435443756,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 24075889262,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 938060542524,
+        "rshares": 790694845,
+        "voter": "candy49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 6467611782,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11454886978,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8710090850955,
+        "rshares": 37076083195,
+        "voter": "rampant"
+      },
+      {
+        "percent": "2700",
+        "reputation": 10771708337101,
+        "rshares": 308890261959,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 70132247628,
+        "voter": "twinner"
+      },
+      {
+        "percent": "0",
+        "reputation": 10552713989475,
+        "rshares": 302555627,
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "2800",
+        "reputation": 18027204457681,
+        "rshares": 10046231191,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 5776723480371,
+        "rshares": 95556619222,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 20697547646,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23400232,
+        "rshares": 63815316,
+        "voter": "rpo"
+      },
+      {
+        "percent": "3800",
+        "reputation": 206355094166,
+        "rshares": 3592462541,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4563444086813,
+        "rshares": 8835620792,
+        "voter": "jokerpravis"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 18385480850,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 450506348376,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "2800",
+        "reputation": 3016325652890,
+        "rshares": 35033436510,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 95473831357,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3400",
+        "reputation": 1851205309677,
+        "rshares": 1326242361,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 562498382,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2860793589,
+        "rshares": 1001806596,
+        "voter": "fooblic"
+      },
+      {
+        "percent": "3800",
+        "reputation": 4195733833721,
+        "rshares": 3302524983,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1390975245,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 730408370151,
+        "rshares": 220537174,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6918396879,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 73285438325,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2043228058601,
+        "rshares": 184908815,
+        "voter": "cryptomental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 295411047,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 965303906571,
+        "rshares": 22550906103,
+        "voter": "jimmco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24542082008,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 56590327,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 84476446789,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 58837441,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 13864037687,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 19562413660,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 193616720845,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 91725775,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 54576373,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7864388608,
+        "rshares": 55663899,
+        "voter": "jan-p-joenland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 51109965,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42195007555,
+        "rshares": 62573030,
+        "voter": "firebat"
+      }
+    ],
+    "author": "knircky",
+    "author_reputation": 3320684282022,
+    "beneficiaries": [],
+    "body": "<a target='_BLANK' href='https://ipfs.pics/QmZjmgpCGzWEMdgR9fK3VyN6eRNzwaK5UCyA3KPznD7Xc6'><img src='https://ipfs.pics/ipfs/QmZjmgpCGzWEMdgR9fK3VyN6eRNzwaK5UCyA3KPznD7Xc6'/></a>\n\nDuring the last couple of days, there has been lots of movement in the market. Synereo has skyrocket, while Steem has lost 3/4 of its value.\n\nThis has also caused some movement and discussion here on Steemit itself. For instance @stellabelle who has the highest rep on here (or at least she used to) has [posted about synereo](https://steemit.com/synereo/@stellabelle/2-problems-plaguing-steemit-that-synereo-has-already-solved) and how it has solved some issues that steem has not. Has it though? It's not even live yet.\n\n# It is true, steem has issues: Retention! Retention! Retention!\nHaving been on the steem for about one month, I also see some issues with the site. Most importantly looking at the data, the biggest issue is that we have a big retention problem. Users sign on well but then seem to not stay active. This is bad. I don't know if this is normal and how this looks for other social media platform, but the [chart](https://steemit.com/steemit/@atomrigs/attention-whales-it-is-time-for-your-action) from @atomrigs does not look good.\n![steem](https://img1.steemit.com/0x0/https://s3.postimg.io/bzlvi7qlf/trend.png)\n\nConsequently it makes sense that the price of steem has crashed a bit, because with this user behavior a lot of the potential of steem is diminished. Again credit goes to @atomrigs.\n[chart](https://img1.steemit.com/0x0/https://s12.postimg.io/sbx0w3w1p/stock_price.png)\n\nI think we do not have enough data to draw correlation conclusions, however it is clear that investors are a bit timid right now. But I am less worried about the price, but the chart of new accounts vs account activity is a real problem and shows an issue that needs to be addressed. One thing that @atomrigs has missed in his post that in my mind is the most important indicator on steem are votes. The trend with votes looks exactly the same, so the chart of @atomrigs is good enough actually. But to be sure here are the votes. \n<a target='_BLANK' href='https://ipfs.pics/QmT6C3giuSinJw9Ymz81rzU5nRiSQXY2pvEMxP5Vnwcdta'><img src='https://ipfs.pics/ipfs/QmT6C3giuSinJw9Ymz81rzU5nRiSQXY2pvEMxP5Vnwcdta'/></a>\n\nI have talked about what I think are the key problems that lead to these retention issues [here](https://steemit.com/steem/@knircky/i-love-steem-the-price-is-starting-to-hurt-one-last-bullet):\n- Activity has been stagnant according to the stats (even though it feels like more and better content is popping up all the time). While user growth can be seen every day, the amount of votes and post have not been going up since I joined even though the amount of users has roughly tripled in one month.\n- I think the voting does not work as well as expected. I find myself voting like a robot for things that i think will go viral, vs things that I like. My curation reward is usually between 0.01SP and 7SP. A huge difference. Of course I try to hunt the big rewards, instead of rewarding who and what I like. In fact I have voted for many post I thought were bad and things I did not like, just because I thought it was profitable.\n- The curve between highest paying post and low paying post as well as the ones in the middle is way to high in my opinion. I think there are many good posts that do not get rewarded, and others that are not that amazing that get way overrated.\n\nSo I see the issues with steem, but I am not too worried. I think they can be fixed and overall Steem has amazing design architecture and solves real problems that cannot be solved without its blockchain and business model. In particular I am talking about how content can be attracted and rewarded in a new financial model. So lets look at how steem compares with others.\n\n\n# Synereo: can someone explains how it works please?\n\n<a target='_BLANK' href='https://ipfs.pics/QmexMkKTygLS6uNqqcQU7M5BZwzVXeVXvMhNtNXV75JiVB'><img src='https://ipfs.pics/ipfs/QmexMkKTygLS6uNqqcQU7M5BZwzVXeVXvMhNtNXV75JiVB'/></a>\n\nI've been trying to understand how Synereo works. I started to read the white paper and pretty much gave up 1/2 way thru. It was a lot of fluff on the one hand and math formula on the other hand, both of which are useless when trying to analyze a project for investment purposes. I have also read some articles and watched video about it, but somehow nobody can just explain how it works in a few sentences or pages. This is always a red flag to me.\n\nHowever I see a few things that I find very fascinating about Synereo.\n- They are trying to create an economic model that reflects a social network. If this actually works it will be amazing. They are using a currency called REO that basically is supposed to reflect how important one is directly towards a particular network member and as a whole. This sounds very interesting, however the formulas with which they were trying to explain how this worked went a little over my head when I was trying to read it before going to bed.\n- The ability to pay for attention of certain people and likewise get rewarded for giving attention. This is where AMP comes in the currency one can buy right now on the market. Again how this works exactly I have not been able to grasp just yet. \n\nThere are however some red flags:\n- I don't understand the economic model yet, like how money comes in and out and how this thing can grow and take over the world and make its members rich and powerful. \n- The GUI I have seen by signing up for the beta looks horrendous and just as confusing as the white paper. This is another red flag. Its very early and the beta has not launched yet, so I am not judging quite yet.\n- While the coin has launched already I just received an email for another funding round, asking me to buy some shares of some company or buy more AMP. Again all this is confusing me. Why is there another round at this stage.\n- I have heard how there has been long development without much progress. So I am wondering if all the confusion I have seen is representative of an overall confusing culture.\n\nAs a result I will need to study this more, however I wonder if I can't understand this with some serious effort, what will regular people think. I will judge Synereo more when the real version comes out, but so far I am hesitant and have only invested a small sort of test amount and will re-evaluate once I have been able to test and understand it.\n\nInterestingly @Ned has made a similar comment about how he had trouble understanding the economic model in @stellabelle post. At least I am not alone here.\n\n# Yours network: I think its just a pretty name\n\nWhen it comes to Yours I have heard about it a few times and tried to research it, but so far did not find much content. Today there was a youtube video with the creator on epicenter bitcoin:\n\nhttps://www.youtube.com/watch?v=SjJJi9Dqzvo\n\nI was not impressed with the video. There was lots of fluff and only a few minutes of the interview actually covered how yours works, the rest was general stuff like how facebook sucks and people on youtube do not make much money for generation content. Thank you Mr. Caption Obvious.\n\nFrom my understanding of the video Yours works like this:\n- It's a company running a website that works like youtube on a centralized server. It's a copy of reddit.\n- There is a payment layer that works in top of the website using bitcoin micro-transactions.\n- The micro-transactions are executed via lightning networks, which is still in development.\n- The site will take a cut from each transaction, that will be lower than what youtube takes, which is 40%\n\nThe economic model was not really explained, other than that site will simply take a cut from each transaction and it will be cheaper than youtube. Key question: how are prices determined?\n\nFrom the interview I think the developer is very focused in the technical side of things and a true business model is missing. I think is not very innovative, its simply laying a payment layer on top of existing platform that can very easy be copied by reddit, Facebook and youtube. And this can be done with paypal just as well.\n\nAt this point I don't think Yours has a real shot at being successful and I would not invest into it. I hope I am wrong and I wish the Yours team good luck.\n\n# I am happy I have recently poweredUp ever more\n\nAs I pointed out in this [post](https://steemit.com/steem/@knircky/i-love-steem-the-price-is-starting-to-hurt-one-last-bullet) I have constantly poweredUp since I joined steem and invested quite a few bitcoins into my Steem account. \n\n<a target='_BLANK' href='https://ipfs.pics/QmNfzSpVeGiekbko6k4WednrBT11KE2Yy4Eug9vxb73RVe'><img src='https://ipfs.pics/ipfs/QmNfzSpVeGiekbko6k4WednrBT11KE2Yy4Eug9vxb73RVe'/></a>\n\nSo far it looks really bad, since I probably have lost 2/3 of my investment on paper. However I am confident in my decision because looking at Synereo and Yours I think Steem is looking good:\n- the business model is pretty clear, even if complex.\n- we have a working product that has attracted value, creating amazing content that would otherwise not exist\n- we have a fantastic team that is constantly adding new features to the blockchain and the website\n- @dan has shown in the past that he is capable of understanding problems both from a technical and business perspective and come up with a solution that covers both. He has done this over several years, the end result of which is graphene and this blockchain. \n- I think synereo has amazing potential but a very different business model and I think the two may co-exist, like twitter and facebook etc.\n- one of the biggest issues I saw, which was the attraction of outside money without diluting investors was solved today. I think it could have been done better, but the point is that the @steemit team is constantly improving and finding amazing new innovations that will bring steem forward\n\nIn this space we need to be able to handle swings and unfortunately losing 70% of value from its investment in a few weeks is normal in this new blockchain and crypto space. It's important to look at the fundamentals and trust in making the right decisions. Having reviewed steem and other upcoming solutions makes me confident that this for now is the best place to be part of and I am happy that I have diversified a portion of my crypto assets into the steem platform.\n\nI can't wait to see what new surprise the team will bring to steem next week and I am also looking forward to what other projects will have to offer.",
+    "body_length": 10592,
+    "cashout_time": "2016-09-06T10:14:06",
+    "category": "steemit",
+    "children": 37,
+    "created": "2016-08-30T10:14:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"synereo\",\"steem\",\"invest\",\"techreview\"],\"users\":[\"stellabelle\",\"atomrigs\",\"dan\",\"steemit\"],\"image\":[\"https://ipfs.pics/ipfs/QmZjmgpCGzWEMdgR9fK3VyN6eRNzwaK5UCyA3KPznD7Xc6\",\"https://img1.steemit.com/0x0/https://s3.postimg.io/bzlvi7qlf/trend.png\",\"https://ipfs.pics/ipfs/QmT6C3giuSinJw9Ymz81rzU5nRiSQXY2pvEMxP5Vnwcdta\",\"https://ipfs.pics/ipfs/QmexMkKTygLS6uNqqcQU7M5BZwzVXeVXvMhNtNXV75JiVB\",\"https://img.youtube.com/vi/SjJJi9Dqzvo/0.jpg\",\"https://ipfs.pics/ipfs/QmNfzSpVeGiekbko6k4WednrBT11KE2Yy4Eug9vxb73RVe\"],\"links\":[\"https://ipfs.pics/QmZjmgpCGzWEMdgR9fK3VyN6eRNzwaK5UCyA3KPznD7Xc6\",\"https://steemit.com/synereo/@stellabelle/2-problems-plaguing-steemit-that-synereo-has-already-solved\",\"https://steemit.com/steemit/@atomrigs/attention-whales-it-is-time-for-your-action\",\"https://img1.steemit.com/0x0/https://s12.postimg.io/sbx0w3w1p/stock_price.png\",\"https://ipfs.pics/QmT6C3giuSinJw9Ymz81rzU5nRiSQXY2pvEMxP5Vnwcdta\",\"https://steemit.com/steem/@knircky/i-love-steem-the-price-is-starting-to-hurt-one-last-bullet\",\"https://ipfs.pics/QmexMkKTygLS6uNqqcQU7M5BZwzVXeVXvMhNtNXV75JiVB\",\"https://www.youtube.com/watch?v=SjJJi9Dqzvo\",\"https://ipfs.pics/QmNfzSpVeGiekbko6k4WednrBT11KE2Yy4Eug9vxb73RVe\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T10:14:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 26103584702060,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "80.858 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steem-vs-yours-vs-synereo",
+    "post_id": 1054133,
+    "promoted": "54.000 HBD",
+    "replies": [],
+    "root_title": "Steem vs. Yours vs. Synereo",
+    "title": "Steem vs. Yours vs. Synereo",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@knircky/steem-vs-yours-vs-synereo"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26081847613156,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7144417287594,
+        "voter": "skywalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1670057976865,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 16708812016,
+        "voter": "fury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6477125435976,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098685425,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 200359501764,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3761776605,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697242966,
+        "voter": "bunny"
+      },
+      {
+        "percent": "6000",
+        "reputation": 59074616588451,
+        "rshares": 4231727699250,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53910714446,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660654299,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213651922,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4790492025902,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 381835046480,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 398735777445,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2461162230926,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 811514178568,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 253788669743,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622652357,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1024663824110,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967077031,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 17350120065,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7104565737151,
+        "rshares": 13185221918,
+        "voter": "zorro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288127167,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11006097418580,
+        "rshares": 47052482880,
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 74873944700,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14434439480,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 21642455110,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 580038046449,
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 2517176669,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 495408451,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5698028555,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "1000",
+        "reputation": 5414208804644,
+        "rshares": 3309226774,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 76757203731,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1788138110,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 13439768796,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11501242325,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 386931391,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488865370830,
+        "rshares": 845493779,
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 181925256631,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 22769129551,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 649863857,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 684133676946,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21696987204454,
+        "rshares": 158031103885,
+        "voter": "ikigai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 110500898396,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 4654926641,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795987883806,
+        "rshares": 28041818855,
+        "voter": "tskeene"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 58775820471,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6732618302,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1902438231,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 58458138862,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 22975306447,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 59645609175,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5945878550,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 177794356372,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 47358556939,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 41598563868,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3178252220,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 251585044,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5945069361,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2928214359,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 132995172452,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6262688209,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 626398878696,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 40543594613,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 238079192,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 643383776411,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 486891587687,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3682809014,
+        "voter": "owdy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 66739626,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 61186165,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 14805447582,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 17189609334,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4558439244,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 35921995525,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4622558062,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14826352016829,
+        "rshares": 33819779736,
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 28858184031,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 10921739764,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 217877382,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2044404568,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 421663298,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5740590214206,
+        "rshares": 11380187826,
+        "voter": "tinyhomeliving"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 16251285643,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 45104752848,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2620486879029,
+        "rshares": 1991213966,
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 23356891134,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1852993914,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3034466693,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 741654237981,
+        "rshares": 5697335879,
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3477776250,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 748586302572,
+        "rshares": 333789860,
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 6735107405,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 107451947,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 109760976,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 8128920015,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3143430298,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 62899820,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7740774800016,
+        "rshares": 26577803315,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 24424394219,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 97819198,
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 72186967916,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 897000392259,
+        "rshares": 1557388169,
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 107117143,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 214244773946,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 375362904,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 918911822347,
+        "rshares": 1263753997,
+        "voter": "aleco"
+      },
+      {
+        "percent": "2000",
+        "reputation": 10519849768972,
+        "rshares": 4072752362,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1719078561,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 260838105,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 261229058,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151130174,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151983699,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 86657502,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327313183062,
+        "rshares": 1063256534,
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39913884914319,
+        "rshares": 15887054267,
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 10988246531,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 19360996922,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 599149869,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 417763036,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 224122038,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 2290161490,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78475461,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 36082655100,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 129066659,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 879267346,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25927425773,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 27498823483,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1022586648,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9679217640,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8710090850955,
+        "rshares": 37417107898,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 53835780,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 39956396307,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 53473560,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 23035195674,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 21847411404,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 13231389256,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3733416223,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 651986872,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 84984809659,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 89812186,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3610497290,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 116116362949,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 431713317,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 70682332,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1344860547,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1605846633393,
+        "rshares": 299755454,
+        "voter": "coloured-content"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 53884258,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3916486505,
+        "rshares": 63370428,
+        "voter": "anarcist69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11174711861,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1588588731,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4882282176511,
+        "rshares": 3734525922,
+        "voter": "kiddarko"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 61515128,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1390975245,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 88015547054,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504842566410,
+        "rshares": 1394296094,
+        "voter": "nords"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6777205106,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1103370391,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1411920528,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 296299265,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8467409533,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 270793460,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 18846153167,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 18535258789,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12924917515,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 12133327764,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 25564668758,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 313043440,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 52516313,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133924390968,
+        "rshares": 157607863,
+        "voter": "weeds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66712446374,
+        "rshares": 64447070,
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442182311998,
+        "rshares": 9064021528,
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24235309770,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 209056793,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 73380620,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 52746117,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1647174,
+        "rshares": 52705614,
+        "voter": "danbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69566140088,
+        "rshares": 62750892,
+        "voter": "tinkerbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 968641174,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 11197079739,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1737357327,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5815020980,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2978551571,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11985197441,
+        "rshares": 54597407,
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4069545029880,
+        "rshares": 564922076,
+        "voter": "funnyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50460250,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439002,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50436594,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10281190131715,
+        "rshares": 2189933691,
+        "voter": "ocrdu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 862769940814,
+        "rshares": 53908188,
+        "voter": "verbal-d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10990916065,
+        "rshares": 51383543,
+        "voter": "mr189"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16603755114,
+        "rshares": 166520919,
+        "voter": "you-know-nothing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 289180646,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 264508777365,
+        "rshares": 107344655,
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 342413852075,
+        "rshares": 346061498,
+        "voter": "vh770"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200511066644,
+        "rshares": 118552908,
+        "voter": "creativeyoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013164758868,
+        "rshares": 90073513,
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 50059314,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 705490153,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      }
+    ],
+    "author": "pfunk",
+    "author_reputation": 101807714979611,
+    "beneficiaries": [],
+    "body": "<center>![thumb](https://ipfs.pics/ipfs/Qmd9rM4BSJdusYs3igXwaPqtYr7RJceMQM3ZoHrWLwbXYu)</center>\n\nPontiac, the car brand, was named after [Pontiac](https://en.wikipedia.org/wiki/Pontiac_(Ottawa_leader)), a badass war chief of the Ottowa people in the 1700s. Conveniently, the city the cars were manufactured in was named after him too: Pontiac, Michigan. For their first post-WWII designs, Pontiac drew upon the heritage of their name and introduced the [Chieftan](https://en.wikipedia.org/wiki/Pontiac_Chieftain) in 1949. The cars featured hood ornaments of Chief Pontiac, and the 1951 model's clear orange bakelite looks stunning in the sunlight. I came across this one on a city street and the hood ornament really caught my eye, with its intricate cracks from age sparkling in the light.\n\n<center>![1](http://i.imgur.com/Qe1TipU.jpg)</center>\n\n<center>![2](http://i.imgur.com/QqqsEAO.jpg)</center>\n\nThe car this beauty belongs to, an orange 1951 Pontiac Chieftan:\n\n<center>![car](http://i.imgur.com/sJcQFiH.jpg)</center>\n\n# A History Lesson\n\nHood ornaments started out on early automobiles that had their radiator caps outside of their hoods. Patented in 1912, the [Boyce MotoMeter](https://en.wikipedia.org/wiki/Boyce_MotoMeter),  was an early water temperature gauge that sat atop the radiator visible to the driver, and doubled as a cap. These were very popular on cars and even came standard on some models, until temperature gauges started to be mounted on the dash in the 1930s. \n\nAnd naturally they were decorated. They were aftermarket parts at first. Because the radiator cap was an easily accessible part, some early motorists bought special ones to make their car stand out.  Manufacturers decorated theirs too, and it became a trademark to distinguish a marque. Very often, the hood ornament would change year-to-year.\n\n<center>![Packard](https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG/1024px-1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG)\nA MotoMeter with a hood mascot on a 1926 Packard Six model 226. \n[Photo by Alf van Beem](https://en.wikipedia.org/wiki/File:1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG), public domain.</center>\n\n## Pontiacs\n\nThe name Pontiac was given to a new lower-tier and lower-cost marque created in 1926 by the Oakland Motor Car Company, a division of General Motors. This was a part of their [Companion Make Program](https://en.wikipedia.org/wiki/General_Motors_Companion_Make_Program), a sales strategy that filled in the gaps of GM's tiers of quality and features. From Chevrolet at the most basic to Cadillac at the top, GM wanted a car to fit everyone's needs, wants, and budget. Pontiac was one step above Chevrolet. \n\nPontiac adorned their cars with a variety of hood ornaments featuring the signature Chief Pontiac. From the '20s into the '50s, the chief's face led Pontiacs, including as a face on the front of a jet in '55. The face left the jet in '56. Perhaps Pontiac's designers didn't like the juxtaposition of a 1700s native war hero blending into the Jet Age.\n\n<center>[![Pontiac ornaments](http://i.imgur.com/mWRxQZG.jpg)](http://www.pbase.com/mgrove/hood_ornaments)\nPontiac hood ornaments from 1928-1956. Click the image or [here for source](http://www.pbase.com/mgrove/hood_ornaments).</center>\n\n## Fashion Moves On To Safety\nIn the late 50s and early 60s, hood ornaments fell out of fashion for many car brands. Upmarket and luxury brands such as Buick, Cadillac, Mercedes Benz, and Jaguar kept the tradition up however. The iconic bulldog atop Mack heavy duty truck hoods did too. For 1968 cars, pedestrian-friendly safety regulations mandated that hood ornaments could no longer be fixed. Those who still had hood ornaments adapted to this by introducing ones that were spring loaded or attached to a flexible cable so they could bend back if their inattentive driver happened to plow down a poor old lady crossing the street. Blunt force trauma is better than getting stabbed by a shiny mohawk I suppose.\n\n<center>![mack](http://i.imgur.com/exgmWIo.jpg) ![cadillac](http://i.imgur.com/vjKhk3R.jpg)\nMack Truck and Cadillac hood ornaments. Photos by [Samdogs](https://www.flickr.com/photos/samdogs/489923835/) and [Charlie](https://www.flickr.com/photos/ceonyc/8405620690/)</center>\n\nThe new spring loaded ornaments combined with the luxury branding of the hood ornament holdouts led to many thefts in the '70s through '90s. Gradually even luxury brands ditched them, or only put them on their top-end models. Rolls Royce is a notable holdout. Today they put special engineering into their mascot, [The Spirit of Ecstasy](https://en.wikipedia.org/wiki/Spirit_of_Ecstasy), dating back over a hundred years to 1911. A button can raise or lower it at the driver's control. And combining a safety and anti-theft measure, if it is hit with enough force it will also instantly retract.\n\n<center>![spirit](http://i.imgur.com/2c03COl.jpg)\nRolls Royce's Spirit of Ecstasy. [Photo by majomka](https://pixabay.com/en/rolls-royce-spirit-of-ecstasy-emblem-689031/), public domain.</center>\n\n### People today haven't seen many hood ornaments from their hay day. If you'd like to see more, [check out this awesome gallery from Marland Grove](http://www.pbase.com/mgrove/hood_ornaments).\n\n---\n\n<center><h3>[#pfunkblog](https://steemit.com/active/pfunkblog) [#pfunkphotos](https://steemit.com/active/pfunkphotos)</h3></center>\nIf you like this post, click my name below or [here for my blog page](https://steemit.com/@pfunk) and hit the **follow** button in the upper right!",
+    "body_length": 5627,
+    "cashout_time": "2016-09-06T09:36:00",
+    "category": "cars",
+    "children": 29,
+    "created": "2016-08-30T09:36:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"cars\",\"photography\",\"pfunkphotos\",\"pfunkblog\",\"history\"],\"image\":[\"https://ipfs.pics/ipfs/Qmd9rM4BSJdusYs3igXwaPqtYr7RJceMQM3ZoHrWLwbXYu\",\"http://i.imgur.com/Qe1TipU.jpg\",\"http://i.imgur.com/QqqsEAO.jpg\",\"http://i.imgur.com/sJcQFiH.jpg\",\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/36/1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG/1024px-1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG\",\"http://i.imgur.com/mWRxQZG.jpg\",\"http://i.imgur.com/exgmWIo.jpg\",\"http://i.imgur.com/vjKhk3R.jpg\",\"http://i.imgur.com/2c03COl.jpg\"],\"links\":[\"https://en.wikipedia.org/wiki/Pontiac_(Ottawa_leader)\",\"https://en.wikipedia.org/wiki/Pontiac_Chieftain\",\"https://en.wikipedia.org/wiki/Boyce_MotoMeter\",\"https://en.wikipedia.org/wiki/File:1926_Packard_223_Two-Seater_Roadster_%27Fire_Chief%27_p3.JPG\",\"https://en.wikipedia.org/wiki/General_Motors_Companion_Make_Program\",\"http://www.pbase.com/mgrove/hood_ornaments\",\"https://www.flickr.com/photos/samdogs/489923835/\",\"https://www.flickr.com/photos/ceonyc/8405620690/\",\"https://en.wikipedia.org/wiki/Spirit_of_Ecstasy\",\"https://pixabay.com/en/rolls-royce-spirit-of-ecstasy-emblem-689031/\",\"https://steemit.com/active/pfunkblog\",\"https://steemit.com/active/pfunkphotos\",\"https://steemit.com/@pfunk\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T05:23:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 61927841326479,
+    "parent_author": "",
+    "parent_permlink": "cars",
+    "pending_payout_value": "237.257 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-lost-and-forgotten-art-of-the-hood-ornament-featuring-the-51-pontiac-chieftan",
+    "post_id": 1053838,
+    "promoted": "51.500 HBD",
+    "replies": [],
+    "root_title": "The Lost and Forgotten Art of the Hood Ornament, Featuring the '51 Pontiac Chieftan",
+    "title": "The Lost and Forgotten Art of the Hood Ornament, Featuring the '51 Pontiac Chieftan",
+    "total_payout_value": "0.000 HBD",
+    "url": "/cars/@pfunk/the-lost-and-forgotten-art-of-the-hood-ornament-featuring-the-51-pontiac-chieftan"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3900",
+        "reputation": 145171381514207,
+        "rshares": 11430243205500,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3188452127612,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223769954980,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 416463064154,
+        "voter": "lafona"
+      },
+      {
+        "percent": "7000",
+        "reputation": 16685610555705,
+        "rshares": 14469720879984,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1319152035389,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 3015688539436,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1065096145151,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320958684626,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3524962999766,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2479162407,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3009725987,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 557825892,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43167128561,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1328636390,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170924165,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 381968575324,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379356520243,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 685525576740,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 167006544345,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 498154721,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 773710219,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "500",
+        "reputation": 96486114508046,
+        "rshares": 162992394596,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 823215122111,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 289392252587,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230506986,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14104868761,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7019430473955,
+        "rshares": 31028396876,
+        "voter": "thedarkestplum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056146398,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 327201490881,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 10014471046,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855178912028,
+        "rshares": 7103998234,
+        "voter": "taoofsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 16264017361,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 58360860731,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 929334235,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73942080812,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1430769534,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 359570383120,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 202782147716,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 586153919387,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 11118667764,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10075379390,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3442399740415,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 363218862243,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 342081119,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 362334823136,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 100971986463,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 181942657700,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8096289794,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 249743373270,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 47480263905,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 20453713624,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 132792025300,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1091598557,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2352422260,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 129179648054,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 189545314722,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1400138433026,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686878794110,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 100494403998,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089233647296,
+        "rshares": 4041091559,
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 259034550983,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 41364826259,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 92408012761,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 5147983228,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 62731817565,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6873879806,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6767512298331,
+        "rshares": 40796944760,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3311846140,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17340323342,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 7205955435,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 1263817266,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5946075754,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3370446182,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 9856964632,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 172587678511,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 7905293129,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 31283265272,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5945940373,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9824421122,
+        "rshares": 231914934,
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9786117166130,
+        "rshares": 20119492096,
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6263066176,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 666482029300,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 27806701251,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1559911799,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 71508499555,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "6600",
+        "reputation": 4667991454724,
+        "rshares": 450490274597,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 1118184846,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 24132153479,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 143979534662,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 13265886887,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 864097811,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 22929242435,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 16334455276,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 14633008138,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4393022921,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 531703283,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4023608719,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2917814226,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11502422370,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 77568768403,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 33629159959,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4184075891,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1310840633,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 4135548207,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 920506256332,
+        "rshares": 2468438194,
+        "voter": "fireriseace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 2816120254,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 10995368554,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 744526625,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 18793081399,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42870892029,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15095626509,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 18689951751,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12696760695,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 79018127283,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3034986192,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2423635537,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 58690095318,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 748586302572,
+        "rshares": 389421504,
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 26088619512,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900694208703,
+        "rshares": 6659145103,
+        "voter": "cryptobro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 7791666106,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3082024551,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 2820120005,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 2071759707,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 23693378872,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4297488643,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 37066079315,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 67031455381,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 192900146033,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 113622998,
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1016029372465,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 13208655601,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27988491601746,
+        "rshares": 15965457133,
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1089072756,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960874021,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 442838800,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 897249772,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4558720822431,
+        "rshares": 18634755812,
+        "voter": "jennamarbles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35581832534,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 38420830032,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7599817269,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17524174666,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 568834437,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 10174214221,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5362780558,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 103648120,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3049903464,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1712093376924,
+        "rshares": 8501004857,
+        "voter": "alphabeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27855371709889,
+        "rshares": 49083786264,
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 4665399694,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 122273677,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 24075889262,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 28501596110,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 85597116980,
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8761422348,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5886596143,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1950289959,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 36093241919,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 1425337253,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2647645651,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 19610089929,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 22420005771,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 15561179003,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 7484747344,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 691782075,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 512286246,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 12628054529,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 15099288018,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3452883959,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 88063368097,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 9152280038,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 435409217,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1312875497,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11409257997,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 353095859,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68479560828,
+        "rshares": 122035883,
+        "voter": "harrycoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 18933467156,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849623403126,
+        "rshares": 958407932,
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 58277489,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28468972316,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2127373904,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 61056742,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83592503505,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 575708182,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 5733814684,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61094018,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6918396879,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1117439352,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 716669209,
+        "voter": "inferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3374739266,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 771908956,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87993823754,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 250890922,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 965303906571,
+        "rshares": 23002426499,
+        "voter": "jimmco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 17719880813,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 478632713,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6860983719,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11435132110,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3342551943665,
+        "rshares": 2582268537,
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824556048979,
+        "rshares": 3890904309,
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 22504086307,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3530818614,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 85421073,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 615508801,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8652306644,
+        "rshares": 50164653,
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 695736122,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 666955368,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 13468516926,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 13864407456,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 2102602089,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 1148962246,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12067204352,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 17536031676,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 107899577,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11352667511018,
+        "rshares": 5812055555,
+        "voter": "canadian-coconut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 1377220430,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725759768819,
+        "rshares": 5004447489,
+        "voter": "sarahjordan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4447885148,
+        "rshares": 77021319,
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174215430182,
+        "rshares": 187760632,
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1582075103,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 185235623517,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 52024054,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2146314155,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24239498471,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 91697951,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53871683,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53593366,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 1472243153,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1612393618,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5544678407,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454788,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 25502873957,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6447867236,
+        "rshares": 51595558,
+        "voter": "saintmichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 83500065,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 51128264,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 342413852075,
+        "rshares": 346061498,
+        "voter": "vh770"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 201743745,
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68065278228,
+        "rshares": 61862680,
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1150196390848,
+        "rshares": 52101327,
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 607607141,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487989126850,
+        "rshares": 51062060,
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50213272,
+        "voter": "lord.robert"
+      }
+    ],
+    "author": "kaylinart",
+    "author_reputation": 77590508815145,
+    "beneficiaries": [],
+    "body": "<a href=\"http://imgur.com/n0FXs2m\"><img src=\"http://i.imgur.com/n0FXs2m.jpg\" title=\"source: imgur.com\" /></a>\nWith the new Promoted tab, Some people are happy. Others are complaining.\n\"The Rich will Get richer.\" \nI keep hearing people say. \n\n## But is this such a bad thing? ## \nWhen Browsing around, I noticed that ANYONE CAN promote any post. Not just your own. You can support anyone and any post you want. \nIf a dolphin or a whale sees your excellent post, they can promote it FOR YOU! In addition to giving you their upvote.\n\nThis will allow you to do EVEN BETTER with your posts. Also, you can promote your stuff.\n<a href=\"http://imgur.com/LcS63SL\"><img src=\"http://i.imgur.com/LcS63SL.gif\" title=\"source: imgur.com\" /></a>\n# Your SUCCESS In YOUR Hands! #\nYou can promote your own stuff, Sure it may not blow up into something large, But you'll at the very least get more followers. This will help future posts; Your investment will help you do well for future posts.\n\nSteemit is like a lottery, You can post high-quality content that is ignored, Sometimes your high-quality content is seen. Sometimes people don't even care about the topic you are talking about, and you have been ignored anyways. There are so many variables. It can be stressful when you work your butt off on a post that is just invisible. \n\nWith the post promotion, You can give yourself an edge on that. So it will be seen. If your post still doesn't do well, You can learn from it. Maybe you need a better title? better photos? \n\nI personally don't like my stuff left to chance, So the opportunity to make things happen makes me happy. \n<a href=\"http://imgur.com/oA9JsVb\"><img src=\"http://i.imgur.com/oA9JsVb.jpg\" title=\"source: imgur.com\" /></a>\n# Businesses Can Advertise! #\nImagine if you were on Facebook, And instead of seeing those pesky ads on the site, You had a separate wall you could go to, With those ads. \n\n### Would you ever go to the wall of advertising? ###\nHell NO!\nI would avoid that like the plague. Unless they offered me some coupons or something, They would have to do something for ME!!\n\nSo what happens if businesses take over the promoted wall?\n\nPLEASE DO!\nThis advertising is perfect, The money spent on the promoted posts goes back into the system. (I don't understand all of the technical stuff)\n<a href=\"http://imgur.com/qFti1Nr\"><img src=\"http://i.imgur.com/qFti1Nr.jpg\" title=\"source: imgur.com\" /></a>\nBut  If Domino's Pizza wants to promote their new carry out pizza's for 7.99 on the promoted page, They will have to ADD MONEY to the pool. That WE can earn. In order to promote. I LOVE THIS! \n\nThat means Domino's pizza is putting money in OUR POCKETS!\n### Won't the advertising fail then? Because It's on a separate wall? ### \nIf it were Facebook, YES! But with Steemit, We are getting something out of their advertising. If big businesses don't get success from promoted posts, they won't promote on our platform anymore. And we'll have less money around as the result. \n\nThe principle of Reciprocity will come into effect.\n- Domino's gave you money, Now how about pizza for dinner tonight?\n\nApparently, if you hate pizza, You won't buy a pizza. But if someone is promoting cute shoes, you might just have to buy those shoes, I mean That company GAVE the platform more money for you to earn. You can buy a pair of shoes from them right?\n\nWith Facebook, there is no Reciprocity  Because the ads do nothing for you, With Steemit This is a beautiful form of advertising that will have  A BIG IMPACT.\n\n<a href=\"http://imgur.com/8VApJlc\"><img src=\"http://i.imgur.com/8VApJlc.jpg\" title=\"source: imgur.com\" /></a>\n# So Why You Complaining? # \nSteemit made some exciting changes yesterday, And we need to be HAPPY! I'm so excited about the future of Steemit. You just have to think of the long term benefits of each change that is made, And how it may or may not benefit you. Some changes may hurt your short-term game but are good for the longer term. While other changes may not affect you at all! And if you deeply hate that promoted tab, You can always ignore it! No law against. that.",
+    "body_length": 4097,
+    "cashout_time": "2016-09-06T20:58:09",
+    "category": "steemit",
+    "children": 72,
+    "created": "2016-08-30T20:58:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"advertising\",\"promoted\",\"promotion\"],\"image\":[\"http://i.imgur.com/n0FXs2m.jpg\",\"http://i.imgur.com/LcS63SL.gif\",\"http://i.imgur.com/oA9JsVb.jpg\",\"http://i.imgur.com/qFti1Nr.jpg\",\"http://i.imgur.com/8VApJlc.jpg\"],\"links\":[\"http://imgur.com/n0FXs2m\",\"http://imgur.com/LcS63SL\",\"http://imgur.com/oA9JsVb\",\"http://imgur.com/qFti1Nr\",\"http://imgur.com/8VApJlc\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T20:58:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 56408831488012,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "330.380 HBD",
+    "percent_hbd": 10000,
+    "permlink": "why-the-promoted-tab-is-the-best-thing-ever",
+    "post_id": 1061514,
+    "promoted": "51.356 HBD",
+    "replies": [],
+    "root_title": "Why The PROMOTED Tab Is The BEST Thing Ever!",
+    "title": "Why The PROMOTED Tab Is The BEST Thing Ever!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@kaylinart/why-the-promoted-tab-is-the-best-thing-ever"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30339908020562,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1793185753098,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5648189733502,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1136471312099,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2242727814,
+        "rshares": 2036157978,
+        "voter": "proctologic2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 307854063319,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 9463360243,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 104913858289,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 76675529470,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 171898827767,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15868828870,
+        "voter": "jademont"
+      },
+      {
+        "percent": "443",
+        "reputation": 12382143533351,
+        "rshares": 29917100062,
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 61060303,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 376960001789,
+        "rshares": 729811189,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "3800",
+        "reputation": 5414208804644,
+        "rshares": 11904454830,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 8804491689,
+        "voter": "richman"
+      },
+      {
+        "percent": "2100",
+        "reputation": 15755437221598,
+        "rshares": 6703367104,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 55715107182,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33820692,
+        "rshares": 418614079,
+        "voter": "zheka-melnikov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 39838275827,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 849630107,
+        "voter": "coar"
+      },
+      {
+        "percent": "5555",
+        "reputation": 2902053059801,
+        "rshares": 1766932742,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 76926379771,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 112652982457,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 19445503574,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 394735060526,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173921081175,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 118655742038,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 91847138579,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 4487075430,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 30885067393,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 7038427221,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 68410228620,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3064933831,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 179628130136,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 37002417511,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4998101846,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 52311028214,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "2900",
+        "reputation": 9956734090708,
+        "rshares": 11533997209,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 14898136192,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "2100",
+        "reputation": 2906973892,
+        "rshares": 54221077,
+        "voter": "strawhat"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 10245289581,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "2100",
+        "reputation": 675716972978,
+        "rshares": 53734079,
+        "voter": "cryptochannel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 30062419857,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 550658687885,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 1231554825,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 168490289070,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 309495689614,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4702611121,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 138084510282,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 40353294945,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 243649644994,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 2123737721,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 84745420462,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851264493766,
+        "rshares": 3368223007,
+        "voter": "begstreets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 5706185290,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 748586302572,
+        "rshares": 726952476,
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9792777,
+        "rshares": 138604353,
+        "voter": "bsgomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 19885998408,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3849140235,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5471375290,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 38383171914,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 86465359157,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632564148,
+        "rshares": 5203707025,
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 51423955,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27988491601746,
+        "rshares": 36222407310,
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 474208730,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 25137854994,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "7800",
+        "reputation": 7172977970558,
+        "rshares": 2910988389,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 10434858028,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 862222696,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 5986514391,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "3000",
+        "reputation": 988942038058,
+        "rshares": 21439394585,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 11197380448,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 15279745645,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 3116848228,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 16487484019,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "443",
+        "reputation": 1751717743,
+        "rshares": 793610074,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6772181549,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1791492839,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 1834344112,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 264199005,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10809787058917,
+        "rshares": 6718625083,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11861754844312,
+        "rshares": 14682233952,
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3893435508,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 23733546534,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5830430132,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 331709231,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9300623336,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "5700",
+        "reputation": 13325577893779,
+        "rshares": 17329389153,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2051850885932,
+        "rshares": 4761294926,
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "5000",
+        "reputation": 64878458203,
+        "rshares": 728655108,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 2172044004,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4107228742,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26371930846,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 162741674983,
+        "rshares": 487425594,
+        "voter": "frol"
+      },
+      {
+        "percent": "6800",
+        "reputation": 18890223518661,
+        "rshares": 32443613669,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "3000",
+        "reputation": 11490547563070,
+        "rshares": 8019523640,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 9139190744,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 9956211164,
+        "voter": "booky"
+      },
+      {
+        "percent": "1100",
+        "reputation": 10427175905016,
+        "rshares": 1266758168,
+        "voter": "kimal73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 3745370757,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 78190716,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86380551014,
+        "rshares": 60369832,
+        "voter": "i603"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887625476110,
+        "rshares": 11195003640,
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 15560546051,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 3488542879,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 5656732242,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 689817344622,
+        "rshares": 2053712672,
+        "voter": "chef.cook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30750856007,
+        "rshares": 55893569,
+        "voter": "damascusvg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1818363378287,
+        "rshares": 4434491535,
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1354778162586,
+        "rshares": 818232071,
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 5954717805,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 89234192424,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 54408230,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 113858863,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 582660326,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 893293727378,
+        "rshares": 862232003,
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 2067369152,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 143358574,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50263480,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879017611,
+        "rshares": 50439879,
+        "voter": "theodoros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30860749466,
+        "rshares": 54390442,
+        "voter": "alex.gaud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 238100621,
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1318433959,
+        "rshares": 157583759,
+        "voter": "greencycles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165924295987,
+        "rshares": 198143828,
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157730645,
+        "voter": "nick174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1309073721476,
+        "rshares": 659555137,
+        "voter": "reddust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 152869602,
+        "voter": "hethzen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 634861272,
+        "rshares": 152523892,
+        "voter": "malasuerte94"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 124603587,
+        "voter": "bromejs"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/12/Voting-000065325199_Small69865.jpg\" width=\"812\" height=\"590\"/></p>\n<p>Steem uses a consensus mining system that is different from most conventional cryptocurrencies like bitcoin. &nbsp;As stated in the <a href=\"https://steem.io/SteemWhitePaper.pdf\">whitepaper</a> (p22):</p>\n<blockquote>With Steem, block production is done in rounds. Each round 21 witnesses are selected to create and sign blocks of transactions. Nineteen (19) of these witnesses are selected by approval voting, one is selected by a computational proof-of-work, and one is timeshared by every witness that didn\u2019t make it into the top 19 proportional to their total votes. The 21 active witnesses are shuffled every round to prevent any one witness from constantly ignoring blocks produced by the same witness placed before.</blockquote>\n<p><strong>As stated above the top 19 witnesses are \"elected\" by voting. &nbsp;The voting page can be seen </strong><a href=\"https://steemit.com/~witnesses\"><strong>here</strong></a><strong>. &nbsp;This brings us to the problem:</strong></p>\n<hr />\n<h1>The Problem</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/12/blindfolded-senior-business-man-walking-through-social-media-data-000082574145_Small0c713.jpg\" width=\"841\" height=\"570\"/></p>\n<p><strong>Due to the nature of Steemit it is attracting people who are not necessarliy familiar with cryptocurrency concepts and the difference in the way that mining works can be confusing even to those who are familiar with conventional POW (proof of work) or POS (Proof of Stake).</strong>&nbsp;</p>\n<p>There is understandably a lot of confusion in the community over the role of witnesses as well as who to vote for. There is also inconsistency in the information that witnesses and witness candidates provide to potential voters.</p>\n<hr />\n<h1>A Potential Solution?</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/12/We-offer-solutions--business-card-000084741237_Smallfbee9.jpg\" width=\"829\" height=\"578\"/></p>\n<p><strong>Knowledge is power.</strong></p>\n<p><strong>With an appropriate set of questions and answers voters should be able to make an informed decision.</strong></p>\n<p>With this in mind I have crafted a questionnaire for witnesses and prospective witness candidates. This is a draft framework for community discussion. &nbsp;</p>\n<p>The aim is to have a standardised set of questions that all witnesses and witness candidates answer in order to facilitate the process of witness voting for community members. &nbsp;</p>\n<p><strong>The questions are designed to be voluntary.&nbsp;</strong></p>\n<p><em><strong>It is up to individual candidates/witnesses if they answer them or not.</strong></em></p>\n<hr />\n<h1>THE QUESTIONNAIRE</h1>\n<hr />\n<h1>A) Technical Questions</h1>\n<h3><em>1)In a few sentences or less please explain the role of a witness in the Steemit/Steem ecosystem as you understand it.</em></h3>\n<h3><em>2)What are the most important qualities for a witness to have?</em></h3>\n<h3><em>3)How do you fulfil those qualities?</em></h3>\n<h3><em>4)Is there anything beyond this that you feel makes you a better witness candidate than the average person?</em></h3>\n<h3><em>5)What kind of hardware setup are you using and is it your own local hardware or rented?</em></h3>\n<h3><em>6)What if any contingencies do you have in case of an emergency or server failure?</em></h3>\n<h3><em>7)Do you think the current compensation for a witness is fair? &nbsp;If not what do you think would be fair compensation?</em></h3>\n<h3><em>8)What percentage (or fixed amount) of witness earnings should be kept and what percent invested back into the steem platform?&nbsp;</em></h3>\n<h3><em>9)How do you intend to use your witness earnings?</em></h3>\n<p><em>(Thanks to @geoffrey for suggestions for modifying the last 3 questions here.)</em></p>\n<hr />\n<h1>B) Current Witness Questions</h1>\n<h3><em>1)What challenges or problems have you faced in your role as witness?</em></h3>\n<h3><em>2)What other types of decisions do you think as a witness you should be involved in voting on?</em></h3>\n<h3><em>3)Are there any changes to the witness/mining system or structure that you feel would improve the system? &nbsp;Why?</em></h3>\n<p><em>(Thanks to @jesta for suggesting question 2.)</em></p>\n<hr />\n<h1>C) Community Questions</h1>\n<h3><em>1)What do you think makes Steemit special and worth supporting?</em></h3>\n<h3><em>2)How much do you use Steemit on average per week?</em></h3>\n<h3><em>3)What is your favourite type of post?</em></h3>\n<h3><em>4)Do you have a specific favourite post you would like to mention or link to? &nbsp;(Feel free to give a shout out to the author)</em></h3>\n<h3><em>5)What kind of posts do you dislike?</em></h3>\n<h3><em>6)How do you feel about the Steemit governance structure?</em></h3>\n<h3><em>7)How would you improve Steemit?</em></h3>\n<hr />\n<h1>D) Personal Questions</h1>\n<h3><em>1)How did you get into cryptocurrencies?</em></h3>\n<h3><em>2)What hobbies or interests do you have outside of Steemit and cryptocurrencies?</em></h3>\n<h3><em>3)What is your favourite movie genre?</em></h3>\n<h3><em>4)What is your favourite movie or movies?</em></h3>\n<h3><em>5)What is your favourite musical genre?</em></h3>\n<h3><em>6)What are you favourite bands/albums?</em></h3>\n<h3><em>7)What is your favourite book (fiction or non-fiction) and do you have a favourite author?</em></h3>\n<h3><em>8)What is your favourite TV show?</em></h3>\n<h3><em>9)Which is your favourite Star Wars movie from the original trilogy?</em></h3>\n<h3><em>10)Margarine or butter?</em></h3>\n<h3><em>11)The Beatles or The Rolling Stones?</em></h3>\n<h3><em>12)Have you ever tried Marmite?</em></h3>\n<h3><em>13)Are there any weird facts that you would like to share with everyone?</em></h3>\n<h3><em>14)Is there anything else that you would like other people to know about you?</em></h3>\n<hr />\n<h1>Conclusions</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/12/Business-person-having-bright-idea-000074154627_Small7f013.jpg\"/></p>\n<p>Thank you for reading. &nbsp;</p>\n<p><strong>As I have stated this is a starting point for community discussion. &nbsp;All the questions are voluntary - there is no way to compel people to answer, neither should there be. &nbsp;</strong></p>\n<p><strong>The witnesses have a priviliged position in the Steemit ecosystem which gives them considerable power. Since people are required to vote for them it is in my opinion to be expected that people would like appropriate information in order to make an informed decision.&nbsp;</strong></p>\n<p>The \"personal\" section is designed to be fun and to help \"humanise\" candidates. &nbsp;I can understand if some people find the questions frivolous or irrelevant to the job of being a witness. &nbsp;</p>\n<p>In regards to this one must consider the dilemma of the voter who may need some kind of alternative criteria to decide between different candidates who are equally capable from a technical standpoint.&nbsp;</p>\n<p><strong>Whether people feel that this makes voting a popularity contest or is in some way unfair is for the community to decide.</strong></p>\n<hr />\n<p><em>If you like my work please follow me and check out my previous photography work and tutorials &nbsp;@thecryptofiend - hope you enjoy.</em></p>\n<hr />\n<p><em>Credits for images - All Images are purchased from Istockphoto using my own personal account. &nbsp;Further information can be provided if requested.</em></p>\n</html>",
+    "body_length": 7536,
+    "cashout_time": "2016-09-19T16:44:39",
+    "category": "steemit",
+    "children": 46,
+    "created": "2016-09-12T16:44:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"witness-category\",\"steemit-ideas\",\"politics\"],\"users\":[\"geoffrey\",\"jesta\",\"thecryptofiend\"],\"image\":[\"https://www.steemimg.com/images/2016/09/12/Voting-000065325199_Small69865.jpg\",\"https://www.steemimg.com/images/2016/09/12/blindfolded-senior-business-man-walking-through-social-media-data-000082574145_Small0c713.jpg\",\"https://www.steemimg.com/images/2016/09/12/We-offer-solutions--business-card-000084741237_Smallfbee9.jpg\",\"https://www.steemimg.com/images/2016/09/12/Business-person-having-bright-idea-000074154627_Small7f013.jpg\"],\"links\":[\"https://steem.io/SteemWhitePaper.pdf\",\"https://steemit.com/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T16:44:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 43409252661446,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "122.374 HBD",
+    "percent_hbd": 10000,
+    "permlink": "witness-questionnaire-a-solution-for-voter-confusion",
+    "post_id": 1221512,
+    "promoted": "51.000 HBD",
+    "replies": [],
+    "root_title": "Witness Questionnaire - A Solution for Voter Confusion?",
+    "title": "Witness Questionnaire - A Solution for Voter Confusion?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@thecryptofiend/witness-questionnaire-a-solution-for-voter-confusion"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 318095208614,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1429044376587,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4533732336802,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7303764362542,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1659602960652,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 509970669779,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 116291645822,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 446046136,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1069598978,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 212186899968,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 72055092368,
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16316471180830,
+        "rshares": 140992694081,
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 50900643432,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2194663980,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "7900",
+        "reputation": 4370237937043,
+        "rshares": 145906252490,
+        "voter": "marina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 49836148737,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 347471940542,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 19323388954,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3317742975,
+        "voter": "karen13"
+      },
+      {
+        "percent": "0",
+        "reputation": 3979714886621,
+        "rshares": 298783270,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 431019291,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19333957259,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 161322307500,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 39918937494,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 10993349551,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 13748222174,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 8944418644,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 6083187762,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 24751486274,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 3733883806,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 7668574769,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 6948566921,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 15642700631,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3942069730400,
+        "rshares": 1660823962,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11319565357,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 5300806959,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11777272396,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57766716,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 209436170,
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58555241,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1682367496,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3443716599,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3485898605376,
+        "rshares": 2818827380,
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 40814499797,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57059306814,
+        "rshares": 59174034,
+        "voter": "pataxis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1559083086,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 707118642,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 731283721,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2270562936,
+        "rshares": 55368187,
+        "voter": "johano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8671572242235,
+        "rshares": 5827842311,
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950372517145,
+        "rshares": 350847785,
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 825740842,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4736805376,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4069545029880,
+        "rshares": 2457079513,
+        "voter": "funnyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 87219762,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50245824,
+        "voter": "steembets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2432802,
+        "rshares": 155699375,
+        "voter": "daniel.brest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 149226307,
+        "voter": "edward.shroder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 133226774,
+        "voter": "eduard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9465899,
+        "rshares": 153123119,
+        "voter": "shreeraj"
+      }
+    ],
+    "author": "claudiop63",
+    "author_reputation": 8079179261851,
+    "beneficiaries": [],
+    "body": "https://s14.postimg.org/nktzlc8i9/640px_Stipula_fountain_pen.jpg\nHi there. I have been writing short novels for some time, mostly in my native language (Italian).  \nNow, I would like to play around with the fact that Steemit easily enables us to collect decentralized contributions to any activity, including creative writing...    \n\nDo you want to play with me? Then it works in this way: \n\nI decide the abstract of a story, and write an introductory (very short) chapter, labelled as CHAPTER 1.\nThe first person willing to contribute is going to write a comment to the post containing a short chapter (labelled CHAPTER 2) which is logically connected to my CHAPTER 1 and develops the story...\n \nFurther contributors will post their own chapters as follow-ups to the last contribution submitted (e.g. CHAPTER 6, logically linked to CHAPTER 5). \n\nLet's see what comes out.. \n\nIF YOU DONT' HAVE MUCH TIME, JUST WRITE ONE PARAGRAPH OR TWO :-)\n\nAfter the first payment period (24 hours from now or so), I will post the stitched-up story resulting from your contributions (possibly with some edits, depending on my personal taste) and then we can continue from there for the next 30 days... \n\nOk, here we go: \n\nABSTRACT \nFabio and Emma are in their late 20s and live in London. Fabio is Italian, Emma comes from a small town in the north of England. Fabio has just lost his well-paid job in a major financial institution in the City, while Emma has just gotten a cool job in the fashion industry.  \nThey have been together for three years and want to have children, but the recent professional changes are putting their relationship under \npressure. Fabio would like to either accept an offer from Wall Street and move now to New York City, or take a sabbatical year for them to travel and decide where to go and what to do next...  \n\nCHAPTER 1 \nA funny smell in the subway. It's not unpleasant \u2013 just weird.  It reminds Fabio of one of Emma's body  odours...the one he likes most.  \nFabio was trying not to think about Emma for as long as possible, following last night's discussion. Sometimes he feels she doesn't realize how lucky they are: his savings can easily pay for 12 months of travelling, making love, and deciding where to go next. Ok, she has a brand new job, but they are still young and Fabio feels they should grab now their chance to travel and then decide where to settle down and have kids.  \nThe train stops. Time to get out. \n\nPLEASE POST YOUR FOLLOW-UP CHAPTER AND MAKE SURE YOU STATE CLEARLY YOUR CHAPTER n, WHICH SHOULD BE THE FOLLOW-UP TO THE CONTRIBUTION LABELLED AS CHAPTER n-1 \n\nImage credit: http://bit.ly/2cpqac3",
+    "body_length": 2638,
+    "cashout_time": "2016-09-14T19:14:09",
+    "category": "writing",
+    "children": 24,
+    "created": "2016-09-07T19:14:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"writing\",\"fiction\",\"steemit\",\"life\",\"steemsquad\"],\"image\":[\"https://s14.postimg.org/nktzlc8i9/640px_Stipula_fountain_pen.jpg\"],\"links\":[\"http://bit.ly/2cpqac3\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T17:55:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17333270627842,
+    "parent_author": "",
+    "parent_permlink": "writing",
+    "pending_payout_value": "33.748 HBD",
+    "percent_hbd": 10000,
+    "permlink": "decentralized-fiction-writing-add-a-chapter-to-my-story",
+    "post_id": 1162596,
+    "promoted": "50.154 HBD",
+    "replies": [],
+    "root_title": "DECENTRALIZED Fiction Writing \u2013 Add a Chapter to My Story :-)",
+    "title": "DECENTRALIZED Fiction Writing \u2013 Add a Chapter to My Story :-)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/writing/@claudiop63/decentralized-fiction-writing-add-a-chapter-to-my-story"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 5321925318916,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2429032704,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 7772229736,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 33069335139,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 148037431197,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6741143115703,
+        "rshares": 8506200796,
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692822335938,
+        "rshares": 602713487,
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136260156259,
+        "rshares": 177054757,
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 2158830848,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 61529762717,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 261811243723,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 9809062257,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 180705905,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 6149920815,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 294937368742,
+        "rshares": 18576486531,
+        "voter": "steemokto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2776074093344,
+        "rshares": 2035306454,
+        "voter": "ansharphoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 197268166,
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1352601752373,
+        "rshares": 595968715,
+        "voter": "runrudy"
+      }
+    ],
+    "author": "ansharphoto",
+    "author_reputation": 2776074093344,
+    "beneficiaries": [],
+    "body": "The Mausoleum of Hadrian, now known as Castel Sant'Angelo, housed the remains of the Roman Emperor Hadrian and his family. Unfortunately, when the castle was converted into a fort, the remains were scattered and building looted. We can only imagine the splendor of the decor and visiting the remains of the emperor.\n\n<a href=\"http://www.ansharphoto.com/Galleries/Cities/Italy/Rome/i-Wr4sGgX/A\"><img src=\"http://images.ansharphoto.com/2016/011-Ponte-Sant-Angelo-and-Castel-Sant-Angelo-in-the-Morning-Rome-Italy.jpg\" alt=\"Ponte Sant'Angelo and Castel Sant'Angelo in the Morning, Rome, Italy\" height=\"650\" width=\"976\" /></a>\nOctober 2013, single image, additional exposures for highlights, focal length 16mm, aperture f/11, shutter speed 131 seconds, ISO 100, ND 10-stop filter, tripod.\n\n<a href=\"http://www.ansharphoto.com/Galleries/Cities/Italy/Rome/i-Wr4sGgX/buy\">You can buy this photo as Fine Art Print >></a>\n\n<br>\nAs the plague rolled in during the dark ages, it is said Archangel Michael appeared atop the mausoleum sheathing his sword. Many saw this as a sign of the end of the plague of 590 AD. The rumor was prevalent enough for the powers at be to rename the Castel Sant\u2019Angelo. Other rumors propose the supposed angel was actually a statue as recorded by a traveler 1000 years later. Miracle or art, we\u2019ll never know. \n\nI spotted no angels on this shoot, but the morning and sunrise light were still good after my initials shots of the Saint Peter\u2019s Cathedral and Ponte Sant'Angelo. In a way, good light always seems like a miracle to a photographer! \n\nIt was starting to get bright out, but for some reason the lanterns and other artificial lights were still glowing. The lanterns offered some extra light to play with in my photo. Achieving long exposure in such a bright scene required me to put on my 10-stop neutral density filter. \n\nTo setup the scene I took the classic view from the embankment capturing the Castel Sant\u2019Angelo and Ponte Sant\u2019Angelo reflecting in the Tiber water. The wind did me a favor by pointing the cloud strikes to the castle creating a natural visual trail towards the main subject of this photo. All in all I was pleased with the results.\n\nThe post <a href=\"http://blog.ansharphoto.com/city-skyline/castel-santangelo-in-the-morning-rome/\">Castel Sant'Angelo in the Morning, Rome</a> appeared first in <a href=\"http://blog.ansharphoto.com/\">Anshar Photography Blog</a>.",
+    "body_length": 2410,
+    "cashout_time": "2016-09-20T17:04:51",
+    "category": "photography",
+    "children": 10,
+    "created": "2016-09-13T17:04:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"travel\",\"photo\",\"rome\",\"italy\"],\"image\":[\"http://images.ansharphoto.com/2016/011-Ponte-Sant-Angelo-and-Castel-Sant-Angelo-in-the-Morning-Rome-Italy.jpg\"],\"links\":[\"http://www.ansharphoto.com/Galleries/Cities/Italy/Rome/i-Wr4sGgX/A\",\"http://www.ansharphoto.com/Galleries/Cities/Italy/Rome/i-Wr4sGgX/buy\",\"http://blog.ansharphoto.com/city-skyline/castel-santangelo-in-the-morning-rome/\",\"http://blog.ansharphoto.com/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T17:00:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 5885563872863,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "3.349 HBD",
+    "percent_hbd": 10000,
+    "permlink": "castel-sant-angelo-in-the-morning-rome",
+    "post_id": 1233736,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Castel Sant'Angelo in the Morning, Rome",
+    "title": "Castel Sant'Angelo in the Morning, Rome",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@ansharphoto/castel-sant-angelo-in-the-morning-rome"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28089806677544,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1915876518994,
+        "rshares": 699862714517,
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30332684393673,
+        "voter": "smooth"
+      },
+      {
+        "percent": "3300",
+        "reputation": 51047995307721,
+        "rshares": 3285415788316,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 428017035820,
+        "rshares": 82757179887,
+        "voter": "friend5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 1231697645,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5681607884140,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158487994237,
+        "rshares": 49160688003,
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1082239289637,
+        "rshares": 264039819632,
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 345188197797,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1829863145814,
+        "rshares": 700848562903,
+        "voter": "marginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2369366055877,
+        "rshares": 73478378127,
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2526156006939,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7861629418,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 23459060358,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 131723450338,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6242317752527,
+        "rshares": 33790759559,
+        "voter": "lobotony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1301587831477,
+        "rshares": 22608066888,
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2165622245848,
+        "rshares": 3109492851,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19600886493,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14203054621,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 47079694777,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 175632532156,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87363750745142,
+        "rshares": 518414810499,
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "6004",
+        "reputation": 12382143533351,
+        "rshares": 373909536778,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 58550291797,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "1509",
+        "reputation": 2902053059801,
+        "rshares": 706760886,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3445407648199,
+        "rshares": 19108459602,
+        "voter": "bitswift"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 232022742550,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 383066566,
+        "voter": "maylong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 30797503151,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 9742132866,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 2093729289,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107416370639951,
+        "rshares": 1008663268203,
+        "voter": "rok-sivante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 451265235,
+        "rshares": 347511572,
+        "voter": "flexliv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 270356534192,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5092263832878,
+        "rshares": 15304433619,
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 19846366327,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2988407596343,
+        "rshares": 30777953044,
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6877012376448,
+        "rshares": 125872217043,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1506869846220,
+        "rshares": 4528762695,
+        "voter": "johan-nygren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53895098,
+        "rshares": 1690826655,
+        "voter": "ryan-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6627517,
+        "rshares": 287315486,
+        "voter": "mark-larkento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 44173392973,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2181554739322,
+        "rshares": 14289671048,
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 6846836651,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768666239960,
+        "rshares": 1294079780,
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 362176333,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "1500",
+        "reputation": 9956734090708,
+        "rshares": 6151465178,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192903029542,
+        "rshares": 254263935,
+        "voter": "bitnation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 754721997,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172326348,
+        "rshares": 244780222,
+        "voter": "thephoebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 27539166881,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5181663,
+        "rshares": 246676916,
+        "voter": "joseph.kalu"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2397831198773,
+        "rshares": 664558796,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 453318272,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 410870140669,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1681166546,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286954965413,
+        "rshares": 235530178,
+        "voter": "faltmast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3239029241,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1861971243,
+        "rshares": 534153937,
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "1000",
+        "reputation": 14988694886527,
+        "rshares": 32300376778,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 6690604200,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 77135933,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "1000",
+        "reputation": 58190631451,
+        "rshares": 2725918423,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 664257722,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 156369688,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2720074905,
+        "rshares": 103856286,
+        "voter": "topten"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1275505236,
+        "rshares": 1378777586,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 61911147,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 6210793279,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 63085782,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23875797716,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 24191580911,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "5978",
+        "reputation": 1751717743,
+        "rshares": 9911193534,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 7839276917,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3524384056312,
+        "rshares": 2332759687,
+        "voter": "armen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 579106277995,
+        "rshares": 65682844,
+        "voter": "onelove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 263567233,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 63570195,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 58467607,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66668369835,
+        "rshares": 93554943,
+        "voter": "garylachance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 57914427,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 57765027,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 10160878734,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 74494304,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 58653788,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 248913722,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 6131779298,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "100",
+        "reputation": 3814152361740,
+        "rshares": 254680718,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3537992772642,
+        "rshares": 39033176825,
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "2900",
+        "reputation": 13325577893779,
+        "rshares": 9282619614,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2860417334,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1792679303,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2857841,
+        "rshares": 60983768,
+        "voter": "mind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56165231,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670524723858,
+        "rshares": 1133917012,
+        "voter": "xjwf"
+      },
+      {
+        "percent": "5000",
+        "reputation": 64878458203,
+        "rshares": 728510194,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 2127687264,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55414210,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55396880,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55406673,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387660,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305959994445,
+        "rshares": 252834593,
+        "voter": "freerubens"
+      },
+      {
+        "percent": "3000",
+        "reputation": 11490547563070,
+        "rshares": 8019514474,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8407219570,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3704083901,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 161075603245,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53853911,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1615332211,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 87328717,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 11173826867,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 6632630585,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57495743,
+        "voter": "fexlom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12089632983,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961187,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78138793415,
+        "rshares": 82718473,
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59794878176,
+        "rshares": 77004567,
+        "voter": "chrisaiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 52842496,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52496656,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 5234387113,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269774223718,
+        "rshares": 805640399,
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53252658,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 17716449982,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52915101,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 646418000,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52560790,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25845450384,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 51003200,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51922012,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51994517,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53903585,
+        "voter": "erik93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 143296220,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5484672856,
+        "rshares": 53681027,
+        "voter": "marielynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2879218542317,
+        "rshares": 1415231685,
+        "voter": "bitfilm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52614987,
+        "voter": "dulcio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51484593,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50263480,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 197331756,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33079727229,
+        "rshares": 53885434,
+        "voter": "thegame"
+      },
+      {
+        "percent": "4500",
+        "reputation": 414609406210,
+        "rshares": 1515493330,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22237001004,
+        "rshares": 24840348514,
+        "voter": "blacktier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 109843313,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76034330,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154501261,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161196892,
+        "voter": "biabremer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160391389,
+        "voter": "mutdmour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160117497,
+        "voter": "eddielbc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2482595,
+        "rshares": 155770689,
+        "voter": "chicmagnet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3455684713,
+        "rshares": 159544932,
+        "voter": "leomaxzi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158262080,
+        "voter": "mielia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156109914,
+        "voter": "spfoia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155872089,
+        "voter": "samkary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153513171,
+        "voter": "thierrya3d"
+      }
+    ],
+    "author": "bitnation",
+    "author_reputation": 1192903029542,
+    "beneficiaries": [],
+    "body": "<html>\n<p><strong>Hi Steemizens! </strong>This is my first post on Steemit. I\u2019ll write a proper introduction in a not-too-distant future. I also plan to submit continuous updates on Bitnation, along with broader thoughts on the future of Virtual Nations and City States, Blockchain Applications, Virtual Jurisdictions, Cryptoanarchy, and more. I think Steemit is a wonderful way to empower Open Source Software (OSS) movements. But first, I want to give a yearly update on the STATE OF THE NATION: Bitnation</p>\n<p>/ Susanne Tarkowski Tempelhof, BITNATION Founder and Chief Unicorn</p>\n<p>(Image beneath featuring me and Alexandre Van De Sande in Rio de Janeiro, working on the DBVN protocol)</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/susanneandalex088fc.jpg\" width=\"1368\" height=\"912\"/></p>\n<p><br>\n<strong>Background</strong></p>\n<p><br>\nBITNATION started July 14th, 2014, when I shared <a href=\"https://docs.google.com/document/d/16HDB9AABa5rTOVFJj_8VLdOxgMguovLLAMviaTkZ1q4/edit?userstoinvite=fred.mazo@gmail.com,+btc@mundobitcoin.org&amp;pli=1\">this Google document </a>on Facebook, providing an overview of BITNATION\u2019s plan to build the world\u2019s first Blockchain Powered Virtual Nation. Within a few minutes volunteers from around the world gathered on Facebook and Skype and started discussing and promoting the concept.</p>\n<p><br>\nStarting Bitnation was challenging at first, because the concept was untested, and largely unheard of. Initially, the greatest confusion was around the word <em>governance</em>, because many people associated governance with decision making platforms, like democracy applications and other \u2018organizational governance\u2019 applications, rather than governance <em>services, </em>such as jurisdiction, security, etc. Two years on, the landscape is different. We\u2019ve implemented multiple proofs-of-concept (marriage, land titles, birth certificates, IDs, etc), explained the concept thoroughly in media, at meetups, and conferences, and a handful of others have leveraged the idea, and started implementing their own vision of it. The conceptual progress is tangible, but the greatest obstacle remains: mainstream adoption.</p>\n<p><br>\nWith mainstream adoption in mind, we spent over six month doing market research on what type of applications were used to conduct business in the fastest growing markets - emerging markets - where our services are needed to most, and in what way they were used. The result spoke loud and clear: smartphone chat applications. From WeChat in China, to WhatsApp in Brazil: everyone was on it, for business as well as pleasure. Hence, the road forward became obvious: we had to ditch the previous Pangea code, and start from scratch again, this time building our Blockchain Jurisdiction with a mobile phone chat interface.<br>\nStaying true to our principles, we had strict requirements: the application would need to be end-to-end encrypted, distributed and pseudonymous. After researching and testing several dozens of different codebases, we found Secure Scuttlebutt (SSBC), and its frontend applications, Patchwork and Patchbay. And thus, we begin Year 2: The Year of Pangea</p>\n<p><br>\n<em>Further Reading:</em></p>\n<p><br>\n<a href=\"https://blog.bitnation.co/what-is-bitnation-the-googlement/\">Pre-Foundational Document</a></p>\n<p><a href=\"https://docs.google.com/document/d/16HDB9AABa5rTOVFJj_8VLdOxgMguovLLAMviaTkZ1q4/edit\">Founding Document</a></p>\n<p><a href=\"https://docs.google.com/document/d/1r_VqWrKQw07E06XAtMv_cZnFyBZma4PFTBJpM5GuzbA/edit\">Whitepaper</a></p>\n<p><a href=\"https://github.com/Bit-Nation/BITNATION-Constitution\">Constitution</a></p>\n<p><strong><br>\nThe Year in Review</strong></p>\n<p><br>\n<strong>Highlights of the Past Year:</strong></p>\n<p><br>\n<em><strong>The \u2018Accidental Proof-of-Concept\u2019: Citizens, Embassies, Consulates, Allies and Nations</strong></em></p>\n<p><br>\nWhile we were preoccupied with building the initial Pangea Proof-of-Concept on the Horizon blockchain, what turned out to be the actual Proof-of-Concept, the <a href=\"https://bitnation.co/\">Bitnation website</a>, emerged more or less accidentally. It started with a discussion about the <a href=\"https://bitnation.co/team-directory/\">Team Page</a> while we were renewing our website. I stated that the conventional hierarchical \u2018team page structure\u2019, with executives, employees and so on wasn\u2019t quite philosophically consistent with our decentralized governance movement. Instead, we should adopt a \u2018no-barriers-to-entry model\u2019 like the Swedish Pirate Party initially embraced, enabling anyone who wanted to be part of the Team to simply join and start contributing, without the need for approval from any kind of formal nor informal authority. Said and done, Amin Rafiee implemented it beautifully.</p>\n<p><br>\nHundreds of people signed up as team members in the next few days, and many of them asked: \u201cDoes this mean I\u2019m a Citizen now?\u201d. Rather dumbfounded by the overwhelming request to become a Citizen through signing up on the website, we renamed the page to \u2018Citizen Directory\u2019 instead. And the signups kept on coming\u2026</p>\n<p><br>\nInspired by the instant Citizen signup success, we then added sign up as an Ally, sign up as an Embassy or Consulate, and most recently, sign up your Nation. Then the inevitable question arises: \u201cHow do we know these are real, well intentioned people, rather than spam accounts?\u201d. Someone bumped around the idea of manual vetting and approval, but it was quickly discarded by the community, for being a centralized and non-scalable approach. Instead, we came to consensus to experiment with a basic reputation system, a simplified e-Bay style implementation.</p>\n<p><br>\nAs the website gained more and more traction, a range of services were added, from our <a href=\"https://bitnation.co/notary/\">Public Notary</a>, to <a href=\"https://bitnation.co/education-network-ben/\">Education</a> and <a href=\"https://bitnation.co/citizen-security/\">Security Services</a>. In short, the website became a veritable governance service portal, within just a few months after its public launch in Q3/Q4 2015. At the time of writing, there are approximately 4000 Bitnation Citizens, as well as Embassies, Consulates and Allies spread throughout all continents (with the exception of Antarctica), connecting with the community, and using our governance services.</p>\n<p><br>\nAnd just like that, boom - a centralized and non-encrypted website, far from our puritanical Pangea vision, and devoid of any fancy code to speak of &nbsp;(besides the Blockchain ID and Notary) - became our rather arbitrary Minimum Viable Product (MVP). There it was, and it worked. Our much desired, yet very accidental, proof-of-concept :)</p>\n<p><br>\n<em><strong>Decentralized Borderless Voluntary Nation (DBVN) on Ethereum</strong></em></p>\n<p><br>\nOne year ago I estimated it would take Bitnation approximately five years to reach full decentralization. Luckily, I was proven brutally wrong. Thanks to the Ethereum technology, and Ethereum based applications such as Backfeed, the space has evolved exponentially in a surprisingly short time frame. Regardless of what one might think of the now-infamous The DAO - the initial enthusiasm surrounding its rather spectacular launch indicated a clear market desire for Decentralized Autonomous Organizations (DAO\u2019s), a moment I had been eagerly awaiting since I started to research and write about DAO\u2019s at end of 2013.</p>\n<p><br>\nEarlier this year, in January, I was in communication with Alexandre Van De Sande, a very talented Ethereum designer and frontend developer. We were both in Brazil, Rio de Janeiro at the time, and we decided to get together in person to launch Bitnation\u2019s organizational structure on the Ethereum blockchain, as a customized version of Ethereum\u2019s MIST Wallet DAO code, the DBVN.</p>\n<p><br>\nKey differences between the DAO and the DBVN protocols are inclusion of the constitution on the blockchain, as well as code that attempts to reflect a more holocratic decision making processes, instead of the more commonly adopted democratic process. In my view, democracy is an outdated form of \u2018coercion by the majority\u2019, and from what we\u2019ve been privileged to observe over the last decade, organizations such as The Pirate Party, The Pirate Bay, Anonymous, Linux and, to some extent, even Bitcoin itself, a holocratic model appears to offer greater degree of personal autonomy.</p>\n<p><br>\nAs with most things blockchain, the DBVN code is in an early experimental phase at this time, our concept is significantly more ambitious than its current implementation. Fundamental to our philosophy, the holocratic elements will need significant improvements -- more specifically; the ability to instantly create \u2018holons\u2019 - autonomous and semi-autonomous groups which remains a part of the \u2018Genesis Nation Holon\u2019 infrastructure. This brings us to our second DBVN Code ambition: a full merger into the Pangea protocol.</p>\n<p><br>\nThe aim of Pangea isn\u2019t merely to be an OSS Blockchain Jurisdiction --- beyond its own dispute resolution services, its intent is to enable groups and individuals to create their own Nations and Holons straight onto the Pangea platform, without the need to fork and modify the source code, or have any coding knowledge whatsoever. We\u2019re in the process of designing the Nation and Holon creation functionality through SSBC/ Patchwork/ Patchbay\u2019s public nodes and chat channel infrastructure.<br>\n</p>\n<p>DBVN Ethereum Address: 0x5aaeb6053f3e94c9b9a09f33669435e7ef1beaed</p>\n<p>Watch the Video: https://www.youtube.com/watch?v=x9UR7aVlF1A</p>\n<p>Contribute to the Code:&nbsp;</p>\n<p>https://github.com/Bit-Nation/BITNATION-Constitution/blob/master/DBVN.sol</p>\n<p>https://github.com/Bit-Nation/BITNATION-Constitution/blob/master/profit-share.sol</p>\n<p>Read the first Code Audit, and Patch: https://medium.com/@crypto_nation/report-recursive-call-vulnerability-in-dbvn-sol-471d99e30659#.skrvxtg4i</p>\n<p><br>\nAdditionally, to foster increased innovation in the \u2018Virtual Nation Building\u2019 space, we have set up a hub for aspiring Nation Founders, where we can connect to, support and learn from each other. There\u2019s also Virtual Nation building resources, including OS Constitutions, Codes of Laws, DBVN setup instructions, and more. We hope this initiative will help other Virtual Nations to blossom, to create an amplifying effect on social and technological development speed in our shared space -- our shared ambition.</p>\n<p><br>\nDuring the DBVN process, we also recreated the Bitnation dividend paying cryptoequity token, XBN, on the Ethereum blockchain, to replace the XBNX tokens previously created on the CounterParty protocol. We have not yet released XBN on the market, because we\u2019re in the process of burning the previous XBNX CounterParty tokens, and enabling an XBNX to XBN Swapbot for the tokens that are currently in circulation. (If you have experience in the token burning and automated swapping field and want to contribute, please reach out to us)<br>\nFor decentralized fund allocation amongst the contributor community, we\u2019re working with Backfeed, a Slack chat plugin built on the Ethereum technology. Backfeed enables the contributor community (whether they\u2019re developers, administrators, marketing people, or others) to create projects, submit contributions, and get paid instantly for it, without the need for any type of top-down approval. Amongst all the \u2018organizational governance\u2019 applications we\u2019ve tested, from Colony to Boardroom and SwarmBot -- Backfeed is by far the most suitable to Bitnation\u2019s open and rapidly evolving community nature.<br>\n</p>\n<p>We\u2019re currently using many centralized platforms for our own organizational management, from Slack to Trello, Taiga to Google Drive, etc. However, I believe we\u2019ll be able to replace those applications -- eliminating the most significant centralized points of failure in the near future -- between the implementation of Pangea and Backfeed, and other technologies, like IPFS, Swarm etc. All these technologies exists, but they\u2019re generally in early Alpha or Beta, and many of them lack a non-developer friendly frontend, making its usage rather non-intuitive, as for now.</p>\n<p><br>\nFor our public communication needs, overtime we plan to shift our efforts from traditional platforms like Facebook and Twitter, to emerging blockchain based platforms, such as Steemit and Synero.</p>\n<p><strong><br>\n</strong><em><strong>In the Spotlight: BITNATION Refugee Crisis Emergency Response (BRER) and Public Notary Partnership with Estonia\u2019s e-Residency Program</strong></em></p>\n<p><br>\nSecond of September 2015 the photo of Alan Kurdi, the 3 year old Syrian boy in a bright red shirt, lying dead on a beach in Greece, shook the world, and the Bitnation community -- many of whom are open borders advocate, digital nomads, migrants, and more often than not, consider ourselves \u2018World Citizens\u2019 first and foremost. As Alan\u2019s photo made it around the world media, I was already living with stateless refugees in Turin, northern Italy, trying to assist them with their asylum processes, simply because they were my former employees from years back, during the time I worked in warzones, and I felt it was my duty to try help them to the best of my ability, just like they had always helped me when I was in their environment.</p>\n<p><br>\nOne of the magical aspects of Open Source Communities and Movements, is their ability to instantly gather and rally around a cause, as we\u2019ve seen movements like the Pirate Party and Anonymous do - and that was precisely what happened. Instantly, hundreds of activists gathered on our Slack chat, and in less than a week we had built a website for refugees, including a free Blockchain ID, Bitcoin Debit Cards, maps and forums. Later on, we updated the ID to the more sophisticated WORLD CITIZEN ID, which is also free.</p>\n<p><br>\nOne thing led to another, and while we were speaking to various UN agencies and NGO\u2019s to get the IDs accepted as temporary ID documents for paperless people, we were approached by the Government of Estonia. Most of the Bitnation community are dedicated anarchists who are not generally keen on working with governments, but in our enthusiasm to help refugees to cross borders, we realized we needed more recognition for our Nation from legacy entities, and Estonia\u2019s e-Residency program is famous for having an open mindset when it comes to \u2018global citizenship\u2019: hence we entered into a partnership with them to build a Blockchain Notary, and thus we became the first Virtual Nation in the world to be recognized by a Nation State. To put it in e-Estonia\u2019s own words:</p>\n<p><br>\n<em>\"In Estonia we believe that people should be able to freely choose their digital/public services best fit to them, regardless of the geographical area where they were arbitrarily born. We're truly living in exciting times when nation states and virtual nations compete and collaborate with each other on an international market, to provide better governance services.\"</em> - Kaspar Korjus, Estonia\u2019s e-Residency Director<br>\n</p>\n<p>And thus, the Public Notary was built a few weeks later, including login and digital signatures, and has since been used for everything from Marriages to Wills, to Birth Certificates, to Business Deals, Employment Contracts, and Lending Contracts, and the list goes on...</p>\n<p><br>\n<em><strong>3rd Party Applications and Services - Basicincome.co, Dragonfly and Exosphere</strong></em></p>\n<p><br>\nCore to the governance service proposition, is the aggregation of services, which includes selection and vetting of vendors and bulk price negotiations. To that end, we have identified and partnered with a few cutting edge organizations for peer-to-peer insurance, security, and education. We aim to increase the number of partnerships in the year ahead.</p>\n<p><br>\nThe Exosphere bootcamp program is on its second round, offering Bitnation citizens a 1000 Euro discount. Special thanks to Moritz Bierling from Exosphere for organizing it. You can read about the first round here. The first insurance component to be enabled is Johan Nygren\u2019s Basic Income protocol, based on voluntary participation, similar to that of a mutual insurance. Johan has worked on the protocol for several years, and has lately been developing it on Ethereum. We\u2019re preparing to run the first tests of a simplified version of the protocol within the Bitnation core contributors group.</p>\n<p><br>\n<strong>Challenges and Lessons Learned:</strong></p>\n<p><br>\n<em><strong>Technical Challenges I - Blockchains and Smart Contracts</strong></em></p>\n<p><em><strong><br>\n</strong></em>The foundational document for Bitnation stated our intention was to build on Ethereum, because of its near Turing completeness enabling Smart Contract functionalities. Ethereum at the time, however, was far from being released, and the community felt the urge to produce a proof-of-concept to get real world testing and usage of our idea. In retrospect, it might have been better to build on the Ethereum testnet right away, rather than using other blockchains. But social and financial pressure pushed us to choose the most suitable alternative out there at the time: the NXT/ Horizon technology, and make the best out of it until Ethereum became functional. We\u2019ve now switched over to Ethereum development, as originally planned.<br>\n</p>\n<p>However, Ethereum isn\u2019t a \u2018silver bullet\u2019 either - suffering from internal governance issues, security vulnerabilities inherent to Turing capabilities, and an immature infrastructure in terms of exchanges, wallets, etc. Hence, Ethereum is also a bit of a \u2018wild bet\u2019, albeit a very promising one - due to its original ideas, stellar implementation, and a large, vibrant community backing it.<br>\n</p>\n<p>Rootstock - a Bitcoin blockchain based smart contract platform - which will likely be publicly released this year and, from what I\u2019ve read, they\u2019ve pledged to use the same Smart Contract language as Ethereum - Solidity - to increase cross-platform portability. Ultimately, we would like to give people the choice of what blockchain to use for their agreements as easily as they can choose their code of law and arbitration method on Pangea. That\u2019s of course an optimistic ambition at this time, but if the crypto community stays as innovative and active as it currently is, I do dare to believe that some sort of bridge functionality we can incorporate into Pangea will emerge in the next year ahead.</p>\n<p><br>\nAnother platform we\u2019re keeping tabs on is Tauchain. Tauchain claims, among other features, to solve some of the security issues around smart contracts, through <em>not </em>being Turing complete. We\u2019re looking forward to see how it will pan out, once it\u2019s been released and tested on the market.</p>\n<p><strong><br>\n</strong><em><strong>Technical Challenges II - User Behavior (Chat versus Social Networking)</strong></em></p>\n<p><br>\nSocial networking platforms, such as Facebook and LinkedIn, has been the dominant social media arena over the last decade. Thus, it\u2019s intuitive to attempt to replicate that format. But the numbers don\u2019t match up -- in the fastest growing markets, the emerging markets around the world where our services are most needed, the so called \u2018next eleven\u2019, Facebook comes across as rather \u2018yesterday\u2019. Albeit a +1 billion person adoption, more and more people are switching over to chat applications to conduct their day-to-day bussines (special thanks to Gene Vangryeb from Tradle.io for his insightful thoughts on this). The change is largely due to the choice of smartphone rather than laptop as the go-to-device, and it turns out chat is more intuitive as a way to communicate on a smartphone, rather than a \u2018publishing platforms\u2019 such as social networks. Using social network platform as an inspiration was a significant mistake, indeed, our one most significant mistake. All transactions starts with a <em>conversation</em>. Whether getting married, or trading a real estate asset, it\u2019s all based on a dialogue between mutually consenting parties. More and more of these conversations take place online, as business as well as personal relationships increasingly move into the digital sphere.</p>\n<p><br>\nChatting with a blockchain as a backend infrastructure is incredibly expensive -- imagine paying miners\u2019 fees for every chat message you send. Sure, there are ways around it, like using a blockchain testnet instead of the live blockchain, and other fixes, but those are all rather clunky \u2018solutions\u2019. Hence, we decided to swallow our pride, ditch the code, and start from scratch again. This time around with a decentralized communications protocol as the source code (SSBC/ Patchbay) and integrate the blockchain functionalities (timestamping and smart contracts, more specifically) \u2018on top of it\u2019 instead, hence not being dependent on any one blockchain.</p>\n<p><strong><br>\n</strong><em><strong>Lack of Documentation</strong></em></p>\n<p><br>\nOne of our most fatal mistakes, in the first iteration of the Pangea software a year ago, was the lack of documentation. When we initially created Pangea, we were eager to produce a proof-of-concept, to make our idea more tangible to the community and early adopters. In the speed and enthusiasm that unfolded in the early stage of development, the documentation suffered. As much as we produced code, there was nearly zero documentation to support it. In an Open Source Software (OSS) environment, dependent on volunteers coming and going, on their own initiative, throughout different time zones, languages and cultures, it\u2019s key to be able to provide a direct, comprehensible and actionable overview of the software being built, so community members can instantly understand what needs to be done, and where their skills fit into the picture. However, we failed to do so. Hence, we became dependent on a few contributors, rather than the community at large, indeed a risky place to be in. Many volunteers wanted to contribute to Pangea, but there was no documentation to instruct them how to take it forward. In other words, the code was a jungle.</p>\n<p><br>\nIt was a hard lesson to learn, but I\u2019m happy we learned it early on in the process, and can change our \u2018modus operandi\u2019 for this Pangea iteration. We\u2019ll now put documentation at the highest priority, even if it means delivery speed might suffer as a consequence at times.</p>\n<p><strong><br>\n</strong><strong>Objectives For The Year Ahead:</strong></p>\n<p><br>\n<em><strong>Bitnation Pangea Development</strong></em></p>\n<p><em><strong><br>\n</strong></em><strong>Why Build A Jurisdiction?</strong></p>\n<p><br>\nA nation is a broad definition, covering several aspects, from its original term of \u2018people with shared culture and values coming together with some sense of political autonomy\u2019 - as per the Wikipedia definition - to our modern definition of governance service providers, and governance service aggregators.</p>\n<p><br>\nToday we expect governments to provide us with nearly everything - from education to energy infrastructure, food regulations to social security - and the list seems to grow by the day. However, if we break the government down to its essential functions, according to the \u2018Nightwatchman State model\u2019 as championed by Robert Nozick - the government's core purpose only really comes down to the protection of property - i.e. the provision of security and jurisdiction. Note: property is a broad term, not solely referring to property as in land, items, etc. Property starts with ownership of yourself, your body, your time, your aspirations, etc.</p>\n<p><br>\nIn the digital age, security and jurisdiction are increasingly becoming the same thing, as more of our assets (money, asset records, work etc) become digital. Furthermore, the extremely rapid development of Smart Contract technology opens new horizons in terms of creating online agreements with a range of built in automated functions (fund and token distribution, escrow, insurance, timestamping, decision making levels, etc). Hence, it makes sense for Bitnation to focus on building a Blockchain Jurisdiction as its core functionality.<br>\nWithin the smart contract functionality, sophisticated governance applications can already be built directly by end-users, such as mutual insurances, constitutions, etc.</p>\n<p><br>\nImagine solving a dispute by sending a heart <3 emoticon. An emoticon that calls upon Ethereum Smart Contract functionality - including an embedded escrow account - according to the code of law and the arbitration method that you have chosen for yourselves - and all of it in less than two minutes, from the comfort of your own phone. Our aim with the Pangea platform is to empower people to make sophisticated legal agreements simply through the use of emoticons in a smartphone chat interface. The frontend will be built using React.JS, as originally planned, because it\u2019s better suited for mobile first applications.</p>\n<p><br>\n<strong>Initial Technical Overview</strong></p>\n<p><br>\nThe codebase we\u2019re using is Secure Scuttelbutt (SSBC), a distributed and end-to-end encrypted messaging protocol, and its frontend application Patchbay. It\u2019s more decentralized than other chat applications currently on the market, including Signal.</p>\n<p><br>\nDecentralized storage will be done through integrating IPFS as well as Swarm (the Ethereum powered storage application) on the frontend layer. Initially our plan is to integrate functions calling on the Ethereum chain for smart contract creation and execution, but we hope we\u2019ll be able to use Rootstock and other protocols in the future, in addition to Ethereum. The platform however is <em>not</em> blockchain based.</p>\n<p><br>\nThe pseudo-anonymous ID/ Verification/ Reputation functions will be built from the ground up, on the advice of Dominic Tarr, the SSBC inventor, although we\u2019ll use some of the digital signature features developed for Bitnation\u2019s World Citizenship ID by Johan Paulsson, Andrew Golighty, Mawo, SGShankar and others. Additionally, we\u2019re drawing inspiration from the identi.fi philosophy, developed by Marrti Malmi.<br>\n</p>\n<p><strong>Participants, Messages &amp; Channels</strong><br>\n</p>\n<p>Pseudo-anonymous identities provide the critical separation between a citizen\u2019s thoughts and actions and the potential for coercion of their physical bodies in order to restrict or control those thoughts and actions. Pseudo-anonymous identities are thus, by design, a declaration of independence from centralised governance models. For them to have meaning they must have three elements. Firstly, and obviously, the protocol that enables pseudo-anonymous identities to to be created, secondly the process for verifying an identity (which can range from social network verification to uploading a copy of a utility bill, for instance), and lastly, and most importantly, the reputation system, which is built over time and represents the judgement of each citizen\u2019s community of their willingness and ability to honour and arbitrate contracts.</p>\n<p><br>\nFor internal management, BITNATION uses a holacratic governance model. The underlying principle is that all BITNATION citizens are free to create their own holons, and ultimately their own Nations, without any barrier to entry or need for technical knowledge. SSBC provides the means for BITNATION adherents to create their own holons and Nations without any requirement for centralised approval. &nbsp;&nbsp;&nbsp;</p>\n<p><br>\n<strong>Contracts, Contract Arbitration Models, Contract Enforcement Models and Incentives Models</strong><br>\n</p>\n<p>Sovereignty starts with the ability of individuals to make consensual agreements with others. We consent to give our sovereignty to Nation States by believing their rhetoric: that only Nation States can uphold those agreements. But what if we could make and enforce contracts without third party intermediaries who choose to use that power to enforce their methods upon us? Just as citizens can choose their own code of law, they must also be able to choose their own preferred method of arbitration. These can range from choosing a trusted arbitrator to mediate contract disputes to utilising a crowd jury to make final judgements. A voluntary contract must also mean that citizens can choose from a range of enforcement methods. These could include reputation, escrow or physical enforcement (peer-to-peer security). We anticipate that the most widely used form of contract enforcement will be the reputation system. &nbsp;</p>\n<p><br>\nWe believe that financial incentives hold promise for the future. To that end we are exploring a range of financially incentivised models for dispute resolution where participants get rewarded for honouring contracts, building their reputation, and providing arbitration services. However, there will be no \u2018dispute resolution\u2019 token anytime soon, although we\u2019re monitoring current token platform incentive models for potential future usage.<br>\n</p>\n<p><em><strong>Potential Synergies</strong></em></p>\n<p><br>\nIn light of the release of Ethereum, and the subsequent growing Smart Contract field, many initiative centered around peer-to-peer law, security and jurisdiction services are being experimented with. I would like to take the opportunity to mention a few of the most interesting ones in our field, whom I hope, moving forward, we\u2019ll be able to learn from, and potentially collaborate with.</p>\n<p><br>\nBitrated: Bitrated was the first well known attempt to implement Bitcoin based dispute resolution. They created a user-friendly, intuitive proof-of-concept, including basic escrow and reputation features. We\u2019ve always been impressed and inspired by Bitrated, and hope we can collaborate in the future.</p>\n<p><br>\nDecentralized Arbitration and Mediation Network (DAMN): DAMN is an Ethereum based dispute resolution protocol proposed by the well known Bitcoin expert Andreas Antonopoulos and the Attorney Pamela Morgan. The aim of DAMN differs from Bitnation, in the sense they aim to create a legal platform compatible with existing Nation State Jurisdictions, rather than creating an independent blockchain Jurisdiction. However, we\u2019re positive we can gain valuable insights from their work, and we will follow their progress closely.</p>\n<p><br>\nULEX: ULEX is an attempt by Chapman University Professor Tom W. Bell to code a simplified and modulable code of law, based on Common Law. While Bitnation firmly believes in Polycentric Legal Models, i.e. multiple competing codes of law, we recognize this particular code of law holds a lot of promise, and will work to integrate it as soon as there\u2019s a working version of it.&nbsp;</p>\n<p><br>\nReputation Systems: I would like to give a shout out to Steemit and Synereo for their work on token based reputation systems, which we\u2019ll study in depth for potential future usage, as well as identi.fi, a non-blockchain based reputation system, which we draw most of our ID/Rep inspiration from, specifically in terms of \u2018good anti-social behaviour strategy\u2019 in the context of whitelisting versus blacklisting methodology.</p>\n<p><br>\nThank you for the interesting technologies and the community contribution you\u2019re doing with your work.</p>\n<p><br>\n<strong>Join The Governance Decentralization Movement</strong><br>\n</p>\n<p><a href=\"slack.bitnation.co\">Slack</a></p>\n<p><a href=\"https://github.com/Bit-Nation\">GitHub</a></p>\n<p><a href=\"https://bitnation.co/\">Website</a></p>\n<p><a href=\"https://twitter.com/MyBitNation\">Twitter</a></p>\n<p><a href=\"https://www.facebook.com/MyBitnation/\">Facebook</a></p>\n<p><br>\n\"<em><strong>I am the seasoned traveler</strong></em></p>\n<p><em><strong>Of the Labyrinth.</strong></em></p>\n<p><em><strong>The genius of alacrity,</strong></em></p>\n<p><em><strong>Wizard of the impossible.</strong></em></p>\n<p><em><strong>My brilliance is yet unmatched</strong></em></p>\n<p><em><strong>In its originality.</strong></em></p>\n<p><em><strong>My heart\u2019s filled with potent magic</strong></em></p>\n<p><em><strong>That could cast a hundred spells.</strong></em></p>\n<p><em><strong>I am put together</strong></em></p>\n<p><em><strong>For mine own pleasure</strong></em></p>\n<p><em><strong>I am the Monkey\"</strong></em></p>\n<p><br>\nChinese poem on The Year of the Monkey - 2016<br>\n</p>\n</html>",
+    "body_length": 32391,
+    "cashout_time": "2016-09-19T07:21:06",
+    "category": "introduce-yourself",
+    "children": 29,
+    "created": "2016-09-12T07:21:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduce-yourself\",\"introduceyourself\",\"blockchain\",\"bitnation\",\"anarchy\"],\"image\":[\"https://www.steemimg.com/images/2016/09/11/susanneandalex088fc.jpg\",\"https://img.youtube.com/vi/x9UR7aVlF1A/0.jpg\"],\"links\":[\"https://docs.google.com/document/d/16HDB9AABa5rTOVFJj_8VLdOxgMguovLLAMviaTkZ1q4/edit?userstoinvite=fred.mazo@gmail.com,+btc@mundobitcoin.org&pli=1\",\"https://blog.bitnation.co/what-is-bitnation-the-googlement/\",\"https://docs.google.com/document/d/16HDB9AABa5rTOVFJj_8VLdOxgMguovLLAMviaTkZ1q4/edit\",\"https://docs.google.com/document/d/1r_VqWrKQw07E06XAtMv_cZnFyBZma4PFTBJpM5GuzbA/edit\",\"https://github.com/Bit-Nation/BITNATION-Constitution\",\"https://bitnation.co/\",\"https://bitnation.co/team-directory/\",\"https://bitnation.co/notary/\",\"https://bitnation.co/education-network-ben/\",\"https://bitnation.co/citizen-security/\",\"https://www.youtube.com/watch?v=x9UR7aVlF1A\",\"https://github.com/Bit-Nation/BITNATION-Constitution/blob/master/DBVN.sol\",\"https://github.com/Bit-Nation/BITNATION-Constitution/blob/master/profit-share.sol\",\"https://medium.com/@crypto_nation/report-recursive-call-vulnerability-in-dbvn-sol-471d99e30659#.skrvxtg4i\",\"slack.bitnation.co\",\"https://github.com/Bit-Nation\",\"https://twitter.com/MyBitNation\",\"https://www.facebook.com/MyBitnation/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T07:41:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 76342791473468,
+    "parent_author": "",
+    "parent_permlink": "introduce-yourself",
+    "pending_payout_value": "431.620 HBD",
+    "percent_hbd": 10000,
+    "permlink": "bitnation-yearly-summary-the-year-of-pangea-by-tarkowski-tempelhof",
+    "post_id": 1217314,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "BITNATION  Yearly Summary - The Year Of Pangea - By Tarkowski Tempelhof",
+    "title": "BITNATION  Yearly Summary - The Year Of Pangea - By Tarkowski Tempelhof",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduce-yourself/@bitnation/bitnation-yearly-summary-the-year-of-pangea-by-tarkowski-tempelhof"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30963839462387,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726606963,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524622404,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 821039972,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66102267463,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996747311,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256577770,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5795877365182,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 698585501988,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750189664,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168132240,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "7600",
+        "reputation": 5296864583034,
+        "rshares": 51961298450,
+        "voter": "ilanaakoundi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346070380,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 81751922217,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11005902935,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 76670473746,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62974883695,
+        "rshares": 542833790,
+        "voter": "pinnpe"
+      },
+      {
+        "percent": "674",
+        "reputation": 12382143533351,
+        "rshares": 44862313286,
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 61060303,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 376960001789,
+        "rshares": 735303258,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "300",
+        "reputation": 5414208804644,
+        "rshares": 1334348365,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 7966340400,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 43862346633,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 982799520,
+        "voter": "coar"
+      },
+      {
+        "percent": "666",
+        "reputation": 2902053059801,
+        "rshares": 353351990,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 11310608512,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 80105016983,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 51561874125,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 367610195624,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 114878892399,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 18601449723,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 52827905221,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 91839799045,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 3369106640,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 30881138467,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 369419860,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3732400501,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 57994119092,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "500",
+        "reputation": 9956734090708,
+        "rshares": 2306799441,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 10243974525,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 538646035702,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 90553059,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 17920414554,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10633723041,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 12188573675,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 773879013,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3869692830,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 83046076405,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851264493766,
+        "rshares": 3302179419,
+        "voter": "begstreets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1386339611284,
+        "rshares": 2926445780,
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 178673337188,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 75057225722,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 748586302572,
+        "rshares": 724596281,
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "6000",
+        "reputation": 14544132145555,
+        "rshares": 6634559362,
+        "voter": "pcste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 13633005273,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3771796980,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5470500283,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 91700864173,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 6308132719,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 51402486,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6377009195,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "8400",
+        "reputation": 7172977970558,
+        "rshares": 3320669846,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 32225415319,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 10857182852,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 11198164112,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "100",
+        "reputation": 4063076365725,
+        "rshares": 116519557,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5005571071,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 6220971135,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1075326746,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 4744028064,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 10612838380,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 3604092416,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 17279737369,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 16703453272,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "674",
+        "reputation": 1751717743,
+        "rshares": 1189176818,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6906656455,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1828714169,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 55022014,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 119906036,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 1160710552,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 10129755378,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 1834344112,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3606072514,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 6201928728,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "100",
+        "reputation": 3814152361740,
+        "rshares": 254680718,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "2200",
+        "reputation": 13325577893779,
+        "rshares": 7140180678,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4776396970,
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 7980606923,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 12229863740,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 16019574880,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8407212528,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3473078581,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 2124114858,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3749012705250,
+        "rshares": 7196370032,
+        "voter": "alexandre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 3932626457,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 685025499002,
+        "rshares": 1285880803,
+        "voter": "yzomri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7306624703593,
+        "rshares": 16011081559,
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 655677861764,
+        "rshares": 56265089,
+        "voter": "yetaras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6232933391430,
+        "rshares": 573911846,
+        "voter": "edgarsart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 5834273138,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 90938149523,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 52314834,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 214944331,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19076013927,
+        "rshares": 55470360,
+        "voter": "skinimin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85894212338,
+        "rshares": 65629215,
+        "voter": "greatdabu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 93729189,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2074375314979,
+        "rshares": 359415875,
+        "voter": "aksinya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 83052261,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 2896201327,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 361135016,
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 149226307,
+        "voter": "edward.shroder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3226000976856,
+        "rshares": 2696735310,
+        "voter": "lscottphotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1765060868967,
+        "rshares": 146492230,
+        "voter": "modernbukowski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158532208,
+        "voter": "landria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251629303655,
+        "rshares": 10248469295,
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153075466,
+        "voter": "william007"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>Further to my <a href=\"https://steemit.com/photography/@thecryptofiend/gabriella-evolution-of-an-image-from-camera-to-photoshop\">previous tutorial using a different photo of Gabby</a> here is another tutorial where I am to go from start to finish. &nbsp;In this case I am going to do it in 2 parts since the post length was getting too long. &nbsp;In this first part I will just cover basic adjustments in Lightroom and blemish removal (mainly) in Photoshop. &nbsp;If you are unfamiliar with any of these techniques I would suggest going back to my previous tutorial mentioned above and these other 2 tutorials: <a href=\"https://steemit.com/photography/@thecryptofiend/quick-portrait-retouching-in-lightroom-tutorial\">Quick Portrait Retouching in Lightroom </a>and <a href=\"https://steemit.com/photography/@thecryptofiend/how-to-fix-damaged-photos-in-photoshop-tutorial-with-example-image\">How to Fix Damaged Photos in Photoshop.</a></p>\n<p><em>In the second part I will use some of the techniques I covered in </em><a href=\"https://steemit.com/photography/@thecryptofiend/easy-black-and-white-portrait-conversion-using-nik-silver-efex-pro-2-photography\"><em>my tutorial on black and white conversion</em></a><em> in Nik Silver Efex Pro 2.</em></p>\n<hr />\n<h1>Lightroom Edits</h1>\n<p>Here is the initial .NEF or RAW image in Lightroom. &nbsp;It looks a bit dull.</p>\n<h3>Exposure Adjustment</h3>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_011beda.png\" width=\"800\" height=\"458\"/></p>\n<p>So I am going to increase the exposure a little to + 0.70. &nbsp;There is some mild clipping of whites in the histogram but I am not too concerned about that.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_02b00b7.png\" width=\"241\" height=\"594\"/></p>\n<h3>Some Quick Blemish Removal</h3>\n<p>I'm also going to use the Spot Heal tool to do some basic blemish removal. &nbsp;This isn't absolutely necessary because I'm going to be doing more blemish removal in Photoshop. &nbsp;There are a few things that stand out and are fine to remove using the more basic LR tool. &nbsp;For example the piercing in Gabby's ear stands out because she isn't wearing an earring in this ear. &nbsp;So I've removed that.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_04e6452.png\" width=\"800\" height=\"487\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_03be1d6.png\" width=\"283\" height=\"343\"/></p>\n<p>The Spot removal tool is the large circle to the right of the crop tool symbol (9 part rectangle).</p>\n<p>Now I'm ready to Open the Image in Photoshop. &nbsp;So I right click on it Edit&gt;Edit in Adobe Photoshop CC and that opens it in a new Photoshop window.</p>\n<hr />\n<h1>Photoshop Editing</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_06d03ac.png\" width=\"800\" height=\"454\"/></p>\n<p>The first thing in PS is to create a new layer Cmd(Ctrl in Win)+Shift+N is the shortcut to do this. &nbsp;I am going to name the new layer Skin.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_0576e41.png\" width=\"755\" height=\"266\"/></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_1256676.png\" width=\"276\" height=\"377\"/></p>\n<p>I'm mainly going to use the spot healing brush tool to remove blemishes. &nbsp;This comes down to subjective judgement but as I've said before you don't want to remove too much as you will lose skin detail. &nbsp;It doesn't matter quite as much for a photo like this compared to say an extreme close up shot of the face where overdone retouching will just look plain weird.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_0719cbc.png\" width=\"800\" height=\"585\"/></p>\n<p>One of the ways to do this and decide what to remove and what to keep is to look at the colour of blemishes. &nbsp;I tend to remove large red blemishes as these tend to be signs of inflammation. &nbsp;Leave smaller ones as that is a part of natural skin texture. &nbsp;I also leave any brown marks as these are freckles and moles and tend to add character to the face and skin. &nbsp;Nobody, no matter how great their skin is, is free from these so completely removing them can look odd.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_08e8920.png\" width=\"684\" height=\"385\"/></p>\n<p>Keep Zooming in and out to get an overall impression of the face.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_09bfd43.png\" width=\"800\" height=\"588\"/></p>\n<p>Here I can see the face doesn't really need any more work.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_109d71c.png\" width=\"800\" height=\"589\"/></p>\n<p>Normally I wouldn't remove the blemishes on the arms very much but on the zoomed out photo they are distracting from the face.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_13aeb27.png\" width=\"800\" height=\"590\"/></p>\n<p>Due to the distraction that they were creating I've removed more blemishes than I would normally on the arms. &nbsp;If you feel you have gone too far you can always use a layer mask to paint them in or out depending on what you want to do. &nbsp;You can also reduce the opacity of the entire layer. &nbsp;Since this is not a photo where the arms are the main subject it really is not so important. &nbsp;So I will just leave them like this (below).</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_14c803e.png\" width=\"800\" height=\"591\"/></p>\n<hr />\n<h1>Save and Reopen in Lightroom</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_1517fbb.png\" width=\"800\" height=\"592\"/></p>\n<p>Here is the zoomed out view. &nbsp;The photo looks done to me. &nbsp;So I will save it and close Photoshop. &nbsp;This will take me back to Lightroom. &nbsp;This means that I have a basic copy of the colour photo that has been retouched and I can use as a basis for more creative changes. &nbsp;</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_1762278.png\" width=\"800\" height=\"449\"/></p>\n<p>If I want to change it again I will either create a virtual copy first (just right click and it is in the main menu) or when using an external editor like PS or SEP2 I will select the option to \"Edit a Copy with Lightroom Adjustments\". &nbsp;This way I will always have the base retouched version of the colour photo to go back to if I need it.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/ScreenshotGEOAI_02_1658f94.png\" width=\"645\" height=\"474\"/></p>\n<p>For part 2 of this I will take this photo and do a black and white conversion in Nik Silver Efex Pro 2.</p>\n<hr />\n<h1>The Final Photos</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_3503of31853b.jpg\" width=\"350\" height=\"524\"/><img src=\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_3502of33a670.jpg\" width=\"350\" height=\"524\"/></p>\n<h3>Before &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;After</h3>\n<p>The difference here is quite subtle and difficult to see at this small size. &nbsp;I have added larger versions below so you can see it more clearly.</p>\n<hr />\n<h1>Large Versions</h1>\n<h3>Original:</h3>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_8003of385831.jpg\" width=\"800\" height=\"1199\"/></p>\n<h3>Edited and Retouched:</h3>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_8002of3ed2c9.jpg\" width=\"800\" height=\"1199\"/></p>\n<hr />\n<p>If you like my work please follow me and check out my previous photography work and tutorials &nbsp;@thecryptofiend - hope you enjoy.</p>\n<hr />\n<h1><em>Technical Information:</em></h1>\n<ul>\n  <li><em>Nikon D800 Camera</em></li>\n  <li><em>Sigma 24-70mm/2.8 lens, Natural light with a reflector and window backlighting. Camera Settings image below.</em></li>\n  <li><em>Adobe Lightroom CC and Photoshop CC for processing.</em></li>\n  <li><em>Model is Gabriella Kennedy.</em></li>\n</ul>\n<p><img src=\"https://www.steemimg.com/images/2016/09/11/CameraSettings1e46d.png\" width=\"281\" height=\"58\"/></p>\n<hr />\n<p><em>(Verification for me here: </em><a href=\"http://www.aapicture.com/about-me\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n<hr />\n</html>",
+    "body_length": 8871,
+    "cashout_time": "2016-09-18T17:41:21",
+    "category": "photography",
+    "children": 32,
+    "created": "2016-09-11T17:41:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"steemit\",\"art\",\"tutorial\",\"steemsquad\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_011beda.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_02b00b7.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_04e6452.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_03be1d6.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_06d03ac.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_0576e41.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_1256676.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_0719cbc.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_08e8920.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_09bfd43.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_109d71c.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_13aeb27.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_14c803e.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_1517fbb.png\",\"https://www.steemimg.com/images/2016/09/11/Screenshot_GEOAI_02_1762278.png\",\"https://www.steemimg.com/images/2016/09/11/ScreenshotGEOAI_02_1658f94.png\",\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_3503of31853b.jpg\",\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_3502of33a670.jpg\",\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_8003of385831.jpg\",\"https://www.steemimg.com/images/2016/09/11/Arif_Akhtar_GEOAI_02_8002of3ed2c9.jpg\",\"https://www.steemimg.com/images/2016/09/11/CameraSettings1e46d.png\"],\"links\":[\"https://steemit.com/photography/@thecryptofiend/gabriella-evolution-of-an-image-from-camera-to-photoshop\",\"https://steemit.com/photography/@thecryptofiend/quick-portrait-retouching-in-lightroom-tutorial\",\"https://steemit.com/photography/@thecryptofiend/how-to-fix-damaged-photos-in-photoshop-tutorial-with-example-image\",\"https://steemit.com/photography/@thecryptofiend/easy-black-and-white-portrait-conversion-using-nik-silver-efex-pro-2-photography\",\"http://www.aapicture.com/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T17:41:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 40181482530377,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "122.721 HBD",
+    "percent_hbd": 10000,
+    "permlink": "gabriella-image-retouching-and-editing-workflow-part-1",
+    "post_id": 1210723,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Gabriella Image Retouching and Editing Workflow Part 1",
+    "title": "Gabriella Image Retouching and Editing Workflow Part 1",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/gabriella-image-retouching-and-editing-workflow-part-1"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2426805237,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 207235087440,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 55815725,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 5888436135,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6080328266,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3814152361740,
+        "rshares": 1211817254,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 824435072,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 2000037840,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019309053107,
+        "rshares": 3098916234,
+        "voter": "punjammies"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 115585338,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 704915894,
+        "rshares": 51950730,
+        "voter": "caliman5899"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73556721290,
+        "rshares": 72627476,
+        "voter": "justusagenstum"
+      }
+    ],
+    "author": "punjammies",
+    "author_reputation": 1019309053107,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hi All</p>\n<p>Yesterday I read the article by 'cryptogge' titled \"A quick fix for a broken capitalist society.\" The purpose of this blog is not to discuss the article, rather on the question the author 'cryptogge' asked me after I corrected him, on the length of the UK electoral cycle. He claimed that it was four years. I corrected him in comments. It is 5 years. Kudos to cryptogge: he acknowledged his error. It was the following words by cryptogge that caught my attention. He said in reply, \"What do you think about a 10 year cycle? Does that sound too long, or do you think we'd get better results from our politicians with a longer cycle?\"</p>\n<p><strong>Bloody Hell. Where do I start.</strong></p>\n<p><strong>&nbsp;</strong>Here is my answer. The West is filled with corrupt, inept, sociopathic liars. These people I am talking about are called Politicians, The old joke, \"How do you tell if a Politician is lying? Answer, his lips are moving.\" This has never been more true than it is today.</p>\n<p>Let us look a little closer.</p>\n<p>OBAMA ( The liar in chief) &nbsp;\"If you like your Doctor: you can keep your Doctor.\"</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\"No boots on the ground in the Middle East.\" ie &nbsp;Syria or Iraq.</p>\n<p>&nbsp;&nbsp;And the Whopper of a lie, &nbsp;&nbsp;\"The un-affordable care act. This will cause little in the way of premium hikes.\"</p>\n<p>He claimed that it would be the cost of a monthly mobile phone bill.&nbsp;</p>\n<p>I could go on with Oduma's lies, but it is beyond the capability of the memory left on my Mac. This Politician has bombed, invaded countries, &nbsp;and droned innocent men, women and children to death. He has also destroyed the American economy and doubled the USA debt to $19.5 trillion, in 7 years; to name just a tiny few of his <strong>\"accomplishments\".</strong></p>\n<p>DAVID CAMERON, the UK Prime Minister at the time, threatened us, the British people with anything and everything from dirty beaches to an economic collapse. He did this in order to secure a REMAIN vote win. This was on behalf of the globalists wet dream of \"The European Union.\" (If you want a little more detail on Brexit, watch \"Brexit the movie, on youtube.) you will then see just how bad these bat shit Euro crack pots are. They waste time and money at the same time, feathering their own nests.</p>\n<p>Hi, Cameron. Nothing happened after Brexit. the stock markets are up, employment is up, and countries around the world are lining up for trade deals. This shows clearly how inept you are. (By the way he has doubled our debt in the UK to 1.5 trillion pounds. Way to go pig fucker.)</p>\n<p>The last one I would like to use is MAD MERKEL in Germany. (I could talk for hours on other Politicians but it would be outside the scope of this article.) Yes, Merkel has allowed in hundreds of thousands of refugees and African financial migrants. The German people are now subject to daily</p>\n<ol>\n  <li>Murders</li>\n  <li>Rapes</li>\n  <li>Sexual assaults</li>\n  <li>Many more illegal acts such as theft.</li>\n</ol>\n<p>Yes the integration is going so well, NOT. Despite the overwhelming push back by the general population (perfectly illustrated by her parties defeat last weekend by the alternative for Germany AfD Party) she still is defiant. She said, \" If I could go back in time, I would make the same decision.\"</p>\n<p>The problem is that these Politicians, when elected, hardly ever fight for the views and needs of the people who elected them. No, they go power mad and do what ever they please: and screw the pions, sorry the electorate.</p>\n<p>I conclude that crytogge should have asked, \" How can we dismantle BIG GOV. and bring the power back to the people?\"</p>\n<p>http://i67.tinypic.com/r1esuf.jpg</p>\n<p>I leave you with the words that President Regan said were terrifying, \"I'm from the Government and I'm here to help.\"</p>\n<p><br></p>\n<p>Thanks for reading,</p>\n<p>&nbsp;Gazza.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>\n</html>",
+    "body_length": 4474,
+    "cashout_time": "2016-09-16T21:30:18",
+    "category": "steemit",
+    "children": 3,
+    "created": "2016-09-09T21:30:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"politics\",\"anarchy\"],\"image\":[\"http://i67.tinypic.com/r1esuf.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T21:30:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 229061842747,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "0.084 HBD",
+    "percent_hbd": 10000,
+    "permlink": "longer-government-terms-you-ve-got-to-be-kidding",
+    "post_id": 1189225,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Longer Government terms: You've got to be kidding.",
+    "title": "Longer Government terms: You've got to be kidding.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@punjammies/longer-government-terms-you-ve-got-to-be-kidding"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4000",
+        "reputation": 14765040488827,
+        "rshares": 10614103331311,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "4000",
+        "reputation": 9326993992,
+        "rshares": 59458723538,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "4000",
+        "reputation": 608057298751,
+        "rshares": 228718504444,
+        "voter": "justin"
+      },
+      {
+        "percent": "4000",
+        "reputation": 27931460807554,
+        "rshares": 1926094932850,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "4000",
+        "reputation": 29449063355738,
+        "rshares": 134423167163,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1241362310762,
+        "rshares": 5813057950,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2377826086,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 40554406544,
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426202100,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 73256443161,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 80414780699,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1370168843319,
+        "rshares": 19307972889,
+        "voter": "aaron-brodie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2673745586,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 49836148737,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 885413874,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 26650614620,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 748586302572,
+        "rshares": 409041301,
+        "voter": "kellywin21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14544132145555,
+        "rshares": 10383203208,
+        "voter": "pcste"
+      },
+      {
+        "percent": "1500",
+        "reputation": 19073889900896,
+        "rshares": 4059206027,
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6066168,
+        "rshares": 64720992,
+        "voter": "dknightwolf70"
+      },
+      {
+        "percent": "4000",
+        "reputation": 31215012571,
+        "rshares": 13686287140,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4276991996,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 25913356646,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1156451912179,
+        "rshares": 770166525,
+        "voter": "rebelmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61447120117,
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451285776301,
+        "rshares": 1359710881,
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 1268303212,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154845278,
+        "voter": "crimson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29605154,
+        "rshares": 140959075,
+        "voter": "my-art"
+      }
+    ],
+    "author": "kellywin21",
+    "author_reputation": 748586302572,
+    "beneficiaries": [],
+    "body": "<html>\n<h3>http://i.imgur.com/3T97TGs.jpg?1<br>\nPhotograph Taken By Kelly Clegg</h3>\n<h3>Divining Fireflies</h3>\n<h3>The night is filled with that of<br>\nfireflies dancing their way through <br>\nthe night sky. With you sitting <br>\nupon this blanket here with me now; <br>\nwe are in the heat of the moment. <br>\nHolding me close, you being to <br>\ntake control; my body is at the grasp <br>\nof your finger tips. Laying over top <br>\nof me; I can feel your breath of beauty <br>\nupon my neck as the night fireflies <br>\nbecome that of butterflies within the <br>\npit of my stomach. Let us freeze time <br>\nupon this moment; I want to wrestle <br>\nthrough the night just to hear your <br>\nheartbeat against me one more time.<br>\nFor tonight there is a fire burning <br>\nbetween us so bright it matches that <br>\nof the beauty of this firefly filled sky. Let <br>\nthis fire rage through the night; for<br>\nI don\u2019t want this night to end. Place <br>\nyourself closer cowboy, it is only <br>\nyou and I here; dance your body upon <br>\nme for tonight you are the blanket in <br>\nwhich cloaks me. Leaving no place <br>\nuntouched, unloved, or unwanted; the <br>\nlook within those eyes shows the <br>\nlust upon your mind for me. With music <br>\nplaying its way through the silence <br>\nfor tonight we are connected as one. <br>\nLoving, laughing; with little care to <br>\nthat of the outside world. Be my <br>\ndistraction one last time cowboy for <br>\nI don\u2019t want this night to end.<br>\nBy Kelly Clegg<br>\n09/07/16<br>\n17:04:28</h3>\n</html>",
+    "body_length": 1529,
+    "cashout_time": "2016-09-14T23:19:09",
+    "category": "life",
+    "children": 9,
+    "created": "2016-09-07T23:19:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"photography\",\"poetry\",\"steemit\",\"beauty\"],\"image\":[\"http://i.imgur.com/3T97TGs.jpg?1\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T23:19:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 13391573680765,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "24.362 HBD",
+    "percent_hbd": 10000,
+    "permlink": "divining-fireflies",
+    "post_id": 1165469,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Divining Fireflies",
+    "title": "Divining Fireflies",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@kellywin21/divining-fireflies"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 1862100321,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2260794166,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 414574755,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 32836465304,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 997815881,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 128272117,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 3082447408559,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 374954229,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 970141192887,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 583791464,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 173003533,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 82035468310,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 128218751248,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 182657633334,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "5300",
+        "reputation": 4931834878069,
+        "rshares": 10084998310,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 456987105,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5129138575,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 33254767020,
+        "voter": "james-show"
+      },
+      {
+        "percent": "5300",
+        "reputation": 5414208804644,
+        "rshares": 13266207402,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 12524571436,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 13564010250,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 446039860,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1069530288,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 79760484720,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 356744858,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 76306848367,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 54150215675,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2636635441463,
+        "rshares": 6071522849,
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 111739237207,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2673745586,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 92345695481,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 2681690814,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 23126720482,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 86675287972,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3513693618,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 94445685167,
+        "rshares": 821572322,
+        "voter": "poias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 49836148737,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 42100849373,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 360836245947,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "5300",
+        "reputation": 19111656178138,
+        "rshares": 32108493894,
+        "voter": "furion"
+      },
+      {
+        "percent": "5300",
+        "reputation": 3891722,
+        "rshares": 237192759,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "5300",
+        "reputation": 9142611234,
+        "rshares": 263564711,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5300",
+        "reputation": 3871042,
+        "rshares": 243929499,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10475000294,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "500",
+        "reputation": 3979714886621,
+        "rshares": 896254871,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 431019291,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 43466091162,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692822335938,
+        "rshares": 225535370,
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 20698934666,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14544132145555,
+        "rshares": 10383203208,
+        "voter": "pcste"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 13966407599,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3527588268,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 36795839737,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 82965552673,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 40082029591,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "5300",
+        "reputation": 10519849768972,
+        "rshares": 8170670653,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 4647193327,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 15102804387,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "1500",
+        "reputation": 4129649677200,
+        "rshares": 1167271026,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 8563805085,
+        "voter": "logic"
+      },
+      {
+        "percent": "5300",
+        "reputation": 147425730,
+        "rshares": 269150419,
+        "voter": "fnait"
+      },
+      {
+        "percent": "5300",
+        "reputation": 3720753029,
+        "rshares": 245570408,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1645434255,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 4401682802,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 24751486274,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 5766980028,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 4404504173,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 7011114855,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 2129678456,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7564464865541,
+        "rshares": 10697432101,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 412085238059,
+        "rshares": 74496308,
+        "voter": "themagus"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3942069730400,
+        "rshares": 1660823962,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6679625587,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053978638105,
+        "rshares": 3011592732,
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 9238077787,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 2149557353,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 411640158,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151272123831,
+        "rshares": 227979819,
+        "voter": "xcepta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5861088198,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 71902749,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 99235443904,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20129639386,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3837178686,
+        "voter": "booky"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4505260508,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 420580334986,
+        "rshares": 74873590,
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 152822603,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1893166639,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "3700",
+        "reputation": 3749012705250,
+        "rshares": 2926426046,
+        "voter": "alexandre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5409679767352,
+        "rshares": 4655142091,
+        "voter": "englishtchrivy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 91543033,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 17788448526,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 924437688,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5004831958428,
+        "rshares": 3158164152,
+        "voter": "eveningstar92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 5172392166,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 80213898072,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 893293727378,
+        "rshares": 692398949,
+        "voter": "dpapadimitroylas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 58484656,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 2279697962,
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39516054142,
+        "rshares": 56152698,
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16681034811,
+        "rshares": 4070899362,
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 143004279,
+        "voter": "nadil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2432802,
+        "rshares": 133456607,
+        "voter": "daniel.brest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 127001112,
+        "voter": "edward.shroder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4857670,
+        "rshares": 145928408,
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 145921825,
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 145152694,
+        "voter": "serena199"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 145124187,
+        "voter": "gia7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>In December 2013 I had the good fortune to make a flying 4 day visit to Rome. &nbsp;</p>\n<p>It was to visit my sister in law's family who are Italian and had been unable to make my brother's wedding in England a few months earlier. &nbsp;Unfortunately there was very little time to do sightseeing. &nbsp;</p>\n<p>One thing I absolutely wanted to see was the famous Trevi Fountain. &nbsp;Due to reasons I will get to in the text below this ended up being rushed as it was getting late and close to sunset. &nbsp;</p>\n<p>I'm quite pleased with the photos though. &nbsp;I selected a split tone process in Silver Effex Pro to give them this unique tone.</p>\n<p>I just wish I had more time to do some proper sightseeing and photography of all the amazing architecture.</p>\n<p><br></p>\n<h1>Trevi Fountain Photos</h1>\n<p>Basic information about the fountain from Wikipedia (<a href=\"https://en.wikipedia.org/wiki/Trevi_Fountain\">link</a>):</p>\n<blockquote>The Trevi Fountain (Italian: Fontana di Trevi) is a fountain in the Trevi district in Rome, Italy, designed by Italian architect Nicola Salvi and completed by Pietro Bracci. Standing 26.3 metres (86 ft) high and 49.15 metres (161.3 ft) wide,[1] it is the largest Baroque fountain in the city and one of the most famous fountains in the world. The fountain has appeared in several notable films, including Federico Fellini's La Dolce Vita.</blockquote>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b21of23f6165.jpg\" width=\"800\" height=\"533\"/></p>\n<p>1</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b19of23fd6ff.jpg\" width=\"800\" height=\"533\"/></p>\n<p>2</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b14of2366864.jpg\" width=\"800\" height=\"533\"/></p>\n<p>3</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b15of2317b78.jpg\" width=\"800\" height=\"533\"/></p>\n<p>4</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b16of231f361.jpg\" width=\"800\" height=\"533\"/></p>\n<p>5</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b17of237ed99.jpg\" width=\"800\" height=\"533\"/></p>\n<p>6</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b18of2326902.jpg\" width=\"800\" height=\"533\"/></p>\n<p>7</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b20of23a3251.jpg\" width=\"800\" height=\"533\"/></p>\n<p>8</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b22of231ba03.jpg\" width=\"800\" height=\"1200\"/></p>\n<p>9</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b23of23f0c1d.jpg\" width=\"800\" height=\"533\"/></p>\n<p>10</p>\n<h1>A few selected other shots from the walk to the Fountain:</h1>\n<p>The walk to Trevi Fountain itself had some interesting sights which I tried to capture.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b1of1633f1.jpg\" width=\"799\" height=\"533\"/></p>\n<p>11</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01c1of1bf699.jpg\" width=\"800\" height=\"1200\"/></p>\n<p>12</p>\n<p>This was another fountain that just happened to be in the centre of a large roundabout on the walk to Trevi Fountain. &nbsp;Don't know what it is called - there are so many fountains around Rome - there was just too much to photograph and it was getting close to sunset. (As the photo below shows.)</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b1of232a1f5.jpg\" width=\"800\" height=\"533\"/></p>\n<p>13</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b12of23096e6.jpg\" width=\"800\" height=\"1200\"/></p>\n<p>14 - I loved the textures on some of the old buildings. &nbsp;Being pushed for time I tried to take some shots whilst I could.</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b11of2341f7d.jpg\" width=\"800\" height=\"533\"/></p>\n<p>15 - Here one can see the contrast between new and old.</p>\n<p><br></p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01d1of1acb34.jpg\" width=\"800\" height=\"533\"/></p>\n<p>16 - I loved the shapes and lines here.</p>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b5of23547ad.jpg\" width=\"800\" height=\"533\"/></p>\n<p>17 - The walk consisted of lots of these kind of very narrow alleyways. &nbsp;This seems to be common to most historic cities. &nbsp;Some are so narrow that they feel claustrophobic.</p>\n<p><br></p>\n<h1>Rome's Worst Bus Tour</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b3of2379c07.jpg\" width=\"800\" height=\"533\"/></p>\n<p>18 &nbsp;</p>\n<p>Prior to going to Trevi Fountain and one of the reasons for the delay was that we took a bus tour of Rome. &nbsp;Unfortunately the driver seemed to be high on Coke or something because he was in a mad rush to go from place to place. &nbsp;In the end we didn't actually get a chance to see very much because of this. &nbsp;This was the only photo that I managed to get from that tour. &nbsp;I think it is a museum but I'm not sure. &nbsp;Maybe someone recognises this building?</p>\n<p><br></p>\n<h1>Technical Information:</h1>\n<ul>\n  <li>Nikon D7100 Camera</li>\n  <li>Sigma 24-70mm/2.8 lens</li>\n  <li>Adobe Lightroom CC and Nik Silver Effex Pro for processing.</li>\n</ul>\n<p>I hope you like the photos. &nbsp;If you like my work please follow me and check out my previous photography work and tutorials &nbsp;@thecryptofiend - hope you enjoy.</p>\n<p><em>(Verification for me here: </em><a href=\"http://www.aapicture.com/about-me\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n</html>",
+    "body_length": 5879,
+    "cashout_time": "2016-09-14T18:07:54",
+    "category": "photography",
+    "children": 36,
+    "created": "2016-09-07T18:07:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"steemit\",\"travel\",\"steemsquad\",\"life\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b21of23f6165.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b19of23fd6ff.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b14of2366864.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b15of2317b78.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b16of231f361.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b17of237ed99.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b18of2326902.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b20of23a3251.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b22of231ba03.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b23of23f0c1d.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b1of1633f1.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01c1of1bf699.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b1of232a1f5.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b12of23096e6.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b11of2341f7d.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01d1of1acb34.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b5of23547ad.jpg\",\"https://www.steemimg.com/images/2016/09/07/Arif_Akhtar_Statue_CC_01b3of2379c07.jpg\"],\"links\":[\"https://en.wikipedia.org/wiki/Trevi_Fountain\",\"http://www.aapicture.com/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T18:07:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 6246021277012,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "5.940 HBD",
+    "percent_hbd": 10000,
+    "permlink": "trevi-fountain-in-italy-photography-a-masterpiece-of-baroque-art",
+    "post_id": 1161739,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Trevi Fountain in Italy (Photography) - A Masterpiece of Baroque Art",
+    "title": "Trevi Fountain in Italy (Photography) - A Masterpiece of Baroque Art",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/trevi-fountain-in-italy-photography-a-masterpiece-of-baroque-art"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 995902544214,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5536285359773,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103049052,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767386127,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690899726,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54644232408,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662803066,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213777416,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 3921623226568,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 318045860280,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 23992305455,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624870220,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969747519,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288328206,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 19637916155,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 487241289,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5612862925,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 331414403780,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 25831645440,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1571363168454,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "2400",
+        "reputation": 15755437221598,
+        "rshares": 3389073967,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 534998623,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425750795,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 49688826135,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 380406839,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10450737135,
+        "rshares": 335778848,
+        "voter": "yonatann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 105780627648,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 76306518322,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6740408834,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 21187339385,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 238284822415,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1518920448581,
+        "rshares": 14755964550,
+        "voter": "zer0sum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 116686205297,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 60750948355,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 474045973,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 531802773,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 487519452,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 55991205950,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 16352609609,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 206998761400,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3758301297,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 230802431,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19753416410,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 1626282910,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12726711150,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3493315959,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 6979533647,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182756574271,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 15909822224,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4831857977,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 748983311,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15575274684,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 24460059681,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 14015055748,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 537898386,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 490788664,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 30100686220,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27075686327,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 18807630174,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7870860970,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 6219336852,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3602804983584,
+        "rshares": 5721389686,
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 91126092446,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 65703191166,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 34357085787,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 274399247,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "5200",
+        "reputation": 13325577893779,
+        "rshares": 9602930892,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 68593728547,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1723840234,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58405372,
+        "voter": "protonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 36371527197,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 14100833410,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2213065774,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 148042787,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 115043900,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201616978,
+        "rshares": 56680590,
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 675058400,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 66879121,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25413691969,
+        "rshares": 181982895,
+        "voter": "greatness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 17059963076,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1485561825,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 85546636,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9031232590,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2781294502,
+        "rshares": 154485682,
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51341602,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163508147,
+        "voter": "iamblessed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 138732453,
+        "voter": "oliver.smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 129262534,
+        "voter": "jack.johnson"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "As from [their website](https://riseup.net/en):\n>We are in a financial crisis and need your support! That's why we launched our $1 campaign, where we're asking every riseup user to give us just $1 a month!\n\nI didn't see any other donation post for RiseUp, so I thought it'd be great to run a STEEM fundraiser for them.\n\n<center>![](https://riseup.net/en/about-us/img/riseup-yellow.gif)</center>\n\n**What is RiseUP and why should I care?**\n\nRiseUP provides many services to whistleblowers and journalists, such as email, chat, VPN, among other things. Many people depend on them to allow them to keep the world safe.\n\n>Our purpose is to aid in the creation of a free society, a world with freedom from want and freedom of expression, a world without oppression or hierarchy, where power is shared equally. We do this by providing communication and computer resources to allies engaged in struggles against capitalism and other forms of oppression.\n\nEven if you don't personally use RiseUP, you can help protect free speech by donating to RiseUP here: https://riseup.net/en/donate\n\n**What about this post?**\nI will also be donating 100% of the value of this post (i.e. both SBD and SP value in whole) to RiseUP via Bitcoin. [I personally donated ~$60 of my own money just before writing this article](https://blockchain.info/tx/6a031de304db74cb90da261da65d4ac89edb768325011a33100058b851ebae8d)\n\nAs soon as the post pays out, I will be sending the value of this post as a donation to RiseUp, and posting proof as a separate post.\n\n\nPlease spread the word so we can protect freedom.\n-------",
+    "body_length": 1585,
+    "cashout_time": "2016-09-13T19:48:39",
+    "category": "steem",
+    "children": 11,
+    "created": "2016-09-06T19:48:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"anarchy\",\"riseup\",\"charity\"],\"image\":[\"https://riseup.net/en/about-us/img/riseup-yellow.gif\"],\"links\":[\"https://riseup.net/en\",\"https://riseup.net/en/donate\",\"https://blockchain.info/tx/6a031de304db74cb90da261da65d4ac89edb768325011a33100058b851ebae8d\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T19:48:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14550603934532,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "20.064 HBD",
+    "percent_hbd": 10000,
+    "permlink": "calling-all-users-riseup-are-having-a-financial-crisis",
+    "post_id": 1150454,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "CALLING ALL USERS - RiseUp are having a financial crisis",
+    "title": "CALLING ALL USERS - RiseUp are having a financial crisis",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@someguy123/calling-all-users-riseup-are-having-a-financial-crisis"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 163930696090,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "4000",
+        "reputation": 1307793552141,
+        "rshares": 6718200263,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 31898709926,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 48620091777,
+        "voter": "booja"
+      },
+      {
+        "percent": "1500",
+        "reputation": 3320684282022,
+        "rshares": 25749256993,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19032649381,
+        "rshares": 175828281579,
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2097337325719,
+        "rshares": 2764147151,
+        "voter": "dogguy"
+      },
+      {
+        "percent": "0",
+        "reputation": 1175982316919,
+        "rshares": 7532679157,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "500",
+        "reputation": 1252098870666,
+        "rshares": 5064801063,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 4487751936,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4558720822431,
+        "rshares": 18459040440,
+        "voter": "jennamarbles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 2492990882,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 30265742240,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2906356120,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5894311908189,
+        "rshares": 15058952169,
+        "voter": "artist1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 901114996,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7513690843,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 651551511,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9117910781,
+        "rshares": 90001670,
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 600667224252,
+        "rshares": 1280766933,
+        "voter": "mrabdo"
+      }
+    ],
+    "author": "timcliff",
+    "author_reputation": 3731142865186,
+    "beneficiaries": [],
+    "body": "People have talked about how one day we may have large advertising companies eventually competing for the top 'promoted' slots. While some people may strongly dislike the idea of seeing adds on Steemit, I feel that it will do us more good than harm. Advertisers paying to create adds on the promoted page will create more of a demand for Steem/SBD. I searched to see if anyone has tried this yet, and it looks like nobody has tried this yet. So here it is - the first official Steemit advertisement :)\n\nThe links in this post are Amazon affiliate links. I will get a percentage of the purchases you make if you buy products from Amazon using the links from this post.\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/122310477X/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=24bb22ce909f787c509e392a27d84b04\">Pusheen Stuffed Animal\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/31UHFBNMIoL.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/1476747016/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=2b06be6b9ba7bc3f8cd7ab3cccc3193a\">\"I Am Pusheen the Cat\" Book\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/71PwztJ25IL.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/1223104834/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=007d7b947c27c07b3bd35e9475f0c4d0\">Pusheen with Cookie Stuffed Animal\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/41qB0VrAPJL.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/Pusheen-Cat-Selfies-Juniors-T-Shirt/dp/B01FEDKIXQ/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=b85bb9ca260b6c099db01ec3db9b10e6\">Pusheen The Cat Guide To Selfies T-Shirt\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/617hGubsdGL._UL1500_.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/B015329IIO/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=277425432e11e4bbd5db04ea73f01748\">Pusheen Slippers\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/718vO%2BxhMzL._SL1500_.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/1449478697/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=0d6f75dfda51bf68bfd8adf7fc1eb787\">Pusheen the Cat 2017 Wall Calendar\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/61MGJyu-d8L.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/Pusheen-Rainbows-Unicorns-Mermaids-Sweatshirt/dp/B01DWR775S/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=bf7375359049cc2e021e9f040cbe28f0\">Pusheen The Cat Rainbows Unicorns and Mermaids Sweatshirt\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/81B7IvYy-PL._UL1500_.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/gp/product/B01E36NF44/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=125b18cca657ebeefae6f93a9853a6ce\">Pusheen Ice Cream Cone Stuffed Animal\n<img src=\"https://images-na.ssl-images-amazon.com/images/I/71nz1K%2Bf6pL._SL1500_.jpg\"></a>\n\n<HR>\n\n<a href=\"https://www.amazon.com/Pusheen-Cat-Laptop-Juniors-T-Shirt/dp/B00R39UD3K/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=a9669dece2fa3e7dc2051d7a9e455ca6\">Pusheen The Cat Laptop T-Shirt \n<img src=\"https://images-na.ssl-images-amazon.com/images/I/51N5hJYe84L._UL1500_.jpg\"></a>",
+    "body_length": 3360,
+    "cashout_time": "2016-09-10T15:59:27",
+    "category": "advertisement",
+    "children": 2,
+    "created": "2016-09-03T15:59:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"advertisement\",\"pusheen\",\"promoted\",\"marketing\",\"advertising\"],\"image\":[\"https://images-na.ssl-images-amazon.com/images/I/31UHFBNMIoL.jpg\",\"https://images-na.ssl-images-amazon.com/images/I/71PwztJ25IL.jpg\",\"https://images-na.ssl-images-amazon.com/images/I/41qB0VrAPJL.jpg\",\"https://images-na.ssl-images-amazon.com/images/I/617hGubsdGL._UL1500_.jpg\",\"https://images-na.ssl-images-amazon.com/images/I/718vO%2BxhMzL._SL1500_.jpg\",\"https://images-na.ssl-images-amazon.com/images/I/61MGJyu-d8L.jpg\",\"https://images-na.ssl-images-amazon.com/images/I/81B7IvYy-PL._UL1500_.jpg\",\"https://images-na.ssl-images-amazon.com/images/I/71nz1K%2Bf6pL._SL1500_.jpg\",\"https://images-na.ssl-images-amazon.com/images/I/51N5hJYe84L._UL1500_.jpg\"],\"links\":[\"https://www.amazon.com/gp/product/122310477X/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=24bb22ce909f787c509e392a27d84b04\",\"https://www.amazon.com/gp/product/1476747016/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=2b06be6b9ba7bc3f8cd7ab3cccc3193a\",\"https://www.amazon.com/gp/product/1223104834/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=007d7b947c27c07b3bd35e9475f0c4d0\",\"https://www.amazon.com/Pusheen-Cat-Selfies-Juniors-T-Shirt/dp/B01FEDKIXQ/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=b85bb9ca260b6c099db01ec3db9b10e6\",\"https://www.amazon.com/gp/product/B015329IIO/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=277425432e11e4bbd5db04ea73f01748\",\"https://www.amazon.com/gp/product/1449478697/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=0d6f75dfda51bf68bfd8adf7fc1eb787\",\"https://www.amazon.com/Pusheen-Rainbows-Unicorns-Mermaids-Sweatshirt/dp/B01DWR775S/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=bf7375359049cc2e021e9f040cbe28f0\",\"https://www.amazon.com/gp/product/B01E36NF44/ref=as_li_ss_tl?ie=UTF8&linkCode=ll1&tag=steempusheen-20&linkId=125b18cca657ebeefae6f93a9853a6ce\",\"https://www.amazon.com/Pusheen-Cat-Laptop-Juniors-T-Shirt/dp/B00R39UD3K/ref=as_li_ss_tl?ie=UTF8&refRID=NBT9EBZSX1Y1SP3JXPJ4&linkCode=ll1&tag=steempusheen-20&linkId=a9669dece2fa3e7dc2051d7a9e455ca6\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T18:43:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 552214823739,
+    "parent_author": "",
+    "parent_permlink": "advertisement",
+    "pending_payout_value": "0.243 HBD",
+    "percent_hbd": 10000,
+    "permlink": "official-steemit-advertisement-buy-pusheen-products-from-amazon-com",
+    "post_id": 1112616,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Official Steemit Advertisement - Buy Pusheen Products from Amazon.com!",
+    "title": "Official Steemit Advertisement - Buy Pusheen Products from Amazon.com!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/advertisement/@timcliff/official-steemit-advertisement-buy-pusheen-products-from-amazon-com"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "6400",
+        "reputation": 145171381514207,
+        "rshares": 18111669830201,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 715315172073,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7573714865699,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 31497755152710,
+        "voter": "smooth"
+      },
+      {
+        "percent": "-100",
+        "reputation": 85602977273,
+        "rshares": -28866299703,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 25170479661289,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 13823888326286,
+        "rshares": -14427527758213,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1437788839897,
+        "voter": "testdrive"
+      },
+      {
+        "percent": "5300",
+        "reputation": 176979684007,
+        "rshares": 19129112425750,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4351732257617,
+        "voter": "paladin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7330584928873,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 51047995307721,
+        "rshares": -8419314286433,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 118421595242,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 991013934194,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "800",
+        "reputation": 36749432321730,
+        "rshares": 78337583406,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4115947771664,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3719861985,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4516048249,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 828474117,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 491388231044,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64951387539,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1993522631,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256417598,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 63315124730,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 399082207767,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2532594526039,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1856507042,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1066178277767,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 139584599964,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 26220717668,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9947524418,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2487731941,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5591735886829,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 82320587314,
+        "voter": "vip"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2802091583976,
+        "rshares": -11536845001,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747400513,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160843467,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 411754503823,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31574155155,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 37363539080,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345805525,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 83918741034,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23959616565,
+        "voter": "yefet"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 76633033946568,
+        "rshares": -739720065624,
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 89757746179,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 91966293702,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419261694760,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 77358908541,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 23701819727,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 11709377940,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 46091738076,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 18707867834,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 51853747704,
+        "rshares": -5182453297,
+        "voter": "bitsignal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15155961877,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8044871647,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7737351987,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 23177273743,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 475511002,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 35537325381339,
+        "rshares": -1013426657626,
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5462055645,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 25662062679,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6578969489361,
+        "rshares": 243142994851,
+        "voter": "streemian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056240258,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 330922076737,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5414208804644,
+        "rshares": 17248327984,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 693212113686,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 3750669747284,
+        "rshares": -257095116113,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 968800436,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 2360574794,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508314471,
+        "rshares": 615680166,
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 161898152160,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 59132961985,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": -360088797540,
+        "rshares": 1420092931,
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 236278422460,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 24595608321,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73997216728,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 594987180387,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432221003,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177797115025,
+        "rshares": 1107557158,
+        "voter": "martinallien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3087380162,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29022233668,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 37377306695,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 511452314781,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 64353335571,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 23887704092,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9121031191,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 71931696380,
+        "rshares": -3909854798215,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41823323615,
+        "rshares": 368970528,
+        "voter": "marcrapf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1675750169,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 371369240,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 51856263211,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 56384822076,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 65928802971,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 52929795664,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 77755622946,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 199416178251,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8558676623,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 271755285545,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 79119970246,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 6877012376448,
+        "rshares": -127103165351,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 15857384273210,
+        "rshares": -213934252330,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 137049299903,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 282088742558,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 5865649820,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30097018787,
+        "rshares": 321645695,
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2566336288,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 149920174624,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1960155455032,
+        "rshares": 4044936568,
+        "voter": "usefree"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 696041082748,
+        "rshares": -623966976,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 193343504897,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6136878892,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9720382493,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 98130276151,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 270969226152,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31058131849,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 4943256767,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6735464595,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8419452329,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3312702629,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8190519067,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 7207306177,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12848570677,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 16659999864,
+        "voter": "acassity"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 10980042082204,
+        "rshares": -16254790117,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 60995394021,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17547206549,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 161952614,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5709173603,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 4011066647,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 51524686045,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 221261942904,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8305742469,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 7859945579,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 193551595441,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 49750193342,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 26621276425,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 57643429300793,
+        "rshares": -307502691227,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5407890112,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 43344082030,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 107619198367,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3114422667,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 5856890314,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 15816712653,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 259419173,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "0",
+        "reputation": 10248743813131,
+        "rshares": 367291094,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 34473688121,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5827885675,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 127353375023,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 246771748723,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9824421122,
+        "rshares": 226902626,
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 67550325998,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6014285246,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 560136721741,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 176551047359,
+        "rshares": -295201037,
+        "voter": "citizen"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 32990051928,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25445573460,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380128900631,
+        "rshares": 287184429,
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 7049471118,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 15942960920,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 660838391042,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 597404093563,
+        "rshares": 1215614837,
+        "voter": "danny-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 499737940301,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10585994983,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 680517621,
+        "voter": "busser"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9142611234,
+        "rshares": 343839867,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3871042,
+        "rshares": 318227536,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 943863353,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1343816516483,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147809269974,
+        "voter": "knircky"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 713529357997,
+        "rshares": -978237171,
+        "voter": "cousteau"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 325589414514,
+        "rshares": -536175286,
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 762881799,
+        "voter": "dicov"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 302485212431,
+        "rshares": -621950225,
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 948064668,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 46655397353,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 13791949238,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "0",
+        "reputation": 1661526202859,
+        "rshares": 93503073,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 666800322,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3013373235,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10577596739,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4987849891,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2377467033356,
+        "rshares": 16655539117,
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 114935388111,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 348837142851,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116044854234,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4186716317,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 15152683674,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6592407938,
+        "rshares": 846939372,
+        "voter": "deruwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24444680262,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1798349458,
+        "rshares": 236993728,
+        "voter": "nysemax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 349307643,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 12578813242,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 523349272991,
+        "rshares": 7016294962,
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 4155430381,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 42313946334,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11842796775,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2046548687,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": -342084222038,
+        "rshares": 241318691,
+        "voter": "yousaywhat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 369337292,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 4629657881925,
+        "rshares": -12155043681,
+        "voter": "kuriko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 147819223871,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1425372533,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 19222921559,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 2182332000,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 51736048406,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 40692268042,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 18235583674,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6784977045,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1939224933,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12702349860,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 437754345,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12854562736,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2472726348,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 4213795388,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 257505199612,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19970133668,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14310729575,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 59719258418,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 125838590,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1505058704,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6880831700,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10992284199,
+        "rshares": 1380719008,
+        "voter": "steveit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2280809650,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153387383611,
+        "rshares": 263957398,
+        "voter": "shing3e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3146467813,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7740774800016,
+        "rshares": 26057056395,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165916744066,
+        "rshares": 898730377,
+        "voter": "amor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 21922455576,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 4079005054,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4233483353,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 78626939838,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 281580733,
+        "rshares": 118550692,
+        "voter": "metalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4295800504,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 22491376069,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3415496053078,
+        "rshares": 3515225380,
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 104788510,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 193068983853,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1016329703765,
+        "voter": "james212"
+      },
+      {
+        "percent": "8000",
+        "reputation": 10519849768972,
+        "rshares": 16320418751,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1684338629,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255348494,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255731129,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147929650,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148765015,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84813726,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4927809418,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117601843,
+        "voter": "slopetester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628934912826,
+        "rshares": 81029784268,
+        "voter": "thebear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327313183062,
+        "rshares": 1271178998,
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2997941608767,
+        "rshares": 6108553793,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 696318020,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 433658931,
+        "voter": "quigua"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2564054618,
+        "rshares": -109783161,
+        "voter": "activcat"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 459170283182,
+        "rshares": -339429075,
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 897343674,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 702710547,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7672719225,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 176770513,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17538610386,
+        "voter": "proto"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 25202122388,
+        "rshares": -44086368125,
+        "voter": "vidale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 618911664,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 409070071,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1979512137,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 219398629,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 2272937366,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 9306044630,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76805770,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2083095001,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 247311783844,
+        "rshares": 972381129,
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 117818134,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 722574736,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1359446513,
+        "rshares": 114300588,
+        "voter": "mcbowler"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 125694309,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 284407442095,
+        "rshares": 60062064525,
+        "voter": "tommyhansen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 897456559,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 60192222011,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 98780684542,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1595890774,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212959420968,
+        "rshares": 10064002136,
+        "voter": "michiel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1042729942,
+        "rshares": 112669609,
+        "voter": "awaking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3427179893,
+        "rshares": 125562936,
+        "voter": "blysards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4074098957,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 124633787060,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6931641798,
+        "rshares": 110227366,
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 972166505,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 52649085689,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8767342397,
+        "voter": "taker"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 8710090850955,
+        "rshares": -35775686256,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697263449295,
+        "rshares": 1363846454,
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 40064325570,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 2371552270,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89039117574,
+        "rshares": 16476010602,
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 52102443,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24827810197,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 22434468906,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 10186903210,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7989197237827,
+        "rshares": 19452071595,
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 36277428171,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 15739430465359,
+        "rshares": -52454815832,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 63541793,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 1853055846,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3967372036,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5836792362,
+        "rshares": 64679936,
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3495650909,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 102188578929,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 351100968,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 989801091,
+        "rshares": 174769884,
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1265257162,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 15246720962,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 94683890895,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3663551703,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12156056871,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 56272514,
+        "voter": "nickche"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 311638758804,
+        "rshares": -314141984,
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41231458058,
+        "rshares": 56250267,
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2382561461,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740133117502,
+        "rshares": 2116654319,
+        "voter": "natalymaty"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 52502611,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3401416945201,
+        "rshares": 1228509011,
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10947059419,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3294318443,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 9883764215,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1640892571,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1588889351,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 295953698,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 17970298536,
+        "voter": "highlite"
+      },
+      {
+        "percent": "0",
+        "reputation": 2686158006671,
+        "rshares": 90176839,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 833401927651,
+        "rshares": 795125532,
+        "voter": "kateblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 73061236,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234905614,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 59896309,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1309455764,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 59810686,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 81461672884,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51186720,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117292449,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62391219,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 4001734385,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 72982892,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1125119862,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23206755125,
+        "rshares": 65008276,
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 76396543,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7250270199,
+        "rshares": 62789265,
+        "voter": "trimpy"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2316925791,
+        "rshares": -138794665,
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 662771351,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 644629048075,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5367667719,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4287458592,
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": -52839282898,
+        "rshares": 294939619,
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1310778341,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60637775,
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 278901402,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2460226113,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 88039262242,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4233723681,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 59993245,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 17450916624,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 383461680,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 52342236,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59226282,
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5927510942,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310309073633,
+        "rshares": 1864520703,
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657367578,
+        "rshares": 59437116,
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57842929,
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 68674686288,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59126308,
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12404459457,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270991098,
+        "rshares": 58969197,
+        "voter": "kennykwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 3281995765,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 7940003776,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57808922,
+        "voter": "jjalvarado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 75274936,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7880148903461,
+        "rshares": 11717775228,
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 7154112930,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12247233892,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3342551943665,
+        "rshares": 2531880312,
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 7602805802,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1400687811,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9969442529,
+        "rshares": 9963472602,
+        "voter": "stephenfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 109022268,
+        "rshares": 58824509,
+        "voter": "rimke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73481598898,
+        "rshares": 93285020,
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 12934867995,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 495790275993,
+        "rshares": 845006779,
+        "voter": "riceowladam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 56618390,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049839829,
+        "rshares": 58816543,
+        "voter": "anurbanmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58625501,
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3506320499,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57337530,
+        "voter": "will.isles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 227167546,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58329350,
+        "voter": "datajunky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28397805329,
+        "rshares": 61825781,
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 483537415009,
+        "rshares": 65242867,
+        "voter": "fitmama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1597197897,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24334451606,
+        "rshares": 55043645,
+        "voter": "whaletrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101814429368,
+        "rshares": 84553833,
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907554,
+        "rshares": 55805722,
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1258080185,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 89325487,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1191252134466,
+        "rshares": -1406600149,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1556727823,
+        "voter": "daniel82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77767196646,
+        "rshares": 77850201,
+        "voter": "adnanefs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8430695324,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 710738936,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3416732751,
+        "rshares": 58712210,
+        "voter": "freemarketkev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227415344771,
+        "rshares": 63848024,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41221286829,
+        "rshares": 2625106710,
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3970067190,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57896578,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57865236,
+        "voter": "diazrodolfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138152288926,
+        "rshares": 127266333,
+        "voter": "carloseclectic3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 71271091941,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 56770079081,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2195520064,
+        "rshares": 57872458,
+        "voter": "jcomeauictx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45439132822,
+        "rshares": 62120078,
+        "voter": "malxdrakon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7189192,
+        "rshares": 56611938,
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387438670668,
+        "rshares": 628845528,
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 1919754750,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 64413475,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 15562559312,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 1424466460,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 717003388,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 1956423616,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 444410694,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8113893564,
+        "rshares": 68457825,
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 361985376,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1749458412,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5726762840,
+        "rshares": 58393851,
+        "voter": "cryp71x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4405532893,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320261717074,
+        "rshares": 1468986693,
+        "voter": "carlyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57035814,
+        "voter": "michaelmillman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59741874574,
+        "rshares": 71342343,
+        "voter": "expatlove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 57050315,
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6064514,
+        "rshares": 55669133,
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25644393,
+        "rshares": 56781082,
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136085046245,
+        "rshares": 177291520,
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 54547175,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 16196662616,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 51349284,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775448580,
+        "rshares": 55579083,
+        "voter": "mrmike3rd7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 4840591977,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1029594046,
+        "rshares": 56616688,
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907154101,
+        "rshares": 657023835,
+        "voter": "tylerdav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 3189375248,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013640486,
+        "rshares": 55473809,
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5979022425,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54147153,
+        "voter": "apriliarider15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 17138775384,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121951533,
+        "rshares": 56331463,
+        "voter": "nickynelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56208181,
+        "voter": "omars3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 56919906,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 379926525,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 16688523787,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 120980099,
+        "rshares": 54661980,
+        "voter": "fourfingerz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 176892847429,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55725073,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2498083480,
+        "rshares": 74543592,
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9117910781,
+        "rshares": 90001670,
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289706151328,
+        "rshares": 193620482,
+        "voter": "oliver-janich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 22137549752,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 808913218021,
+        "rshares": 336901505,
+        "voter": "anahilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2818534745,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -54140717,
+        "voter": "alibaba.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 5144545467,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55093071,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 204496842,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55070425,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": -20844689,
+        "rshares": 53888695,
+        "voter": "harmcc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 117997260,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54839629,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51680032,
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 108903782,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5223594852,
+        "rshares": 163082812,
+        "voter": "gracewriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 55221863,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -54788721,
+        "voter": "puzat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 379994386,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53589726,
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641341984,
+        "rshares": 53719394,
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50377764,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 237684324298,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 54674145,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 68637860285,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 30330041079,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54601718,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 52597837,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53396102,
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10408522028,
+        "rshares": 105479568,
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53400199,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70707045777,
+        "rshares": 59536536,
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 53103516,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 54408230,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 11198455080,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4121876727,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1455592982586,
+        "rshares": 533336221,
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 235434198,
+        "rshares": 52948298,
+        "voter": "alwayzgamez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 51871529,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2067141122,
+        "voter": "anthemhayek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1682399382,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 54321981,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5415068741,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 684199645,
+        "rshares": 51644845,
+        "voter": "ether19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167503918203,
+        "rshares": 62401544,
+        "voter": "saamychristen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51575887,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53591687,
+        "voter": "petrius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51505929,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51519509,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 836960,
+        "rshares": 52515180,
+        "voter": "arthurpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53559945,
+        "voter": "gabru77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53371117,
+        "voter": "harlekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 54548642,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 54250822,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2558272783,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1608889180,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 50852949,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6522189180,
+        "rshares": 52515313,
+        "voter": "scotty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 168642880,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119510650,
+        "rshares": 51670447,
+        "voter": "silversurfer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4971287291,
+        "rshares": 52652814,
+        "voter": "libertyadvocate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 3342896196,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6447867236,
+        "rshares": 50563647,
+        "voter": "saintmichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972344082,
+        "rshares": 52629272,
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74154890902,
+        "rshares": 52767110,
+        "voter": "littlemorelove"
+      },
+      {
+        "percent": "10000",
+        "reputation": -16158296678,
+        "rshares": 51848960,
+        "voter": "audiphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172766960714,
+        "rshares": 52342557,
+        "voter": "sandeepachetan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 302430414,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4924121,
+        "rshares": 52018036,
+        "voter": "twilborn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5070422661,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1124648368001,
+        "rshares": 888971269,
+        "voter": "schattenjaeger"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 3061556951554,
+        "rshares": -1996189667,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16065524765,
+        "rshares": 53175236,
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 144965624,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200511066644,
+        "rshares": 120923966,
+        "voter": "creativeyoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 141592294331,
+        "rshares": 51838312,
+        "voter": "najwazebian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1318600521557,
+        "rshares": 51573174,
+        "voter": "kiwiscanfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 232397418,
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50459335,
+        "voter": "catkill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 889436,
+        "rshares": 51422448,
+        "voter": "cuvi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 980543031,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1150196390848,
+        "rshares": 59381609,
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80388747576,
+        "rshares": 550404396,
+        "voter": "judithgpordon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27406063017,
+        "rshares": 52823042,
+        "voter": "humans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 691657013,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1625136432,
+        "rshares": 50825171,
+        "voter": "donchate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13499743,
+        "rshares": 84036029,
+        "voter": "lunavava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1646438,
+        "rshares": 50213203,
+        "voter": "bumnumbum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1665210501,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3727858482,
+        "rshares": 65258460,
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 34754198382,
+        "rshares": -58065378,
+        "voter": "tanyamoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17924136040,
+        "rshares": 448144955,
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 79254686,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12945831370,
+        "rshares": 79201669,
+        "voter": "rymlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159378797,
+        "voter": "dayan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 155910854,
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330431039244,
+        "rshares": 152309066,
+        "voter": "kjsxj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160599284,
+        "voter": "agusstin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155516854,
+        "voter": "james93"
+      }
+    ],
+    "author": "dollarvigilante",
+    "author_reputation": 67427595157518,
+    "beneficiaries": [],
+    "body": "<center>https://www.dollarvigilante.com/wp-content/uploads/2016/08/Putin-Prepares-for-Nuclear-War-Just-Week-After-Germany-Prepares-for-Attack-The-Dollar-Vigilante.jpg</center>\n\nWe have recently\u00a0<a href=\"https://www.dollarvigilante.com/blog/2016/08/23/merkel-prepares-deliberate-crisis-white-house-plans-disastrous-succession.html\" target=\"_blank\">written about</a> how Angela Merkel in Germany has encouraged her citizens to begin stockpiling food and provisions to protect themselves in the event of an \u201cattack\u201d.\n\nSince, in the last week, the US State Department has issued an updated travel warning for Israel, the West Bank, and the Gaza strip as well as Turkey.\n\nAnd now, just this week, Russians are being awakened by the deafening noise of emergency war sirens as a simultaneous \"military combat readiness check\" took place for Russian soldiers from August 25th-31st according to Russian Defense Minister Sergei Shoigu. Vladimir Putin ordered these readiness checks in the Southern, Western, and Central military districts.\n\nHe is also moving naval vessels into key spots within the Black and Caspian Seas and has \"combat alert\" troops as well as aviation equipment positioned at strategic, tactical, airfields along the Ukrainian border, ready for the \"containment of a crisis situation\" to use his words.\n\nA Unian.info article highlights these moves by saying, \"Fighter and bomber aircraft, as well as military transport and attack helicopters will carry out flights of between 500 to 2,500 kilometers\" the press service of the Russian Defense Ministry reported.\n\nOn the other side of the Ukrainian border, globalist puppet \"Porky\" Petro Poroshenko has also been putting his troops on high alert after Vladimir Putin recently accused Kiev of \"using terrorist tactics to try to provoke a new conflict to destabilize Crimea\".\n\nAs Poroshenko amassed $850 million in 2015 and became the only Ukrainian businessman to see his net worth increase that year, he promised the people of Ukraine he would \"embed new traditions\" and \"sell his assets immediately after occupying the post\". He obviously never fulfilled this promise and the people have continued to suffer as they always do after the US and NATO bring \"freedom\" and \"democracy\" to a country.\n\nPutin knows that with NATO and the globalist elites propping up Ukraine, subverting Syria, and putting pressure on him, they are trying to back him and his allies into a corner in an effort to incite retaliation and chaos. In fact, prospects of a nuclear war are probable enough in Putin's mind for him to start constructing <a href=\"http://www.dailymail.co.uk/news/article-3741902/Russian-military-building-new-underground-bunkers-withstand-nuclear-war.html\">scores of \"nuclear proof\" subterranean bunkers</a> capable of withstanding atomic blasts. \n\nThat Russia has been building these asylums under Moscow and the Ural Mountains since the cold war, shows longstanding preparation, but recent construction of more bunkers in conjunction with Russian air defense missiles being moved into Crimea, show that we could be on the precipice of a massive escalation of violence.\n\nPutin says that Russia needs to \"strengthen its defenses as an aggressive NATO approaches\". Just what sort of \"crisis\" or \"aggression\" is the Russian President expecting? Does he really expect things to escalate into a nuclear war? This pattern of conflagration and war across eastern Europe and the Caucasus region is nothing new to us.\n\nWe have watched as the Central Banking elites have used these incendiary war game tactics in an attempt to provoke armed conflict to further their agenda to consolidate global power and move toward world government.\n\nAnd, they have been using their mainstream media programming to deceive Westerners into thinking that Syrian president Bashar Al-assad has been using chemical weapons on his own people when in actuality it has been their globalist arbiters of war like Killary Clinton and Barack O'bomber undermining Assad's regime by supplying these noxious weapons to the so called \"Free Syrian Army\".\n\nWhile we don't always agree with Donald Trump, one thing he said that we think is pretty accurate is \"Obama is the founder of ISIS\". If by founder, Donald means supplier of weapons and materials then he is <a href=\"http://thefreethoughtproject.com/cia-weapons-syrian-jihadis-isis-selling-facebook/\">correct</a>. We find it interesting that the terror group Al-Nusra formerly known as Al- Qaeda in Syria, works shoulder to shoulder with the US funded \u00a0\"Free Syrian Army\" .\n\nIn war, the first thing to die is the truth. \u00a0(Just look at this actual State Department briefing... they aren't even trying to hide that it is obviously lies and propaganda anymore)\n\n<center>https://www.youtube.com/watch?v=U4Cs5TEjxtk</center>\n\nAnd what is occurring in Syria is no exception.\n\nAnd perhaps the most glaring untruth out there is a statement of omission. \u00a0Your average American has NO idea that any of this is even going on. \u00a0In fact, for the last week, all they\u2019ve been upset about is that a football player didn\u2019t stand up to their special song.\n\n<center>https://www.dollarvigilante.com/wp-content/uploads/2016/08/Special-Song-The-Dollar-Vigilante.jpg</center>\n\nAs we near the end day of the Jubilee Year on October 2nd, most of the world\u2019s major armies appear to be positioned. \u00a0Even inside the US, Jade Helm never ended, it was just renamed UWEX and people have just gotten used to seeing tanks and other major military equipment being transported across the country.\n\nRussia is preparing for an attack. \u00a0Germany, too. \u00a0It makes sense for you to also.\n\nAnd the best preparation are the investments we have been recommending at TDV: gold, silver, cryptocurrencies (we have even featured Steem in our last two issues) and other hard assets. \u00a0Our portfolio has been the best performing portfolio we know of in the financial newsletter space over the last year, gaining 200%.\n\nAnd it\u2019s because most aren\u2019t paying attention to the big picture. \u00a0Most have no idea what is going on. \u00a0And, most certainly are not prepared.\n\n<a href=\"http://dollarvigilante.com/subscribe\">Subscribe to The Dollar Vigilante newsletter</a> to make sure you aren\u2019t one of them.\n\n<center>https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg</center>",
+    "body_length": 6378,
+    "cashout_time": "2016-09-08T05:01:21",
+    "category": "money",
+    "children": 163,
+    "created": "2016-09-01T05:01:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"money\",\"war\",\"gold\",\"silver\",\"cryptocurrencies\"],\"image\":[\"https://www.dollarvigilante.com/wp-content/uploads/2016/08/Putin-Prepares-for-Nuclear-War-Just-Week-After-Germany-Prepares-for-Attack-The-Dollar-Vigilante.jpg\",\"https://img.youtube.com/vi/U4Cs5TEjxtk/0.jpg\",\"https://www.dollarvigilante.com/wp-content/uploads/2016/08/Special-Song-The-Dollar-Vigilante.jpg\",\"https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg\"],\"links\":[\"https://www.dollarvigilante.com/blog/2016/08/23/merkel-prepares-deliberate-crisis-white-house-plans-disastrous-succession.html\",\"http://www.dailymail.co.uk/news/article-3741902/Russian-military-building-new-underground-bunkers-withstand-nuclear-war.html\",\"http://thefreethoughtproject.com/cia-weapons-syrian-jihadis-isis-selling-facebook/\",\"https://www.youtube.com/watch?v=U4Cs5TEjxtk\",\"http://dollarvigilante.com/subscribe\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T05:01:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 118593093813507,
+    "parent_author": "",
+    "parent_permlink": "money",
+    "pending_payout_value": "1422.499 HBD",
+    "percent_hbd": 10000,
+    "permlink": "putin-prepares-for-nuclear-war-just-week-after-germany-prepares-for-attack",
+    "post_id": 1080499,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Putin Prepares for Nuclear War Just Week After Germany Prepares for Attack",
+    "title": "Putin Prepares for Nuclear War Just Week After Germany Prepares for Attack",
+    "total_payout_value": "0.000 HBD",
+    "url": "/money/@dollarvigilante/putin-prepares-for-nuclear-war-just-week-after-germany-prepares-for-attack"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1915876518994,
+        "rshares": 699852690377,
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 701289384385,
+        "voter": "barrie"
+      },
+      {
+        "percent": "500",
+        "reputation": 20297981245452,
+        "rshares": 409333834188,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6351970742614,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099490927,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762862223,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697369009,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54045427499,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661075085,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213673190,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 36417593265,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4698314134689,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 401844080931,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2463346926887,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1820104943,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1066155305807,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 139567988316,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9752474920,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2438952883,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1082239289637,
+        "rshares": 264050196660,
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23744414677575,
+        "rshares": 3081790005091,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1829863145814,
+        "rshares": 701038329558,
+        "voter": "marginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622773507,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1096204467405,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967275107,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 400004453186,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 823396468317,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 63910028506,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288156614,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14365023000,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 14524463466,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 25688974340,
+        "voter": "fkn"
+      },
+      {
+        "percent": "1000",
+        "reputation": 5414208804644,
+        "rshares": 3979242505,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 677909035423,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 847700381,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 231399933007,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73983332816,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432063160,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 534623489109,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 63024638994,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3597537777762,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 362392818036,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53001732751,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2548112906179,
+        "rshares": 4123478215,
+        "voter": "imyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 282110250186,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6009523520,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 98088341974,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 205125559935,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 43199622041,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31688993607,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12845779155,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 199741557,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8562122511,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 7855628813,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 193551595441,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 44204079733,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 107619198367,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 79333963,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 73427338,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 812099979,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3013710280,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 30944167982,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 5305619945,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4185824029,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1368021685,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 12223552900,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 11493575744,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42936222697,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 19746734930,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 12396216231,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1575842910797,
+        "rshares": 10257829698,
+        "voter": "tessaddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 73102427276,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203748970793,
+        "voter": "jl777"
+      },
+      {
+        "percent": "2000",
+        "reputation": 10519849768972,
+        "rshares": 4077622858,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 2582334157,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60975043955,
+        "rshares": 700752312,
+        "voter": "clonewarz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 15453658587,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 190368245,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17534911763,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 618805674,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 2707574080,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1979512137,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 10855436202,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 33148707079,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 129091453,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 52633105216,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8765440170,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 53835780,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 53473560,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 16114519862,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 19804199229,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 29020723398,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 503043418102,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1838725481,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 144042539115,
+        "rshares": 543794764,
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3651974563,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 100133932391,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 12816228337,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3410817262,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 154454721,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 53884258,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 52099594,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 51753317,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 51619811,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 61515128,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1227438886,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83686491434,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 52400873,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2380059515,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": -52839282898,
+        "rshares": 281221497,
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1329782901,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 6763113815,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1428561080,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51863356,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51860909,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51856300,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51852278,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51481279,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 326187987,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 46710151149,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 10832852934,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1499984615,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51562255,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2350430722935,
+        "rshares": 1709839114,
+        "voter": "lyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 591407137,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 74585233974,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51712804,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1713191716,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 51718188,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51388276,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51379706,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1607818099536,
+        "rshares": 669523866,
+        "voter": "sophiachan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 37275739598,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15860264847,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56749063,
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5732988391,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 3122235451,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51814474,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51812703,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 503793040,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51451058,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 176872248178,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 115478656190,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 4497332799,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51148009,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708267266,
+        "rshares": 834117027,
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2760058868,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 53110243,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 141596712,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 41887968235,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 37139276699,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51979174,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5412729008,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50523318,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454788,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50468091,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1575553858,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768451347973,
+        "rshares": 251411191,
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 3022616195,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 220589084,
+        "rshares": 101617979,
+        "voter": "koalax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4965207316,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114510631,
+        "voter": "lovetaste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50293418,
+        "voter": "amylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1632559314,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 756228937,
+        "rshares": 72792245,
+        "voter": "motsna"
+      }
+    ],
+    "author": "sweetsssj",
+    "author_reputation": 26751356331019,
+    "beneficiaries": [],
+    "body": "I've always loved China's classical art and literature, the picture is of me and my cousin wearing ancient traditional costumes.\n![Imgur](http://i.imgur.com/KVULsFp.jpg)\n![Imgur](http://i.imgur.com/8pVoimN.jpg)\n\u6211\u4e00\u76f4\u6df1\u7231\u4e2d\u56fd\u53e4\u4ee3\u7684\u6587\u5b66\u827a\u672f\uff0c\u56fe\u4e2d\u662f\u6211\u548c\u8868\u59b9\u5706\u68a6\u7684\u53e4\u88c5\u9020\u578b\u3002\n\n#### What is Kunqu Opera?\nKunqu Opera is one of China's oldest forms of Chinese Opera. It is also one of China's art and cultural heritage treasures and is recognised of the progenitor acrobatics. Kunqu Opera is listed as one of the Masterpieces of the Oral and Intangible Heritage of Humanity by UNESCO since 2001.\n\nOriginating from the Suzhou area, Kunqu opera began it's life as a folk a Capella and soon become widespread in the southern areas of China. Kunqu opera is not only valued for it's vocals, but also it's literary content. It's merits have taken Kunqu to the highest peaks of Chinese operatic literature. \n\nOwing to the high degree of appreciation for Kunqu opera in the Ming and Qing Dynasties, it's development reached its peak around the 18th Century. It gradually declined in popularity up to the late Qing Dynasty, as more Kunqu performers turned to Beijing Opera instead.\n\n![Imgur](http://i.imgur.com/q2R8a2c.jpg)\n\u4ec0\u4e48\u662f\u6606\u66f2\uff1f\n\u6606\u66f2\uff08Kun Opera\uff09\u662f\u4e2d\u56fd\u6700\u53e4\u8001\u7684\u5267\u79cd\u4e4b\u4e00\uff0c\u4e5f\u662f\u4e2d\u56fd\u4f20\u7edf\u6587\u5316\u827a\u672f\u4e2d\u7684\u73cd\u54c1\uff0c\u62e5\u6709\u767e\u620f\u4e4b\u7956\u7684\u79f0\u53f7\u3002\u6606\u66f2\u57282001\u5e74\u88ab\u8054\u5408\u56fd\u6559\u79d1\u6587\u7ec4\u7ec7\u5217\u4e3a\u201c\u4eba\u7c7b\u53e3\u8ff0\u548c\u975e\u7269\u8d28\u9057\u4ea7\u4ee3\u8868\u4f5c\u201d\u3002\u6606\u66f2\u8d77\u6e90\u4e8e\u4e2d\u56fd\u82cf\u5dde\u4e00\u5e26\uff0c\u4e00\u5f00\u59cb\u662f\u6c11\u95f4\u6e05\u5531\uff0c\u4f46\u4e4b\u540e\u6e10\u6e10\u6d41\u884c\u4e8e\u6574\u4e2a\u4e2d\u56fd\u5357\u65b9\u3002\u56e0\u4e3a\u6606\u66f2\u4e0d\u4ec5\u5177\u6709\u58f0\u8154\u4ef7\u503c\uff0c\u8fd8\u5177\u5907\u6587\u5b66\u4ef7\u503c\uff0c\u6606\u66f2\u7684\u6587\u5b66\u811a\u672c\u662f\u4e2d\u56fd\u620f\u66f2\u6587\u5b66\u7684\u4e00\u5ea7\u9ad8\u5cf0\u3002\u7531\u4e8e\u6606\u8154\u62e5\u6709\u5f88\u9ad8\u7684\u6b23\u8d4f\u5ea6\uff0c18\u4e16\u7eaa\u524d\u660e\u6e05\u65f6\u4ee3\u662f\u6606\u66f2\u53d1\u5c55\u7684\u9f0e\u76db\u65f6\u671f\uff0c\u5230\u4e86\u6e05\u4ee3\u665a\u671f\u9010\u6e10\u8d70\u5411\u6ca1\u843d\uff0c\u5f88\u591a\u6606\u66f2\u5927\u5bb6\u5f00\u59cb\u8f6c\u5411\u4eac\u5267\u8868\u6f14\u3002\n\n#### Kunqu Opera's relation to Beijing Opera\nKunqu is known as the quintessence of Chinese Opera and is one of the firm foundations leading to Beijing Opera. Within a Beijing opera, there are many elements brought over from Kunqu, the vocals, and the acting style. In fact, every Beijing Opera performer must study and lay their foundations through Kunqu opera. \n\n![Imgur](http://i.imgur.com/mfmtxHT.jpg)\n\u6606\u66f2\u4e0e\u4eac\u5267\u7684\u5173\u7cfb\n\u4eac\u5267\u88ab\u8a89\u4e3a\u4e2d\u56fd\u7684\u56fd\u7cb9\uff0c\u800c\u4e2d\u56fd\u620f\u66f2\u4e4b\u6bcd\u6606\u66f2\u5374\u662f\u4eac\u5267\u7684\u6765\u6e90\u4e4b\u4e00\u3002\u4eac\u5267\u91cc\u9762\u6709\u5927\u91cf\u7684\u6606\u66f2\u5531\u8154\u548c\u6606\u66f2\u8868\u6f14\uff0c\u6606\u66f2\u7684\u57fa\u7840\u662f\u6bcf\u4e00\u4e2a\u4eac\u5267\u6f14\u5458\u5fc5\u5907\u7684\u3002\n\n#### Key features of Kunqu\n\nI've always been very interested in Kunqu Opera, from it's strong lyricism, to it's delicate dancing and singing. All elements combined to give a gracious and harmonious resonance. The overall coordination of these factors are what gives *Kunqu* it's beautiful picture. \n\n*Kunqu Opera* inherits much of it's dance from traditional folk dance and court dance. For a dancer like myself, I am fascinated by it's style and origin, for me, it is undoubtedly a great enjoyment as well as a learning process. \n\n*Kunqu* also carries with it an inherited Wu dialect which originated from the south. It is considered a pleasant and sweet sounding dialect, whether in narrative or scenery, spoken or sung, the dance is always coupled with the vocals for perfect compliment. The strong story driving the Kunqu is what fascinates many foreigners, many watching once and falling in love right away. \n\nAmereican Student learning Kunqu / \u7f8e\u56fd\u5b66\u751f\u5b66\u4e60\u6606\u66f2\n![Imgur](http://i.imgur.com/Mdp7rlM.jpg)\nCredit to [ncku.edu.tw]( http://web.ncku.edu.tw/files/16-1000-115044.php?Lang=en)\n\u6606\u66f2\u7684\u7279\u70b9\n\u6211\u4e00\u76f4\u975e\u5e38\u611f\u5174\u8da3\u4e8e\u6b23\u8d4f\u6606\u66f2\u827a\u672f\uff0c\u5b83\u7684\u6292\u60c5\u6027\u5f3a\u3001\u52a8\u4f5c\u7ec6\u817b\uff0c\u6b4c\u5531\u4e0e\u821e\u8e48\u7684\u8eab\u6bb5\u7ed3\u5408\u5f97\u5de7\u5999\u800c\u8c10\u548c\uff0c\u8fd9\u4e9b\u56e0\u7d20\u6574\u4f53\u914d\u5408\uff0c\u603b\u80fd\u8425\u9020\u51fa\u4e00\u79cd\u552f\u7f8e\u7684\u753b\u9762\u3002\u6606\u5267\u7684\u620f\u66f2\u821e\u8e48\u591a\u65b9\u5438\u6536\u548c\u7ee7\u627f\u4e86\u53e4\u4ee3\u6c11\u95f4\u821e\u8e48\u3001\u5bab\u5ef7\u821e\u8e48\u7684\u4f20\u7edf\uff0c\u8fd9\u5bf9\u4e8e\u559c\u6b22\u821e\u8e48\u7684\u6211\u6765\u8bf4\uff0c\u65e0\u7591\u662f\u83ab\u5927\u7684\u4eab\u53d7\u548c\u5b66\u4e60\u8fc7\u7a0b\u3002\u540c\u65f6\u5b83\u7684\u8bed\u97f3\u5e26\u6709\u5434\u4fac\u8f6f\u8bed\u67d4\u548c\u7684\u5357\u65b9\u53e3\u97f3\uff0c\u65e0\u8bba\u53d9\u4e8b\u8fd8\u662f\u5199\u666f\uff0c\u5ff5\u767d\u8bf4\u5531\u4e0e\u821e\u8e48\u7684\u7d27\u5bc6\u7ed3\u5408\uff0c\u6545\u4e8b\u6027\u975e\u5e38\u5f3a\uff0c\u5c31\u8fde\u4e0d\u5c11\u5916\u56fd\u53cb\u4eba\u90fd\u770b\u5f97\u6d25\u6d25\u6709\u5473\u751a\u81f3\u7231\u4e0a\u4e86\u6606\u66f2\u3002\n\n#### A visit to ***Nanke's Dream***\n\nI was very lucky to get an opportunity to come to the Beijing National Grand Theatre which is located west of Tiananmen Square in Central Beijing. This venue holds the highest regard amongst the Chinese national performing arts. It is also the largest Sino-foreign exchange platform serving as a base for the Chinese cultural and creative industries. \n\nThe building is oval shaped, and looks a bit like a spaceship, Because of it's quite uncanny appearance, it clashes with the surrounding environment and yet retains its eye catching qualities. Like a castle with a moat, it was built in the middle of the lake, and surrounded by water. It could be described as a pearl, other's will describe it like a shell. Whichever, the Grand Theatre itself, represents an end of an era, and the beginning of a new one.\n\n![Imgur](http://i.imgur.com/pzep2pW.jpg)\n![Imgur](http://i.imgur.com/98KjWsK.jpg)\n\u8d70\u8fdb\u300a\u5357\u67ef\u68a6\u8bb0\u300b\u7684\u68a6\u5e7b\u4eba\u751f\n\u8fd9\u4e00\u6b21\u5f88\u9ad8\u5174\u6709\u673a\u4f1a\u6765\u5230\u4e86\u5317\u4eac\u7684\u56fd\u5bb6\u5927\u5267\u9662\uff0c\u5b83\u4f4d\u4e8e\u5317\u4eac\u5e02\u4e2d\u5fc3\u5929\u5b89\u95e8\u5e7f\u573a\u897f\u4fa7\uff0c\u662f\u4e2d\u56fd\u56fd\u5bb6\u8868\u6f14\u827a\u672f\u7684\u6700\u9ad8\u6bbf\u5802\uff0c\u4e2d\u5916\u6587\u5316\u4ea4\u6d41\u7684\u6700\u5927\u5e73\u53f0\uff0c\u4e2d\u56fd\u6587\u5316\u521b\u610f\u4ea7\u4e1a\u7684\u91cd\u8981\u57fa\u5730\u3002\u5b83\u7684\u5916\u5f62\u975e\u5e38\u7279\u522b\uff0c\u692d\u5706\u5916\u5f62\u5728\u957f\u5b89\u8857\u4e0a\u663e\u5f97\u50cf\u4e2a\u201c\u5929\u5916\u6765\u5ba2\u201d\uff0c\u4e0e\u5468\u906d\u73af\u5883\u7684\u51b2\u7a81\u8ba9\u5b83\u663e\u5f97\u5341\u5206\u62a2\u773c\u3002\u5b83\u5efa\u5728\u6e56\u4e2d\u592e\uff0c\u8c61\u6e56\u4e2d\u660e\u73e0\uff0c\u53c8\u8c61\u201c\u86cb\u58f3\u201d\uff0c\u91cc\u9762\u5b55\u80b2\u7740\u751f\u547d\uff0c\u5927\u5267\u9662\u4ee3\u8868\u4e86\u4e00\u4e2a\u65f6\u4ee3\u7684\u7ed3\u675f\u4e0e\u53e6\u4e00\u4e2a\u65b0\u7684\u65f6\u4ee3\u7684\u5f00\u59cb\u3002\n\n***Nanke's Dream*** is the story of how it's main protagonist - ***Chunyu Fen***, fell asleep one day as he was drinking alcohol. Whilst asleep, he dreamt that he entered Huaian Empire where he became acquainted with the Ant Emperor as well as the emperor's daughter. The Ant Emperor offered his daughters hand in marriage to which *Chunyu Fen* could not refuse.. For he and the princess fell deeply in love. An so, for 20 years, *Chunyu Fen* was the governor of *Nanke* (a prosperous state of the empire), and lived a rich and glamorous life. Much later, the princess died, and *Chunyu Fen* gradually lost his influence and was eventually repatriated back from whence he came. *Chunyu Fen* suddenly awakes, only to realise that the last 20 years of his life, all the good as well as the grief and sorrow was all but a dream. *Chunyu Fen* finally understands the depths of love and hate in this world, but couldn't accept the fact that his princess was no longer of this world. This realisation empowered his decision to become a Buddhist. \n\nThis opera was written by the famous Ming Dynasty writer called ***Tang Xianzu*** and is one of his most recognised works. It's theme, dream and life is known as classical satire. \n\nThe stage design exudes neo-classical art and yet incorporates modern artistic flair. The Kunqu really leans on this aesthetic and uses it to maintain a fluid flow.\n\n![Imgur](http://i.imgur.com/Lyr0NuS.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\n![Imgur](http://i.imgur.com/yHNscdu.jpg)\n\u300a\u5357\u67ef\u68a6\u8bb0\u300b\u8bb2\u8ff0\u4e3b\u4eba\u516c\u9152\u9189\u540e\u201c\u5357\u67ef\u4e00\u68a6\u201d\u5165\u5927\u69d0\u5b89\u56fd\uff0c\u88ab\u8681\u738b\u53ec\u4e3a\u9a78\u9a6c\uff0c\u4e0e\u516c\u4e3b\u975e\u5e38\u6069\u7231\uff0c\u4e14\u4efb\u804c\u5357\u67ef\u90e1\u592a\u5b88\uff0c\u4e8c\u5341\u4f59\u5e74\u5386\u7ecf\u5bcc\u8d35\u8363\u534e\uff0c\u540e\u6765\u968f\u7740\u516c\u4e3b\u4ea1\u6545\uff0c\u4e3b\u4eba\u516c\u9010\u6e10\u5931\u53bb\u6743\u52bf\uff0c\u6700\u7ec8\u88ab\u9063\u8fd4\u56de\u5bb6\u3002\u540e\u6765\u5e61\u7136\u9192\u6765\uff0c\u624d\u77e5\u4e8c\u5341\u591a\u5e74\u7684\u6b23\u559c\u60b2\u54c0\u90fd\u4e0d\u8fc7\u662f\u5728\u505a\u68a6\u3002\u7537\u4e3b\u4eba\u516c\u4f53\u609f\u81ea\u5df1\u7231\u6068\u7684\u5206\u754c\uff0c\u76f4\u5230\u6700\u540e\u9762\u5bf9\u516c\u4e3b\u7684\u4e0d\u820d\u4e0e\u6df1\u60c5\u540e\uff0c\u7ec8\u4e8e\u6709\u6240\u987f\u609f\uff0c\u7acb\u5730\u6210\u4f5b\u3002\u8be5\u5267\u662f\u660e\u4ee3\u8457\u540d\u620f\u66f2\u5bb6\u6c64\u663e\u7956\u7684\u4ee3\u8868\u4f5c\u4e4b\u4e00\uff0c\u4ee5\u68a6\u5e7b\u5199\u4eba\u751f\uff0c\u662f\u4e00\u90e8\u7ecf\u5178\u7684\u8bbd\u4e16\u5267\u4f5c\u3002\u821e\u53f0\u8bbe\u8ba1\u7a7a\u7075\u5199\u610f\uff0c\u5c55\u5f00\u6606\u66f2\u7684\u6d41\u52a8\u4e4b\u7f8e\u3002\n\n#### The costumes in ***Nanke's Dream***\n\nThe costumes worn by the actors are mostly hand embroidered. It's styles are inherited from traditional Kunqu Opera's, but have some degree of separation on design. The themes are primarily of China's traditional Celedon as well as Chinese traditional landscape paintings. The styles are what enable the viewer to really believe the Huaian dream state really exists. \n\nThe clothes all have landscapes with flowers as their recurring theme. On all the costumes, there was clever and careful consideration of colour used. This is because the patterns and colours must be auspicious but also exude a dream like state on stage. \n\u68a6\u5e7b\u822c\u7684\u300a\u5357\u67ef\u68a6\u8bb0\u300b\u670d\u88c5\n\u821e\u53f0\u4e0a\u6f14\u5458\u620f\u670d\u7684\u4e00\u9488\u4e00\u7ebf\u5927\u591a\u662f\u90a3\u7ee3\u5a18\u4eb2\u624b\u7ee3\u5236, \u5728\u5b8c\u5168\u7ee7\u627f\u4f20\u7edf\u620f\u66f2\u670d\u88c5\u57fa\u7840\u4e0a\uff0c\u53e6\u8f9f\u8e4a\u5f84\uff0c\u4ee5\u4e2d\u56fd\u4f20\u7edf\u9752\u74f7\u4e0e\u5c71\u6c34\u753b\u4e3a\u5143\u7d20\uff0c\u6784\u9020\u51fa\u4e0d\u5c5e\u4e8e\u4eba\u4e16\u7684\u201c\u68a6\u5e7b\u69d0\u5b89\u201d\u7279\u8272\u3002\u4ee5\u5c71\u6c34\u82b1\u9e1f\u6784\u6210\u670d\u88c5\u5143\u7d20\uff0c\u5de7\u5999\u8fd0\u7528\u914d\u8272\u4e0e\u4f20\u7edf\u5409\u7965\u56fe\u6848\u8fdb\u884c\u521b\u65b0\uff0c\u4ee4\u300a\u5357\u67ef\u68a6\u300b\u7684\u821e\u53f0\u8272\u5f69\u4e0a\uff0c\u4e0d\u4ec5\u6709\u7740\u4f20\u7edf\u7684\u53e4\u5178\u97f5\u5473\uff0c\u66f4\u591a\u4e86\u4e00\u4e9b\u201c\u7f8e\u68a6\u201d\u822c\u7684\u7eda\u4e3d\u591a\u59ff\u3002\n\nCeledon costume / \u9752\u74f7\u670d\u9970\n![Imgur](http://i.imgur.com/a7ADbiw.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\nLandscape paintings on the opera costumes / \u620f\u670d\u4e0a\u7684\u5c71\u6c34\u753b\n![Imgur](http://i.imgur.com/nuEom5O.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n![Imgur](http://i.imgur.com/d1A3qB0.jpg)\nCredit to [yczihua.com](http://www.yczihua.com/article-14918.html)\n\nSilk Yarn hand embroidered in various flower patterns all over the cloak. \nCombined with light pink and an embroidered pleated skirt, this outfit is tender yet beautiful.\n\u7528\u4e1d\u7ebf\u7efd\u653e\u7684\u82b1\u6735\u523a\u7ee3\u5728\u7c89\u8272\u6597\u7bf7\u4e0a\uff0c\u914d\u6de1\u7c89\u8272\u523a\u7ee3\u767e\u8936\u88d9\u5f88\u5a07\u8273\u3002\n![Imgur](http://i.imgur.com/36rDsBP.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\nA blue base with grass embroidery and white collar. Shows dignity and is simple yet elegant.\n\u84dd\u8272\u5e95\u5b50\u5170\u8349\u523a\u7ee3\u548c\u767d\u8272\u7acb\u9886\u620f\u670d\uff0c\u7aef\u5e84\u7d20\u96c5\u3002\n![Imgur](http://i.imgur.com/gvmmIxA.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n![Imgur](http://i.imgur.com/yszOR7P.jpg)\nCredit to [zihua01.com](http://www.zihua01.com/article/show-2503.aspx)\n\nPeacock designs on the costumes as well as flowers.\n\u620f\u670d\u4e0a\u7684\u5b54\u96c0\u548c\u82b1\u6735\u5c0f\u9e1f\n![Imgur](http://i.imgur.com/bp3S2d1.jpg)\n![Imgur](http://i.imgur.com/yPdRNoO.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\nSome shots of the protagonist and the princess getting married, as well as showing his visit to the whore house after his wife has passed away. \n\u7537\u5973\u4e3b\u4eba\u516c\u7ed3\u5a5a\u7684\u753b\u9762\u548c\u7537\u4e3b\u4eba\u516c\u5728\u59bb\u5b50\u901d\u53bb\u540e\u53bb\u5993\u9662\u6d88\u9063\n![Imgur](http://i.imgur.com/ezDgbbU.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\nThe protagonist dances with paragraphs of silk, in a bid to farewell for his princess. As seen in the picture, it has an intense effect on stage. \n![Imgur](http://i.imgur.com/WCPfuKz.jpg)\nCredit to [3lian.com](http://www.3lian.com/gif/2014/10-17/63602.html)\n\u7537\u5973\u4e3b\u4eba\u516c\u8bc0\u522b\u7684\u6bb5\u843d\u7684\u7ef8\u821e\uff0c\u6709\u66f4\u5f3a\u70c8\u7684\u821e\u53f0\u6548\u679c\u3002\n\nTang Xianzu's play embodies many aspects of Buddhism, as such, the accompanying music has strong elements of Buddhist music to complement. This integration of Buddhist music, although unconventional to Kunqu Opera, gave the Opera it's own unique flavor. \n\u5728\u5267\u76ee\u7684\u914d\u4e50\u4e0a\uff0c\u66f4\u51e0\u5904\u5173\u8282\u4e0a\u52a0\u5165\u4e86\u4f5b\u6559\u97f3\u4e50\u5143\u7d20\u4ee5\u7a81\u51fa\u6c64\u663e\u7956\u5728\u5267\u672c\u4e2d\u6240\u60f3\u4f53\u73b0\u51fa\u7684\u7985\u610f\u3002\u8bbe\u8ba1\u65cb\u5f8b\u4e0e\u4f20\u7edf\u66f2\u724c\u76f8\u878d\u5408\uff0c\u4f7f\u5f97\u97f5\u5473\u66f4\u6d53\u3002",
+    "body_length": 9049,
+    "cashout_time": "2016-09-07T20:19:30",
+    "category": "art",
+    "children": 17,
+    "created": "2016-08-31T20:19:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"art\",\"literature\",\"music\",\"history\",\"cn\"],\"image\":[\"http://i.imgur.com/KVULsFp.jpg\",\"http://i.imgur.com/8pVoimN.jpg\",\"http://i.imgur.com/q2R8a2c.jpg\",\"http://i.imgur.com/mfmtxHT.jpg\",\"http://i.imgur.com/Mdp7rlM.jpg\",\"http://i.imgur.com/pzep2pW.jpg\",\"http://i.imgur.com/98KjWsK.jpg\",\"http://i.imgur.com/Lyr0NuS.jpg\",\"http://i.imgur.com/yHNscdu.jpg\",\"http://i.imgur.com/a7ADbiw.jpg\",\"http://i.imgur.com/nuEom5O.jpg\",\"http://i.imgur.com/d1A3qB0.jpg\",\"http://i.imgur.com/36rDsBP.jpg\",\"http://i.imgur.com/gvmmIxA.jpg\",\"http://i.imgur.com/yszOR7P.jpg\",\"http://i.imgur.com/bp3S2d1.jpg\",\"http://i.imgur.com/yPdRNoO.jpg\",\"http://i.imgur.com/ezDgbbU.jpg\",\"http://i.imgur.com/WCPfuKz.jpg\"],\"links\":[\"http://web.ncku.edu.tw/files/16-1000-115044.php?Lang=en\",\"http://www.3lian.com/gif/2014/10-17/63602.html\",\"http://www.yczihua.com/article-14918.html\",\"http://www.zihua01.com/article/show-2503.aspx\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T10:00:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 32148572761414,
+    "parent_author": "",
+    "parent_permlink": "art",
+    "pending_payout_value": "109.682 HBD",
+    "percent_hbd": 10000,
+    "permlink": "dreaming-of-kunqu-opera",
+    "post_id": 1075604,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Unravelling the mysteries of Ancient Chinese Opera.  \u68a6\u7740\u6606\u66f2\u7684\u7f8e\u68a6\u3002",
+    "title": "Unravelling the mysteries of Ancient Chinese Opera.  \u68a6\u7740\u6606\u66f2\u7684\u7f8e\u68a6\u3002",
+    "total_payout_value": "0.000 HBD",
+    "url": "/art/@sweetsssj/dreaming-of-kunqu-opera"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 29149950835282,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6861569971471,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5924234483394,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099190450,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762481721,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697315118,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54008589524,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660921578,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213661759,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 680044431552,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622724514,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967195088,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 37433283387,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288140285,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 77077525796,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1307793552141,
+        "rshares": 16790593117,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15147326440,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 245262828265,
+        "voter": "pal"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431790058,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 645871797,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686886224488,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 264232034103,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2734348852,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811919161664,
+        "rshares": 5295879940,
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 27723610634,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 193551595441,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 7737095403,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 495205928,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 164144609,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4297945677,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 14060870176,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274966694,
+        "rshares": 240049444,
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15095872300,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 57476973508,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5163291953,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7599817269,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 8109622231,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 83369140,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127967014,
+        "rshares": 169107599,
+        "voter": "rapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 96844036334,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 21862321315,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 27733549939,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5554247457,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7063527946,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 51270513,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 58275558296,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18105338219923,
+        "rshares": 14595453967,
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 10969296833,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 368407925,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 39122672915,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6723333932,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 10781138628,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4775359646971,
+        "rshares": 3360007447,
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1400671466,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4468774878,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14837664179974,
+        "rshares": 24766554839,
+        "voter": "jaredhowe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2918379629,
+        "rshares": 1729399452,
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907554,
+        "rshares": 56944614,
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 3234541052,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3804803969,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 97596413,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19260827149,
+        "rshares": 58151911,
+        "voter": "thomas.shirk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 20656723016,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 301500778,
+        "rshares": 4413950649,
+        "voter": "dangis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 635505831325,
+        "rshares": 109707855,
+        "voter": "xvickx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7926925304,
+        "rshares": 57963669,
+        "voter": "natof9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2523049726780,
+        "rshares": 1253697227,
+        "voter": "profitgenerator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 115487703646,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 68442517,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726273314822,
+        "rshares": 499134976,
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6447867236,
+        "rshares": 51595558,
+        "voter": "saintmichael"
+      }
+    ],
+    "author": "kafkanarchy84",
+    "author_reputation": 18105338219923,
+    "beneficiaries": [],
+    "body": "**\"Progress.\" One hears this word all the time in political speeches.** \"Forward.\" \"Progress.\" \"Change.\" Here in Japan it is exactly the same. There is a sign for Shinzo Abe (current Japanese Prime Minister) in my neighborhood which reads, roughly translated from the Japanese:\n\n***With Strong Power,***\n***Forward.***\n***This way.***\n\n<a href='https://postimg.org/image/4dorojsjx/' target='_blank'><img src='https://s14.postimg.org/aemglmf69/bullshit_poster.jpg' border='0' alt='bullshit poster'/><br /><a target='_blank' href='https://postimage.org/'>\n\nAs Abe is currently attempting to reinterpret [Article 9 of the Japanese constitution](https://en.m.wikipedia.org/wiki/Article_9_of_the_Japanese_Constitution) it looks like Japan may indeed be going \"strongly forward,\" right into war.\n\n# The \"Status Quo\" Destroys What We Don't (but could possibly) Know. #\n\nI want to pause here for a second and look at the word \"state.\" Look at the phrase \"***status*** quo.\" *State* and *status* are clearly seen to share a common etymological root. Namely, the Latin *\"stare\"* which means \"to stand.\" Now, think of the words \"stagnant\" or \"static.\" These words are all interrelated.\nWhat they have in common is clearly seen:\n\n**NOTHING IS MOVING.**\n\n**It truly is a sad *state* of affairs. The state hates movement, hates innovation, and hates progress.** How do I know? Well, if it is not easy enough to decipher already, let's look at three fields where true progress in innovation is basically grinding to a halt under state \"supervision.\" This \"supervision\" is killing the *real vision* which always benefits humanity insofar as it is allowed to flourish.\n\n**The three areas are:**\n\n**1. Health**\n**2. Science**\n**3. The Arts**\n\n<a href='https://postimg.org/image/3rltv0nvb/' target='_blank'><img src='https://s15.postimg.org/tzwyke7yz/Cannabis.jpg' border='0' alt='Cannabis'/><br /><a target='_blank' href='https://postimage.org/'>\n# Health # \n\nMarijuana. Need I say more? Proven to dramatically reduce the symptoms of epilepsy and other neurological disorders, kill cancer cells and provide a safe, non-addictive treatment for pain, depression, and PTSD, Cannabis, this plant which also has about a million other practical uses is...\n**\"ILLEGAL.\"**\nI think I need to smoke a bowl now because I want to puke. Oh wait. I can't. I'll be taken from my family, put in a rape cage and have to do hard labor. Silly me. **I forgot. We are *civilized.***\n\nSuper addictive opiate-based painkillers shown to make people suicidal and *more depressed?*  Why, legal, of course.\n\n**RESOURCES ON THE MEDICAL BENEFITS OF CANNABIS:**\n\nhttp://www.cancer.gov/about-cancer/treatment/cam/patient/cannabis-pdq\n\nhttps://m.youtube.com/watch?v=S9qkYLtAhSQ\n\n# Science #\n\nNikola Tesla. Arguably the greatest inventor/scientific mind of the late 19th, early 20th century--dies alone, penniless, and talking to birds. No matter he was working to, and claimed to have found, a way to extract free, ambient energy from the air. The Rockefellers, Edisons, and Morgans, would not hear of it. No funding for you, Nik!\n\nWhy was there no funding for Tesla? In a nutshell, it was because the state was interested in maintaining a violent monopoly on the production of power, so they could continue to stuff their faces with the finest foods and travel the world, while laughing at the likes of you and I, working until we die to pay for access to their shitty fossil fuels and crudely primitive sources for energy and power.\n\n>Morgan could easily see that Tesla\u2019s main motivation was not to make money. Rather it was to emancipate humanity with new forms of technology that would liberate people from darkness, drudgery, and various forms of top-down oppression. Neither Morgan nor the class he represented shared Tesla\u2019s goal of conducting research and development to make life easier and better in ways that operate within, rather than against, prevailing patterns of nature, including what is best in human nature.\n[SOURCE](http://www.veteranstoday.com/2014/04/22/prophet-or-profit-nikola-teslas-vision-vs-j-p-morgans-greed/)\n\n**RESOURCES:**\nhttp://www.pbs.org/tesla/ll/ll_todre.html\nhttps://en.m.wikipedia.org/wiki/Wireless_power_transfer\n\n<a href='https://postimg.org/image/fe74390xv/' target='_blank'><img src='https://s21.postimg.org/4elwrnaiv/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/app.php'>\n## The Arts ##\n\n**My whole reason for posting. I read an interesting quote by film director Francis Ford Coppola just yesterday:**\n\n>You have to remember that it\u2019s only a few hundred years, if that much, that artists are working with money. Artists never got money. Artists had a patron, either the leader of the state or the duke of Weimar or somewhere, or the church, the pope. Or they had another job. I have another job. I make films. No one tells me what to do. But I make the money in the wine industry. You work another job and get up at five in the morning and write your script.\nThis idea of Metallica or some rock n\u2019 roll singer being rich, that\u2019s not necessarily going to happen anymore. Because, as we enter into a new age, maybe art will be free. Maybe the students are right. They should be able to download music and movies. I\u2019m going to be shot for saying this. But who said art has to cost money? And therefore, who says artists have to make money?\n[SOURCE](http://99u.com/articles/6973/francis-ford-coppola-on-risk-money-craft-collaboration)\n\n**Well, how do you feel? Do *you* want to shoot him? I don't. I think his answer here is dead on.** I am all for artists being paid. In fact, that is one of the main reasons I am on Steemit.com. However, as an anarchist, and as one who has given a substantial amount of thought to the matter, I do not support IP (intellectual property) \"rights.\" These reasons why I do not can be basically summed up in [this article](https://steemit.com/anarchism/@jaredhowe/intellectual-property-a-government-protected-monopoly) by @jaredhowe.\n\nWhat I am getting at here is that real artists, paid for the art or not, are going to create. However, for anyone who has ever read George Orwell's *Keep the Aspidistra Flying* it is clear that some modicum of sustenance (food in belly, clothes on back, roof over head) are necessary for creation to really take place. I quote Orwell from the aforementioned title here:\n\n>The next seven months were devastating. They scared him and almost broke his spirit. He learned what it means to live for weeks on end on bread and margarine, to try to \u2018write\u2019 when you are half starved, to pawn your clothes, to sneak trembling up the stairs when you owe three weeks\u2019 rent and your landlady is listening for you. Moreover, in those seven months he wrote practically nothing. The first effect of poverty is that it kills thought. He grasped, as though it were a new discovery, that you do not escape from money merely by being moneyless. On the contrary, you are the hopeless slave of money until you have enough of it to live on\u2015a \u2018competence\u2019, as the beastly middle-class phrase goes.\n\n<a href='https://postimg.org/image/hvr7ls1cr/' target='_blank'><img src='https://s9.postimg.org/6w60a6axr/1430395863q3fi8.jpg' border='0' alt='1430395863q3fi8'/><br /><a target='_blank' href='https://postimage.org/'>\n\n**So, this is it. Without money, creation is stifled. Without money, people become selfish (naturally). Without money, fear sets in.**\n\n( As a brief aside, I would also like to recommend W. Somerset Maugham's *The Summing Up* as an excellent exploration of this idea. Maugham wrote this book toward the end of his life as a kind of final statement, and self-declaration, and in it he talks much of how success, to the contrary of what society says and teaches, did not make him greedy, haughty, uncreative and unfeeling, but on the contrary seemed to engender compassion, creativity, and long suffering for others in him.)\n\n\n\n# Without the State, Money Flows #\n\nMaybe you are an artist working as a carpenter, daytime. Maybe you do landscaping. Maybe you are a garbage man symphony composer burning the midnight oil in unpredictable feverish heats of creative passion. There is nothing wrong with that. There is nothing wrong with working a \"day job,\" is there? Sure, we should all strive to do what we love, and to do it ALL THE TIME. I'm a believer in that. If it wasn't what we were \"meant to do\" why would we be doing it for no pay, no glory, and no legacy, other than that of our own personal satisfaction? \n\n**My main point in writing this is that, without all the restrictive--and maybe, more accurately, *constrictive*--red tape, meaningless legislation, bureaucratic fines, fees, licenses, taxes, and guns to your head to enforce them, you would probably have more money, and thus, more time, energy, resources, compassion and flow to dedicate to your art.**\n\n<a href='https://postimg.org/image/ksywo2yvl/' target='_blank'><img src='https://s16.postimg.org/g72sfqdcl/band.jpg' border='0' alt='band'/><br /><a target='_blank' href='https://postimage.org/'>*A picture I drew of my former band, on which I spent thousands of dollars and got nothing in return but a personal satisfaction. Namely, the transmission of myself via sounds, music, and words to others, and the joy of connecting with my fellow humans on a profound level through self-expression.*\n\n# Anarchism, Art, and Order #\n\n<a href='https://postimg.org/image/502b757ib/' target='_blank'><img src='https://s21.postimg.org/n2vdyd3d3/anarchy.jpg' border='0' alt='anarchy'/><br /><a target='_blank' href='https://postimage.org/'>\n\n**If you are an anarchist you likely know the overwhelming feeling of dread and fear that sometimes hits.** I've got a stomachache right now because of it. It feels as if there is no way out. Behind on medical bills, behind on taxes, behind on absolutely everything and your whole life you have been told that this is normal:\n\n**to burn yourself out, and slave each moment of existence *just to pay a thief,* is *normal.***\n\n**Enough is enough.**\n\n**Can you imagine how beautiful the world could be without a state?**\n\nBeautiful gardens being grown, medicine being made and technology being advanced at light-speed now that the lobbyists are gone.\n\nNow that everyone is armed, we laugh at those who would say \"stop resisting\" when they try to uproot plants from our gardens, forests and fields. Community organizations come to your aid. The bully who used to throw people in cages is now, ostracized caged or *killed himself* should he try to violate the rights or take the life of another peaceful human being.\n\nCan you imagine the paintings, the murals, the sculptures viewed from modern, high-speed roadways standing stories tall, of boys and girls playing, of great men and women of science, instead of the grotesque statues of communist leaders or child-murdering, dictatorial thieves?\n\n**This is my world.**\n\n**I live in this world already.**\n\n**Will you be there, too?**\n\n~KafkA\n***\n*Graham Smith is a Voluntaryist activist residing in Niigata, Japan.*\n<a href='https://postimg.org/image/q3u5ej98r/' target='_blank'><img src='https://s17.postimg.org/hlkpa72q7/13615500_730504890423605_1425702647400253724_n.jpg' border='0' alt='13615500_730504890423605_1425702647400253724_n'/><br /><a target='_blank' href='https://postimage.org/'>",
+    "body_length": 11332,
+    "cashout_time": "2016-09-07T02:31:54",
+    "category": "anarchy",
+    "children": 5,
+    "created": "2016-08-31T02:31:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"anarchy\",\"anarchism\",\"cannabis\",\"voluntaryism\",\"politics\"],\"users\":[\"jaredhowe\"],\"image\":[\"https://s14.postimg.org/aemglmf69/bullshit_poster.jpg\",\"https://s15.postimg.org/tzwyke7yz/Cannabis.jpg\",\"https://img.youtube.com/vi/S9qkYLtAhSQ/0.jpg\",\"https://s21.postimg.org/4elwrnaiv/image.jpg\",\"https://s9.postimg.org/6w60a6axr/1430395863q3fi8.jpg\",\"https://s16.postimg.org/g72sfqdcl/band.jpg\",\"https://s21.postimg.org/n2vdyd3d3/anarchy.jpg\",\"https://s17.postimg.org/hlkpa72q7/13615500_730504890423605_1425702647400253724_n.jpg\"],\"links\":[\"https://postimg.org/image/4dorojsjx/\",\"https://postimage.org/\",\"https://en.m.wikipedia.org/wiki/Article_9_of_the_Japanese_Constitution\",\"https://postimg.org/image/3rltv0nvb/\",\"http://www.cancer.gov/about-cancer/treatment/cam/patient/cannabis-pdq\",\"https://m.youtube.com/watch?v=S9qkYLtAhSQ\",\"http://www.veteranstoday.com/2014/04/22/prophet-or-profit-nikola-teslas-vision-vs-j-p-morgans-greed/\",\"http://www.pbs.org/tesla/ll/ll_todre.html\",\"https://postimg.org/image/fe74390xv/\",\"https://postimage.org/app.php\",\"http://99u.com/articles/6973/francis-ford-coppola-on-risk-money-craft-collaboration\",\"https://steemit.com/anarchism/@jaredhowe/intellectual-property-a-government-protected-monopoly\",\"https://postimg.org/image/hvr7ls1cr/\",\"https://postimg.org/image/ksywo2yvl/\",\"https://postimg.org/image/502b757ib/\",\"https://postimg.org/image/q3u5ej98r/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T03:34:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 44861547400445,
+    "parent_author": "",
+    "parent_permlink": "anarchy",
+    "pending_payout_value": "230.923 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-art-of-anarchy-how-the-state-suppresses-creativity-innovation-and-progress",
+    "post_id": 1065258,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "The Art of Anarchy: How the State Suppresses Creativity, Innovation, and Progress.",
+    "title": "The Art of Anarchy: How the State Suppresses Creativity, Innovation, and Progress.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/anarchy/@kafkanarchy84/the-art-of-anarchy-how-the-state-suppresses-creativity-innovation-and-progress"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 314859374093,
+        "rshares": 118375050443,
+        "voter": "penambang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 898999837605,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1048493215368,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 75887657904,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34688108074,
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431736381,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 359570383120,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 10821205658,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 35997491244,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2247539959401,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 13344569074,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 510761583032,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 97998372635,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "3700",
+        "reputation": 598181152117,
+        "rshares": 80797527028,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 264232034103,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 94293890572,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 59681038843,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 1327008130,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 17885864632,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 956637447308,
+        "rshares": 1862753166,
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3443870821,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 50922521045,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4248264820,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 41600326158,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4614780233,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10363856033,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 466928201309,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 71512383012,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 752262956946,
+        "rshares": 2728944167,
+        "voter": "kepo777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 13854906879,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12851338071,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793209170784,
+        "rshares": 1586424739,
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 23031752136,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 13985938610,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5740590214206,
+        "rshares": 11380680169,
+        "voter": "tinyhomeliving"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 18461515038,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1248165138944,
+        "rshares": 3019181010,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18407230178,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7740774800016,
+        "rshares": 27111031461,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4192907964,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 8984285747,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 72326327736,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327313183062,
+        "rshares": 1038533669,
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 442838800,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 11217104095,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 38420993918,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 8274812056,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3500",
+        "reputation": 17698439393799,
+        "rshares": 10236495537,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 32598223972,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5246198372,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 76609480,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2925417608,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19368137736,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 28503926327,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1685862547,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5477975441,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1949167915,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1083184768217,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2500",
+        "reputation": 18027204457681,
+        "rshares": 8801659586,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 5776723480371,
+        "rshares": 95623720863,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 206355094166,
+        "rshares": 3594663669,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2136142852031,
+        "rshares": 8832774864,
+        "voter": "aleksandraz"
+      },
+      {
+        "percent": "3500",
+        "reputation": 97845484474,
+        "rshares": 18397730220,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99941487421,
+        "rshares": 84546938,
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124828196272,
+        "rshares": 852897404,
+        "voter": "havok777"
+      },
+      {
+        "percent": "1500",
+        "reputation": 134345349682,
+        "rshares": 1127861801,
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 12201607300,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "3400",
+        "reputation": 1851205309677,
+        "rshares": 1327638656,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 1752604310,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "0",
+        "reputation": 954937043358,
+        "rshares": 133268926,
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 54770479559,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 10552634113,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1129806513,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "3700",
+        "reputation": 4195733833721,
+        "rshares": 3345684015,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 18503161084,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "3700",
+        "reputation": 730408370151,
+        "rshares": 220591346,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 10826660667,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 74754408377,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 6784921228,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12127107749,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 420580334986,
+        "rshares": 73686270,
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5788018857372,
+        "rshares": 6379814992,
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 88366627,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 603712143,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329317015182,
+        "rshares": 309692332,
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186924852752,
+        "rshares": 69382211,
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4397523492,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 1576961403,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 3421014498,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 413377157,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 68442517,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 65057583,
+        "voter": "marquismiller"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>1) Supercharging your vote</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/iStock_20135252_SMALLbf93e.jpg\" width=\"849\" height=\"565\"/></p>\n<p>We have the promotion feature and it is a nice addition but as @stellabelle and I have discussed this does not allow people to power up their vote in any way. &nbsp;</p>\n<p>My proposal is to allow people to \"supercharge\" their vote with Steem Dollars which would effectively allow them to vote as if they were a whale. &nbsp;</p>\n<p>Most people would never have enough money to be able to do this via powering up the normal way. &nbsp;By allowing them to give special votes in this way you not only decrease the perceived inequality but you also increase the utility of Steem Dollars.</p>\n<p>The money gets added to the value of the post like any other vote and goes to the author and curators without getting burned.</p>\n<p><br></p>\n<h1>2) When you Power Up your SP Your Voting Power Percentage resets to 100</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/30/iStock_82500533_SMALL1bb21.jpg\" width=\"848\" height=\"565\"/></p>\n<p>This would need to have a minimum value set on it to prevent people gaming it but if a decent limit of say 20 STEEM/SP was set I think a fair balance could be created. &nbsp;It might need a trial period to get the balance right but I don't see any negatives to at the very least trialling it.</p>\n<p>I think it is only fair to reward people for supporting the platform by powering up and this would create an added incentive for doing it.</p>\n<p>It would be another reason for people to keep powering up and not power down.</p>\n<p><br></p>\n<h1>What do you think?</h1>\n<p>I would love to hear everyone else's opinions on these features. &nbsp;Have your say in the comments:</p>\n<p><em>(Stock images are licensed from Istockphoto)</em></p>\n</html>",
+    "body_length": 1847,
+    "cashout_time": "2016-09-07T01:48:42",
+    "category": "steemit",
+    "children": 51,
+    "created": "2016-08-31T01:48:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemit-issues\",\"improvements\"],\"users\":[\"stellabelle\"],\"image\":[\"https://www.steemimg.com/images/2016/08/30/iStock_20135252_SMALLbf93e.jpg\",\"https://www.steemimg.com/images/2016/08/30/iStock_82500533_SMALL1bb21.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T01:48:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 8475830574606,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "7.511 HBD",
+    "percent_hbd": 10000,
+    "permlink": "2-killer-steemit-features-i-would-like-to-see",
+    "post_id": 1064882,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "2 Killer Steemit Features I Would Like to See",
+    "title": "2 Killer Steemit Features I Would Like to See",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@thecryptofiend/2-killer-steemit-features-i-would-like-to-see"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 190869539046,
+        "rshares": 758229401499,
+        "voter": "mr11acdee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 55443872918,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 32455846463901,
+        "rshares": 6427387942069,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 35604278185574,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6840543961070,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9314806498176,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120834626314,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 945944540976,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3524460829376,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098774179,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3761913032,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697256115,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 500914366241,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53926470434,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660705255,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213653566,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 389063897599,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2393513197011,
+        "voter": "recursive"
+      },
+      {
+        "percent": "2000",
+        "reputation": 83941319998,
+        "rshares": 1136472885089,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 80699573707,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 253788669743,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 9200408205,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622667151,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967098399,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 839270505208,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 89866609466,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 36622493980,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288128811,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23934753310,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 82688369456,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 12974070943,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 85956249019,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 365743136198,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 79653132659,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9589267820,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 16764407247,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 13423594806,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7582612728,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 535513865380,
+        "voter": "eeks"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4931834878069,
+        "rshares": 12587223080,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1427571994880,
+        "rshares": 11166877278,
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 465107574,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9703919146,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5456091909,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11372617606769,
+        "rshares": 111430524354,
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 26320907217,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 37297723085,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2098966754,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 327209166737,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5414208804644,
+        "rshares": 16574864652,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 645309420649,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 239540317938,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 908206405,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3663621620,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 18726590841,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -360088797540,
+        "rshares": 1449074419,
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 221720713377,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 59551898705,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 54129776980,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1062096269,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 76778729916,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 516435133701,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1430738012,
+        "voter": "murh"
+      },
+      {
+        "percent": "0",
+        "reputation": 562223585509,
+        "rshares": 376542079,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 47661340196,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 562669986551,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 59997501097,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24795162523,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2931804837,
+        "voter": "bill-kline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 201832466909,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3594850813100,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 371652967811,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 334084395,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 363256840,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3959154858064,
+        "rshares": 9861567392,
+        "voter": "gsus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 49611650863,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488865370830,
+        "rshares": 827956563,
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 103183151792,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12933674542,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 65873159454,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 9218256992,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 67941545485,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 258065486703,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 75952714371,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 135558091568,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1905130714,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 281682997632,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 132870495141,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1960155455032,
+        "rshares": 4044569693,
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 193325289474,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1429359370177,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 102981746849,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 42254419116,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 32317868792,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18458799241134,
+        "rshares": 46165618324,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 13511383443,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 7741509209,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3398961575,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12819770845,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2181554739322,
+        "rshares": 14008745562,
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2712490349517,
+        "rshares": 6615855133,
+        "voter": "tobydaniel2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17543063322,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 261201772,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 9856964632,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 19983766662,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 8028855596,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49604795295009,
+        "rshares": 335454431536,
+        "voter": "heiditravels"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4542608039,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5631764590,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 41598563868,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3043880308,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4522484628,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 8578050565,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5014183284,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 15159135783,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 18333306648,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247349335,
+        "rshares": 304208082,
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 117160059235,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 30694094423,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 10105609937,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 135308691632,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 125040431114,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 15814654233,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 8236654789,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71339012754,
+        "rshares": 9191580572,
+        "voter": "rnevet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 626493107542,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 32953138376,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1592136512,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8532600904,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 76784131793,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17820220099,
+        "rshares": 1339511338,
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 752262956946,
+        "rshares": 2727574411,
+        "voter": "kepo777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 464302070067,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10585603645,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12755003778,
+        "rshares": 308550471,
+        "voter": "onthewayout"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9142611234,
+        "rshares": 333706353,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3871042,
+        "rshares": 305939049,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 113577526339,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1350155707,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 1206462597,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147174247311,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10438079975,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12851338071,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 864077460,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 22470657587,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 14953551106,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4673264451,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4023608719,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2916845666,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11032935743,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 86186408194,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 473559669,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 113769285579,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4183845094,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54233106957,
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 15492148878,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 7769781964,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1367833704,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 30275949847,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 78983719974,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13451771168,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 9937357651,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1768701961,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8841186026,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 825453432,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 594214785,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 18793081399,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 2180586785,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 268065099767,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274966694,
+        "rshares": 235342593,
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 43997216785,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 20755866976,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 20246922705,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 118255889342,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3422191867,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1769553673,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13248573174,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12202190947,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2423586298,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 4127371020,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 741654237981,
+        "rshares": 5474925957,
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 252325991392,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 136950996,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3415324828,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14306493580,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 61113481202,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 120903743,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1482891198,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8079515480,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2475919284,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 8130024422,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165916744066,
+        "rshares": 876685820,
+        "voter": "amor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 226888651833,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3287926088,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 884407671803,
+        "rshares": 812081773,
+        "voter": "sovereignbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 111864348,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 24431467730,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4082655338,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 72188301713,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 106773590,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3415496053078,
+        "rshares": 3514180305,
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203596805109,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 97391141,
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 995679022080,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 113481077,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 26224201592,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "8000",
+        "reputation": 10519849768972,
+        "rshares": 15885452304,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1646355321,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 249753408,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 250127725,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144699103,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 145516307,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82969949,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4927592739,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 9947377892,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078296488269,
+        "rshares": 6989326514,
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 662320934570,
+        "rshares": 401029098,
+        "voter": "ladypenelope1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 14089138088,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 212108890668,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 682632091,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6960449261,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4283332799,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 442838800,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1912624362,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 878557069,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1376266655,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7599817269,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17522565456,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 593558488,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17665762711,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 400045064,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 214599727,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 11348028763,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 75136080,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 87875580,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 4669081913,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 722444244,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 8747695392,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 122273677,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 897211578,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 95071888164,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1346175861647,
+        "rshares": 6431609320,
+        "voter": "comealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1318034402,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 21862344199,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1042729942,
+        "rshares": 112669609,
+        "voter": "awaking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 89163450186,
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1099605749,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 51493519449,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8760811043,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 6023464839,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697263449295,
+        "rshares": 1404629435,
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1170215099621,
+        "rshares": 1475551420,
+        "voter": "shaheer001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11009445667,
+        "rshares": 66335200,
+        "voter": "elec365"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262675835,
+        "rshares": 64002331,
+        "voter": "marynetta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 3776705827,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 604356859725,
+        "rshares": 2501311515,
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 22418268355,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3800326295,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 15936411207,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 33035830465,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 3634498489,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 1776772038,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2221585706,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 440780649721,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3564737346,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 741195080,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 527810072,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 86802572834,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39744649494,
+        "rshares": 16142666675,
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475920141542,
+        "rshares": 235619763,
+        "voter": "riosparada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1317535282,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 12628040417,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10158724335,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 17085246218,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 92634012404,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3452722106,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 61274515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2442663082,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 632943616,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1361293312,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 54703435881,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 52099594,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11641985098,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 330698101,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 51753317,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3847031922,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 145684441672,
+        "rshares": 580373746,
+        "voter": "bmcv001"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1588639050,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 17969206486,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 4287682528,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 66843259,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 58277489,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11985033800,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1718263538,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 61056742,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 85844312962,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 11484038338,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 575708182,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 59872138,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3537992772642,
+        "rshares": 38942482124,
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1148442889,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 608245002340,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 76555472966,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 7409763632,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4202213533,
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1258347207,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1429700840,
+        "rshares": 58273476,
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1115440027,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 7542708002,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1665570930,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 771908956,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51852278,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87993823754,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 447463625,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4146823244,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 2117999039,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51481279,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 18096694691,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 383444983,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 489268995,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17975783136,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 963426496,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12200925269,
+        "rshares": 61763241,
+        "voter": "kenistyles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5923119227,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57842929,
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 78034241694,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38239629358,
+        "rshares": 62402082,
+        "voter": "lensessions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1087363894,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57966969,
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 40532137340,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12408078567,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179991301994,
+        "rshares": 186472391,
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7880148903461,
+        "rshares": 11717575431,
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 7003599108,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12087608265,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 60330284,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57717811,
+        "voter": "ccm702"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4297274506,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 3059404056,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73481598898,
+        "rshares": 93285020,
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17203965465,
+        "rshares": 58014390,
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 433370384966,
+        "rshares": 1640583352,
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57475981,
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24542145098,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58605389,
+        "voter": "stokjockey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 236422965,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1597148004,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118704463,
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 312357671,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 931476355,
+        "rshares": 58270400,
+        "voter": "awareindeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907554,
+        "rshares": 58083507,
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 141386604,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 55750195,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77767196646,
+        "rshares": 76323726,
+        "voter": "adnanefs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8425764272,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8652306644,
+        "rshares": 50164653,
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118894339,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 941893474,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 666566725,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227415344771,
+        "rshares": 68000266,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3689924694,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 788390,
+        "rshares": 246586617,
+        "voter": "ratinct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56761351,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15805181807,
+        "rshares": 94063090,
+        "voter": "darkflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48912400347,
+        "rshares": 305954884,
+        "voter": "shanelohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 82849053193,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 95644485,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2195520064,
+        "rshares": 57872458,
+        "voter": "jcomeauictx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 505136737966,
+        "rshares": 134517502,
+        "voter": "matthewmencel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387438670668,
+        "rshares": 641422439,
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 7040332611,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 1635069765,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 79669298,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1115296338676,
+        "rshares": 150460886,
+        "voter": "freeinthought"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 13864407456,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 2365368248,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11825120423,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 646708938,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 58576423,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 376009198,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 17535220687,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 6881046075,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 361907111,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5726762840,
+        "rshares": 57248873,
+        "voter": "cryp71x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 107899577,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4620545782,
+        "rshares": 534937690,
+        "voter": "dumbclubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 51718188,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59741874574,
+        "rshares": 69110586,
+        "voter": "expatlove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 53537748,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794973811289,
+        "rshares": 1280449066,
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 268017975,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6064514,
+        "rshares": 55669133,
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 37242141910,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71073572115,
+        "rshares": 55627295,
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4447885148,
+        "rshares": 56625126,
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775448580,
+        "rshares": 54467501,
+        "voter": "mrmike3rd7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131421134,
+        "rshares": 56690664,
+        "voter": "ritherz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1029594046,
+        "rshares": 56616688,
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907154101,
+        "rshares": 631258194,
+        "voter": "tylerdav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 2716492929,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 561774262537,
+        "rshares": 1159739581,
+        "voter": "maryfromsochi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972369433984,
+        "rshares": 2653697396,
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55803830,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 14243082064,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1647994899,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1819840614360,
+        "rshares": 508931772,
+        "voter": "codylang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 1823133785,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 57143539,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 115478656190,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 267639325,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 52024054,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2498083480,
+        "rshares": 72763310,
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51210426,
+        "voter": "t-killa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2195094022,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51148009,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 154743752672,
+        "rshares": 54349843,
+        "voter": "lynceus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23181600649,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 915504134,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 5042502288,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 54551628,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 213702500,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4678584078,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 343328624,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1373853332548,
+        "rshares": 268499548,
+        "voter": "serioustruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 70170304,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53008000460,
+        "rshares": 55496299,
+        "voter": "allyouneedtoknow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53871683,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53593366,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 245237484621,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 53602103,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 37107302332,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50050365062,
+        "rshares": 59702540,
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 1502059088,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4408882617025,
+        "rshares": 700644632,
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51979174,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1624220962,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 50812926,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1612393618,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5635467,
+        "rshares": 52800061,
+        "voter": "perufoodie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5682945431,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69131953,
+        "rshares": 51646863,
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52663821,
+        "voter": "thefernandaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2852618357,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2004604707,
+        "rshares": 52635830,
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176228976143,
+        "rshares": 8258036015,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 62633640,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7013912618,
+        "rshares": 55034512,
+        "voter": "daniel31oh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 58720591,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1002683608,
+        "rshares": 53327662,
+        "voter": "pdavid000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 143043369,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691146274,
+        "rshares": 52874902,
+        "voter": "steeme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 1918615754,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4971287291,
+        "rshares": 51620406,
+        "voter": "libertyadvocate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6447867236,
+        "rshares": 50563647,
+        "voter": "saintmichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 51570063,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26593737739,
+        "rshares": 61140021,
+        "voter": "roman-dikanev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972344082,
+        "rshares": 52629272,
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3302532614,
+        "rshares": 65608445,
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 53518025,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 1664685968,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 136773607,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013164758868,
+        "rshares": 92087247,
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264229413597,
+        "rshares": 51436620,
+        "voter": "rossulbricht"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51422500,
+        "voter": "newman57103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 52399098,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51250382,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68065278228,
+        "rshares": 62714685,
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1308464526,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2093855721226,
+        "rshares": 51492662,
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 464502884,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508583499,
+        "rshares": 50821110,
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1625136432,
+        "rshares": 50825171,
+        "voter": "donchate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 607607141,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50586270,
+        "voter": "adbro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2124439612,
+        "rshares": 50505248,
+        "voter": "ana-maria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159378797,
+        "voter": "dayan"
+      }
+    ],
+    "author": "dollarvigilante",
+    "author_reputation": 67427595157518,
+    "beneficiaries": [],
+    "body": "<center>https://www.steemimg.com/images/2016/08/30/JeffBerwicktheDollarVigilanteandHeidiTravelsonSteemit81e02.jpg</center>\n\nAs @heiditravels recently recounted (<a href=\"https://steemit.com/travel/@heiditravels/a-chance-encounter-with-the-dollar-vigilante-jeff-berwick\">A Chance Encounter With The Dollar Vigilante: Jeff Berwick</a>) the stars seemed to align for a chance meeting between the two of us in Miami a few days ago.\n\nI was just passing through the USSA for as short of a time as possible (it's too much of a police state and too unfree for my liking) <a href=\"https://steemit.com/money/@dollarvigilante/why-i-left-canada-and-became-a-citizen-of-the-dominican-republic\">on my way to the Dominican Republic to become a citizen</a> and we managed to meet up.\n\nHer story is quite fascinating.  Less than two months ago she only dreamed of living a life of world travel and adventure.  She had just saved up for her first big trip and was in Tahiti when she began to post on Steemit about it... and the Steem dollars began to flow in.  Now she is living the Steem Dream and was just packing for her trip to Africa to swim with great white sharks... all funded by Steem.\n\nI asked her all about it, and more, and you can see it exclusively on Steemit (it is unlisted on Youtube) here:\n\n<center>https://www.youtube.com/watch?v=zFcnzicNcV8</center>\n\n50% of all Steem dollars generated by this post will be transferred (and publicly verifiable by viewing my wallet) to @heiditravels .  That's just another really cool use of Steemit... if you get good content by interviewing or working with other people you can easily, and verifiably, transfer whatever percentage of the Steem dollars you like to that person, or to a charity, or whatever you like.\n\nStay tuned and follow me here at @dollarvigilante as I've got another Steem Exclusive coming up in the next few days with another Steemian... one of the most famous big wave surfers in the world.\n\n<center>https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg</center>",
+    "body_length": 2114,
+    "cashout_time": "2016-09-06T16:53:06",
+    "category": "life",
+    "children": 53,
+    "created": "2016-08-30T16:53:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"travel\",\"purpose\",\"anarchy\"],\"users\":[\"heiditravels\",\"dollarvigilante\"],\"image\":[\"https://www.steemimg.com/images/2016/08/30/JeffBerwicktheDollarVigilanteandHeidiTravelsonSteemit81e02.jpg\",\"https://img.youtube.com/vi/zFcnzicNcV8/0.jpg\",\"https://img1.steemit.com/0x0/https://www.dollarvigilante.com/wp-content/uploads/2016/08/Jeff-Berwick-The-Dollar-Vigilante-Steemit-Bio-1024x221.jpg\"],\"links\":[\"https://steemit.com/travel/@heiditravels/a-chance-encounter-with-the-dollar-vigilante-jeff-berwick\",\"https://steemit.com/money/@dollarvigilante/why-i-left-canada-and-became-a-citizen-of-the-dominican-republic\",\"https://www.youtube.com/watch?v=zFcnzicNcV8\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T16:59:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 89809482562855,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "807.898 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steem-exclusive-steemit-superstar-heiditravels-on-how-steem-changed-her-life",
+    "post_id": 1058324,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Steem Exclusive:  Steemit Superstar, HeidiTravels On How Steem Changed Her Life",
+    "title": "Steem Exclusive:  Steemit Superstar, HeidiTravels On How Steem Changed Her Life",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@dollarvigilante/steem-exclusive-steemit-superstar-heiditravels-on-how-steem-changed-her-life"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "5000",
+        "reputation": 32455846463901,
+        "rshares": 16068038584703,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 17171576974763,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 380238459022,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14711632963423,
+        "voter": "summon"
+      },
+      {
+        "percent": "6700",
+        "reputation": 176979684007,
+        "rshares": 24210363403124,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1550622330013,
+        "voter": "butterfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7289338316046,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2820033121914,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6712487067746,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9503370227688,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2192945558805,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1624006663135,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6331869243814,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 20671106684513,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120834626314,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18336382560162,
+        "rshares": 184562993311,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 945930480134,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 995519849332,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098731457,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 2018773757609,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3761860450,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697249542,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7015155316458,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53918713676,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660687180,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8717425187,
+        "rshares": 5867859194421,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213653566,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 39162536068,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 391714823652,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 685551872886,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2393233043752,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6577996290,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "5000",
+        "reputation": 83941319998,
+        "rshares": 2837721644118,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1305441705806,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1082239289637,
+        "rshares": 264042739643,
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 362299688738,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23744414677575,
+        "rshares": 3081483272757,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 77472030486,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1135569292139,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 258875492586,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 16216414939,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622662222,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149907120182,
+        "rshares": 105274127320,
+        "voter": "chainreaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967090183,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 758092952414,
+        "rshares": 6766430140,
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 384246737743,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5116325730997,
+        "rshares": 3815433932,
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 839270505208,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3991861275580,
+        "rshares": 49200552023,
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 134115222316,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 93860680998,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5296864583034,
+        "rshares": 64498886993,
+        "voter": "ilanaakoundi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 30870794916,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 66151857717,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288128811,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23934611353,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 22084251149,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13550665433,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11533606733,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 899953681,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 85890057706,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78060070006,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 596707334180,
+        "rshares": 3982414769,
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14435268029,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34347753869675,
+        "rshares": 211014753439,
+        "voter": "camilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9784967164,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 174336102579,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 23524407728,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5074405568,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 550376960524,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 7552072593,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 485329642,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9703919146,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 827766206746,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5577262823,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46956093933,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2098966754,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 340794336001,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 9940200806,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 645203570488,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 4326510656,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 60408640373,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1320082412,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 156368475862,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57940401954,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 221686128997,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 22011825006,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 54129776980,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1150356508,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 76775332206,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 553323357537,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1788358436,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19203629337,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1095245594450,
+        "rshares": 56822713110,
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29021695416,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 46913811335,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 609559152097,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 59988248729,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12095833335,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42770477269,
+        "rshares": 379207039,
+        "voter": "damien-beverly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 84699179852,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10066128118,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 347261612,
+        "voter": "saroj-bhatta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3594730571722,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 371634303650,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 334084395,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2165862961420,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 37471306135,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1544049507187,
+        "rshares": 14102439208,
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379050615,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 52893188787,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 252206116978,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 362297448706,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 48482602262,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1508522893777,
+        "rshares": 5828249937,
+        "voter": "lynda-j-leonard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488865370830,
+        "rshares": 845541117,
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 103251664763,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 62760893653,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 74694183756,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 126669587592,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4445080279,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8545983898,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19863197326,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 249740793584,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8524313,
+        "rshares": 333415746,
+        "voter": "prabhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 510365428219,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13557964207046,
+        "rshares": 85385700303,
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 46759090124,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 48470704368,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4698166290,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 77535014482,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21377142974,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 557026163,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1946546599,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 5522250850,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 136561075585,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 607119489,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5722609782,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1458450427016,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9529672369,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 105486651121,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4581391356317,
+        "rshares": 12636994925,
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 43150783931,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31685349698,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 7741509209,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1042076048,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 36646941673,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860741683952,
+        "rshares": 14383489041,
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 22976182156,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 58091921234,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 4091287980,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 255977736,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3515915464,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 207387522046,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 10116063618,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3124603257,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 177794222264,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18965164896,
+        "rshares": 260424224,
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 24517189036,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 305496314948,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 39865290374,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 239067516,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3043584516,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4614780233,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 18699855530,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122041728369,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 32586668999,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 10651795051,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2928510333,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 130350301700,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 10089902117,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 36041621084,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 245196723,
+        "voter": "eterps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 164136412,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1657037877,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8532520414,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 82109855152,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12190374285,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 14991964319,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 464248932144,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10585423374,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 200223812,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 183563429,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 1265314431,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 24634906677,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1343740412742,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10458694767,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 75201407580,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 13265865922,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 127921982448,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1108897841,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7725614667,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40457916072,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 28015342834,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 812002726,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131860560605,
+        "rshares": 302505871,
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 864036703,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 22593623327,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 210282477056,
+        "rshares": 304280811,
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4673264451,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 531668806,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 238596933,
+        "voter": "ozbay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4389391330,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2930979765,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133430062956,
+        "rshares": 16137766305,
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13785536342,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 196279016677,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 185218452,
+        "voter": "snowden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 1970824176,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 91930340909,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 35157697748,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 10951363171,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4403810839,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 15491273980,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 23944697198,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 60005996181,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 80556710406,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 235543115,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3648670489,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 11027431114,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1989777882,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 378576826,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7199026334,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 93399900652,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1311252522,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 18461450756,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6741143115703,
+        "rshares": 4108169412,
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 15904877590,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 49543036127,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 41360210955,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 118255889342,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4392845381,
+        "rshares": 7704010714,
+        "voter": "tryptamin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4460994500,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314706128732,
+        "rshares": 423284208,
+        "voter": "bigedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3574289283,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1481735585,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429270871,
+        "rshares": 5137023260,
+        "voter": "pierregi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089175666268,
+        "rshares": 1042362333,
+        "voter": "jsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450160710165,
+        "rshares": 2025624569,
+        "voter": "chahredine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1980645998,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2096076988,
+        "rshares": 234732800,
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "0",
+        "reputation": 3033861094190,
+        "rshares": 276041472,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37545357584,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10955800027,
+        "rshares": 1366255021,
+        "voter": "jos.denmark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1817150823979,
+        "rshares": 7151100502,
+        "voter": "yonuts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 247279471564,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14593978966,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1523240023,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8079515480,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1173619706300,
+        "rshares": 7727377903,
+        "voter": "manipulable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7310716910,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3090446482,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18778391985,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 6217458703,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 13480328466,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2277845741,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116506316,
+        "voter": "calbiotech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118833099,
+        "voter": "kattokassinen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 8129630141,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 116481148,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 2820120005,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 133244656,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 104872826,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4501389219,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19657221624,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 68666921142,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361552742284,
+        "rshares": 469079927,
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 92846600,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 104788510,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632564148,
+        "rshares": 5100239216,
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 747009828730,
+        "rshares": 2842506785,
+        "voter": "natenvos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 214307898873,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 384838496,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111165137,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100255411,
+        "rshares": 165911036,
+        "voter": "navydude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101628344707,
+        "rshares": 788145165,
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2686520910,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "6000",
+        "reputation": 10519849768972,
+        "rshares": 12219105485,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 1399420305,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1682804929,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255303484,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255686119,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144699103,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 145516307,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84813726,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4927592739,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 56723728631,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 115387959,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 13208847526,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207775439717,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 633329337,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116884886,
+        "voter": "blackhole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 795632907,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2501806576,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5062116348,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4283332799,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 105069864273,
+        "rshares": 116443950,
+        "voter": "invent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 953327883,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20531481652,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1376266655,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 23927890118,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7599817269,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18444450900,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1203192685557,
+        "rshares": 1793399910,
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 593542712,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 408919835,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 219368610,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 263336186,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 11739152761,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76805770,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 110407780,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1567856396,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 3971767333,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 736893129,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 125670168,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16196314852,
+        "rshares": 114289721,
+        "voter": "diaperhaiku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4100960070,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 238898910625,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 6448556162,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 93173678605,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1346175861647,
+        "rshares": 6431609320,
+        "voter": "comealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59131994286,
+        "rshares": 915590461,
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1387391493,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2368539478,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25310106112,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119634591988,
+        "rshares": 1632473635,
+        "voter": "ba-boo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1483559041,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 145372642777,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 921263691910,
+        "rshares": 657874013,
+        "voter": "tkembo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6931641798,
+        "rshares": 108022819,
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1150750202,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 50397912652,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112407757,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1977162029930,
+        "rshares": 2524452892,
+        "voter": "litrbooh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9221354231,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 746967470,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116577441888,
+        "rshares": 692602737,
+        "voter": "nimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5476861182,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5387965254,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 43823144337,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 2122069394,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262675835,
+        "rshares": 65282378,
+        "voter": "marynetta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89039117574,
+        "rshares": 16805314062,
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 52102443,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 16113899489,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24824821554,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7564464865541,
+        "rshares": 19436122640,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2697238149,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 13594079153,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1781802701,
+        "voter": "alcyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 12630467618,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 32045522155,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319893324917,
+        "rshares": 74073418,
+        "voter": "nessacute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 402130776355,
+        "rshares": 459637900,
+        "voter": "germansailor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 3634498489,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22613377010,
+        "rshares": 66620085,
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2467617555,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 440765209095,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3649442496,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6152428019,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 961218107,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 774137084,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 527810072,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5836792362,
+        "rshares": 64679936,
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1964111181,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3653299044116,
+        "rshares": 6405573928,
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 343630735,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64099469,
+        "voter": "kevinhoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14148025208,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 12334075382,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 9951450706,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 94563887663,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 62525016,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 100635796399,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 58503140239,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2393809821,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166646264775,
+        "rshares": 1661329846,
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 624994940,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62168955,
+        "voter": "bayern000"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 52502611,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 102581984510,
+        "rshares": 115476170,
+        "voter": "crypticus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3360005674,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8986825271,
+        "rshares": 66563826,
+        "voter": "tukeycon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 695194116,
+        "rshares": 85705342,
+        "voter": "carlyadams"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 10749928332,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 351621408,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11861754844312,
+        "rshares": 13788052109,
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 21034247347,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 16993200482,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62639005,
+        "voter": "ropedancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80947204062,
+        "rshares": 36862798038,
+        "voter": "dowha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 79279214,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4829784286,
+        "rshares": 6981205089,
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 59896309,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28468480134,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1554619391,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 62302798,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396514667430,
+        "rshares": 177497379,
+        "voter": "florentina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18005755634,
+        "rshares": 59505145,
+        "voter": "rmach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23740522830,
+        "rshares": 66214844,
+        "voter": "biervibes"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 2048624792,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6777205106,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 10543706281,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3657922,
+        "rshares": 60121509,
+        "voter": "titan792008"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 78132990,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 537557601,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 588978698,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 74815575853,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 7882694412,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 120171572,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1310778341,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1863822291,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2409828661,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 447463625,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3646267239,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 131938457,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 61917877,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2457788889,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 3718839133,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 67234587,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 58276258,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 52342236,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28378684,
+        "rshares": 55945663,
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1676295651,
+        "voter": "dubravko1982"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5804656843,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166185808108,
+        "rshares": 85974926,
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 82469320104,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 41359323816,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56864468822,
+        "rshares": 68948761,
+        "voter": "mckeever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12118801504,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179991301994,
+        "rshares": 182816069,
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 1710879681,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6861219981,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12087608265,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3342551943665,
+        "rshares": 2582268537,
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4775359646971,
+        "rshares": 3267609762,
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 390926857,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4211261250,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558969491915,
+        "rshares": 851772710,
+        "voter": "scottrok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17203965465,
+        "rshares": 59174678,
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56443564,
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58743942,
+        "voter": "robind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1734036671982,
+        "rshares": 998162791,
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049839829,
+        "rshares": 58816543,
+        "voter": "anurbanmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 245231137050,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58286594,
+        "voter": "agoristgirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2322269215556,
+        "rshares": 1631152499,
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 645095426265,
+        "rshares": 1256937564,
+        "voter": "blue1950"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86185023707,
+        "rshares": 96720141,
+        "voter": "anarcharos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5788018857372,
+        "rshares": 6510015298,
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 67699642,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 144332158,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 58025713,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 9027471555,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 708221558,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57920706,
+        "voter": "lionelmessi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 11404758868,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 162955094991,
+        "rshares": 122085342,
+        "voter": "godo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3614919579,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56761351,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57851525,
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908980564,
+        "rshares": 57828337,
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1693625647604,
+        "rshares": 680833100,
+        "voter": "brightstar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887625476110,
+        "rshares": 9276551988,
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199082444376,
+        "rshares": 139100977,
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 57683766,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 84754573,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 5210919498,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 13863973335,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11501425107,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12307778400,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 438997798,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 368489014,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 361907111,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1606089979,
+        "rshares": 57384010,
+        "voter": "redpillbetting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1620016836,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89481141,
+        "rshares": 2575415162,
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891760,
+        "rshares": 57072675,
+        "voter": "dadview"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 3910484304,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 20815698155,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1329813882691,
+        "rshares": 55892382,
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1358153764645,
+        "rshares": 1327049009,
+        "voter": "leneg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 55768488,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794973811289,
+        "rshares": 1280449066,
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 467322192,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 955338926,
+        "rshares": 56932483,
+        "voter": "tl1210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 1692857215,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15138353971,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 57184430,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71073572115,
+        "rshares": 55627295,
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 56733180,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7402303856,
+        "rshares": 1656107455,
+        "voter": "grm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4447885148,
+        "rshares": 56625126,
+        "voter": "osame066"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7360893,
+        "rshares": 612650384,
+        "voter": "techstar581"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1029594046,
+        "rshares": 56616688,
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329465840,
+        "rshares": 55501060,
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1651777832,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835399333,
+        "rshares": 1774939202,
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124740159878,
+        "rshares": 55383044,
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": -51683826049,
+        "rshares": 59562278,
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5592787900,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1354778162586,
+        "rshares": 100654728,
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 55397045,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2691693294,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174215430182,
+        "rshares": 187760632,
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55803830,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 645888513,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 371195814,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24608246848,
+        "rshares": 62172605,
+        "voter": "afristeem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1615035001,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 13847174411,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129741556,
+        "rshares": 55982050,
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 164186785700,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 53155012,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29512652490,
+        "rshares": 54467815,
+        "voter": "lsk464"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287896907,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24234871614,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3074503409423,
+        "rshares": 1001549920,
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2636683622,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75791249139,
+        "rshares": 99193021,
+        "voter": "maytons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4498334912,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25772623240,
+        "rshares": 55084051,
+        "voter": "starkgrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55020337,
+        "voter": "cyrils"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 181182554,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 350178439,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2548312,
+        "rshares": 53893542,
+        "voter": "knarly327"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 140568307,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288672343,
+        "rshares": 335474158,
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 57522774,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 364794611,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 72893380,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 291736661,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 74169761939,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 74242787,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5082552771,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 742679393,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10310484518,
+        "rshares": 54871468,
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70707045777,
+        "rshares": 56362571,
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 556717327,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 53103516,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5841611491,
+        "rshares": 55136065,
+        "voter": "darrenciccone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 52930132,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32819947524,
+        "rshares": 56052374,
+        "voter": "sic-savidicus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 51814320,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 176715413,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1678205602,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2979370509,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 52970106,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11985197441,
+        "rshares": 54597407,
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2539945399,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972475674653,
+        "rshares": 319211613,
+        "voter": "nataliadobrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 63886313,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 577247264,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 175912776027,
+        "rshares": 55894599,
+        "voter": "bontonstory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 68637609,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 50066904,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53170928,
+        "voter": "wallacepoewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 1098383476,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 26012931436,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1488565583,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3333759844,
+        "rshares": 53579928,
+        "voter": "luup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251957402,
+        "rshares": 52847613,
+        "voter": "phattack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 222511908,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3507512667936,
+        "rshares": 6787548607,
+        "voter": "jhermanbeans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151906532077,
+        "rshares": 56269886,
+        "voter": "stardust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14820051763,
+        "rshares": 54672126,
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 2115382778,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 2935093318,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51523047,
+        "voter": "akaskew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52508568,
+        "voter": "rafek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 62196440,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 220589084,
+        "rshares": 103650339,
+        "voter": "koalax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 53215131,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3302532614,
+        "rshares": 66920614,
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16603755114,
+        "rshares": 173485634,
+        "voter": "you-know-nothing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414887802912,
+        "rshares": 651302553,
+        "voter": "antifragile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 64753648,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 659608632671,
+        "rshares": 1059793205,
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4726351699,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22546106632,
+        "rshares": 54916682,
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 50878690,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 342413852075,
+        "rshares": 324180348,
+        "voter": "vh770"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2111088178436,
+        "rshares": 2241871498,
+        "voter": "carlitashaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 136773607,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50602980,
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68209080,
+        "rshares": 50264719,
+        "voter": "drinkthemilk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 53447080,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11416237849,
+        "rshares": 50249177,
+        "voter": "iamgrateful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 51185859,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9050222935,
+        "rshares": 52030157,
+        "voter": "neophonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651044398,
+        "rshares": 50876228,
+        "voter": "shaungerow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119425038970,
+        "rshares": 54170254,
+        "voter": "jasondaum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3689606685797,
+        "rshares": 2999849952,
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 464502884,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1625136432,
+        "rshares": 50825171,
+        "voter": "donchate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 607607141,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487989126850,
+        "rshares": 50060843,
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 665407800350,
+        "rshares": 50608174,
+        "voter": "andreeagarden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587031495621,
+        "rshares": 50533812,
+        "voter": "dtrevor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 908569372468,
+        "rshares": 96368768,
+        "voter": "pabloescobar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50510574,
+        "voter": "yfu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50479027,
+        "voter": "sunlight"
+      },
+      {
+        "percent": "10000",
+        "reputation": -176210361,
+        "rshares": 50453509,
+        "voter": "peteonthestreet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 469486199852,
+        "rshares": 50427196,
+        "voter": "krissy-b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 154410849,
+        "rshares": 50395142,
+        "voter": "anitap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 102143743229,
+        "rshares": 50291088,
+        "voter": "berwynbass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11472349,
+        "rshares": 50195830,
+        "voter": "cunninglinguist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4256966,
+        "rshares": 50188731,
+        "voter": "ryanjerome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50146097,
+        "voter": "b0atman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 248008696,
+        "rshares": 50146038,
+        "voter": "jeffrobang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4344578302,
+        "rshares": 78311792,
+        "voter": "cianosapatti"
+      }
+    ],
+    "author": "steve-walschot",
+    "author_reputation": 42741727265739,
+    "beneficiaries": [],
+    "body": "# Today i decided to stop my regular job and become a fulltime Steem developer/curator/contributor. \n\n### A risky move considering i'm no whale at all, and at it's best, a powerdown would only generate around 75$ a week. \n\nhttps://media.licdn.com/mpr/mpr/AAEAAQAAAAAAAAVdAAAAJDI3NWIyOTA0LWY4MjUtNDQ3ZC1iNTFhLTI4OGMxYTE1NWI3NQ.jpg\n\nI found myself working every spare minute on steem related projects. Mainly, Steempay.io and it's side projects, as well as helping others and teaming up to handle bigger projects. All of this is a very time and energy consuming process. \n\nCombining this with my regular day job, got me up to a point where i'm in need of time. \nTime for my family, time for my kids, time to relax, time to eat, time to sleep.\n\nMy life savings are enough to cover for the next few months focusing on nothing but Steem. At this point, i've generated some nice rewards, but every SBD i've made has been invested in the growth, quality and productivity of my work and work enviroment. \n\nThis may sounds like a bad idea - and it probably will be - but I want to let my creativity flow free without being forced to get up for work. At the same time, this will force me to deliver outstanding and unique products for this platform to have a minor source of income. \n\nI'm aware that i may regret this decission some day, but hey. **Productivity before brains!**\n\nYou can support me by voting me as a steem witness ([SEE LINK](https://steemit.com/witness-category/@steve-walschot/witness-application-post-steve-walschot-creator-of-steempay)) or simply by following me and upvoting my posts if you like them enough!\n\n## Let's see how this plays out :-)",
+    "body_length": 1657,
+    "cashout_time": "2016-09-06T14:28:30",
+    "category": "timeforachange",
+    "children": 151,
+    "created": "2016-08-30T14:28:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"timeforachange\",\"fulltimesteem\"],\"image\":[\"https://media.licdn.com/mpr/mpr/AAEAAQAAAAAAAAVdAAAAJDI3NWIyOTA0LWY4MjUtNDQ3ZC1iNTFhLTI4OGMxYTE1NWI3NQ.jpg\"],\"links\":[\"https://steemit.com/witness-category/@steve-walschot/witness-application-post-steve-walschot-creator-of-steempay\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T14:28:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 186924115743052,
+    "parent_author": "",
+    "parent_permlink": "timeforachange",
+    "pending_payout_value": "3747.392 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steeming-around-the-clock-bye-bye-regular-job",
+    "post_id": 1056662,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Steeming around the clock - Bye bye regular job!",
+    "title": "Steeming around the clock - Bye bye regular job!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/timeforachange/@steve-walschot/steeming-around-the-clock-bye-bye-regular-job"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7500",
+        "reputation": 8151223409709,
+        "rshares": 12795356591228,
+        "voter": "rainman"
+      },
+      {
+        "percent": "3000",
+        "reputation": 13270505121655,
+        "rshares": 20627905251154,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2819951722233,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3126139203563,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 408335912363,
+        "voter": "lafona"
+      },
+      {
+        "percent": "7500",
+        "reputation": 18336382560162,
+        "rshares": 137520714395,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1045590849049,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 918746263877,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314680482723,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6477125435976,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2479280379,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3009895073,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10026510714787,
+        "rshares": 95870468045,
+        "voter": "testz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 557842933,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43188009259,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1328701927,
+        "voter": "mini"
+      },
+      {
+        "percent": "7500",
+        "reputation": 8717425187,
+        "rshares": 4383774924626,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170928098,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 15405606665,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 498171759,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 773739057,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 134108679839,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 66151857717,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230510919,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8126895938,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9703360306,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35537325381339,
+        "rshares": 993844457161,
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 1927622529,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 273642114361,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 19711517082,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1293680763,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 54016857275,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1788305838,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 359570383120,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 249412785392,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 41737728268,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3764317734163,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4533981884,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1946407565,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "3800",
+        "reputation": 598181152117,
+        "rshares": 81560548889,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6874854410,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 23613509404,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 188243688187,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 25007532817,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 305496314948,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 63488015693,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4522484628,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1518920448581,
+        "rshares": 13086745099,
+        "voter": "zer0sum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 119598721068,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 13688318779,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 37071287028,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 262539416,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 76785426942,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12165573676,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 1088758929,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1108897841,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 531668806,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11266480276,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 83318660729,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 473559669,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 54005396563,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 391334114,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 14784154359,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6186917789,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 13846050753,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 196293057448,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 57476726978,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 6518131962,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 95772387,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 93184919,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 145088625,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 72245725,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4710593462,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116451427,
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 8626407928,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60350290,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3415496053078,
+        "rshares": 3513802513,
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 16417044263,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 83373852,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2555471109,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "2000",
+        "reputation": 10519849768972,
+        "rshares": 4072795127,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9224124607,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35209974404,
+        "rshares": 130660676,
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 442838800,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7599817269,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3500",
+        "reputation": 17698439393799,
+        "rshares": 10231913210,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4100960070,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 861323115,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1856524470,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25310106112,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 5337877066,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 762211704,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5388014407,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "1800",
+        "reputation": 10771708337101,
+        "rshares": 216277477550,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2600",
+        "reputation": 18027204457681,
+        "rshares": 8790981829,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 5776723480371,
+        "rshares": 95557398685,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 206355094166,
+        "rshares": 3592472408,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 18385668989,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 1481116321,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85099309,
+        "rshares": 4751041510,
+        "voter": "lianbing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 698557363,
+        "voter": "romancs"
+      },
+      {
+        "percent": "1800",
+        "reputation": 3016325652890,
+        "rshares": 24523502262,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1964111181,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134345349682,
+        "rshares": 7190118987,
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 100647770218,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3400",
+        "reputation": 1851205309677,
+        "rshares": 1326246308,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 9342791743,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3299387426,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 31543276597,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "3800",
+        "reputation": 4195733833721,
+        "rshares": 3302534849,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 18933467156,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52715459356,
+        "rshares": 85284068,
+        "voter": "sparkeddev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 649597112137,
+        "rshares": 61313637,
+        "voter": "jfelton5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1390975245,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 730408370151,
+        "rshares": 220537174,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6777205106,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 7409732748,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 10968660346,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2409596950,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 2568446320,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 478632713,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12924917515,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 13428645312,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6935351112,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2484336960082,
+        "rshares": 2920931566,
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2918379629,
+        "rshares": 1660145254,
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118894339,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 1631968702,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186924852752,
+        "rshares": 69382211,
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 14429548321,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11825860265,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21073879336,
+        "rshares": 58018384,
+        "voter": "asoumeru2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 37998652701,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 632970742,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 54285969,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24235309770,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 93212736,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 70169318,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 38618215503,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 968641174,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 55496395,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18081706207,
+        "rshares": 50061861,
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329560640,
+        "rshares": 67870265,
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 50066904,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 84322994,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768451347973,
+        "rshares": 251144803,
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 309356040,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 64483787,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1321908864392,
+        "rshares": 149977811,
+        "voter": "steemitcharity"
+      }
+    ],
+    "author": "good-karma",
+    "author_reputation": 15603689614497,
+    "beneficiaries": [],
+    "body": "<center>https://s5.postimg.org/ii6534gs7/feature_thumbnail.png</center>\nExcited to announce eSteem v1.1.6 updates, that is published today.  After [iOS v1.0.0 release](https://steemit.com/steemmobile/@good-karma/finally-esteem-is-on-ios-app-store-other-development-updates), I have pushed next batch of updates for iOS Appstore Review. Worked on AppStore screenshots as well so it is more attractive to new users.\n<center>https://s5.postimg.org/8n9xzs6if/screenshots.png</center>\n\n# New Features\n\ud83d\udd25 **New Push notifications**\nYou can now, not only publish/read/comment/transfer/vote but You can receive notifications when someone votes your content, comments on your posts, follow you.\n<center>https://s5.postimg.org/z0otytxx3/notifications.png</center>\n\ud83d\udd25 **New Bookmarks**\nWith users request, Bookmarking feature has been added, where you can save post for later read. It is super easy, you just open any post you want and bookmark it from top right corner. Remove bookmarking can be done from same page or menu has Bookmarks page where you can open post or swipe left to remove it from Bookmarks.\n<center>https://s5.postimg.org/jdxklgk53/bookmarks.png</center>\n\ud83d\udd25 **New added sort trend Promoted**\n<center>https://s5.postimg.org/lxt7fk7p3/promoted.png</center>\n# Improvements\n\ud83d\udd25 Login page refinement\n<center>https://s5.postimg.org/rai1tovlj/login.png</center>\n\ud83d\udd25 Profile picture, better formatting on blockchain, with consensus of some Steem devs!\n\ud83d\udd25 Markdown improvements\n\ud83d\udd25 Layout updates\n# iOS (v1.1.8)\nhttps://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1141397898&mt=8\nVersion 1.1.5 was submitted for AppStore review on \ud83d\udd50_27th Aug 2016_, should be available soon after review is done. \n# Google Play (1.1.6)\nhttps://play.google.com/store/apps/details?id=com.netsolutions.esteem\n\n# Future plans\nMoving forward, focus will be to increase user base of the Steem platform as a whole. Enabling users to signup through app. Improvement on customized/personalized view and feel. Ability to make quick posts, promote content, give ability to cashout earned funds through @blocktrades or similar services, multiple language support, private messaging, support for WindowsPhone users, many more ideas.\n# Suggestions and Contributions\nPlease leave a comment and feedback. Project is [Opensource](https://github.com/feruzm/esteem), and you are invited to contribute anyway you can.\n\ud83d\udd4a **Follow** [me](https://steemit.com/@good-karma) for future updates, get in touch through steemit.chat #steemmobile or #esteem channel.\n\n# UPDATE\n## iOS AppStore new version is available. This version doesn't have bookmarking and notifications yet, though all other major functionalities are in this version... How exciting to get approval for new version and you can be sure that iOS updates will now be consistent. Please give your feedback as much as you can, as it helps development to keep implementing updates.",
+    "body_length": 2905,
+    "cashout_time": "2016-09-06T12:29:39",
+    "category": "steemmobile",
+    "children": 46,
+    "created": "2016-08-30T12:29:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemmobile\",\"esteem\",\"steem\",\"steemit\",\"apps\"],\"users\":[\"blocktrades\"],\"image\":[\"https://s5.postimg.org/ii6534gs7/feature_thumbnail.png\",\"https://s5.postimg.org/8n9xzs6if/screenshots.png\",\"https://s5.postimg.org/z0otytxx3/notifications.png\",\"https://s5.postimg.org/jdxklgk53/bookmarks.png\",\"https://s5.postimg.org/lxt7fk7p3/promoted.png\",\"https://s5.postimg.org/rai1tovlj/login.png\"],\"links\":[\"https://steemit.com/steemmobile/@good-karma/finally-esteem-is-on-ios-app-store-other-development-updates\",\"https://itunes.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?id=1141397898&amp;mt=8\",\"https://play.google.com/store/apps/details?id=com.netsolutions.esteem\",\"https://github.com/feruzm/esteem\",\"https://steemit.com/@good-karma\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T03:52:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 61488852235441,
+    "parent_author": "",
+    "parent_permlink": "steemmobile",
+    "pending_payout_value": "321.665 HBD",
+    "percent_hbd": 10000,
+    "permlink": "push-notifications-bookmarks-esteem-mobile-app-update-1-1-6-ios-and-android",
+    "post_id": 1055358,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "eSteem mobile app update - PUSH NOTIFICATIONS, BOOKMARKS for iOS and Android v1.1.6",
+    "title": "eSteem mobile app update - PUSH NOTIFICATIONS, BOOKMARKS for iOS and Android v1.1.6",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemmobile/@good-karma/push-notifications-bookmarks-esteem-mobile-app-update-1-1-6-ios-and-android"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6969609715267,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 6041832098578,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098537433,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3761592437,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697211724,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53898850648,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660577015,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213642056,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2461184782115,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19451819636,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622624403,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967032634,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288114012,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 74873944700,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 20204305009,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1788152919,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10075379390,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 9215199356,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1068373055,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686865536242,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2797012370034,
+        "rshares": 2370719608,
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811919161664,
+        "rshares": 5076307916,
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17340323342,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 44546434853,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 48542520862,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55819086010,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 59751474240,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 124480200899,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 464240904,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 227948163,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12851338071,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 33629159959,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 47399416292,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15085871795,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 98108299,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 100419616,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 65229443,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 97819198,
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 9163703657,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 536325914524,
+        "rshares": 612861952,
+        "voter": "greengo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 452064608,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17996472953,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126501231892,
+        "rshares": 17950934727,
+        "voter": "renk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78877111359,
+        "rshares": 137113215,
+        "voter": "tiffany123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 736893129,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25310106112,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 27499486740,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414591614658,
+        "rshares": 523034384,
+        "voter": "grahnite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 38668120965,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2730766591183,
+        "rshares": 1039449399,
+        "voter": "handmade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 181872789178,
+        "rshares": 758721600658,
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 470093580914,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 902392181167,
+        "rshares": 839147597,
+        "voter": "nick-sinard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 636463375,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 9951450706,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 103214952819,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15018520093808,
+        "rshares": 18499482072,
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4521044040322,
+        "rshares": 4431678881,
+        "voter": "zivile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18105338219923,
+        "rshares": 14413813530,
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 375926454,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 33363388226,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 38441712669,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 14100063768,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1400671466,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4296017852,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7887834338344,
+        "rshares": 13916959803,
+        "voter": "kushfreeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58435806,
+        "voter": "bettyanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 984374312,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3765065044,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 273191918,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 379632083,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23182784473,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 91725775,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5186278337,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726273314822,
+        "rshares": 499134976,
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 52153025,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972344082,
+        "rshares": 51597326,
+        "voter": "nathan.chinn"
+      }
+    ],
+    "author": "kafkanarchy84",
+    "author_reputation": 18105338219923,
+    "beneficiaries": [],
+    "body": "http://i.imgsafe.org/5307899e5a.jpeg\n\n**Hello! In this post we want to tell you about Steemit, and how to make an account.** We are also gonna go to Niigata Station here in Niigata, Japan, and spread the word about Steem! Please check out the video below!\n\n**\u3053\u3093\u306b\u3061\u306f\uff01**\nsteemit\u521d\u3081\u3066\u306e\u65b9\u3078\u306e\u7d39\u4ecb\u3068\u30a2\u30ab\u30a6\u30f3\u30c8\u4f5c\u6210\u65b9\u6cd5\u3001\u521d\u6295\u7a3f\u65b9\u6cd5\u3092\u7d39\u4ecb\u3057\u307e\u3059\u3002\n\u307e\u305f\u65b0\u6f5f\u99c5\u5468\u8fba\u3067\u3001steemit\u3092\u62e1\u6563\u3057\u3066\u304d\u307e\u3059\u3002\u4e0b\u8a18\u52d5\u753b\u3092\u305c\u3072\u3054\u89a7\u304f\u3060\u3055\u3044\uff01\n\nhttp://i.imgsafe.org/57b7e7f081.jpeg\n*\u30b9\u30c6\u30a3\u30df\u30c3\u30c8\u540d\u523a*\n\nhttp://i.imgsafe.org/530cae8c6f.jpeg\n\nhttp://i.imgsafe.org/5318b7bf13.jpeg\n*Talking to people about Steem.*\n\n**Without further ado, here's the video!**\n\u305d\u308c\u3067\u3001\u30d3\u30c7\u30aa\u898b\u307e\u3057\u3087\u3046\uff01\uff01\uff01\n\nhttps://youtu.be/tJ0jRYkegA4\n\n\n**We had a great time today, and hope to see you on Steemit.com soon!!!**\n\u4eca\u65e5\u306f\u3001\u3068\u3066\u3082\u697d\u3057\u304b\u3063\u305f\u3067\u3059\uff01\n\u3058\u3083\u3001\u307e\u305f\u30b9\u30c6\u30a3\u30fc\u30e0\u3067\u306d\uff01\uff01\uff01^_^\n\nPeace, Love, and Anarchy,\n\n~KafkA\n\n***\n*Graham and Miyuki Smith are Voluntaryist activists residing in Niigata, Japan. To help support our activism here at Voluntary Japan, please consider upvoting, curating, and promoting/sharing this post!!!*\nhttp://i.imgsafe.org/55f1b38bb4.jpeg\nhttp://i.imgsafe.org/57b217a562.jpeg\n### ~*~ ###",
+    "body_length": 1038,
+    "cashout_time": "2016-09-06T10:32:48",
+    "category": "steemit",
+    "children": 11,
+    "created": "2016-08-30T10:32:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"japanese\",\"cryptocurrency\",\"tutorial\"],\"image\":[\"http://i.imgsafe.org/5307899e5a.jpeg\",\"http://i.imgsafe.org/57b7e7f081.jpeg\",\"http://i.imgsafe.org/530cae8c6f.jpeg\",\"http://i.imgsafe.org/5318b7bf13.jpeg\",\"https://img.youtube.com/vi/tJ0jRYkegA4/0.jpg\",\"http://i.imgsafe.org/55f1b38bb4.jpeg\"],\"links\":[\"https://youtu.be/tJ0jRYkegA4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T12:27:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 18490635633805,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "46.967 HBD",
+    "percent_hbd": 10000,
+    "permlink": "my-200th-steemit-post-bringing-steem-to-the-streets-of-japan-steemit-feat-mslight2016",
+    "post_id": 1054285,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "My 200th Steemit Post! Bringing Steem to the Streets of Japan! Steemit \u306b\u3064\u3044\u3066\u65e5\u672c\u306e\u65b9\u3005\u3078\u7d39\u4ecb\u3057\u307e\u3059\uff01(feat. @mslight2016)",
+    "title": "My 200th Steemit Post! Bringing Steem to the Streets of Japan! Steemit \u306b\u3064\u3044\u3066\u65e5\u672c\u306e\u65b9\u3005\u3078\u7d39\u4ecb\u3057\u307e\u3059\uff01(feat. @mslight2016)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@kafkanarchy84/my-200th-steemit-post-bringing-steem-to-the-streets-of-japan-steemit-feat-mslight2016"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3188398613205,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 416455555810,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1063241778133,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 974982219665,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320953723545,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3717269466,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4512599117,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836491819,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1660320000938,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6096976679374,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64588098355,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992187857,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256346717,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 78520433306,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 59481192813,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 391322719970,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 388642364543,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 724454198454,
+        "rshares": 147468593258,
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 18842819298,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6577996290,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 732029636244,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 82303225745,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 746998903,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160172040,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392008932107,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327447579267,
+        "rshares": 338575099598,
+        "voter": "lighthil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345687346,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 38470062044,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3208539412,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25134704062,
+        "rshares": 553920270,
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2999169193553,
+        "rshares": 3980058535,
+        "voter": "atomrigs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 21028087238,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 241453016290,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8051310955,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9509180288,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35537325381339,
+        "rshares": 1013385578660,
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 340613629011,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 31752985511,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3586399099,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 20121967528,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1280057354,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 79538010241,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2502028807,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217755916442,
+        "rshares": 416685282,
+        "voter": "shane-loomb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 17062034940,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40270702221,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2208534217065,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 185941009750,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 485523165464,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686844134557,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6200536920826,
+        "rshares": 77265331719,
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 5041587169,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1851119104,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8358099209,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 43717579213,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 56370456341,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5826412643,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 20298262584,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 8748767514,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1402029831983,
+        "rshares": 13994668195,
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4642678824,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 119597882420,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5825119560,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1949550312939,
+        "rshares": 1399449402,
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380128900631,
+        "rshares": 262524864,
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 295356843,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "3600",
+        "reputation": 4667991454724,
+        "rshares": 257129715707,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3181753819665,
+        "rshares": 9686786504,
+        "voter": "jay4u"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 20722812158,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 2371698511,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 213524555,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 195753480,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1343571109602,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 223842426,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 27440848116,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 807565461,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 470865927,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1106470849861,
+        "rshares": 2348634180,
+        "voter": "cloh76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11487152871,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 195865320523,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77829333771,
+        "rshares": 137278456669,
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 235543115,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 4132768874,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11823397688,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1988805953,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 431895128,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2087820513398,
+        "rshares": 128363179459,
+        "voter": "gbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17309844116,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 37626823996,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25944279504,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2603531410,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3032970711,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 4042823087,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2440775410341,
+        "rshares": 1560460454,
+        "voter": "iamwne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 741654237981,
+        "rshares": 5581859390,
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3477759461,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 5861640729,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2274697083,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3119910353,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 192019967397,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 27197763226,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 3399069000,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 44589336878,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6513525503,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 54499541667,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58265386995,
+        "rshares": 3646308452,
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1102384575,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960761826,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60975043955,
+        "rshares": 700736195,
+        "voter": "clonewarz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 12580474306,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 39188627214,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 573813577,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17996407061,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5574895971,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4292618600,
+        "rshares": 110037247,
+        "voter": "kukuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 36810520388,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 132463150,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 1958148384,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5859277865,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 30544566558,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 55181675,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 56215794,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2537580784,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 20619537016,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 22246173698,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 181872789178,
+        "rshares": 758711107360,
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3899837943,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 7481079798,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 574283957,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 111083493,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3538380254,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 157606858,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 497521278,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 56647554,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 53370316,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10934414249,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 51753317,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2860793589,
+        "rshares": 1001789859,
+        "voter": "fooblic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 51619811,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 662919483424,
+        "rshares": 776885575,
+        "voter": "rem870man"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 63133947,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1665509115,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1198517584,
+        "voter": "anech512"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 52400873,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1079996592,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 290489475,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 124331966,
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51863356,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51860909,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51856300,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1238992289,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3622743,
+        "rshares": 59905640,
+        "voter": "unnsmed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4755670,
+        "rshares": 40456542770,
+        "voter": "jyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51481279,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3077370360823,
+        "rshares": 166517436,
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 53765568,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17411909771,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 970572315676,
+        "rshares": 1092134439,
+        "voter": "fiat19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8621687032,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 53856578929,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11501310305,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12066449411,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 688853443,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 1875177639,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3791707980,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2432988745,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2523049726780,
+        "rshares": 888015091,
+        "voter": "profitgenerator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2061005629,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 26338425659,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 65297740,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 1370669935,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 68279885,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361047918975,
+        "rshares": 3568269258,
+        "voter": "szoftfst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4181598053141,
+        "rshares": 63763634708,
+        "voter": "jack8831"
+      },
+      {
+        "percent": "10000",
+        "reputation": 851650917098,
+        "rshares": 50834679,
+        "voter": "honna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 988075153,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632832581930,
+        "rshares": 206333088,
+        "voter": "webus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 234362047,
+        "rshares": 50020884,
+        "voter": "coriana"
+      }
+    ],
+    "author": "clayop",
+    "author_reputation": 31405352060596,
+    "beneficiaries": [],
+    "body": "<html>\n<p>After two tremendous spikes in the last month, Steem price has been decreasing steadily and it seems to be in a somewhat serious situation. A worse thing is that posts per user is dramatically decreasing. This means that users are not enjoying this platform and may leave to other attractive platform very easily. What makes these outputs?</p>\n<p><img src=\"https://s3.postimg.io/bzlvi7qlf/trend.png\" width=\"1047\" height=\"631\"/></p>\n<p>(Image source: @atomrigs 's <a href=\"https://steemit.com/steemit/@atomrigs/attention-whales-it-is-time-for-your-action\">post</a>)</p>\n<p><br></p>\n<p>Although Steemit sounds very promising, as advertised \"post it and earn reward\", the reality to regular users is very disappointing. Many of them only got below $0.1 regardless of their efforts on the posts. Obviously there were some junk posts and copy-paste things, but some maybe really worth to be rewarded. I think that there are two main reasons. First, whales are few and they can read a very small number of posts. Undiscovered posts by whales sometimes get over a hundred upvotes but the reward is still below $0.1. Second, reward system is too biased. As mentioned in the white paper, the reward system is bench-marking a casino scheme. But statistics and user experiences so far may tell this is wrong. We should remind that while a few jackpot winners are very happy, many losers are desperate and sometimes give up their lives. The similar thing is happening now in Steemit.</p>\n<p><br></p>\n<p>Then what should we do? I want to suggest three points.</p>\n<p><br></p>\n<p><br></p>\n<h2>1. Limit whales voting power at a certain percentage of total Steem Power</h2>\n<p>(Original idea is from @slowwalker 's <a href=\"https://steemit.com/kr/@slowwalker/3zcizz\">post</a>)</p>\n<p>For instance, we can restrict whales voting power at 0.1%. Then if a whale have 5,000 SP out of 500,000 (1.0%), he has the same power with those who has 500 SP (0.1%), but he can vote 10 times more at the full rate. This may cause some whales to split accounts, but this splitting for increasing voting power can be considered as an abuse given the system. This suggestion can make dolphins stronger and results in more distributed power system.</p>\n<p><br></p>\n<h2>2. Reduce biases in the reward system</h2>\n<p><img src=\"http://i.imgsafe.org/9eb18e1.png\" width=\"630\" height=\"465\"/></p>\n<p>Currently the parameter is 2.0 (square) and it brings in a very high head and long tail. But what we need is thick tail. We need to test and simulate other parameters between 1 and 2, focusing on some socially meaningful measurements (e.g. median payout, mode payout bracket, 90/10 ratio, <a href=\"https://www.equalitytrust.org.uk/how-economic-inequality-defined\">etc</a>). Do not undervalue seemingly-worthless posts. If we can make people happy and retain them, the reward is not a waste. Remember that attracting new user also costs, and ex-users are very very hard to bring back.</p>\n<p><br></p>\n<h2>3. Reputation-based display should be default</h2>\n<p>Although payout-based sorting has some importance in terms of system security and users' perception, it's side-effect is also significant - a feeling of inequality. I would suggest a reputation-based display page as a default. People are able to have more influence without having a great amount of money, so that everyone can dream about becoming an important person in this platform. If needed, we surely have to develop better reputation system.</p>\n<p><br></p>\n<p>Steemit is mainly a SNS, not a marketplace nor a gambling system. Our first goal should be making as many people happier, then those people will make us succeed. I would really appreciate to developers who are working very hard under the water and many friends who give bitter advises for Steemit.</p>\n</html>",
+    "body_length": 3803,
+    "cashout_time": "2016-09-05T09:09:21",
+    "category": "steemit",
+    "children": 38,
+    "created": "2016-08-29T09:09:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"suggestion\"],\"users\":[\"atomrigs\",\"slowwalker\"],\"image\":[\"https://s3.postimg.io/bzlvi7qlf/trend.png\",\"http://i.imgsafe.org/9eb18e1.png\"],\"links\":[\"https://steemit.com/steemit/@atomrigs/attention-whales-it-is-time-for-your-action\",\"https://steemit.com/kr/@slowwalker/3zcizz\",\"https://www.equalitytrust.org.uk/how-economic-inequality-defined\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T18:53:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 26105252611725,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "87.968 HBD",
+    "percent_hbd": 10000,
+    "permlink": "make-people-happier-and-let-steemit-succeed",
+    "post_id": 1038888,
+    "promoted": "50.000 HBD",
+    "replies": [],
+    "root_title": "Make People Happier and Let Steemit Succeed",
+    "title": "Make People Happier and Let Steemit Succeed",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@clayop/make-people-happier-and-let-steemit-succeed"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2335990917918,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4264215792115,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10777629083,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6712868855,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23970864155,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14164235921,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 38479039013,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13783455248,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 177791083963,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 465513298,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5464087765,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 331008530659,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 2951245559,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 17777200295,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1109713884,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 68329371870,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432427644,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 469325828422,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 363542460,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488865370830,
+        "rshares": 846603976,
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1323026542,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13619273328,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 18411265425,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 15102847791,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2691645867,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 142606995374,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5889434360,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 103271810744,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 260302539827,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 64267665611,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 39447062051,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5556551220,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4258125630,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 7190007754,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14954239965,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 24743482353,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 366123878,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1457985309,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10470017520,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12378481918,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793209170784,
+        "rshares": 1571820491,
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 27485108289,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4563435793,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 13507060611,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3747252228,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 6133757988,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 342458473,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8520078935,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11606099970,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1254384994,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 48586986232,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 17157175949,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 9184521617,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3552764483,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1686295563,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 11598806594,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 429170927,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12855009836,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424647344,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 181096282653,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 12138251953,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 28970926104,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 12620381834,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3297538199,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3376048529,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 32295603566,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 78638342533,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182394452705,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 7816975456,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 16392175633,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 32490015482,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7733219398,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15696518203,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 594272148,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103997978070,
+        "rshares": 513627172,
+        "voter": "raphma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 2523272811,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3052689593,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214076084605,
+        "rshares": 256865702,
+        "voter": "nat4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 115507974,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17682174654,
+        "rshares": 120051981,
+        "voter": "cameron-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 6664855932,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112980211,
+        "voter": "lawofattraction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 87419990843,
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7847342189,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 55748892682,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 37985633549,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3552896427510,
+        "rshares": 15226077019,
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1333225214,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322647983,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91359638612,
+        "rshares": 95518493,
+        "voter": "perduta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230299622,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 593072231,
+        "rshares": 61696026,
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 982813675,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114992597,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55933129,
+        "voter": "gtrman58"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62391219,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20803096,
+        "rshares": 61897843,
+        "voter": "geny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 552679855,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40980532,
+        "rshares": 1010019521,
+        "voter": "shinji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7026840204,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 71551855,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648377040631,
+        "rshares": 1684251896,
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 60661014,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 58816907,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58064982,
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14594873587,
+        "rshares": 56690841,
+        "voter": "steemhost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12977696308,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1734036671982,
+        "rshares": 1018201237,
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 71292382077,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339886160,
+        "rshares": 394178677,
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 1916496604,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 9090633934,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 11143719415,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1678815917,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15543870326,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5737929384,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54632424,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2704806523,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54012814,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53990613,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 103730281,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53764342,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 106768414,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 311658429,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50377764,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50196187,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50050365062,
+        "rshares": 59702540,
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 594797908,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1543923067,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": -259362445302,
+        "rshares": 51877853,
+        "voter": "chrisdunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 5340740672,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4866079102,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 232427281,
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2093855721226,
+        "rshares": 78281569,
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1567288100,
+        "voter": "strong-ai"
+      }
+    ],
+    "author": "blueorgy",
+    "author_reputation": 21815260714191,
+    "beneficiaries": [],
+    "body": "It's Simple... Promote This Post To Get Your Post Listed On This Post! \n***Promoted Content Experiment***\nSince the cost of getting your content to the top of the promoted tab is already growing up and beyond **$100 STEEM DOLLARS**... I thought it might be cool to create a new type of post, a post that would promote multiple users content while sharing the promotion costs.\n\nhttps://www.steemimg.com/images/2016/09/01/lets-Get-Promoted55ad7.png\n\n**HOW TO** \n- Starting at $1 STEEM DOLLAR - Simply Promote This Post. (Once Per User)\n- I will post the link you provide via a comment below\n- Posts will be listed from highest paid contributor and down\n- I will cut the list off at some point... depending on popularity.\n- Give me 10-15 Minutes to place your link on the list. \nPM me: @blueorgy on http://Steemit.Chat if you need help.\n\n<hr>\n\n<h1>THE LIST</h1>\n\nSD | User | Post\n--- | --- | ---\n$6 | @mikemacintire | <a href='https://steemit.com/introduceyourself/@mikemacintire/hi-steemit-i-m-mike-macintire-former-poker-pro-turned-photographer-and-i-m-on-a-mission-to-make-steemit-more-beautiful-drone'>Hi steemit! I'm Mike Macintire, former poker pro turned photographer, and I'm on a mission to make steemit more beautiful! Drone verification video included!</a>\n$5 | @blueorgy | <a href='https://steemit.com/aviewaday/@blueorgy/a-view-a-day-killian-court-mit-campus-cambridge-ma-usa'>A View A Day - Killian Court, MIT Campus, Cambridge MA USA</a> \n$5 | @cmtzco | <a href='https://steemit.com/blog/@cmtzco/ico-or-iro'>ICO or IRO</a>\n$5 | @cmtzco | <a href='https://steemit.com/steemit/@cmtzco/facebook-promotion-group'>Facebook Promotion Group</a>\n$4 | @shaka | <a href='https://steemit.com/photography/@shaka/the-breitachklamm-perpetual-stone-saw-at-work'>The Breitachklamm - Perpetual stone saw at work</a>\n$3.25 | @herpetologyguy | <a href='https://steemit.com/science/@herpetologyguy/this-is-not-a-prison-why-zoos-are-hugely-beneficial-for-animals'>This is Not a Prison: Why Zoos are Hugely Beneficial for Animals</a>\n$3 | @prufarchy | <a href='https://steemit.com/poetry/@prufarchy/although-original'>Although (Original)<a/> \n$3 | @knozaki2015 | <a href='https://steemit.com/banking/@knozaki2015/spotted-cardlab-one-card-to-rule-them-all'>SPOTTED: CARD_LAB (One card to rule them all)</a>\n$3 | @razvanelulmarin | <a href='https://steemit.com/tag/@razvanelulmarin/note-to-self-don-t'>Note to self: DON'T do this.</a>\n$2.40 | @the-future | <a href='https://steemit.com/lies/@the-future/the-best-sellers-on-the-planet-the-side-effects-killing-us-in-long-term-part-ii'>The best sellers on the planet - The side effects -(killing us in long term)! - Part II</a>\n$2.05 | @scaredycatguide | <a href='https://steemit.com/life/@scaredycatguide/real-talk-vol-3-how-prescription-pills-led-to-a-heroine-epidemic-in-america'>REAL TALK - Vol 3. - How Prescription Pills Led To A Heroine Epidemic In America</a>\n$2 | @heretickitten  | <a href='https://steemit.com/anarchy/@heretickitten/we-didn-t-like-our-money-so-we-invented-bitcoin-we-didn-t-like-our-markets-so-we-made-a-new-one-and-i-don-t-like-our-internet'>A New Internet</a> \n$1 | @steemhost | <a href='https://steemit.com/steemit/@steemhost/announcing-steemhost-com-if-you-love-steemit-we-love-you'>[ANNOUNCING: SteemHost.com] - If You Love Steemit, We Love You!</a> \n$1 | @steemswede | <a href='https://steemit.com/anarchy/@steemswede/freedom-how-is-regulations-killing-small-businesses'>[FREEDOM] How Regulation Kills - A Swedish Example</a>\n$1 | @bkkshadow | <a href='https://steemit.com/travel/@bkkshadow/some-photos-i-took-walking-around-brisbane'>Some photos I took walking around Brisbane...</a>\n$1 | @cryptos  | <a href='https://steemit.com/steemit/@cryptos/looking-for-more-test-subjects-no-i-m-still-not-kidding'>Looking for More Test Subjects... No, I'm Still Not Kidding</a>\n$1 | @streetstyle | <a href='https://steemit.com/steemit/@streetstyle/sunday-project-part-4-putting-some-skin-on-it-teem-work-does-it thanks full $teem ahead!'>Sunday Project - PART 4 - Putting Some Skin On It - TEEM WORK DOES IT!!</a>\n$1 | @streetstyle |<a href='https://steemit.com/story/@streetstyle/whale-vomit-and-why-would-i-want-it-you-would-if-you-could'>WHALE VOMIT & WHY WOULD I WANT IT?? -- [You Would If You Could!!]</a>",
+    "body_length": 4270,
+    "cashout_time": "2016-09-08T19:28:24",
+    "category": "promoted",
+    "children": 45,
+    "created": "2016-09-01T19:28:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"promoted\",\"steemit\"],\"users\":[\"blueorgy\",\"mikemacintire\",\"cmtzco\",\"shaka\",\"herpetologyguy\",\"prufarchy\",\"knozaki2015\",\"razvanelulmarin\",\"the-future\",\"scaredycatguide\",\"heretickitten\",\"steemhost\",\"steemswede\",\"bkkshadow\",\"cryptos\",\"streetstyle\"],\"image\":[\"https://www.steemimg.com/images/2016/09/01/lets-Get-Promoted55ad7.png\"],\"links\":[\"http://Steemit.Chat\",\"https://steemit.com/introduceyourself/@mikemacintire/hi-steemit-i-m-mike-macintire-former-poker-pro-turned-photographer-and-i-m-on-a-mission-to-make-steemit-more-beautiful-drone\",\"https://steemit.com/aviewaday/@blueorgy/a-view-a-day-killian-court-mit-campus-cambridge-ma-usa\",\"https://steemit.com/blog/@cmtzco/ico-or-iro\",\"https://steemit.com/steemit/@cmtzco/facebook-promotion-group\",\"https://steemit.com/photography/@shaka/the-breitachklamm-perpetual-stone-saw-at-work\",\"https://steemit.com/science/@herpetologyguy/this-is-not-a-prison-why-zoos-are-hugely-beneficial-for-animals\",\"https://steemit.com/poetry/@prufarchy/although-original\",\"https://steemit.com/banking/@knozaki2015/spotted-cardlab-one-card-to-rule-them-all\",\"https://steemit.com/tag/@razvanelulmarin/note-to-self-don-t\",\"https://steemit.com/lies/@the-future/the-best-sellers-on-the-planet-the-side-effects-killing-us-in-long-term-part-ii\",\"https://steemit.com/life/@scaredycatguide/real-talk-vol-3-how-prescription-pills-led-to-a-heroine-epidemic-in-america\",\"https://steemit.com/anarchy/@heretickitten/we-didn-t-like-our-money-so-we-invented-bitcoin-we-didn-t-like-our-markets-so-we-made-a-new-one-and-i-don-t-like-our-internet\",\"https://steemit.com/steemit/@steemhost/announcing-steemhost-com-if-you-love-steemit-we-love-you\",\"https://steemit.com/anarchy/@steemswede/freedom-how-is-regulations-killing-small-businesses\",\"https://steemit.com/travel/@bkkshadow/some-photos-i-took-walking-around-brisbane\",\"https://steemit.com/steemit/@cryptos/looking-for-more-test-subjects-no-i-m-still-not-kidding\",\"https://steemit.com/steemit/@streetstyle/sunday-project-part-4-putting-some-skin-on-it-teem-work-does-it thanks full $teem ahead!\",\"https://steemit.com/story/@streetstyle/whale-vomit-and-why-would-i-want-it-you-would-if-you-could\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T16:16:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9715289706809,
+    "parent_author": "",
+    "parent_permlink": "promoted",
+    "pending_payout_value": "12.939 HBD",
+    "percent_hbd": 10000,
+    "permlink": "let-s-get-promoted-a-must-see-collection-of-awesome-posts",
+    "post_id": 1089013,
+    "promoted": "49.697 HBD",
+    "replies": [],
+    "root_title": "\u2705 Let's Get Promoted! - A Must See Collection Of Awesome Posts!",
+    "title": "\u2705 Let's Get Promoted! - A Must See Collection Of Awesome Posts!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/promoted/@blueorgy/let-s-get-promoted-a-must-see-collection-of-awesome-posts"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 12594877551576,
+        "rshares": 74987247876,
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 39743318413,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 536058620425,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1240756601,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19284742253,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 6961794786,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 7025761057,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3756163870,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8545727888,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17552390586,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5955133750,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "2500",
+        "reputation": 17405459234693,
+        "rshares": 22535574872,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 238284822415,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5640235072,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5953214668,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6273879949,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 199720892,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 11295142705,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 377174816,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 5494723000,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5378684534,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1042729942,
+        "rshares": 112669609,
+        "voter": "awaking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 43048257466,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 53644401270,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11667500745,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 5178989051,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 4065065477,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 290635154,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 15410799404,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 69572705,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 71766021,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2074375314979,
+        "rshares": 172718134,
+        "voter": "aksinya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 127642699,
+        "voter": "bromejs"
+      }
+    ],
+    "author": "lpfaust",
+    "author_reputation": 5528318017618,
+    "beneficiaries": [],
+    "body": "<center>https://s25.postimg.org/r3xo3fhhb/living_without_eating.jpg</center>\n\nFeasting on the bounty of the sun; forty four minutes of direct sun gazing each day for spiritual and biological nourishment along with subsistence on water, air and love so the body can metabolize all the nutrients it needs and sustain oneself off the Hindu vital life force, *Prana*. \n\nIt is an international movement of people who believe true health can only be achieved by giving up all solid food and subsisting only on energy, light and in some cases water.\n\nWelcome to the subculture of the Breathairian.\n\n### A Brief History of Breathairians\n\n<center>https://s25.postimg.org/g0i6s74n3/knowledge_1052011__180.jpg</center>\n\nModern Brethairianism is not a novel and unique invention of modern day subculture. The roots of extreme fasting, and by extension Bretharianism, can be traced back to the 1670s Rosicrucian Enlightenment Movement. In the Rosicrucian text *Comte de Gabalis*, extended fasting and renunciation of food and water is attributed to a 16th century physician and occultist, Paracelsus who was said to have lived, \u201c\u2026several years by taking only one half scruple of Solar Quintessence.\u201d\n\n**The Rise of Breathairianism to the Minstream**\n\nThe Brethairian Institute of America was founded by Wiley Brooks in the early 1980s, after he appeared on the American Television Show, *That\u2019s Incredible!*. This spawned an entire subculture with Jasmuheen rising to the fore in 1990, claiming she could go for month and months without anything but a cup of tea. In 1999, she was featured on the television news series 60 minutes. \n\nHira Ratan Manek has laid claims he has subsisted only regular sungazing in addition to  water and occasionally tea, coffee and buttermilk since 1995.\n\nPrahlad Janti was an Indian sadhu, who claimed both that he had managed to live for 70 years without food or water and claimed he was investigated by doctors in both 2003 and in 2010.\n\nBreathairianism has also laid claim to main stream celebrities. Michelle Pfeiffer, during an interview for The Sunday Telegraph\u2019s Stella Magazine, revealed after moving to Los Angeles at the age of 20, she was swept up into the subculture. While filming the movie, The Moonies (about the Reverend Moon Sun-Myung\u2019s Unification Church), \u201c\u2026she said that while she was helping him with research \u2018on this cult\u2019 she realized: \u2018I was in one.\u2019\u201d Madonna was reportedly a practitioner of Breathairianism as well.\n\n**Leadership Hypocrisy and the Fall of Breathairianism to the Fringe**\n\nIn every movement steeped in deep spirituality, a question of conviction arises at some point. Breathairianism would be no different. The personalities most key to the rise of this subculture would hold the keys to the fall of this subculture and its relegation to a fringe cult.\n\nAfter **Wiley Brooks** reportedly left a Santa Cruz 7-Eleven with a Slurpee, a hot dog and some Twinkies in 1983, the Breathairian Institute of America suffered mass resignations within the organization. Wiley Brooks subsequently modified the central tenant of the Brethairian subculture and on the 5D Q & A section of his website Mr. Brooks stated that,\n\n*\u201c\u2026 cows are fifth-dimensional (or higher) beings that help mankind achieve fifth-dimensional status by converting three-dimensional food to five-dimensional food (beef).\u201d*\n\nLater in the same section of the website, Mr. Brooks went into further detail regarding the special properties of the McDonalds Double Quarter Pounder with Cheese and Diet Coke,\n\n*\u201c\u2026the \u2018Double Quarter-Pounder with Cheese\u2019 meal from McDonald's possesses a special \u2018base frequency\u2019 and that he thus recommends it as occasional food for beginning [B]reatharians. He then goes on to reveal that Diet Coke is \u2018liquid light\u2019. Prospective disciples are asked after some time following the junk food/magic word preparation to revisit his website in order to test if they can feel the magic.\u201d*\n\n I think McDonalds coined the phrase, \u201cBig Mac Attack\u201d for that 5D base frequency. \n\nDuring that 60 minutes interview with **Jasmuheen**, interviewers discovered her house was stocked with food. She claimed the food was for her husband and daughter. She was subsequently monitored by the 60 minutes crew for a one week period. By day 3, she was having difficulty and asked to be moved from the city, blaming polluted air as the reason she could not absorb nutrients. \n\nThe crew relocated her to the countryside, and by the fourth day Doctor Berris Wink of the Queensland branch of the Australian Medical Association had to stop the test, due to severe dehydration (about 11%) and threat of kidney failure. \n\nOn the positive side, Jasmuheen was awarded the Bent Spoon Award by Australian Skeptics in 2000. The award is presented to the perpetrator of the most preposterous piece of paranormal or pseudoscientific piffle.\n\n**Hira Ratan Manek** was caught on camera, in the 2011 documentary *Eat the Sun* feasting on a large meal in a San Francisco restaurant and questions would swirl around the \u201cresults\u201d of the tests from **Prahlad Janti**. It was discovered he was allowed to meet with devotees, leave the sealed test room to sunbathe and move out of the view of the CCTV camera views at certain points during the experiment.\n\nIn the immortal words of Darth Vader, a Jedi devotee, \u201cI find your lack of faith disturbing.\u201d\n\n**The Second Coming of Breathairianism**\n\n<center>https://s25.postimg.org/b4f0jvlfj/breatharian_barbie.jpg</center>\n\nAfter being relegated to second tier cults (below cults such as The Heaven\u2019s Gate Society and Aum Shinrikyo), in recent times, the subculture has experienced a rebirth and received a spokesperson in living doll, Valeria Lukyanova- The Human Barbie. \n\nWith her endorsement and the explosion of social media, Breathairianism had a small rebirth within a niche fringe movement of pro-anorexia.\n\n### What exactly are Breathairians? \n\n<center>https://s25.postimg.org/ia6rmbuin/Breatharian_Diet.jpg</center>\n\nThere is a long and deep history of voluntary fasting across all strata of religion with varying rules. The single, unifying thread is the voluntary fast is temporary for very specific spiritual significance or for political reasons, such as a hunger strike out of protest. The key difference with the Breathairian subculture is the period of voluntary fast is for the complete life of the individual.\n\n**The Dark Side of Breathairianism and Its Endorsement by the Pro-Anroexia Nervousa Subculture**\n\nThroughout the pro-anorexia community, forums are dedicated to the Bretharian subculture. The popular belief appears to be Breathairianism has revealed humans do not consume food for nutritional value, but rather it serves only to provide pleasure and sensation. \n\nIt would appear the consensus belief is,\n\n*\u201cBreathairianism is about having the choice of whether to eat or not to eat. To never hunger or starve when food is not around, to never feel dependency or attachment to food, and to have found what is there once food is no longer in the way of our perception and focus. This is what Breatharianism is about. True happiness, and a full freedom of choices. To feel fully alive, safe, independent, and happy.\u201d*\n\nFrightening.\n\n**The Brethairian Subculture in the Media**\n\nThe Breathairian subculture has received some mainstream media attention over the years:\n\n* **VICE Media**, March 16, 2014 (http://www.vice.com/read/breatharian-leader-wiley-brooks-lives-on-light-air-and-quarter-pounders) \n* **The Daily Beast**, March 2, 2014 (http://www.thedailybeast.com/articles/2014/03/02/introducing-breatharianism-the-dumbest-diet-of-all-time.html) \n* **Esquire Magazine**, February 28, 2014 (http://www.esquire.com/news-politics/news/a27563/human-barbies-are-coming-with-diet/) \n* **The Inquisitr**, November 5, 2013 (http://www.inquisitr.com/1019725/breatharianism-cult-leader-jasmuheen-advocates-living-without-food-or-water-but-why/) \n* **LiveScience**, May 10, 2010 (http://www.livescience.com/8224-indian-mystic-claims-eat-70-years.html) \n* **The Guardian**, September 28, 1999 (https://www.theguardian.com/world/1999/sep/28/millennium.uk) \n\nOut of respect for how deeply linked this subculture is with pro-anorexia nervosa and the danger of extreme fasting, I will not perform an analysis of, or include links to, social media or marketplaces which would perpetuate this subculture.\n\n### References\n\nWikipedia. \u201cInedia.\u201d August 29, 2016. https://en.wikipedia.org/wiki/Inedia\n\nBrooks, Wiley. \u201cBreathairian Institute of America. Np. http://www.breatharian.com/wileybrooks.html\n\nNeputin, Matt. \u201cLiving Without Eating? A Skeptical Look at Breatharianism and Sungazing.\u201d RealtivelyInterestig.com. April 18, 2013. http://www.relativelyinteresting.com/skeptical-look-at-breatharianism-and-sungazing/\n\nDuffin. Claire. \u201cMichelle Pfeiffer: The Day I Realized I was Part of a Cult.\u201d The Telegraph. November 2, 2013. http://www.telegraph.co.uk/news/picturegalleries/celebritynews/10422883/Michelle-Pfeiffer-The-day-I-realised-I-was-part-of-a-cult.html \n\nCampbell, Christopher. \u201c\u2019Eat the Sun\u2019 is an Extremely Fascinating Doc About the Unbelievable World of Sungazing.\u201d Indie Wire. June 21, 2011. http://www.indiewire.com/2011/06/eat-the-sun-is-an-extremely-fascinating-doc-about-the-unebelievable-world-of-sungazing-226777/\n\nMcCasker, Toby. \u201cBreathairian Leader Wiley Brooks Lives on Light, Air and Quarter Pounders.\u201d VICE Media, LLC. March 16, 2014. http://www.vice.com/read/breatharian-leader-wiley-brooks-lives-on-light-air-and-quarter-pounders\n\nThe Guardian. \u201cLet Them Eat Air\u2026\u201d. September 28, 1999. https://www.theguardian.com/world/1999/sep/28/millennium.uk \n\nAna Belles, The. \u201cReasons Not to Eat.\u201d Blogspot. August 16, 2015. http://theanabelles.blogspot.com/2005/08/reasons-not-to-eat.html \n\n### Image References\n\nNeputin, Matt. *Living Without Eating? A Skeptical Look at Breathairianism and Sungazing*. Relatively Interesting. April 8, 2013. http://www.relativelyinteresting.com/skeptical-look-at-breatharianism-and-sungazing/ \n\nSitterson, Aubrey.*Breathairian Barbie*. Geek.com. November 23, 2015. http://www.geek.com/news/11-of-the-best-new-religions-of-the-last-century-1640078/\n\nSupplementCentre. *Portrait of a Beautiful Arab Woman Breathing Fresh Air*. Np. May 5, 2014. http://blog.supplementcentre.com/bonkers-diets-2014/portrait-of-a-beautiful-arab-woman-breathing-fresh-air-with-raised-arms/",
+    "body_length": 10379,
+    "cashout_time": "2016-09-14T03:21:39",
+    "category": "subculture",
+    "children": 7,
+    "created": "2016-09-07T03:21:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"subculture\",\"food\",\"health\",\"beauty\",\"life\"],\"image\":[\"https://s25.postimg.org/r3xo3fhhb/living_without_eating.jpg\",\"https://s25.postimg.org/g0i6s74n3/knowledge_1052011__180.jpg\",\"https://s25.postimg.org/b4f0jvlfj/breatharian_barbie.jpg\",\"https://s25.postimg.org/ia6rmbuin/Breatharian_Diet.jpg\"],\"links\":[\"http://www.vice.com/read/breatharian-leader-wiley-brooks-lives-on-light-air-and-quarter-pounders\",\"http://www.thedailybeast.com/articles/2014/03/02/introducing-breatharianism-the-dumbest-diet-of-all-time.html\",\"http://www.esquire.com/news-politics/news/a27563/human-barbies-are-coming-with-diet/\",\"http://www.inquisitr.com/1019725/breatharianism-cult-leader-jasmuheen-advocates-living-without-food-or-water-but-why/\",\"http://www.livescience.com/8224-indian-mystic-claims-eat-70-years.html\",\"https://www.theguardian.com/world/1999/sep/28/millennium.uk\",\"https://en.wikipedia.org/wiki/Inedia\",\"http://www.breatharian.com/wileybrooks.html\",\"http://www.relativelyinteresting.com/skeptical-look-at-breatharianism-and-sungazing/\",\"http://www.telegraph.co.uk/news/picturegalleries/celebritynews/10422883/Michelle-Pfeiffer-The-day-I-realised-I-was-part-of-a-cult.html\",\"http://www.indiewire.com/2011/06/eat-the-sun-is-an-extremely-fascinating-doc-about-the-unebelievable-world-of-sungazing-226777/\",\"http://theanabelles.blogspot.com/2005/08/reasons-not-to-eat.html\",\"http://www.geek.com/news/11-of-the-best-new-religions-of-the-last-century-1640078/\",\"http://blog.supplementcentre.com/bonkers-diets-2014/portrait-of-a-beautiful-arab-woman-breathing-fresh-air-with-raised-arms/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T03:21:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 1156404848163,
+    "parent_author": "",
+    "parent_permlink": "subculture",
+    "pending_payout_value": "0.549 HBD",
+    "percent_hbd": 10000,
+    "permlink": "subcultures-and-social-trends-breatharians-and-sungazers-when-all-you-need-is-a-little-air-sunshine-and-an-occasional-double",
+    "post_id": 1154581,
+    "promoted": "46.500 HBD",
+    "replies": [],
+    "root_title": "Subcultures and Social Trends: Breatharians and Sungazers \u2013 When All You Need Is a Little Air, Sunshine (and an Occasional Double Quarter Pounder With Cheese) to Live",
+    "title": "Subcultures and Social Trends: Breatharians and Sungazers \u2013 When All You Need Is a Little Air, Sunshine (and an Occasional Double Quarter Pounder With Cheese) to Live",
+    "total_payout_value": "0.000 HBD",
+    "url": "/subculture/@lpfaust/subcultures-and-social-trends-breatharians-and-sungazers-when-all-you-need-is-a-little-air-sunshine-and-an-occasional-double"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30339908020562,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 178437811858,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9858079005892,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 640654355933,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4663779658656,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 392188822906,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26831705803,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5648204354987,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7861629418,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 8804243088,
+        "voter": "richman"
+      },
+      {
+        "percent": "5555",
+        "reputation": 2902053059801,
+        "rshares": 1766932742,
+        "voter": "murh"
+      },
+      {
+        "percent": "1400",
+        "reputation": 71931696380,
+        "rshares": 538270552185,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687331665034,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 179628130136,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 24315043804,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 12247109267,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 17987570914,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 243649644994,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 142113759518,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 396653488,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 417321311214,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 16003756503,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9792777,
+        "rshares": 138604353,
+        "voter": "bsgomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 4727846020,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 102847910,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27988491601746,
+        "rshares": 35921591072,
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27855371709889,
+        "rshares": 64689794435,
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 26626009473,
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 6213600532,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 55022014,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 213172829,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 5280462938,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 290245577,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "3100",
+        "reputation": 13325577893779,
+        "rshares": 9928506420,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 36239398705,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3789939590477,
+        "rshares": 6388049881,
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 2900241397,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8773593905,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 689817344622,
+        "rshares": 2053712672,
+        "voter": "chef.cook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 2221778916,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6232933391430,
+        "rshares": 654379209,
+        "voter": "edgarsart"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 71205623,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 5099701604,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26745752593,
+        "rshares": 1289493888,
+        "voter": "portuguesinha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 51247184,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50263480,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 144931161375,
+        "rshares": 111267933,
+        "voter": "patricklemarie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 310077144,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 167973342,
+        "voter": "blimey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7037495995,
+        "rshares": 155210544,
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 745770738333,
+        "rshares": 79570919,
+        "voter": "mikerano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 121564475,
+        "voter": "bromejs"
+      }
+    ],
+    "author": "french.fyde",
+    "author_reputation": 4232493695535,
+    "beneficiaries": [],
+    "body": "Hi friends, today I propose to make caviar! Yes, you heard right, make caviar! This idea came to me after a personal note (after my first upvote of @dollarvigilante) : I imagined the different destinations and the restaurants where went the @dollarvigilante, these places where they serve the best food, but also caviar !!!\n------------------------------------------------------------------------\n*Salut les amis, aujourd'hui je propose de faire du caviar ! Oui vous avez bien entendu, faire du caviar!*\n*Cette id\u00e9e m'est venu apr\u00e8s une remarque personnel suite \u00e0 mon premier upvote de @dollarvigilante*  : *j'imagin\u00e9 les diff\u00e9rentes destinations et les restaurants o\u00f9 va le @dollarvigilante, des endroits o\u00f9 l'on sert les meilleurs plats,* mais *aussi du caviar !!!* \n\n![](http://image.noelshack.com/fichiers/2016/37/1473682632-imag2096.jpg)\n\nAnd the idea of this article had become obvious : I give you how to make caviar with a technique of molecular cooking to everyone. Anyone can do it in the kitchen and all that is required is that very easily.\n------------------------------------------------------------------------\n*Et puis l'id\u00e9e de cette article \u00e9tait devenu une \u00e9vidence :  je vous donne la fa\u00e7on de faire du caviar avec* *une technique de cuisine mol\u00e9culaire \u00e0 la port\u00e9e de tous. Tout le monde peut le faire dans sa cuisine et* *tout ce qui est n\u00e9cessaire ce trouve tr\u00e8s facilement.*\n\n> The term caviar corresponds to the fact to transform a liquid into small beads that give the appearance or illusion of a real caviar.\n*Le terme caviar correspond au fait de transformer un liquide en petites billes qui donnerons l'apparence* *ou l'illusion d'avoir un vrai caviar.*\n\nIn this recipe I made chocolate, but you can give you pleasure in replacing chocolate with a red fruit, coffee or vegetable, let your imagination soar!\n------------------------------------------------------------------------\n*Dans cette recette j'ai pris du chocolat, mais vous pourrait vous faire plaisir rempla\u00e7ant le chocolat par un* *fruit rouge, du caf\u00e9 ou un l\u00e9gume, laisser votre imagination s'exprimer !*\n\nWe start by taking everything one needs. :\n--------------------------------------------\n*On commence en r\u00e9unissant tous ce dont on a besoin :*\n\n![](http://image.noelshack.com/fichiers/2016/37/1473681352-55.jpg)\n\nEverything is mixed, at the same time, cook (without stirring constantly) and stops when there is the first bubbles of boiling.\n------------------------------------------------------------------------\n*On m\u00e9lange le tout en m\u00eame temps, on fait cuire (sans jamais arr\u00eater de remuer) et on arr\u00eate quand il y a les premiers bulles d\u2019\u00e9bullition.* \n\n![](http://image.noelshack.com/fichiers/2016/37/1473681356--.jpg)\n\nNow let cool a few minutes and in the meantime, put oil in a glass. Take any oils other than rapeseed.\n------------------------------------------------------------------------\n*Maintenant laisser refroidir quelques minutes et pendant ce temps, on mets de l'huile dans un r\u00e9cipient. On peut prendre toute les huiles sauf celle au colza.* \n\n> ![](http://image.noelshack.com/fichiers/2016/37/1473681373-imag1981.jpg)\nI took a very big glass so you can see well, but this is not necessary, a simple glass will do.\n*J'ai pris un tr\u00e8s grand verre pour que vous puissiez bien voir, mais ce n'est pas n\u00e9cessaire, un simple verre suffit.*\n\n\nAlors on va prendre le materiel n\u00e9cessaire, c'est \u00e0 dire une seringue. Ce qui compte c'est le trou de de la seringue ne soit pas trop petit. Moi, par exemple, j'ai pris celle du sirop pour enfant.\nSo we will take the necessary equipment: a syringe. What matters is the syringe hole is not too small. I, for example, I took the syrup for children.\n![](http://image.noelshack.com/fichiers/2016/37/1473681651-seringue.jpg)\n\nHere we go !\n------------\n*Et c'est parti !*\n\nPutting our preparation in the syringe and quietly pour in oil\n--------------------------------------------------------------\n*On met notre pr\u00e9paration dans la seringue et on verse gentillement dans l'huile*\n\n![](http://image.noelshack.com/fichiers/2016/37/1473679598-gifpal-20160912132605.gif)\n\nYou like it !?\n--------------\n*C'est pas mal, non !?*\n\n![](http://image.noelshack.com/fichiers/2016/37/1473681979-111.jpg)\n\nFinally, take a strainer and pour your oil in the bottle. All balls come at once at the end: ATTENTION not to pour too fast !Let drain 1 or 2 minutes.\n------------------------------------------------------------------------\n*Pour finir, prenez un \u00e9gouttoir et verser votre huile dans sa bouteille.*\n*Toutes les billes viendrons en une seule fois \u00e0 la fin : ATTENTION de ne pas aller trop vite !*\n*Laisser \u00e9goutter 1 ou 2 minutes.**\n\n> ![](http://image.noelshack.com/fichiers/2016/37/1473682563-12.jpg)\nin the end, the oil doesn't rest on the small balls and oil leaves no taste\n*au final, l'huile ne reste pas sur les petites billes et l'huile ne laisse aucun go\u00fbt*\n\n\n\nJe met tout dans un verre ou une tasse avant de dresser mon plat\nI put everything in a glass or cup before preparing my dish\n\n![](http://image.noelshack.com/fichiers/2016/37/1473682574-1111.jpg)\n\nThe result is perfect: when you look, we get our illusion and when you have in your mouth, I can not tell you ...Hmmm !!!!!\n------------------------------------------------------------------------\n*Le r\u00e9sultat est parfait : \u00e0 l\u2019\u0153il c'est \u00e0 s'y m\u00e9prendre et quand vous l'avez en bouche, je ne vous raconte pas...Hummm !!!!!*\n\nHave fun and Let Your Imagination Go!\n=====================================\n\n![](http://image.noelshack.com/fichiers/2016/37/1473682601-imag2087.jpg)\n\nAmusez-Vous et Laissez Aller Votre Imagination !\n================================================\n\n![](http://image.noelshack.com/fichiers/2016/37/1473682608-imag2092.jpg)\n![](http://image.noelshack.com/fichiers/2016/37/1473682616-imag2095.jpg)\n![](http://image.noelshack.com/fichiers/2016/37/1473682622-imag2099.jpg)\n![](http://image.noelshack.com/fichiers/2016/37/1473682632-imag2096.jpg)\n![](http://image.noelshack.com/fichiers/2016/37/1473687685-signature.jpg)",
+    "body_length": 6046,
+    "cashout_time": "2016-09-19T13:47:36",
+    "category": "food",
+    "children": 4,
+    "created": "2016-09-12T13:47:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"food\",\"recipe\",\"molecularcooking\",\"steemit\",\"fr\"],\"users\":[\"dollarvigilante\"],\"image\":[\"http://image.noelshack.com/fichiers/2016/37/1473682632-imag2096.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473681352-55.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473681356--.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473681373-imag1981.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473681651-seringue.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473679598-gifpal-20160912132605.gif\",\"http://image.noelshack.com/fichiers/2016/37/1473681979-111.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473682563-12.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473682574-1111.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473682601-imag2087.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473682608-imag2092.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473682616-imag2095.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473682622-imag2099.jpg\",\"http://image.noelshack.com/fichiers/2016/37/1473687685-signature.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T14:02:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 54266708173296,
+    "parent_author": "",
+    "parent_permlink": "food",
+    "pending_payout_value": "188.548 HBD",
+    "percent_hbd": 10000,
+    "permlink": "eng-fr-steemitmolecularcooking-or-chocolate-caviar",
+    "post_id": 1219773,
+    "promoted": "46.000 HBD",
+    "replies": [],
+    "root_title": "[ENG/FR] SteemitMolecularCooking | Chocolate Caviar",
+    "title": "[ENG/FR] SteemitMolecularCooking | Chocolate Caviar",
+    "total_payout_value": "0.000 HBD",
+    "url": "/food/@french.fyde/eng-fr-steemitmolecularcooking-or-chocolate-caviar"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2328830993,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 15932372603,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5009612932,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 39743318413,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7922731001,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 249623979672,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4477691887,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 2025915666,
+        "voter": "alexft"
+      },
+      {
+        "percent": "2500",
+        "reputation": 17405459234693,
+        "rshares": 22535574872,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 238284822415,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65825957212,
+        "rshares": 1779605539,
+        "voter": "rambogoham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 247192136,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 25652673779,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 161393135930,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4997362589971,
+        "rshares": 94491949853,
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7293079434,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 67736501170,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 38544425093,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 39909694566,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "5400",
+        "reputation": 7172977970558,
+        "rshares": 1606998205,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13665721836,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17376416987,
+        "rshares": 117290694,
+        "voter": "famunger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 7324572409,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19073889900896,
+        "rshares": 22178033390,
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 234370116,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3509986623,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "0",
+        "reputation": 2409896485,
+        "rshares": 165721966,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 670709305,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 99252024709,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199905262704,
+        "rshares": 87025673,
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 354657306,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 3038795792,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415511458887,
+        "rshares": 197022257,
+        "voter": "ratidor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 14067849393,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28411186,
+        "rshares": 54457374,
+        "voter": "ppan08162016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 860146710,
+        "voter": "kingarbinv"
+      }
+    ],
+    "author": "knircky",
+    "author_reputation": 3320684282022,
+    "beneficiaries": [],
+    "body": "#### Summary: Steem solves one key monetization issue of the internet by creating a new way of paying for content via dilution of its coin supply. This requires organic growth similar to the dilution percentage or higher if the ecosystem is to not deflate. Recently Bounties have been introduced to finance certain initiatives on steem. However I believe this misses the strategic potential of the tool. Bounties could be used to create cash-inflows that will allow growth and value without sending away value of the ecosystem. Instead of just giving money to content creators via a set dilution budget everyday, we can allow users to ask question or support certain topics by adding bounties to their posts. Users might do this because they are seeking a certain type of content. Anyone could ask the internet a question, put a bounty on it and the world would compete for the best answer. As such bounties could be a whole new way information exchange on the internet can be rewarded. By implementing bounties the right way, steem can create one more new monetization layer for the internet and become much more valuable than just with one way of monetizing its content.\n\n#### The recently proposed bounty system falls short of its potential for steem. I want to outline why bounties can be a game changer for the internet and how steem could implement them for mutual benefit.\n\n\n<a target='_BLANK' href='https://ipfs.pics/Qmc4RuamRq4g6qRoemtcSDz6cZ1CQYqY8VoBEZ3WyugDt7'><img src='https://ipfs.pics/ipfs/Qmc4RuamRq4g6qRoemtcSDz6cZ1CQYqY8VoBEZ3WyugDt7'/></a>\n[Photo by pixabay](https://pixabay.com/en/dog-eat-biscuit-reward-843800/)\n\n\n# The monetization issue of the internet\n\nThe internet has a monetization issue. There are pretty much three ways content is monetized:\n\n- Ad model: sites provide advertisement and every view is worth a tiny amount of money. For instance 1000 minutes on youtube tends to be wort about $1  or even less. \n- Subscription: because the above only works for very cheap and mass media content well there are subscription where customer may pay a monthly fee: examples are Netflix or poker training site.\n- Pay per View: customer pay for a particular content such as a movie or news article.\n\nAll of these monetizations have issues. The ad model only works if your content is valuable for a mass audience and ads are annoying. Some people also hate the way sites like google and Facebook are using private data of their customers. The subscription makes it hard for people to sign up, because it creates a monthly bill and once customers have signed up you are stuck with a limit to your revenue. Pay per view has the challenge that many people are used to getting their content for free and create a barrier to consume it because of its price. Subsriptions and pay per view additionally have the problem of having a planned price, while we know planning the correct price leads always to a sub-optimal solution.\n\n# The limit of the internet with bad monetization\nThe internet connects everyone in the world and should make it easy for any information to float freely. However that is not the case. The reason is that while information can be exchanged freely value cannot be exchanged so easily. This is because to provide information to the web, it only makes sense if it fits into the limited monetization channels described above. You may still need to consult regular specialist when having an advanced or specific question. You can't ask the internet to solve a problem for you, unless it is something simple that some nice guy or gal will answer for you on a forum like reddit or if many people have the exact same question.\n\nThe internet needs a better way to exchange information for value via an efficient market for content and information. Imagine you want to go on a trip and want to know what is the best way to vacation for you personally at a wonderful spot like Machu Picchu. You can ask @heiditravels since she has been there in the comments of one of her post, but she is likely going to give you an artificial answer, because consulting you on how to travel there requires work and understanding your requirements. So you probably have to research this yourself by reading articles, books and finding youtube videos that help you. This is all much easier because of the internet, but still the internet does not allow you to actually get a direct exchange of information for you, even if you are willing to pay for it. I had this problem last year when I visited the Galapagos and the fact that I did not know certain things cost me a bit of money, because the way I booked things was not optimal. I.e. I should have booked my day trips on the island instead of going through my travel agency in the US. I also could have saved money 1/2 of the cost by booking the boat cruise on the island, I just did not know this was possible.\n\nSubscription, pay per view and ad based monetization suffer from the fact that only content that happens to be as valuable as many people are ready to pay for it can be exchanged fluidly. That means instead of the market determining the price of content, the information that is the right price finds its way to the internet. The rest of the knowledge we hold stays away. It does not fit the rigid and limited pricing model of the internet.\n\nAs a result most of our knowledge actually does not get exchanged via the internet because there is no good way of valuing that exchange. Imagine what untapped potential the internet has. In other words what would happen if you could just ask the internet for any information or question and it would spit it out for the right price. \n\n\"For the right price\" has not been implemented and thus most of the stuff you can find on the internet is not that valuable, unless it is to help you generate revenue for someone else (like specification of a product) or concerns the masses (news) or cost what many people want to pay for it (blockbuster movie).\n \n# The problem steemit solved and did not solve\n\nSteemit is an amazing solution to the broadcasting of mass information. It has solved the problem of rewarding and paying for content without needing ads, subscription or payments. That is an amazing accomplishment. I have written several articles here and brought some friends to this site that have also written articles, they would have otherwise not published. It allows content to be valued if people appreciate it, instead of if they click on banners, which is a much more direct and better way of exchanging  value. I'd be surprised if many news outlets are either not going to be put out of business by steem or are going to adopt steem somehow in the next few years.\n\nHowever steem still requires a certain amount of people to like content. For instance if you know something that is really valuable for one person on steemit, you will not get  rewarded, even if the information is very valuable to few. So why bother, or give it away when you can probably charge for it? However if you write something that many people like, you will be rewarded very well. So steem in its current form still only works for content of a certain price, that many people want to consume. Of course the whale aspect changes this a bit, but not fundamentally.\n\n# Bounties can be a new way of monetizing the internet\nTo make steem more powerful in this regard we can use bounties. Because bounties can be set at different price levels we can now value content higher, even if only one person needs or wants the information. \n\nSo back to my question of how to best vacation at Machu Picchu: I can ask the question on steem and will probably not get many upvotes to my question. Because it is not very valuable content for many. I will probably also not get the greatest answers because my vote alone won't entice people to do the work of answering my question. However if I put a bounty on my question this changes the game fundamentally. People that can answer the question will now compete for the bounty and thus will have to put effort into providing a good answer. If a good answer will likely safe me a few hundred dollars, why not put this question on steem with a $100 or $200 bounty? The difference is that it used to be smart not to provide an answer, while now it is profitable to provide information.\n\nBounties could also be used to promote certain topics. I.e. if steem wanted to generate a certain type of content like i.e. cat-videos, there could be a bounty on cat-videos. The creators would get additional rewards, in addition to all the existing people that love cat-videos on steem and therefore would vote for them anyway, and thus would be enticed to publish even more cat videos on steem. This could then attract new cat lover users and generate growth for steem.\n\nBounties could be a great way to support the creation of new communities on steam. For instance if we wanted to have daily bitcoin chart analysis on steem and bring traders onto the site, this could be facilitated with the creation of a specific tag and corresponding bounty for traders.\n\nThe difference of this ad campaign would be that instead of giving value to an outside eco-system like google we would grow the steem economy by creating internal value (the money creators will receive from the bounties) instead of burning the marketing budget to some external service.\n\n# Steemit needs cash-inflow\nSteem gives content providers rewards. It pays for these rewards by creating more coins, which dilutes the value of the existing coin holders. In order for the economy to be sustainable, cash-inflow is required to be higher or at least similar to this outflow of money. The balance of these two forces happens via an exchange market. New investors or users of steem buy steem tokens to either power them up or use them otherwise, while content creators tend to cash out at least some of the coins they receive. In addition existing coin holders may also decide to liquidate their steem by selling. In short we need new users or investments to join the ecosystem and buy coins in order for it to not deflate, due to the cash-outflows generated by the reward system continuously. Investors are banking on the fact that the money they put into the system will attract content that is more valuable than the money they are investing and thus will create a positive ROI. \n\nIn addition to the inflow via investments, steem has also just recently created a way to create inflows via promotions. Since the money used to promote post gets burned and thereby reduces the coin supply, it effectively creates cash-inflow to the ecosystem. \n\nBounties would create yet another channel of cash-inflows, since users would directly give other users money without going thru the cycle of investment which has to attract great content that will attract more users, which will invest more to overall grow the steem economy. You can see how that a bounty system would create a financial cycle that would be much more direct.\n\nBoth the promotional cash and the bounty cash will have a much more immediate effect and ROI and thus the flow of money and new users will likely be easier. Overall these different ways of creating cash-inflows will complement and support each other.\n\nI believe that bounties would create value for the steem ecosystem because it would attract new users that possess certain knowledge but do not have the ability to land the big hits via writing great blog posts. Additional users with need for information and questions would be attracted to the site.\n\n# The key competitors of steem use pay per view and transaction fees\nThe key competitors of steem use direct payments for content. In synereo one can pay for the attention of a specific user. In LBRY one can pay directly for a particular content. Similarly Yours plans to use micro transactions to pay for content and charge a fee for these transactions. The way steem pays for content is very new and unique and I think it will do very well vs. these cash flow strategies. Still I think it will be beneficial to have more than one monetization channel in order for steem to compete with these new social media blockchain ecosystems. Providing a way to pay for content more directly than via dilution will simply make steem more competitive and double its potential for growth.\n\n<a target='_BLANK' href='https://ipfs.pics/QmVYwtW1t4DTUfBh3r6iotRZdooFBRjeqDsqEPsKmP1ZqT'><img src='https://ipfs.pics/ipfs/QmVYwtW1t4DTUfBh3r6iotRZdooFBRjeqDsqEPsKmP1ZqT'/></a>\nThe above is a diagram of how I would envision the cash in- and out-flows for the steem economy with bounties and promotions. \n\n\n# Functional requirements of a bounty system for steem\n\nI want to quickly outline how I envision bounties to work on steem\n\n### The bounty button\nSimilar to the promotion button, there should be a bounty button next to every post that allows anyone to put a bounty on a post. The bounty should be paid in SB only, just like the promotions. In addition to the ability to put bounties on one article there should be the ability to put a bounty on a hashtag. This dialog could be accessible via the menu bar. Potentially the promotion and bounty menu could also be integrated.\n\nWhen selecting a bounty, there should be a timeline that defines when the bounty is being paid. I think it would make sense to allow intervals up to the 30 days after the post was created, due to the functionality of steem. It might also make sense to have 3 time intervals such as 1 day, 1 week and 1 month.\n\nAll the bounty payments per pay period should be escrowed by the blockchain and the cumulative amount should be displayed on the post and the distribution of it on each post respectively in parallel how the reward money is visualized.\n\n### Paying out bounties\nThe bounty should be paid out to all the comments of a post according to how readers of the post have voted for it. If the bounty is for a hashtag than all level 1 post with that hashtag will receive the reward. The users that have paid for the bounty thereby should get a higher weight of their votes relative to how much of the bounty they have contributed, so that they define the majority of payout (i.e. 75%). Notice that flagging or negative votes are possible in the same way as for regular votes. \nExample: Assuming two users A and B with the same amount of SP and a bounty that has been placed by B for 1000 SD and user A voting for comment x and user B voting for comment y.  When the time for the payout arrives, the bounty should be distributed as 75% or 750SD to comment y and 250 SD or 25% to comment x and y such that comment y receives 875SD and comment x 125SD. If the SP of the users where different, than the 25% would be distributed according to SP weight in the same manner that steem distributes posting rewards.\nThis is to entice everyone to evaluate the solution to the bounty even if they have not paid for it and to ensure that a bounty can be paid even if some of the bounty posters do not vote for a solution.\n\nThe reward of the bounty of course should be in addition to the regular voting rewards steem pays out anyway.\n\nI don't think there is any reason to use part of the bounty as curation reward, since curation reward is already paid anyway and the bounty provider have intrinsic incentive to distribute the bounty fairly.\n\nI would also suggest to convert 50% of the payout into steem and distribute them via SP. This will decrease the SD supply and keep the steem ecology healthy.\n\n# Please provide feedback\n\nThis proposal for bounties has been thought out by myself and as such, I am sure it can be optimized and might have flaws. So please provide feedback. I will read and assess every comment and if needed make adjustment to this post. I hope @Dantheman @Dan and @Ned will find the time to read and comment on this as well.\n\n# Conclusion\n\nI think bounties could propel the value of steem for its users and greatly improve the economics of steem. It seems to me that bounties would fit naturally into the reward and voting system of steem so that introducing them would come very intuitively to users. I can think of many use cases where I would use them and happily put significant value into the ecosystem to get a particular answer. The key value of bounties is that users can define how much certain information is worth to them and thus solve a key issue of the exchange of value via the internet.\n\nSteemit could leverage the functionality for marketing purposes, for instance to support a new language or a new topic and users we want to attract the site by putting bounties on hashtags.\n\nI hope this proposal is being read and optimized by many steem users and ultimately by the steemit team, so that it has a chance to be integrated into the blockchain.  I hope that on my next big trip or when I have specific technical question, I can just put up a bounty and have the internet generate the answer for me personally.\n\nThanks for reading, commenting and upvoting. Please follow me and check out my other post if you think this was valuable.",
+    "body_length": 17079,
+    "cashout_time": "2016-09-13T17:09:36",
+    "category": "steemit",
+    "children": 9,
+    "created": "2016-09-06T17:09:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"bounty\",\"improvement\",\"bounties\"],\"users\":[\"heiditravels\"],\"image\":[\"https://ipfs.pics/ipfs/Qmc4RuamRq4g6qRoemtcSDz6cZ1CQYqY8VoBEZ3WyugDt7\",\"https://ipfs.pics/ipfs/QmVYwtW1t4DTUfBh3r6iotRZdooFBRjeqDsqEPsKmP1ZqT\"],\"links\":[\"https://ipfs.pics/Qmc4RuamRq4g6qRoemtcSDz6cZ1CQYqY8VoBEZ3WyugDt7\",\"https://pixabay.com/en/dog-eat-biscuit-reward-843800/\",\"https://ipfs.pics/QmVYwtW1t4DTUfBh3r6iotRZdooFBRjeqDsqEPsKmP1ZqT\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T21:11:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 1192318491712,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "0.549 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-potential-of-bounties-an-improvement-proposal-for-steem-to-double-its-value",
+    "post_id": 1148444,
+    "promoted": "46.000 HBD",
+    "replies": [],
+    "root_title": "The potential of bounties: An improvement proposal for Steem to double its value",
+    "title": "The potential of bounties: An improvement proposal for Steem to double its value",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@knircky/the-potential-of-bounties-an-improvement-proposal-for-steem-to-double-its-value"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098264029,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3761241627,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697163959,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5995285453375,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53861287574,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660445252,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213637114,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2006740845230,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622584873,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 966958517,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 300386822966,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 28399614285,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288099188,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 82664750052,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 23512090937,
+        "voter": "klye"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787559864,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 18374494537,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 38846045193,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11501242325,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 649863857,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1458070113770,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686865536242,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 5144476703,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6591597330,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1901149350,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8528672662,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 1323509077,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5826412643,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3165194873,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5517904010,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 39864624930,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 62235479896,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 26407408585,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6137063530,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10433211509,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 836463003,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 21363924390,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 470865927,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3655676496603,
+        "rshares": 10489765263,
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 229654538,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8409725906,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116820988881,
+        "rshares": 6197081170,
+        "voter": "corinnestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1367822475,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 2179662711,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851264493766,
+        "rshares": 3235671738,
+        "voter": "begstreets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544127613711,
+        "rshares": 4663116063,
+        "voter": "madillorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6820819905,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 9969587892,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 22963130568,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7290424918,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 31231380762,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5819849141,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 901348001111,
+        "rshares": 2612689846,
+        "voter": "tjpezlo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5054170210,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 12718954821,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5507906695,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25310106112,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 90923980710,
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 1347913567,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 2007081676,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 16238481694,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 5874641515,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1064884591,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 651986872,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2464511443415,
+        "rshares": 1797269610,
+        "voter": "alitas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10934414249,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 10524500228,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5210280082,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 4916507708,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 4989320123,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 10018253562,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 62312186,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17411909771,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 420580334986,
+        "rshares": 75387763,
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5788018857372,
+        "rshares": 6017454300,
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8652306644,
+        "rshares": 53584970,
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 13862215329,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11825860265,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 2835774608,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4305929006,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5471554000,
+        "rshares": 54859471,
+        "voter": "jod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351488360313,
+        "rshares": 54615840,
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1699203610,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 988075153,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": -519870545601,
+        "rshares": 51616527,
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 155267761,
+        "voter": "terrano"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p>As a follow up to my <a href=\"https://steemit.com/photography/@thecryptofiend/some-painterly-and-expressionistic-photo-work\">last post</a> here are some more painterly and expressionistic shots. &nbsp;Please feel free to have your say and comment - it is always appreciated.</p>\n<p>I hope you like them.</p>\n<p><br></p>\n<h1>The Photos</h1>\n<p><br></p>\n<p><img src=\"https://i.imgsafe.org/30a8657754.jpg\" width=\"800\" height=\"534\"/></p>\n<p>\"Sensuality\" . &nbsp;A natural light shot with backlighting. This required a lot of care to ensure skin texture was preserved after retouching. Model: Alex Oke.</p>\n<p><br></p>\n<p><br></p>\n<p><img src=\"https://i.imgsafe.org/30a8bbef87.jpg\" width=\"799\" height=\"571\"/></p>\n<p>An outdoor summery shot. &nbsp;The palette here was quite bright and vibrant. Model : Rachelle Summers.</p>\n<p><br></p>\n<p><br></p>\n<p><img src=\"https://i.imgsafe.org/43ceb61ad2.jpg\" width=\"721\" height=\"1080\"/></p>\n<p>\"Gothik\" - &nbsp;This was a very expressionistic piece. &nbsp;I used extensive painting to remove extraneous detail and simplify the image. &nbsp;Model: Alice Beauvoisin</p>\n<p><br></p>\n<p><br></p>\n<p><img src=\"https://i.imgsafe.org/30a795b010.jpg\" width=\"799\" height=\"571\"/></p>\n<p>This is like a beauty shot but with a more cross-processed kind of look than you would normally see with this type of portrait. &nbsp;Model: Axel Von Rosencoff</p>\n<p><br></p>\n<p><em>You can see more of my work @thecryptofiend - hope you enjoy.</em></p>\n<p><em>(Verification for me here: </em><a href=\"You can see more of my work @thecryptofiend - hope you enjoy.  (Verification for me here: http://www.aapicture.com/about-me)\"><em>http://www.aapicture.com/about-me</em></a><em>)</em></p>\n</html>",
+    "body_length": 1740,
+    "cashout_time": "2016-09-05T13:50:48",
+    "category": "photography",
+    "children": 23,
+    "created": "2016-08-29T13:50:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"photography\",\"photo\",\"art\",\"portrait\",\"painterly\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https://i.imgsafe.org/30a8657754.jpg\",\"https://i.imgsafe.org/30a8bbef87.jpg\",\"https://i.imgsafe.org/43ceb61ad2.jpg\",\"https://i.imgsafe.org/30a795b010.jpg\"],\"links\":[\"https://steemit.com/photography/@thecryptofiend/some-painterly-and-expressionistic-photo-work\",\"You can see more of my work @thecryptofiend - hope you enjoy.  (Verification for me here: http://www.aapicture.com/about-me)\",\"http://www.aapicture.com/about-me\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T13:50:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11322027176665,
+    "parent_author": "",
+    "parent_permlink": "photography",
+    "pending_payout_value": "18.046 HBD",
+    "percent_hbd": 10000,
+    "permlink": "painterly-and-expressionistic-photography-part-2",
+    "post_id": 1041328,
+    "promoted": "46.000 HBD",
+    "replies": [],
+    "root_title": "Painterly and Expressionistic Photography Part 2",
+    "title": "Painterly and Expressionistic Photography Part 2",
+    "total_payout_value": "0.000 HBD",
+    "url": "/photography/@thecryptofiend/painterly-and-expressionistic-photography-part-2"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 27526380368282,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 493904989137,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7731774323941,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30963340603502,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 376251845809,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 38628577663382,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "6000",
+        "reputation": 13270505121655,
+        "rshares": 39215528449249,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 4574316664480,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6733379560466,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3066681879675,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 477966998971,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 4555198258386,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1119290177600,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1099134162323,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 995902544214,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 308753515461,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5113121585969,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726575642,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524583713,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 821038130,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7061101034251,
+        "voter": "complexring"
+      },
+      {
+        "percent": "7500",
+        "reputation": 49280708331375,
+        "rshares": 5152147344752,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66101488132,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996734414,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256577770,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 79845179316,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 63621891156,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7132023384,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5793517039266,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1201733691140,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 37842725376,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750187822,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168126713,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 23459060358,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254955012957,
+        "rshares": 10498292387,
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31824886550,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 9588709514,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346070380,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2165622245848,
+        "rshares": 3109456055,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8209280181,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 153296056627,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 10960361335,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14994955404,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15051023882,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78234456691,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1307793552141,
+        "rshares": 16968715703,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "6280",
+        "reputation": 12382143533351,
+        "rshares": 388803010656,
+        "voter": "eeks"
+      },
+      {
+        "percent": "700",
+        "reputation": 14848515958625,
+        "rshares": 6569044104,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 61054775,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 944762156062,
+        "rshares": 6453496039,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 376960001789,
+        "rshares": 735229559,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2154161049,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 336024528357,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1300",
+        "reputation": 5414208804644,
+        "rshares": 4002829527,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "1200",
+        "reputation": 503318537891,
+        "rshares": 1377965630,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "900",
+        "reputation": 15755437221598,
+        "rshares": 3046417496,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 156573687746,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 47413658846,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 40699583041,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 982799520,
+        "voter": "coar"
+      },
+      {
+        "percent": "1509",
+        "reputation": 2902053059801,
+        "rshares": 706760886,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3150734011,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 413982599009,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "5000",
+        "reputation": 18165011697633,
+        "rshares": 37933469992,
+        "voter": "tinfoilfedora"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 68637687828,
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24892673749,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 10437999499,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 418622798,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 375186691312,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "4000",
+        "reputation": 3804349938696,
+        "rshares": 22203455044,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5888717170887,
+        "rshares": 33744098418,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4581604470,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 79211060582,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 22806229743,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 32998689739,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173891397847,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2747282701,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811919161664,
+        "rshares": 5441964146,
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6742343806,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "1000",
+        "reputation": 18458799241134,
+        "rshares": 4664732981,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 6406633281,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 65327029498,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6466238081,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 861737606263,
+        "rshares": 2190216920,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 5891286972,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 7865292102,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 510560493,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860741683952,
+        "rshares": 13966313707,
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 52006965472,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 20199692434,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 369419860,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5480390590,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 280810708,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 160654406646,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 322161583283,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5190612986,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 51172289637,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 73669227443,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1260650049067,
+        "rshares": 1039910629,
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5263874133,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122425882381,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5478937966,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 48661612606,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 5773781115,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 8195186985,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 154748925594,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 748609254,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 29982688838,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 15620672312,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 550066409600,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10594766057,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 98865572073,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 16387519197,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 164113821182,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4633652827,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 61949102847,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "9000",
+        "reputation": 2821855573125,
+        "rshares": 4648828220,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13786736208,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 241151752567,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33649569687,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 19899950500,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2397831198773,
+        "rshares": 664533963,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 30406359089,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24966175354,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10633723041,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 72122373888,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2432538531735,
+        "rshares": 10116801758,
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 349333115852,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2503362754,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4997362589971,
+        "rshares": 104275514857,
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 585128034,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 21251528152,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 41875574687,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 91926117,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13498626934,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 23642062334,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 202466740034,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3432105137,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7168108020,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 7665805497,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3067643706,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1514733088,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 14988694886527,
+        "rshares": 32299149356,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 6499288255,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 1428253908,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 24289041861,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 98784441443,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 77100966,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19393495828,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 436229754,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 5115308538,
+        "voter": "favorit"
+      },
+      {
+        "percent": "1000",
+        "reputation": 58190631451,
+        "rshares": 2725832001,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 664224643,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1403214907,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 283260879,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114849934,
+        "voter": "fsip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 45674978438,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3699079514,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 15825218986,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 37392922224,
+        "voter": "smailer"
+      },
+      {
+        "percent": "300",
+        "reputation": 4063076365725,
+        "rshares": 116118859,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 862222696,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18456599281,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 27770435610,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 6474324531,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1177738817,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 71964844842,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1275505236,
+        "rshares": 1378717807,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 406607053254,
+        "rshares": 235438675,
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24362034190,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4890113111,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10735623,
+        "rshares": 65204048,
+        "voter": "cechirik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 26122931456,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26100683859,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26110010937,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 588607112049,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 17279737369,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 17727013483,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "6280",
+        "reputation": 1751717743,
+        "rshares": 10306119254,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6907625180,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26105523826,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26103248276,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26100183826,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26096640233,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8291369593,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26092206591,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26090029262,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3653299044116,
+        "rshares": 7963549449,
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1376887643,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21044216417,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11354441708,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 107983601750,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62556433,
+        "voter": "internistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 14254306379,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1729954252,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 80357718252,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 1726441518,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 43384212188,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 275026678,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10739953721,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91384020663,
+        "rshares": 68550569,
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3769464721,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 39390555456,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 77220767,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "100",
+        "reputation": 3814152361740,
+        "rshares": 254680718,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9679928412,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1489069575,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59750246,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 273211506,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 13665635092,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59992769,
+        "voter": "shuklix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 7727181529,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26082953024,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 3083989123,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2978336615,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5945926381,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 42909923528,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 16339966378,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8041485878,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1401458089,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5881944684,
+        "rshares": 59261081,
+        "voter": "disletti"
+      },
+      {
+        "percent": "5800",
+        "reputation": 793368183438,
+        "rshares": 24655449762,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 69721598,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2149430985,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1258844947,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 2230320600,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 58025713,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 3079600558,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 913227198,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 117344778,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57881817,
+        "voter": "novrik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 52053227,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3418202722938,
+        "rshares": 12007897380,
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 2028200120,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 57664781,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12089632983,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 25202992641,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 9593336727,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78138793415,
+        "rshares": 86165076,
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 1532461481,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7426008331,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 174713024,
+        "voter": "rusla"
+      },
+      {
+        "percent": "4000",
+        "reputation": 134056888284,
+        "rshares": 130992658952,
+        "voter": "cornerstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54391689,
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293042273,
+        "rshares": 56582615,
+        "voter": "minihelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 660913097252,
+        "rshares": 3335975740,
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 633489640,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 1162848474,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18912504878,
+        "rshares": 65457046,
+        "voter": "forest-revealed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 808370638,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3983778979,
+        "rshares": 54726577,
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 115556600090,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117903399171,
+        "rshares": 646861838,
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 453351131,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 52088375,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97476072754,
+        "rshares": 369323003,
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 2913602897,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59275415100,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54272135,
+        "voter": "mpmajo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 3135075242,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 683829103,
+        "rshares": 54232595,
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1250337518,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 568011923,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726647930107,
+        "rshares": 3312524129,
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 84516562,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 1195193402,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 9640083850,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 1173837106,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1642160,
+        "rshares": 52549133,
+        "voter": "janeth111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 52800226,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 52864017,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121767758976,
+        "rshares": 53548226,
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51615039,
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3689606685797,
+        "rshares": 7301503729,
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 2019020353,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487989126850,
+        "rshares": 1977855772,
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396872137163,
+        "rshares": 56856217,
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 120476926,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6098187003516,
+        "rshares": 9289382445,
+        "voter": "luzcypher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 511233308,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82287966,
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1317647622,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33024540131,
+        "rshares": 116937238,
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33159895743,
+        "rshares": 153687209,
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 345429965231,
+        "rshares": 508743849,
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 155910854,
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446608067,
+        "rshares": 3795801841,
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8318542,
+        "rshares": 146534462,
+        "voter": "nekrasov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22482956163,
+        "rshares": 166431444,
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251629303655,
+        "rshares": 10549884113,
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465128668,
+        "rshares": 159048846,
+        "voter": "manuelgarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189961981,
+        "rshares": 155110756,
+        "voter": "matteopoole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158170239,
+        "voter": "spacedout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 474962663,
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2361914,
+        "rshares": 157332453,
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 226352036,
+        "rshares": 157111992,
+        "voter": "emisfer2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804954090860,
+        "rshares": 311030765,
+        "voter": "aldentan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144468196,
+        "voter": "roman.est"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153571614,
+        "voter": "petrroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15827302113,
+        "rshares": 156505647,
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156489923,
+        "voter": "novium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156452773,
+        "voter": "yahooshua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 135270873,
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156347190,
+        "voter": "wizardcrying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32146174,
+        "rshares": 147091838,
+        "voter": "alkindi31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156226986,
+        "voter": "kmichaelkills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153075466,
+        "voter": "william007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 745770738333,
+        "rshares": 116295959,
+        "voter": "mikerano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155748226,
+        "voter": "karles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 152655283,
+        "voter": "jahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 313203976,
+        "rshares": 155688834,
+        "voter": "nathanael540"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155680732,
+        "voter": "rupelto"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "I know many people have been very concerned with the block on NSFW content from all categories, and have been concerned about the chance of the platform continuing to block other content.\n\nI think Steemit are doing a great job, and I understand some of their position if they end up censoring content. Being a US business means they will quickly run into legal issues with the content on their site, and may have to do some censorship. \n\nOf course thanks to the blockchain, it's never truly censored, and sites like UnderSteem can show it.\n\nThis is a follow up to my post from a few days ago, where [I launced the first TOR RPC and SEED node for STEEM.](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy).\n\n**As people should know by now, I'm strongly concerned about privacy and freedom.** In the past week:\n\n - I set up a TOR node for the STEEM network (link above)\n -  [raised almost $200 USD for RiseUP](https://steemit.com/steem/@someguy123/proof-of-riseup-donation)\n -  Set up a site for [fully anonymous steem accounts](https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media)\n\n----\n\n\n![](https://i.imgur.com/UPxM1Jf.png)\n\n\nWhat is UnderSteem?\n-----\n\nTL;DR\n\n - Uncensored - UnderSteem promises to have no censorship, including on pornography and piracy\n - Private - UnderSteem is only accessible over TOR. This means your IP address is never disclosed, so you're protected\n - Secure - Because UnderSteem is over TOR, the server locations are unknown. This makes it much harder to be hacked, because the attackers do not know the IP address of the servers, and they're only able to access the website\n - [Open Source](https://github.com/Someguy123/understeem/)\n\nUnderSteem is \"Underground Steem\". It is a fork of Steemit (not STEEM. It's on the same network), and is fully [open source, available here](https://github.com/Someguy123/understeem/). UnderSteem promises to avoid censorship on the client level, and operates it's servers within a safe jurisdiction, **since just like steemit, it does not store any content at all, and cannot be held responsible for any illegal activity.**\n\nTo allow the safest, most private experience, it's only available over TOR. I strongly recommend [downloading TOR Browser](https://torproject.org) - it's free, open source, and available on nearly every platform, **even Android and iOS**. (Don't worry, TOR is completely legal almost everywhere, including the US, practically every European country + the UK)\n\nOnce you have TOR browser, you can just enter the following URL into the address bar, and you'll be on UnderSteem:\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\nIf you just want to take a quick look *without TOR*, you can access the site through a gateway such as ONION.TO, however the site will not function fully through a gateway because of the JavaScript trying to communicate with [my TOR node](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy):\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n\nWant to remember this URL? Just split the words up!\n\n<center>`usteem pc coap good`</center>\n\nDo I need to sign up?\n-----\n\n**You don't need to.** If you already have an account made on Steemit, or AnonSteem, you can log into the website with your username and password just like normal.\n\nIs it legal to access this site and use TOR?\n-----\n\nUnderSteem is not designed for illegal content any more than Steemit is, however the laws vary in every country. \n\nUnderSteem believes that the content should be free for the person to decide if they should view it or not, rather than their governments laws.\n\nWhile UnderSteem will avoid any form of censorship at all costs, **there's nothing illegal about using TOR** (in most countries), **or UnderSteem** unless you are purposely trying to access illegal content.\n\n----\n\n<center>Try it out!</center>\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n----\n\n**Frequently Asked Questions**\n\n**Why can't I see the upvote button?**\n\nYour security settings on TOR browser are too high. On the \"high\" setting, SVGs are blocked, which means the upvote button and other icons can't work. \n\nClick the TOR icon in the top left, and press \"Privacy and Security Settings\", and turn it down to at least Medium-High.\n\n**Why can't I log in?**\n\nYou probably need to enable javascript. Click the NoScript icon in the top left and whitelist the site.\n\n**Why are other categories/tags broken?**\n\nYou probably have Javascript disabled. Click the NoScript icon in the top left and whitelist the site.\n\nBe aware that the clearnet gateway (onion.to or onion.cab) isn't fully functional because of the javascript used on UnderSteem. To get a proper experience on UnderSteem, [download TOR](https://torproject.org)\n\n**I don't trust UnderSteem with my password, can I still use this service some other way?**\n\nYES. You can use your posting key as your password. Go to your Steemit account, click on \"Wallet\", then \"Permissions\". Click \"Show Private Key\" on your posting key, and paste that into the password box of UnderSteem. \n\nThis will only give the site the ability to make posts/comments, and upvote. It will not be able to access your wallet, or change your keys/password.\n\n**Is there an NSFW filter?**\n\nNO. We do not approve of any of the filtering. If you want filtered content (or are in a family/work setting), continue to use Steemit.\n\n\n---\n\nDo you like what I'm doing for STEEM/Steemit?\n----\n[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. \n----\nDon't forget to follow me for more like this.\n-------",
+    "body_length": 5830,
+    "cashout_time": "2016-09-18T16:40:45",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-11T16:40:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"censorship\",\"privacy\"],\"image\":[\"https://i.imgur.com/UPxM1Jf.png\"],\"links\":[\"https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy\",\"https://steemit.com/steem/@someguy123/proof-of-riseup-donation\",\"https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media\",\"https://github.com/Someguy123/understeem/\",\"https://torproject.org\",\"http://usteempccoapgood.onion\",\"http://usteempccoapgood.onion.to\",\"https://steemit.com/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T22:43:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 200808528786505,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3050.626 HBD",
+    "percent_hbd": 10000,
+    "permlink": "understeem-steemit-without-censorship-nsfw-filter-removed-via-tor",
+    "post_id": 1210189,
+    "promoted": "45.000 HBD",
+    "replies": [],
+    "root_title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 520098232581,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14578836542539,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2482055809,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3013424240,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 552662812,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43649459756,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1330064009,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 171009273,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1365996941130,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 499845540,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 775709423,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230642309,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11556829072,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 886822486398,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1638222754037,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 40299209243,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 623593533,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425383800,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 386982638085,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 70382374681,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 13249527549,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1012427662,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 20531699161,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 86272166575,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 15962662083,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "6500",
+        "reputation": 18799092030582,
+        "rshares": 80206942745,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 249020721,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 680317495390,
+        "rshares": 370944375,
+        "voter": "tahriq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 36912169977,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 342618400,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2030462552,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 2937944308,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3786614861,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 429459071,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 39483084653,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 454984734,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 10849529390,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103997978070,
+        "rshares": 483322416,
+        "voter": "raphma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 24460059681,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 29794491605,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 8190688617,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5708364182,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 115523854,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13229757929,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114402874,
+        "voter": "venuspcs1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157370635229,
+        "rshares": 225034404,
+        "voter": "steemitdude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 27129614744,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12316436088,
+        "rshares": 3624449018,
+        "voter": "hornytrucker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2269581106933,
+        "rshares": 1036500158,
+        "voter": "stormblaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 50335383247,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 472162487313,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8117853119,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475920141542,
+        "rshares": 282929283,
+        "voter": "riosparada"
+      },
+      {
+        "percent": "1000",
+        "reputation": 73944659327428,
+        "rshares": 18584578406,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 954937043358,
+        "rshares": 6891964038,
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 20772861575,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 339050685,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230347891,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11009179622,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 593072231,
+        "rshares": 61696026,
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1147003326,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115008476,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61167862,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 6622871124,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 60661014,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 73975374,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 64453409753,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 3160987433,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1443290254,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1964608419732,
+        "rshares": 10075258049,
+        "voter": "scifiwriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 58816907,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58064982,
+        "voter": "zite"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 2977610188,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 724481620405,
+        "rshares": 1429328557,
+        "voter": "the-how-to-guy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2484336960082,
+        "rshares": 2921761313,
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 813530163,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008076973,
+        "rshares": 184399167,
+        "voter": "hornytrucker1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3970810,
+        "rshares": 53451619,
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19512256979,
+        "rshares": 221181360,
+        "voter": "jaredandanissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54632424,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16608213399,
+        "rshares": 1208004939,
+        "voter": "ateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54012814,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53764342,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 106768414,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53531096,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 807251193,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 1827939594,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1579201846721,
+        "rshares": 1477822277,
+        "voter": "pakganern"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15745290909,
+        "rshares": 52591574,
+        "voter": "julianoneill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 67560303,
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2543813,
+        "rshares": 162804079,
+        "voter": "hornyasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2066096601,
+        "rshares": 129862184,
+        "voter": "rarcntv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585181578869,
+        "rshares": 91692568,
+        "voter": "nikomah"
+      }
+    ],
+    "author": "venuspcs",
+    "author_reputation": 17405459234693,
+    "beneficiaries": [],
+    "body": "<h1>Why I was such a tool and kept rage quitting and freaking out!</h1>\n\nWatch these two video's I posted a week or two ago:\n\n<center>(https://www.youtube.com/watch?v=KTsOvdSVWaI)</center>\n<center>&</center>\n<center>(https://www.youtube.com/watch?v=qztAKXU83Fg)</center>\n\nThe short of the story is this:\n\nOn July 4th, only a few days after starting a new truck driving job, my mother passed away. On the 6th of July I picked up her ashes and she almost immediately started haunting me whenever I would try and sleep. For almost 7 weeks I went with only approximately 1 hour a night sleep because of her. Now I normally only sleep 2-3 hours a night so it took a while for the effects of this to really hit me. But about 5 weeks ago it did and I didn't even realize it. I had become an absolute monster.\n\nOnce I was able to get a load to the ocean (Miami, FL) and \"feed her to the fishies\" she left me alone and I have been back to my normal 2-3 hours a night sleep. I should note that I have a lot of injuries that prevent me from sleeping more than a few minutes at a time. Hence the reason I sleep so little.\n\nNow ordinarily I would say \"but that is no excuse\" and I would be right.....but the truth is seldom as black-and-white as that. In fact, in this case, it is an excuse and a damn good one IMHO. During that 7 weeks of averaging 1 hour a night sleep there were 10 nights with absolutely zero sleep. Guess what days I flipped out the worst....that's right on the nights I got no sleep at all. Between the pain I live with daily (which is 10 fold when I don't get sleep), the haunting by my mother, the lack of work (not driving or making any money) and the untold stress I was under because of all of the above I was quite literally \"not myself\".\n\nI will admit that I should have \"been aware of the way things were\" and avoided public interactions, however, the effects crept up slowly over roughly 4 weeks and went unnoticed. In fact I had no idea why I was acting the way I was until after I buried mom at sea. I knew something was wrong but thought Steemit had turned against me.....no idea in my head at the time that it was actually my fault, my behavior that had pushed Steemians away.\n\nBefore I could even realize what I was doing and that I was at fault I was banned from Steemit.Chat, multiple times on different accounts. For weeks I was unable to get on chat (for more than a few minutes before getting banned again) and if it weren't for my bestie (@steemitqa) I still wouldn't be on chat.\n\n<h1>The Apology!</h1>\n\nTo everyone I pissed off, offended, hurt, embarrassed or made think less of me <b>I AM TRULY SORRY!</b> I wasn't being myself and I assure you that it will never happen again. My stress level is still high and my wallet empty but I have learned from the past and my past mistakes and now recognize when I am becoming a tool and step away as I did earlier today when I was involved in a small disagreement with @noisy and it got under my skin. I didn't flip out, or rage quit. I just left Chat for an hour or two and went and did other things.\n\nI promise that you will never see any more Public Tantrums, Rage Quits or other asinine behavior from me. \n\n<h1>How not to act on Steemit & Steemit.Chat!</h1>\n\nFirst let me say that \"Free-Speech is a double-edged sword\" which is a lesson I learned the hard way. Yes you are free to say whatever you want on Steemit and Steemit.Chat, but just like IRL there are consequences to your actions. This is a quick guide, Steemit Etiquette if you will:\n\n<ul>\n<li>Treat Others the Way You Want to be Treated - I know this is an old adage but it is the most important thing I can impart to anyone and it doesn't just apply to Steemit/Chat!</li>\n<li>Telling the whale that has repeatedly upvoted your content and made you tons of SP to \"go f*&k yourself\" repeatedly in a public chat room is also REALLY REALLY not a good idea. Even after he \"forgave\" me and told the mods to let me back on Chat I fear I will never regain his trust or his upvotes. Thankfully he wasn't a vengeful person and didn't flag everything I ever posted. Not going to call him by name as he asked to be \"left alone\" and I respect that.....but if you read this I REALLY AM SORRY MAN!</li>\n<li>Remember when posting or commenting on Steemit.com or in Steemit.Chat that you aren't the only one who is going to read what you write. There are people of all ages, genders, ethnicities, educational levels, languages and income levels (both on Steemit and IRL) that will see your post/comment.....so be mindful of what you say and more specifically HOW IT WILL BE INTERPRETED!</li>\n<li>Just because your post/comment doesn't make tons of money doesn't mean it wasn't Quality Content. It just means that no one saw it. (Unless you do like me and piss everyone off then it doesn't matter how good your writing is it still won't make any money!)</li>\n<li>Spamming your posts (links) to people on Steemit.Chat will turn them against you so when you do make a mistake they will be even more likely to complain and have you banned or worse flag your posts.</li>\n<li>The secret to becoming successful on Steemit is simple, really: Spend time getting to know people in Chat, voting and commenting (Curating) other's posts and when you do Promote your content do it in the proper rooms. Also make sure you encourage people who do find your posts to \"follow me\" with a link to your Blog (https://steemit.com/@venupscs).</li>\n</ul>\n\n<h1>Summary!</h1>\n\nIf you let stuff bother you, get under your skin and don't step away from the situation you will wind up in my shoes, ignored by Steemians and destined to never again make any money or get any help from them, even when you need it the most.\n\n<h2>SO DON'T BE LIKE ME, BE BETTER!</h2>\n\n<hr>\n\nOh and make sure you <a href=\"https://steemit.com/@venuspcs\">Follow Me</a>!",
+    "body_length": 5839,
+    "cashout_time": "2016-09-12T17:25:33",
+    "category": "steemit",
+    "children": 30,
+    "created": "2016-09-05T17:25:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"blog\",\"writing\",\"life\",\"apology\"],\"users\":[\"noisy\"],\"image\":[\"https://img.youtube.com/vi/KTsOvdSVWaI/0.jpg\",\"https://img.youtube.com/vi/qztAKXU83Fg/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=KTsOvdSVWaI\",\"https://www.youtube.com/watch?v=qztAKXU83Fg\",\"https://steemit.com/@venupscs\",\"https://steemit.com/@venuspcs\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T17:25:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 20674014672496,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "47.827 HBD",
+    "percent_hbd": 10000,
+    "permlink": "yes-i-was-a-tool-for-a-few-weeks-and-here-is-why-with-a-formal-apology-also-how-not-to-act-on-steemit-and-steemit-chat",
+    "post_id": 1136603,
+    "promoted": "44.743 HBD",
+    "replies": [],
+    "root_title": "Yes I was a tool for a few weeks and here is why WITH A FORMAL APOLOGY - also - how not to act on Steemit & Steemit.Chat",
+    "title": "Yes I was a tool for a few weeks and here is why WITH A FORMAL APOLOGY - also - how not to act on Steemit & Steemit.Chat",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@venuspcs/yes-i-was-a-tool-for-a-few-weeks-and-here-is-why-with-a-formal-apology-also-how-not-to-act-on-steemit-and-steemit-chat"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/max_limit.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/max_limit.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..fd2b9a70b04d6de2535efbe3512b66d7c2614cf3
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/max_limit.tavern.yaml
@@ -0,0 +1,30 @@
+---
+  test_name: Hivemind condenser_api.get_discussions_by_promoted patterns test
+
+  marks:
+    - patterntest
+    - failing
+    - xfail # extra votes due to muting not working
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: condenser_api.get_discussions_by_promoted
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_discussions_by_promoted"
+          params: {"limit":100}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "max_limit"
+            directory: "condenser_api_patterns/get_discussions_by_promoted"
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/min_limit.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/min_limit.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..3d0892ee4f8152ddd9a00d8cc6c0ddc909bbccdf
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/min_limit.orig.json
@@ -0,0 +1,2590 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-28338941273774",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-56560374008",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515865522774",
+        "voter": "panadacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "591238736691",
+        "voter": "barrie"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-31244889730986",
+        "voter": "smooth"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-25869425303440",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "8900",
+        "reputation": 0,
+        "rshares": "56923627230317",
+        "voter": "ned"
+      },
+      {
+        "percent": "-4000",
+        "reputation": 0,
+        "rshares": "-61162327823",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5861402538757",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "2012701974707",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1105925638130",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1595196737607",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "986803208166",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5034399699326",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103422054",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767892961",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690943799",
+        "voter": "bunny"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "3573913851034",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6282474172783",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54717838235",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662987228",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213785292",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209038160029",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "7692488765",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3455872549975",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6781848343",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1387859952",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106098683047",
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "855490468340",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115524100455",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8261386990",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2104057003",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-5694232013608",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988597560715",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "564763376378",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168058097416",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61457593326",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29414306405",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624912728",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "902943814",
+        "voter": "stoner19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "971397151",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400674324536",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821205239311",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "16122243298",
+        "voter": "team"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "68140066479",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335329901210",
+        "voter": "lighthil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288337653",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84761882611",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221378412917",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156355134109",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125237012083",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384189354393",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78953157492",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24177692381",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47071100260",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182161233136",
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27507445535",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15043635029",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1091318863571",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3913661416",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537679658162",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "477297643",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "19875326051",
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5373300397",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31632644129",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2191644256",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1709548184767",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "292403125620",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91790166084",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6782998784",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134023949190",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32871946754",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490595494",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67870898638",
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "286727574871",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425998946",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1703165248",
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7184649989",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "584817224",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79084857477",
+        "voter": "theshell"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "22641839395",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51307800519",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5388661415",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3915776982262",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403407002721",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "426836364",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372600185",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147474797358",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370486042445",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "6226063990",
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "4666893911",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53642020280",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112536244257",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18290477525",
+        "voter": "samether"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "20435826971",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4477973596",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13353893819",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19195451431",
+        "voter": "ziv"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-37886485933",
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "814177904",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "6651057809",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187723859372",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5901731263",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "13475779704",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106662592446",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46106881411",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2879418324",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "22456450828",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6740408834",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90461089451",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70695307715",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14764907307",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73424982025",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "4332771254",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17687843258",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18766219906",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5157854283",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17552893571",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283436852",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288748933789",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52215058764",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331004446932",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4775693686",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62198582831",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249608253",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86432384761",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3299480410",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22617124650",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122156869592",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48022035978",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "977288096",
+        "voter": "lontong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135562023252",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13300237653",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124913925653",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26683327851",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2707813985",
+        "voter": "wintrop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "514388137239",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25581639649",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1344524912605",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155010079441",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5523230874",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71594122778",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16832656768",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42564757970",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1268462097",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8279675078",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40069670306",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1632266140",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55667692",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524453413",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4046708005",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4687463894",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40136504296",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3759809896",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2630980347",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27635550326",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24959867898",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10845979381",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228465690",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296045327034",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79351054414",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13957994657",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12385010041",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400742354",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484888225",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5747716426",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75001817111",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44353154247",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7146190847",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9028095567",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3710621464",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "5254853525",
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13560062590",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3175676972",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2552560220",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189609178496",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "4380569189",
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296100567501",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20078314404",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "7161559782",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8247905495",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18706560189",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4078813249",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13966407599",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23276095473",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5317355087",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9242725695",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5575772867",
+        "voter": "sharker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182819821534",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1103176661",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "977888223951",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "818040957",
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39295777834",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428031362",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1782690382",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125979055",
+        "voter": "kottai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269576627",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269980297",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156093986",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156975275",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89476508",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56769328536",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115403915",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9802713874",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4554249461",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10450628476",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25772328103",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13637653306",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15826604583",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "455136533",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "2300",
+        "reputation": 0,
+        "rshares": "8541510354",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15580395475",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639099484",
+        "voter": "curator"
+      },
+      {
+        "percent": "8200",
+        "reputation": 0,
+        "rshares": "2410557662",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "432302630",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1634018670",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231618512",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13498521499",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81028161",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1713978326",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "165045645",
+        "voter": "beanz"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "273280899",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31769283842",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149502446",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4564708091",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2873988066",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3459421629",
+        "voter": "carlas10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1493719735",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4189235490",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7874311492",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "689524426",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5394692942",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4481547788",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61911147",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7265644466",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61700262",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46418159604",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588460890536",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8609049381",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14224054622",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "655589667",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2090553241",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4256758523",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8452120116",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60138244071",
+        "voter": "poteshnik83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99476907271",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392193612",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112411845286",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1348324437",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21004018124",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11270713350",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150794650",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83986507131",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5527031256",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57523014",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2512217855",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "493960660",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63555792",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58453204",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3015124995",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219039434",
+        "voter": "xcepta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748990287",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57914427",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19865005311",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56535984",
+        "voter": "steema"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "5769564425",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73061236",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "65927774",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71228043",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28924632850",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74898697",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58639072",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102741069",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78765183",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10750764390",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2816953736",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1399636656",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59750246",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5927843564",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890579467",
+        "voter": "crazycow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3977281078",
+        "voter": "lamech-m"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9470181501",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382699085",
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12003456501",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55399493",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56575537",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56570509",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387660",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10109582992",
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88078809749",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192287988",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1592064374",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23660021285",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5932358367",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48131519933",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4001380728",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2391702679",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101945845",
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1679360131",
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58631508",
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57412782",
+        "voter": "drsamkhan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54999739",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103040256",
+        "voter": "adrevel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61202458",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2894276750",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64070582",
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1559083086",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1893166639",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9771811576",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4912386907",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "947456313",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69985187",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80557869",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2475119042",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99564797338",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7076299362",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61715783",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3325599818",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11968284833",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961187",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56665974",
+        "voter": "viktorriver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7018683565",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103345545",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1652709870",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6919572472",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53966805",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54730557",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12191050487",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15497139800",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3938044420",
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54362089",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2032879970",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5655677010",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54019345",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54017499",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56837113",
+        "voter": "blogx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17788079417",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1089484775",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53640464",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85546636",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53331040",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537067064",
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53324520",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53318865",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287913287",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1697516350",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2664939129",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52988378",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "732461217",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220578638",
+        "voter": "mamo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1706277109",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860146710",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039974",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4841952237",
+        "voter": "burnin"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "558512952",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206212756",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4652459969",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2770826537",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1336513482",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390796425",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357202147",
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55826263",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2339486479",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50852949",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9400577403",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70358845",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52648858",
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330163263",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4796038584",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147415673",
+        "voter": "flowergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51141851",
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101153586",
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1693077690",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846735133",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50798322",
+        "voter": "breeze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50796122",
+        "voter": "factom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50794039",
+        "voter": "autodesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50570250",
+        "voter": "ziggo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50482289",
+        "voter": "connection"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317220",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1824788165",
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1161216291",
+        "voter": "ayim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3675242983",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346259703",
+        "voter": "julia26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488963228",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696884040",
+        "voter": "ziogio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77637243",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80800689",
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79083956",
+        "voter": "silverbackjonz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23984282056",
+        "voter": "abdullar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1204472546",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157643687",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162128433",
+        "voter": "cebymaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143818142",
+        "voter": "eunnykim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162785391",
+        "voter": "olga4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065182434",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161974443",
+        "voter": "zapply"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158642800",
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282877474",
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "975048251",
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161212160",
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161205518",
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160973134",
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157801695",
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157654556",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125721183",
+        "voter": "rubenkusters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160269480",
+        "voter": "adpipop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103667189",
+        "voter": "charli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147606365",
+        "voter": "laskovskiy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147145004",
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159524423",
+        "voter": "radent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125821091",
+        "voter": "jasonxg"
+      }
+    ],
+    "author": "ned",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards.  One prime use for this could be the @steemit account.  @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator.  This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool.  Now they each have 4, 4, and 4 SP to be used to curate.  Better curation would earn them more curation rewards.  \n\nA side effect of delegated voting pools could be voting markets.  Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence.  This could make the system very clear in the regard that stake is either in or it is out.  Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence.  Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?",
+    "body_length": 2399,
+    "cashout_time": "2016-10-09T02:14:24",
+    "category": "steem",
+    "children": 315,
+    "created": "2016-09-07T15:44:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https:\\/\\/www.biznessapps.com\\/blog\\/wp-content\\/uploads\\/2013\\/12\\/shutterstock_148639682.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T15:50:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21098346399884,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "47.461 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction",
+    "post_id": 882849,
+    "promoted": "500.000 HBD",
+    "replies": [],
+    "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction",
+    "title": "Increasing Curation, Demand for Steem Power and Community Interaction",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/min_limit.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/min_limit.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..bcd319bb34687c396fae9afaa0c961f9f94e6005
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/min_limit.pat.json
@@ -0,0 +1,2590 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "-10000",
+        "reputation": 145171381514207,
+        "rshares": -28338941273774,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 446491524573,
+        "rshares": -56560374008,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17094999940,
+        "rshares": 515865522774,
+        "voter": "panadacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 591238736691,
+        "voter": "barrie"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 32455846463901,
+        "rshares": -31244889730986,
+        "voter": "smooth"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 14765040488827,
+        "rshares": -25869425303440,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "8900",
+        "reputation": 13270505121655,
+        "rshares": 56923627230317,
+        "voter": "ned"
+      },
+      {
+        "percent": "-4000",
+        "reputation": 0,
+        "rshares": -61162327823,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 5861402538757,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "3500",
+        "reputation": 8358591595454,
+        "rshares": 2012701974707,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1105925638130,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1595196737607,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 986803208166,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5034399699326,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103422054,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767892961,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690943799,
+        "voter": "bunny"
+      },
+      {
+        "percent": "4900",
+        "reputation": 59074616588451,
+        "rshares": 3573913851034,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6282474172783,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54717838235,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662987228,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213785292,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 209038160029,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 12928765689257,
+        "rshares": 7692488765,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 3455872549975,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1241362310762,
+        "rshares": 6781848343,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1387859952,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250001478305,
+        "rshares": 106098683047,
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 855490468340,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 115524100455,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8261386990,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2104057003,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 83941319998,
+        "rshares": -5694232013608,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 988597560715,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 564763376378,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 168058097416,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 61457593326,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 29414306405,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624912728,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "100",
+        "reputation": 7458354230246,
+        "rshares": 902943814,
+        "voter": "stoner19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 971397151,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 400674324536,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 821205239311,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "1000",
+        "reputation": 8963739580468,
+        "rshares": 16122243298,
+        "voter": "team"
+      },
+      {
+        "percent": "2100",
+        "reputation": 37454101478493,
+        "rshares": 68140066479,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327447579267,
+        "rshares": 335329901210,
+        "voter": "lighthil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288337653,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 84761882611,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 221378412917,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 156355134109,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 125237012083,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 384189354393,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78953157492,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 24177692381,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 47071100260,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5380704535,
+        "rshares": 182161233136,
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 27507445535,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15043635029,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1091318863571,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3913661416,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 537679658162,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 477297643,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "100",
+        "reputation": 35537325381339,
+        "rshares": 19875326051,
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5373300397,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 31632644129,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2191644256,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1709548184767,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 292403125620,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 91790166084,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 15755437221598,
+        "rshares": 6782998784,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 134023949190,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 32871946754,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 490595494,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 67870898638,
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 60877390332151,
+        "rshares": 286727574871,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425998946,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16325478562,
+        "rshares": 1703165248,
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 7184649989,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 584817224,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 79084857477,
+        "voter": "theshell"
+      },
+      {
+        "percent": "3000",
+        "reputation": 16234753830016,
+        "rshares": 22641839395,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 51307800519,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 5388661415,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3915776982262,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 403407002721,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 426836364,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 372600185,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 147474797358,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 370486042445,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "100",
+        "reputation": 62345041692781,
+        "rshares": 6226063990,
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "100",
+        "reputation": 20763505296686,
+        "rshares": 4666893911,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53642020280,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 112536244257,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 18290477525,
+        "voter": "samether"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5888717170887,
+        "rshares": 20435826971,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4477973596,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13353893819,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19195451431,
+        "voter": "ziv"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2676865682314,
+        "rshares": -37886485933,
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 814177904,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "7500",
+        "reputation": 1331218317408,
+        "rshares": 6651057809,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 187723859372,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5901731263,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "0",
+        "reputation": 2419162524790,
+        "rshares": 13475779704,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 106662592446,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 46106881411,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2879418324,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 36344377648,
+        "rshares": 22456450828,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6740408834,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 90461089451,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 70695307715,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 14764907307,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 73424982025,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "900",
+        "reputation": 6767512298331,
+        "rshares": 4332771254,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17687843258,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 18766219906,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 5157854283,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17552893571,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 283436852,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 288748933789,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52215058764,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 331004446932,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4775693686,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 62198582831,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 249608253,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 86432384761,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3299480410,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254364900,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 22617124650,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122156869592,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 48022035978,
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866922528456,
+        "rshares": 977288096,
+        "voter": "lontong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 135562023252,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 13300237653,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 124913925653,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 26683327851,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573516438,
+        "rshares": 2707813985,
+        "voter": "wintrop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 514388137239,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 25581639649,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1344524912605,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 155010079441,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727668809534,
+        "rshares": 5523230874,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 71594122778,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 16832656768,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 42564757970,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1268462097,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 8279675078,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40069670306,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1632266140,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 55667692,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4524453413,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4046708005,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4687463894,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 40136504296,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3759809896,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 2630980347,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 27635550326,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24959867898,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10845979381,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 228465690,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 296045327034,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 79351054414,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 13957994657,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 12385010041,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 400742354,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 484888225,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 5747716426,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 75001817111,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44353154247,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7146190847,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 9028095567,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3710621464,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "1000",
+        "reputation": 51478739136,
+        "rshares": 5254853525,
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13560062590,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3175676972,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2552560220,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 189609178496,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "1400",
+        "reputation": 9709066337974,
+        "rshares": 4380569189,
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 296100567501,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 20078314404,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "4900",
+        "reputation": 224144957883,
+        "rshares": 7161559782,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8247905495,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18706560189,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 4078813249,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 13966407599,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 23276095473,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5317355087,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 9242725695,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1878917499597,
+        "rshares": 5575772867,
+        "voter": "sharker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182819821534,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 1103176661,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 977888223951,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101628344707,
+        "rshares": 818040957,
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 39295777834,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 1428031362,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1782690382,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82922763538,
+        "rshares": 125979055,
+        "voter": "kottai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269576627,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269980297,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156093986,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156975275,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89476508,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 56769328536,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 115403915,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9802713874,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 4554249461,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078296488269,
+        "rshares": 10450628476,
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27988491601746,
+        "rshares": 25772328103,
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 13637653306,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 15826604583,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 455136533,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "2300",
+        "reputation": 568560955800,
+        "rshares": 8541510354,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15580395475,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639099484,
+        "voter": "curator"
+      },
+      {
+        "percent": "8200",
+        "reputation": 7172977970558,
+        "rshares": 2410557662,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 432302630,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1634018670,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 231618512,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 13498521499,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81028161,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1713978326,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "0",
+        "reputation": 5571312226030,
+        "rshares": 165045645,
+        "voter": "beanz"
+      },
+      {
+        "percent": "100",
+        "reputation": 6545561317919,
+        "rshares": 273280899,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 31769283842,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 149502446,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 4564708091,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 2873988066,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1454976935454,
+        "rshares": 3459421629,
+        "voter": "carlas10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1493719735,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 4189235490,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7874311492,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 689524426,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5394692942,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 4481547788,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 61911147,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 7265644466,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 61700262,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 46418159604,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 588460890536,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 8609049381,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 14224054622,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "0",
+        "reputation": 6887127798781,
+        "rshares": 655589667,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 2090553241,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4256758523,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8452120116,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 519457263879,
+        "rshares": 60138244071,
+        "voter": "poteshnik83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 99476907271,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 392193612,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 112411845286,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1348324437,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21004018124,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11270713350,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 150794650,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 83986507131,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5527031256,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 57523014,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2512217855,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 493960660,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 63555792,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 58453204,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3401416945201,
+        "rshares": 3015124995,
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439786891,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151272123831,
+        "rshares": 219039434,
+        "voter": "xcepta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 748990287,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 57914427,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 19865005311,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 56535984,
+        "voter": "steema"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4130836907564,
+        "rshares": 5769564425,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 73061236,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "0",
+        "reputation": 237071800963,
+        "rshares": 65927774,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 71228043,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28924632850,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 74898697,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 58639072,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 102741069,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 78765183,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 10750764390,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2816953736,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1399636656,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59750246,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5927843564,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587729701840,
+        "rshares": 890579467,
+        "voter": "crazycow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 998787616929,
+        "rshares": 3977281078,
+        "voter": "lamech-m"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 9470181501,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": -52839282898,
+        "rshares": 382699085,
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 12003456501,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55399493,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56575537,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56570509,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387660,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 10109582992,
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 88078809749,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 192287988,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1592064374,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 23660021285,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5932358367,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 48131519933,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9053611702217,
+        "rshares": 4001380728,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "1000",
+        "reputation": 11490547563070,
+        "rshares": 2391702679,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73481598898,
+        "rshares": 101945845,
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 433370384966,
+        "rshares": 1679360131,
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58631508,
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 915016,
+        "rshares": 57412782,
+        "voter": "drsamkhan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54999739,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 105180541620,
+        "rshares": 103040256,
+        "voter": "adrevel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 61202458,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 2894276750,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31060848452,
+        "rshares": 64070582,
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1559083086,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1893166639,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 9771811576,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 4912386907,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 947456313,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227415344771,
+        "rshares": 69985187,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 80557869,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 2475119042,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 99564797338,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 7076299362,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 61715783,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 3325599818,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11968284833,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961187,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2455208676,
+        "rshares": 56665974,
+        "voter": "viktorriver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 7018683565,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 3103345545,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1652709870,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 6919572472,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 53966805,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54730557,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 12191050487,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15497139800,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3938044420,
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54362089,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 2032879970,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5655677010,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54019345,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54017499,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305485265118,
+        "rshares": 56837113,
+        "voter": "blogx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 17788079417,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1089484775,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53640464,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 85546636,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53331040,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117903399171,
+        "rshares": 537067064,
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53324520,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318865,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287913287,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1697516350,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2664939129,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52988378,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 732461217,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573818727139,
+        "rshares": 220578638,
+        "voter": "mamo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 1706277109,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 860146710,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039974,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4841952237,
+        "voter": "burnin"
+      },
+      {
+        "percent": "3300",
+        "reputation": 563927807986,
+        "rshares": 558512952,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 206212756,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4652459969,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2770826537,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 1336513482,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 390796425,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327349908318,
+        "rshares": 357202147,
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 55826263,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 2339486479,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 50852949,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 9400577403,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 70358845,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": -519870545601,
+        "rshares": 52648858,
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 330163263,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4796038584,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161389518041,
+        "rshares": 147415673,
+        "voter": "flowergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51141851,
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1150196390848,
+        "rshares": 101153586,
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1693077690,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 846735133,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50798322,
+        "voter": "breeze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50796122,
+        "voter": "factom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50794039,
+        "voter": "autodesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50570250,
+        "voter": "ziggo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50482289,
+        "voter": "connection"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 50317220,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1289521305818,
+        "rshares": 1824788165,
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663398753211,
+        "rshares": 1161216291,
+        "voter": "ayim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3675242983,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192046357763,
+        "rshares": 346259703,
+        "voter": "julia26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 488963228,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843039218853,
+        "rshares": 696884040,
+        "voter": "ziogio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 77637243,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312902704,
+        "rshares": 80800689,
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630535104158,
+        "rshares": 79083956,
+        "voter": "silverbackjonz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 506147790,
+        "rshares": 23984282056,
+        "voter": "abdullar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1204472546,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157643687,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8423377122,
+        "rshares": 162128433,
+        "voter": "cebymaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2064615506,
+        "rshares": 143818142,
+        "voter": "eunnykim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 374016850,
+        "rshares": 162785391,
+        "voter": "olga4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675589247639,
+        "rshares": 1065182434,
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3319016,
+        "rshares": 161974443,
+        "voter": "zapply"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158642800,
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678509864471,
+        "rshares": 282877474,
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585181578869,
+        "rshares": 975048251,
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161212160,
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161205518,
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160973134,
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157801695,
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 157654556,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11669657116,
+        "rshares": 125721183,
+        "voter": "rubenkusters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7559361841,
+        "rshares": 160269480,
+        "voter": "adpipop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 103667189,
+        "voter": "charli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33427042566,
+        "rshares": 147606365,
+        "voter": "laskovskiy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147145004,
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2492569,
+        "rshares": 159524423,
+        "voter": "radent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10568161397,
+        "rshares": 125821091,
+        "voter": "jasonxg"
+      }
+    ],
+    "author": "ned",
+    "author_reputation": 13270505121655,
+    "beneficiaries": [],
+    "body": "https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\n\n# Over the last few weeks I've been thinking about ways we could increase the demand for Steem Power, the quality of curated content and the incentives to participate as a Steem curator.\n\nHere are a couple ideas I have been kicking around. They're not fully mature and could use a good rinsing by the community.\n\n## Allow Steem holders to delegate their Steem Power voting rights to a **voting pool**\n\nA delegated voting pool could socialize voting power and individualize rewards.  One prime use for this could be the @steemit account.  @steemit could create a voting pool and invite anyone with a verified identity and good reputation to join the pool as a curator.  This could increase the number of unique curators, help bootstrap Steem as an identity database and give people even more incentives to sign up.\n\nTo show the numbers, an example would be Alice Bob and Charley each delegate their SP of 2, 3, and 7 to one voting pool.  Now they each have 4, 4, and 4 SP to be used to curate.  Better curation would earn them more curation rewards.  \n\nA side effect of delegated voting pools could be voting markets.  Any user would have the power to create a voting pool and these users could charge curators for participation. Some of the platform's whales could be interested in offering subscription models to minnows as a way to get more voting influence.\n\n## If powering down stake loses voting influence\n\nImagine that any stake being powered down would lose its rights to use voting influence.  This could make the system very clear in the regard that stake is either in or it is out.  Users could be able to choose any % of their stake to power down regardless of how many accounts they have and only the % stake that is powering down would lose voting influence.  Stopping a power down could return all voting rights.\n\nPerhaps the effect of this could be 1/ more interest to stay in the platform and 2/ more fluidity in the witness queue 3/ more fairness regarding the PoS nature of Steem 4/ more clarity from participants looking to exit the system\n\n## Combined effect?\nPerhaps these proposals could have a combined effect that increases the demand and fluidity of Steem Power while improving the curated experience for people visiting Steem based websites.\n\n#### What are your thoughts and questions?",
+    "body_length": 2399,
+    "cashout_time": "2016-09-14T15:44:51",
+    "category": "steem",
+    "children": 315,
+    "created": "2016-09-07T15:44:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"ideas\",\"curation\",\"participation\",\"fun\"],\"users\":[\"steemit\"],\"image\":[\"https://www.biznessapps.com/blog/wp-content/uploads/2013/12/shutterstock_148639682.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-07T15:50:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21098346399884,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "47.466 HBD",
+    "percent_hbd": 10000,
+    "permlink": "increasing-curation-demand-for-steem-power-and-community-interaction",
+    "post_id": 1160043,
+    "promoted": "500.000 HBD",
+    "replies": [],
+    "root_title": "Increasing Curation, Demand for Steem Power and Community Interaction",
+    "title": "Increasing Curation, Demand for Steem Power and Community Interaction",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/min_limit.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/min_limit.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..14ef7f8ab1bd1f0270f609cb2db992069c86af1a
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/min_limit.tavern.yaml
@@ -0,0 +1,28 @@
+---
+  test_name: Hivemind condenser_api.get_discussions_by_promoted patterns test
+
+  marks:
+    - patterntest
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: condenser_api.get_discussions_by_promoted
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_discussions_by_promoted"
+          params: {"limit":1}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "min_limit"
+            directory: "condenser_api_patterns/get_discussions_by_promoted"
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/paginated.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/paginated.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..07a70f6286736fb30134159a5388e9a0c421a1d7
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/paginated.orig.json
@@ -0,0 +1,3338 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3125880993338",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408289760599",
+        "voter": "lafona"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1488951561218",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042393900131",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314660513280",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3718242946",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204675696436",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513908950",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836654069",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64676583521",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992692418",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256370467",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "779706217649",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258831864092",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15405606665",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747149284",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160439161",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2661949408710",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "294379086507",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345736815",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411003001399",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5074340107",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37289186848",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "887821271",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787813756",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19203629337",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351472513122",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197868013655",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501194922",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310003040",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168786451071",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207639750909",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21377142974",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649863857",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125488800966",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20477012370",
+        "voter": "keithwillshine"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "81550066393",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5078101791",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1901149350",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8358099209",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7061836326",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398408180",
+        "voter": "artem-sokoloff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52093500846",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5517904010",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119597107511",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10102298181",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5825119560",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25445356820",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "295356843",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12165310382",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "455676704",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11263291480",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187927799041",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34393459049",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51605156715",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235543115",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10404996383",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2210167101",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18791650123",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61808290901",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39381536274",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1666843562",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14122971768",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60718837",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9947377892",
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3646489258",
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10898752497",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960761826",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36290453100",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "10226666674",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10955022647",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2388216457",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26544745435",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37382286273",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14354586582",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "400",
+        "reputation": 0,
+        "rshares": "61773284051",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "11256852364",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "95543829460",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3592062376",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "19797420121",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84546938",
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636463375",
+        "voter": "romancs"
+      },
+      {
+        "percent": "400",
+        "reputation": 0,
+        "rshares": "7006195248",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10158772596",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113446972",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238337441",
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "1313251435",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62218938",
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49201239700",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117591207",
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7679327381",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "3302144579",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1718249749",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "220517413",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6147352384",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5956821758",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69848769518",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5475236782",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62279229",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7876761050",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87991131377",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228117853",
+        "voter": "psybin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941499119",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54834723",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17973584280",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1763904333",
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60077236",
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11731336511",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12066449411",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1573966103",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433968",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1345107090",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709360681",
+        "voter": "armenarmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421813426",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55020754",
+        "voter": "mightypenguin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269649250",
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25287187748",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878883968",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91630309",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357194723",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52324031",
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5186278337",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53222151",
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1699144311",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183928287",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75604322",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1028404751",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322790516",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245473",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147037069",
+        "voter": "steemitcharity"
+      }
+    ],
+    "author": "james-show",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "_Firstly, I must admit I have spent more time thinking about Steem(it) than I have been paid for by it. And to be honest (and disappointing to readers/whales and me as far as payouts go) I have found more than a few BIG Problems with Steem. Problems that if not addressed, will lead to its ultimate failure. Now, you might not agree with me (very likely) but they will.\nAnd I love Steem and I do think it is a few shorts changes short of being \u201cThe Game Changer\u201d!_\n#\n![steemit image](https://steemit.com/images/steemit-share.png)\n#\nOK that was the intro, now to the point\u2026\n#\n I consider [Why I Want to Short Steem  [Beyond Trading \u2013part2. 08/23/2016](https://steemit.com/steemit/@james-show/why-i-want-to-short-steem-beyond-trading-part2-08-23-2016) post of mine, the greatest insight in the Steem space, that I (and most writers that I have come across) ever got. \nI also totally understand why most of you will find the believes of mine expressed  there \u201cstupid\u201d \u201csilly\u201d \u201coutdated\u201d, but that take of yours does not makes them invalid or not true. Actually they are as true as when Adam Smith first thought of them\u2026.\n# Back to the present\u2026\nYes, I do __not__ believe; \u201cThe company\u2019s worth is what N million customers are worth to Facebook (or 100 times more in Steemit\u2019s case)\u201d,  especially when the company has NO CLUE how to monetize on those customers\u2026.\n#\n__And today this changed (maybe alittle, maybe alot [1]) by the introduction of \u201cpromoted posts\u201d__\nWith _promoted posts_ we can see how the system / all Steem power holders can benefit from someone trying to come to the system and pay his way in to all SP holders!\n#\nIt is a great new feature! The best in my humble opinion. The best I have seen from Steem really.\nAnd that\u2019s why I will _donate_ ( donate more or less really) a good sum of SD to put this (Badly written as far as English grammar and spelling go) post on that same list.\n-------\nOther (mostly less controversial posts of mine): \n1. [Beyond the STEEM Whitepaper \u2013 1. Blogging and Curation Rewards Fund; Steem Backed Dollars Creation](](https://steemit.com/steemit/@james-show/3gkvw3-beyond-the-steem-whitepaper-1-blogging-and-curation-rewards-fund-steem-backed-dollars-creation)\n2. [Are all post written for 5 year olds', so they have to be picture heavy????]() ..Uuups sorry, I have not written this one yet, but really???\n3. Ohh what TF just scroll the blog posts on my home page!\n\n#money #trading",
+    "body_length": 2423,
+    "cashout_time": "2016-09-30T06:05:39",
+    "category": "steemit",
+    "children": 19,
+    "created": "2016-08-30T03:10:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"money\",\"trading\"],\"image\":[\"https:\\/\\/steemit.com\\/images\\/steemit-share.png\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@james-show\\/why-i-want-to-short-steem-beyond-trading-part2-08-23-2016\",\"https:\\/\\/steemit.com\\/steemit\\/@james-show\\/3gkvw3-beyond-the-steem-whitepaper-1-blogging-and-curation-rewards-fund-steem-backed-dollars-creation\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T03:10:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 13743910298445,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "25.049 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "why-i-am-less-willing-to-short-steem-now",
+    "post_id": 797007,
+    "promoted": "77.000 HBD",
+    "replies": [],
+    "root_title": "Why I Am Less Willing To Short Steem Now?",
+    "title": "Why I Am Less Willing To Short Steem Now?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@james-show/why-i-am-less-willing-to-short-steem-now"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56552146057",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7407974462660",
+        "voter": "steempty"
+      },
+      {
+        "percent": "4600",
+        "reputation": 0,
+        "rshares": "7743922580184",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14423169571983",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40461646370697",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "9024654368742",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270934718663",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120823881116",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "903658154834",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "955547237819",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304707236256",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3717560623",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209125168098",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4512963560",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836545296",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6988007861700",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1648795625161",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "2590155272571",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64607818458",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64079611952",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992338387",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256356620",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39580133428",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452601473655",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1331198190646",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745373510191",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80690179844",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1135475906992",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17701813434",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747044457",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "414357548",
+        "voter": "grumlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160257208",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2607869395086",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399850120693",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20695739170",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91827078269",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67474894872",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345705172",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84752175156",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22534917345",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3560867980",
+        "voter": "mazi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8289316407",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8549093805",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13832117218",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "875162057",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554084160",
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50655692786",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3208539412",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78056810253",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90344487995",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15464522800",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170836582467",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241453016290",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24534315886",
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489114702",
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2516602969",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81946124349",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485266432",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9897310096",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5696495054",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056130698",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347538684630",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1985132858",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459952549",
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3342731574",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59223927709",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "603366563",
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20201603994",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57937290943",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23511967149",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1192571560",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223682916687",
+        "voter": "stino-san"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787431173",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371808665",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3085996565",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29602129325",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421703362290",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570783738",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45416460571",
+        "voter": "pixellated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18898061785",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254584445613",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12013107301",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40287404686",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365694018",
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11260827752",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309925863",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6799149594",
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379019004",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151933693977",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231631602196",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339982051793",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50737326005",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76218554853",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4356049611",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8770878211",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6250725075",
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1486037286",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4794047234",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21377142974",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135526440615",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696282704",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2108324979",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151313598203",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191362456407",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1487612496753",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23705317509",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112950429384",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240146584523",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46163941246",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356509174",
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8413352005",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12772401769",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59607501207",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24845976067",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59296970731",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234933448",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74131257427",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3124603257",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188239143185",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52093500846",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299499765807",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4237212015",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39865290374",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4804447101",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122032656334",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7756851652",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10101627148",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132655071824",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213390961525",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10295818487",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1285715500",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322495553",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149731266",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1926175201",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53506579516",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12408616589",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486652600963",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10584865103",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3610613523",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76946377242",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14091345831",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7725614667",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15305263755",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5124085338",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393022921",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516433597",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3320614763",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187770538787",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4876469889",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97667262071",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1509601460",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38214691392",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8479287635",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51605156715",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77914375364",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247320271",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9037187000",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10168306524",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2210167101",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74715503526",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240222938",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594203592",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17310974719",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270329604",
+        "voter": "astorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225794427",
+        "voter": "chris0502"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20755384335",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40253682612",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6775073251",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120620705591",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373524020",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5600683141",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12972669244",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13846050753",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2415655330",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1463600004",
+        "voter": "slocum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38295325599",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424094754",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196293057448",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322651547057",
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14306641323",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1462310422",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7167353076",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2324876192",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8983200296",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70427611427",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424409113",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25628695064",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4830973273",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266607399",
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695718",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207767589679",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960761826",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452064608",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10907428587",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156827413",
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20531175873",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702425502",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225878684",
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172444925",
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27072053846",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111147984",
+        "voter": "ryland.townsend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29014024080",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4491631626",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11220431469",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1201523852",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59673355",
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5637635502",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159797889",
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946313851",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23830043508",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8097262355",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2589493888",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011196107",
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "513266800508",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28746462244",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32699512403",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266924190",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823550089",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "698557363",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1291152324",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14436760417",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11737514005",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113446972",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61274515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8958644029",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2442169380",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63412334",
+        "voter": "bayern000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53662708495",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7679228543",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229421947",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-61439588",
+        "voter": "gost111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5328695539",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61400550",
+        "voter": "mrdsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1934306097",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54984896",
+        "voter": "decred"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-64218845",
+        "voter": "johnhtims"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54969817",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3733986684",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4916474731",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77430111",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537557601",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69848769518",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59723329",
+        "voter": "blubeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5475203821",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62279229",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120171572",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109008307",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2309373844",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87991131377",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3574312402",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53588479",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55945663",
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17973584280",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "925612937",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5448891234",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24215091196",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59008544",
+        "voter": "sterl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12403401241",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6718277898",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12002684748",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1499467547",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11478715301",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56443564",
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24537271972",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236422965",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57911021",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67699642",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2212272906",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58155541",
+        "voter": "federicofragola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115043900",
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11145697310",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3614336062",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56679654",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84754573",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55377253",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501310305",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59216026",
+        "voter": "coolty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12307778400",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688853443",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58818711",
+        "voter": "m12r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2125462805",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7076868967",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111770582",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4073388292",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1628427434",
+        "voter": "carlyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52320760",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58351459",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55620764",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2922171431",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59562278",
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19561952912",
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56042508",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2305186237",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1250725025",
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632649253",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143941",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3309390130",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666711159",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189407661696",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55416927",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91152561",
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25813907256",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685765533",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73380620",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41760420240",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52393318",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364794611",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71464098",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52597837",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85301011",
+        "voter": "johnygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54232595",
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52192153",
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51871529",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814320",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176715413",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52774418",
+        "voter": "walteraze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50592846",
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71251561",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2392485349",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8258021605",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577247264",
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807542498",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80106845",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54672126",
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2360647659",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008239952",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55523890",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66564537",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50996649",
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52763087",
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107344655",
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52291016",
+        "voter": "bkasante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398865101",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50827953",
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "583302856",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50238161",
+        "voter": "robertdpickett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155435909",
+        "voter": "duckfever"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "**Currently, there are two ways to get a STEEM Account.** The first is to sign up for Steemit with a Reddit or Facebook account, the second is to create an account using CLI_WALLET or Piston and have the account **permanently linked to your own account.**\n\nNeither option really allows you to be anonymous. Want to post controversial posts, or say something that would otherwise be illegal in your country? (e.g. poor free speech laws) Then Anonsteem is here to help.\n\n## Introducing: @anonsteem\n\n![](https://i.imgur.com/Y6QDDbD.png)\n\nPUBLIC INTERNET: [anon.steem.network](https://anon.steem.network/)\n----\n\nTOR: [steemlohs6air4h2.onion](http://steemlohs6air4h2.onion/)\n----\n\n----\n\n**So what actually is this?**\n\nAnonSteem allows you to purchase an account using either Bitcoin or Litecoin, and it will be created by the @anonsteem account within a minute of payment.\n\nTo protect your privacy, there are no IP logs, we have a TOR hidden service, and we allow you to remove your keys from our server as soon as you create the account.\n\n![](https://i.imgur.com/4aa6tR7.png)\n\nWe give you detailed instructions on changing your keys after creating the account, so you can be sure we're not just going to steal your account later on.\n\nHow long does it take to get an account?\n-----\n\nTransactions are scanned once a minute, and we accept 0 confirmation transactions. This means you'll most likely have your account within 1-2 minutes of sending the payment, regardless of which coin you paid with.\n\nCan I pay with STEEM?\n----\n\nWe don't accept STEEM directly, as that would ruin your privacy. However, if you REALLY want to pay with STEEM, you can send it via [ShapeShift (precise mode)](https://shapeshift.io/#/inputs/2) to the BTC or LTC address you get during payment.\n\nDoesn't this service mean more spambots?\n----\n\nWe don't have any plans to allow en-masse account creation. Every order has to be placed one at a time, with individual payments. Someone looking to create spam bots would most likely look elsewhere.\n\nAnonsteem is targeted at persons or groups looking for one, or a few accounts, with no social media link, and no third party tracking.\n\n**HELP - my transaction expired?** - The 15 minute limit is just to avoid us checking transactions for abandoned orders. If you've already paid, just PM me on SteemitChat, or send me an email (bottom of the anonsteem page) with your order ID and I'll reset the expiry.\n\nTry it out at [anon.steem.network](https://anon.steem.network)\n----\n\nDo you like what I'm doing? Follow me, and [vote for @someguy123 to be a witness](https://steemit.com/~witnesses)\n====",
+    "body_length": 2607,
+    "cashout_time": "2016-09-30T03:10:42",
+    "category": "steemit",
+    "children": 58,
+    "created": "2016-08-29T21:00:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"bitcoin\",\"litecoin\"],\"users\":[\"anonsteem\",\"someguy123\"],\"image\":[\"https:\\/\\/i.imgur.com\\/Y6QDDbD.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T22:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 119299865028571,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1520.911 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "anonsteem-create-anonymous-steem-accounts-without-social-media",
+    "post_id": 793668,
+    "promoted": "76.500 HBD",
+    "replies": [],
+    "root_title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "6177366490721",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5524453120959",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118459200229",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1111762764834",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104316216",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3769023210",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684026925",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54893564497",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663393709",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213796245",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "625012807",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973159239",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2426634324",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196852731768",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288356419",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "91974415110",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1676057243571",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42646084026",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426441594",
+        "voter": "murh"
+      },
+      {
+        "percent": "200",
+        "reputation": 0,
+        "rshares": "914730170",
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72459361708",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30768675850",
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170243742354",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187725199105",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14468332399",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6830334777",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207235087440",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45105528409",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55888461363",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2666424177",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6704878593",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127664642491",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84707219423",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10810017183",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6080328266",
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "8200",
+        "reputation": 0,
+        "rshares": "2870180302",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11565154708",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "2466552028",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23482202368",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "33679033840",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12266525730",
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "22398900329",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9896085754",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266973901",
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8889605453",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "8646944150",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3386634890",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261504857808",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59202973",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "5750642945",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "2135038057",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7954827193",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1829620177",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201245802",
+        "voter": "ratidor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98655344",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59126442",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50326986",
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1226505302",
+        "voter": "asolopreneur"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "596047269",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1483350426",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244968251",
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158583251",
+        "voter": "tata.lucette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154595895",
+        "voter": "imtwoxic"
+      }
+    ],
+    "author": "peacekeeper",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "http://www.steem101.com/facebooktest.jpg\n# My Facebook and Steemit experiment:\n### Two days ago @ around 8:00 am EST I posted an article about my little sweetheart named Jalyn.  She made \"Fall off the bone ribs\" and we documented her work with a video.\n\n### I then posted it on Steemit and Facebook at the exact same time.  \n*  Steemit: I had 68 followers at the time of the post.\n*  Facebook: I had 224 friends, family, coworkers at the time of the post.\n\n---\n\n## Here is a snapshot of both posts:\n\nSteemit Post:            |  FaceBook Post:\n:-------------------------:|:-------------------------:\n![](http://www.steem101.com/Steemit.jpg )  |  ![](http://www.steem101.com/facebook.jpg )\n\n\n\n| Steemit:  |    FaceBook    |  \n|----------|:-------------:|\n| 44 Up Votes |  7 Likes |\n| 4 Comments |    5 Comments  |\n| No Shares | 1 Share |\n| $84.66 | Zero - Cheap Bastards |\n\n## Summary:\nI thought it would be compelling to see how many votes I received with both Social Media Sites.  I found it very interesting that the number of Up Votes from the Steemit Community was more than 6 times the number of Likes from my Facebook Friends.  The reason I found this interesting is because I have 224 Facebook friends and I have known them a lot longer than my new friends at Steemit.  \n\nAnother interesting point is the fact I have been on Facebook for over 6 years.  I have been on Steemit for 2 months.   Looks like my Steemit Friends are more interested in what I have to share..... \n\nIt will also be interesting when I show my Facebook friends this little experiment.\nEspecially the part about the $84.66\n\n## Action:\nStop going to Facebook!\n\n#steemit #facebook #life #craigrant",
+    "body_length": 1672,
+    "cashout_time": "2016-10-10T21:27:27",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-08T19:37:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"experiment\",\"facebook\",\"life\",\"craigrant\"],\"image\":[\"http:\\/\\/www.steem101.com\\/facebooktest.jpg\",\"http:\\/\\/www.steem101.com\\/Steemit.jpg\",\"http:\\/\\/www.steem101.com\\/facebook.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T20:03:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16467096056102,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "28.943 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "my-facebook-and-steemit-post-side-by-side-two-2-days-ago",
+    "post_id": 895392,
+    "promoted": "76.000 HBD",
+    "replies": [],
+    "root_title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@peacekeeper/my-facebook-and-steemit-post-side-by-side-two-2-days-ago"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/paginated.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/paginated.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..906c84d6f1428df12adc82c6887a083b93337044
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/paginated.pat.json
@@ -0,0 +1,3128 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 56552146057,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7407974462660,
+        "voter": "steempty"
+      },
+      {
+        "percent": "4600",
+        "reputation": 8151223409709,
+        "rshares": 7743922580184,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14423169571983,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40461646370697,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "1400",
+        "reputation": 13270505121655,
+        "rshares": 9024654368742,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7270934718663,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120823881116,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 903658154834,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 955547237819,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 304707236256,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3717560623,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 209125168098,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4512963560,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836545296,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6988007861700,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1648795625161,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "4000",
+        "reputation": 49280708331375,
+        "rshares": 2590155272571,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64607818458,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3745363549909,
+        "rshares": 64079611952,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992338387,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256356620,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 39580133428,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1452601473655,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1331198190646,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 745373510191,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 80690179844,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1135475906992,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 17701813434,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747044457,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 347055943371,
+        "rshares": 414357548,
+        "voter": "grumlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160257208,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2607869395086,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 399850120693,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 20695739170,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 91827078269,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 67474894872,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345705172,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 84752175156,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 22534917345,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1701451058212,
+        "rshares": 3560867980,
+        "voter": "mazi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8289316407,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 8549093805,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13832117218,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 875162057,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 554084160,
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 50655692786,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3208539412,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78056810253,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 90344487995,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 15464522800,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 170836582467,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 241453016290,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5171467941,
+        "rshares": 24534315886,
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8604717232,
+        "rshares": 489114702,
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 2516602969,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 81946124349,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 485266432,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9897310096,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5696495054,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056130698,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 347538684630,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "500",
+        "reputation": 5414208804644,
+        "rshares": 1985132858,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7186758,
+        "rshares": 459952549,
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3342731574,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59223927709,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508314471,
+        "rshares": 603366563,
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 20201603994,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57937290943,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 23511967149,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1192571560,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22378434861462,
+        "rshares": 223682916687,
+        "voter": "stino-san"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787431173,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 371808665,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3085996565,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29602129325,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 421703362290,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 570783738,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6886422212862,
+        "rshares": 45416460571,
+        "voter": "pixellated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18898061785,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 254584445613,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12013107301,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40287404686,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 365694018,
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11260827752,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 309925863,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85870977835,
+        "rshares": 6799149594,
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379019004,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 151933693977,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 231631602196,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 339982051793,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 50737326005,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 76218554853,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4356049611,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8770878211,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2636635441463,
+        "rshares": 6250725075,
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1486037286,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4794047234,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21377142974,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 135526440615,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 696282704,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2108324979,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 151313598203,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 191362456407,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1487612496753,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23705317509,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 112950429384,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 240146584523,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18458799241134,
+        "rshares": 46163941246,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98586802505,
+        "rshares": 356509174,
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8413352005,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12772401769,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 59607501207,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 24845976067,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 59296970731,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 234933448,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 74131257427,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3124603257,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 188239143185,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52093500846,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 299499765807,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4237212015,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 39865290374,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4804447101,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122032656334,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 7756851652,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 10101627148,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132655071824,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 213390961525,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 10295818487,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1285715500,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 322495553,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 149731266,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1926175201,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 53506579516,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12408616589,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 486652600963,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10584865103,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3610613523,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 76946377242,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14091345831,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7725614667,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15305263755,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 5124085338,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4393022921,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 516433597,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3320614763,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 187770538787,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4876469889,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 97667262071,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1509601460,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 38214691392,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 8479287635,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51605156715,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 77914375364,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 247320271,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9037187000,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10168306524,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2210167101,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 74715503526,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 240222938,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 594203592,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17310974719,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4996152370,
+        "rshares": 270329604,
+        "voter": "astorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192124698,
+        "rshares": 225794427,
+        "voter": "chris0502"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 20755384335,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 40253682612,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6775073251,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 120620705591,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373524020,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5600683141,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12972669244,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 13846050753,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2415655330,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7305709760,
+        "rshares": 1463600004,
+        "voter": "slocum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 38295325599,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 196293057448,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 322651547057,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14306641323,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1462310422,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7167353076,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2324876192,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 8983200296,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 70427611427,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2424409113,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 25628695064,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4830973273,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 266607399,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207767589679,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960761826,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 452064608,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 10907428587,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97517122081,
+        "rshares": 156827413,
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20531175873,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 702425502,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54192730483,
+        "rshares": 225878684,
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136260156259,
+        "rshares": 172444925,
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27072053846,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46683248,
+        "rshares": 111147984,
+        "voter": "ryland.townsend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 29014024080,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4491631626,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11220431469,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1201523852,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15517908096,
+        "rshares": 59673355,
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5637635502,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2405411059,
+        "rshares": 159797889,
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1946313851,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23830043508,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8097262355,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2589493888,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211462616494,
+        "rshares": 1011196107,
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 513266800508,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 28746462244,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 32699512403,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2266924190,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 823550089,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 698557363,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1291152324,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14436760417,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 11737514005,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 113446972,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 61274515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 8958644029,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2442169380,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63412334,
+        "voter": "bayern000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 53662708495,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 7679228543,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 229421947,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -61439588,
+        "voter": "gost111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5328695539,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727733310136,
+        "rshares": 61400550,
+        "voter": "mrdsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1934306097,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 634697761,
+        "rshares": 54984896,
+        "voter": "decred"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 9139588670,
+        "rshares": -64218845,
+        "voter": "johnhtims"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 54969817,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 3733986684,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 4916474731,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 77430111,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 537557601,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 69848769518,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816126,
+        "rshares": 59723329,
+        "voter": "blubeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5475203821,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 62279229,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 120171572,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2309373844,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87991131377,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3574312402,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 53588479,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28378684,
+        "rshares": 55945663,
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17973584280,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 925612937,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5448891234,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 24215091196,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87897903,
+        "rshares": 59008544,
+        "voter": "sterl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12403401241,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6718277898,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12002684748,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1499467547,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 11478715301,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56443564,
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24537271972,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 236422965,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 57911021,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 67699642,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2212272906,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1654242144,
+        "rshares": 58155541,
+        "voter": "federicofragola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 115043900,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 11145697310,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3614336062,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 84754573,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55377253,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11501310305,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 182619937252,
+        "rshares": 59216026,
+        "voter": "coolty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12307778400,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 688853443,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4856527764,
+        "rshares": 58818711,
+        "voter": "m12r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2125462805,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 7076868967,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 111770582,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4073388292,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320261717074,
+        "rshares": 1628427434,
+        "voter": "carlyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 52320760,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 58351459,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 55620764,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 2922171431,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -51683826049,
+        "rshares": 59562278,
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 19561952912,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2305186237,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 836954421307,
+        "rshares": 1250725025,
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 632649253,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56143941,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 3309390130,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 666711159,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 189407661696,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 55416927,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9117910781,
+        "rshares": 91152561,
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25813907256,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4685765533,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 73380620,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 41760420240,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 52393318,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 364794611,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 71464098,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 52597837,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84928909264,
+        "rshares": 85301011,
+        "voter": "johnygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 683829103,
+        "rshares": 54232595,
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18081706207,
+        "rshares": 52192153,
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 51871529,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 51814320,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 176715413,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52774418,
+        "voter": "walteraze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69131953,
+        "rshares": 50592846,
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 71251561,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2392485349,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176228976143,
+        "rshares": 8258021605,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 577247264,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 807542498,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 80106845,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14820051763,
+        "rshares": 54672126,
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 2360647659,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 1008239952,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 55523890,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 66564537,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19265611,
+        "rshares": 50996649,
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22546106632,
+        "rshares": 52763087,
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 264508777365,
+        "rshares": 107344655,
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6189604518,
+        "rshares": 52291016,
+        "voter": "bkasante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1398865101,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508583499,
+        "rshares": 50827953,
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 583302856,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50238161,
+        "voter": "robertdpickett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155435909,
+        "voter": "duckfever"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "**Currently, there are two ways to get a STEEM Account.** The first is to sign up for Steemit with a Reddit or Facebook account, the second is to create an account using CLI_WALLET or Piston and have the account **permanently linked to your own account.**\n\nNeither option really allows you to be anonymous. Want to post controversial posts, or say something that would otherwise be illegal in your country? (e.g. poor free speech laws) Then Anonsteem is here to help.\n\n## Introducing: @anonsteem\n\n![](https://i.imgur.com/Y6QDDbD.png)\n\nPUBLIC INTERNET: [anon.steem.network](https://anon.steem.network/)\n----\n\nTOR: [steemlohs6air4h2.onion](http://steemlohs6air4h2.onion/)\n----\n\n----\n\n**So what actually is this?**\n\nAnonSteem allows you to purchase an account using either Bitcoin or Litecoin, and it will be created by the @anonsteem account within a minute of payment.\n\nTo protect your privacy, there are no IP logs, we have a TOR hidden service, and we allow you to remove your keys from our server as soon as you create the account.\n\n![](https://i.imgur.com/4aa6tR7.png)\n\nWe give you detailed instructions on changing your keys after creating the account, so you can be sure we're not just going to steal your account later on.\n\nHow long does it take to get an account?\n-----\n\nTransactions are scanned once a minute, and we accept 0 confirmation transactions. This means you'll most likely have your account within 1-2 minutes of sending the payment, regardless of which coin you paid with.\n\nCan I pay with STEEM?\n----\n\nWe don't accept STEEM directly, as that would ruin your privacy. However, if you REALLY want to pay with STEEM, you can send it via [ShapeShift (precise mode)](https://shapeshift.io/#/inputs/2) to the BTC or LTC address you get during payment.\n\nDoesn't this service mean more spambots?\n----\n\nWe don't have any plans to allow en-masse account creation. Every order has to be placed one at a time, with individual payments. Someone looking to create spam bots would most likely look elsewhere.\n\nAnonsteem is targeted at persons or groups looking for one, or a few accounts, with no social media link, and no third party tracking.\n\n**HELP - my transaction expired?** - The 15 minute limit is just to avoid us checking transactions for abandoned orders. If you've already paid, just PM me on SteemitChat, or send me an email (bottom of the anonsteem page) with your order ID and I'll reset the expiry.\n\nTry it out at [anon.steem.network](https://anon.steem.network)\n----\n\nDo you like what I'm doing? Follow me, and [vote for @someguy123 to be a witness](https://steemit.com/~witnesses)\n====",
+    "body_length": 2607,
+    "cashout_time": "2016-09-05T21:00:18",
+    "category": "steemit",
+    "children": 58,
+    "created": "2016-08-29T21:00:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"bitcoin\",\"litecoin\"],\"users\":[\"anonsteem\",\"someguy123\"],\"image\":[\"https://i.imgur.com/Y6QDDbD.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T22:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 119299865028571,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1520.901 HBD",
+    "percent_hbd": 10000,
+    "permlink": "anonsteem-create-anonymous-steem-accounts-without-social-media",
+    "post_id": 1046758,
+    "promoted": "76.500 HBD",
+    "replies": [],
+    "root_title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2100",
+        "reputation": 145171381514207,
+        "rshares": 6177366490721,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5524453120959,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 118459200229,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1111762764834,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104316216,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3769023210,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684026925,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54893564497,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663393709,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213796245,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 625012807,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973159239,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2426634324,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 196852731768,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288356419,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6000",
+        "reputation": 127159698297,
+        "rshares": 91974415110,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1676057243571,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 42646084026,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426441594,
+        "voter": "murh"
+      },
+      {
+        "percent": "200",
+        "reputation": 3663597787321,
+        "rshares": 914730170,
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 72459361708,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2988407596343,
+        "rshares": 30768675850,
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 170243742354,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 187725199105,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 14468332399,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 6830334777,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 207235087440,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 45105528409,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55888461363,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2666424177,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6704878593,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127664642491,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 84707219423,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 10810017183,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6080328266,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "8200",
+        "reputation": 7172977970558,
+        "rshares": 2870180302,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 11565154708,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "7500",
+        "reputation": 4063076365725,
+        "rshares": 2466552028,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 23482202368,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "4800",
+        "reputation": 988942038058,
+        "rshares": 33679033840,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 12266525730,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 22398900329,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 9896085754,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1146505325539,
+        "rshares": 2266973901,
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 8889605453,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "3700",
+        "reputation": 11490547563070,
+        "rshares": 8646944150,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3386634890,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 261504857808,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 59202973,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3573461197670,
+        "rshares": 5750642945,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "100",
+        "reputation": 66311335718,
+        "rshares": 2135038057,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 7954827193,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1829620177,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415511458887,
+        "rshares": 201245802,
+        "voter": "ratidor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 98655344,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 59126442,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 50326986,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 625158771365,
+        "rshares": 1226505302,
+        "voter": "asolopreneur"
+      },
+      {
+        "percent": "5100",
+        "reputation": 414609406210,
+        "rshares": 596047269,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 1483350426,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 244968251,
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 418652004,
+        "rshares": 158583251,
+        "voter": "tata.lucette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154595895,
+        "voter": "imtwoxic"
+      }
+    ],
+    "author": "peacekeeper",
+    "author_reputation": 3941133391991,
+    "beneficiaries": [],
+    "body": "http://www.steem101.com/facebooktest.jpg\n# My Facebook and Steemit experiment:\n### Two days ago @ around 8:00 am EST I posted an article about my little sweetheart named Jalyn.  She made \"Fall off the bone ribs\" and we documented her work with a video.\n\n### I then posted it on Steemit and Facebook at the exact same time.  \n*  Steemit: I had 68 followers at the time of the post.\n*  Facebook: I had 224 friends, family, coworkers at the time of the post.\n\n---\n\n## Here is a snapshot of both posts:\n\nSteemit Post:            |  FaceBook Post:\n:-------------------------:|:-------------------------:\n![](http://www.steem101.com/Steemit.jpg )  |  ![](http://www.steem101.com/facebook.jpg )\n\n\n\n| Steemit:  |    FaceBook    |  \n|----------|:-------------:|\n| 44 Up Votes |  7 Likes |\n| 4 Comments |    5 Comments  |\n| No Shares | 1 Share |\n| $84.66 | Zero - Cheap Bastards |\n\n## Summary:\nI thought it would be compelling to see how many votes I received with both Social Media Sites.  I found it very interesting that the number of Up Votes from the Steemit Community was more than 6 times the number of Likes from my Facebook Friends.  The reason I found this interesting is because I have 224 Facebook friends and I have known them a lot longer than my new friends at Steemit.  \n\nAnother interesting point is the fact I have been on Facebook for over 6 years.  I have been on Steemit for 2 months.   Looks like my Steemit Friends are more interested in what I have to share..... \n\nIt will also be interesting when I show my Facebook friends this little experiment.\nEspecially the part about the $84.66\n\n## Action:\nStop going to Facebook!\n\n#steemit #facebook #life #craigrant",
+    "body_length": 1672,
+    "cashout_time": "2016-09-15T19:37:39",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-08T19:37:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"experiment\",\"facebook\",\"life\",\"craigrant\"],\"image\":[\"http://www.steem101.com/facebooktest.jpg\",\"http://www.steem101.com/Steemit.jpg\",\"http://www.steem101.com/facebook.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T20:03:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16467096056102,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "28.943 HBD",
+    "percent_hbd": 10000,
+    "permlink": "my-facebook-and-steemit-post-side-by-side-two-2-days-ago",
+    "post_id": 1175979,
+    "promoted": "76.000 HBD",
+    "replies": [],
+    "root_title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@peacekeeper/my-facebook-and-steemit-post-side-by-side-two-2-days-ago"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 20297981245452,
+        "rshares": 6762422493146,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3722167102,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4518923636,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 828866269,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 65291932795,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1994645292,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256490999,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747730879,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1161438487,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345929094,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 38490752763,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 31898709926,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17814707827319,
+        "rshares": 120036771953,
+        "voter": "bbqbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 15817278258,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1424916288,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 64857927561,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 39311342671,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1350953088,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4477107456,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322690670,
+        "voter": "garagebill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 15739145316,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 179192996861,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 598181152117,
+        "rshares": 75625947764,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6740313250,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9434414518400,
+        "rshares": 6414920414,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 49805947674,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55853813712,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3326209124802,
+        "rshares": 9866111769,
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 480670817737,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 638021117,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "100",
+        "reputation": 5463774640621,
+        "rshares": 429990873,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19032649381,
+        "rshares": 181322915378,
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "7000",
+        "reputation": 6030999377480,
+        "rshares": 11531792247,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11034478037,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "100",
+        "reputation": 6892424678378,
+        "rshares": 1410577112,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44336327098,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 79349787046,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 9970599025,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 4486999201,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 473751099,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "3600",
+        "reputation": 17698439393799,
+        "rshares": 11390928300,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5873252645,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17682174654,
+        "rshares": 117698021,
+        "voter": "cameron-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 29635792745,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 1793508440,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "1800",
+        "reputation": 10771708337101,
+        "rshares": 219911318479,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2500",
+        "reputation": 18027204457681,
+        "rshares": 8953837063,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3801791180,
+        "voter": "rich77"
+      },
+      {
+        "percent": "3700",
+        "reputation": 5776723480371,
+        "rshares": 89872995878,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 206355094166,
+        "rshares": 3363521648,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 621407045907,
+        "rshares": 5475636756,
+        "voter": "k4r1nn"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 19862171480,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 2979617190,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8113950766,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "1800",
+        "reputation": 3016325652890,
+        "rshares": 24656414925,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 435439128,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 107084440,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 18249960278,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1425927896964,
+        "rshares": 2100417564,
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "3700",
+        "reputation": 1851205309677,
+        "rshares": 1554626282,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 954937043358,
+        "rshares": 6797668445,
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1433416370023,
+        "rshares": 20160515746,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 12012730878,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 729617548626,
+        "rshares": 234067377,
+        "voter": "giftedgaia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1631018835,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "3700",
+        "reputation": 4195733833721,
+        "rshares": 3130695206,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 72131169,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 901114996,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20803096,
+        "rshares": 61897843,
+        "voter": "geny"
+      },
+      {
+        "percent": "3700",
+        "reputation": 730408370151,
+        "rshares": 206134585,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648377040631,
+        "rshares": 3024339521,
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "7000",
+        "reputation": 1062400368532,
+        "rshares": 69500880949,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 58350694824,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 59609546962,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1423723498,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1262855144,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10486107784,
+        "rshares": 1804085961,
+        "voter": "otisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 4601312529,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2922107498,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2485484872,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329317015182,
+        "rshares": 316012583,
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 1098554901,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21217169177,
+        "rshares": 58872767,
+        "voter": "powmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1354778162586,
+        "rshares": 208026413,
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 405698035912,
+        "rshares": 330609380,
+        "voter": "tfeldman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3090583312974,
+        "rshares": 1088326615,
+        "voter": "geke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3683900274,
+        "rshares": 53968432,
+        "voter": "mooncat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 77663073,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 265151816,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 289905346,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 51783834,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 447567061326,
+        "rshares": 50404082,
+        "voter": "koskl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 77402677,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1321908864392,
+        "rshares": 149994455,
+        "voter": "steemitcharity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2178388003040,
+        "rshares": 50211933,
+        "voter": "powerup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2781294502,
+        "rshares": 122119181,
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76997226,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1564414223,
+        "rshares": 111910065,
+        "voter": "tygeade"
+      }
+    ],
+    "author": "steemitqa",
+    "author_reputation": 954937043358,
+    "beneficiaries": [],
+    "body": "<h1 id=\"steemit-advertise\"><center> Uplift Minnows Initiative</center></h1>\n<p></p><center><hr></center><p></p>\n<center>https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_daf200df05a1435bb441b235515eace3~mv2_d_2941_2046_s_2.jpg?dn=minnow+mission+3.jpg</center>\n<h2>The Idea:</h2>\n \nThis idea is to maximize the \u2018promote post\u2019 feature and allow minnows to get more exposure to their stories, or services on SteemIt, but on a budget. If every day, or every week this account (we\u2019ll be shifting to a new account shortly @advertise) be in the top five on the promo tab and you pay $3-5 you will reap the rewards of being on the top of SteemIt! Promote Post as a minnow is turning out to be a problem for [some](https://steemit.com/steemit/@profitgenerator/analysis-promoted-content) so the power of many seems more logical. \n\nAlso, going forward we\u2019ll be throwing the same amount daily/weekly, or even more toward the post reaching the top. As it stands $100 can get us all on the front page of SteemIt Promote. If 40 of us minnows throw in $5 for the day we can sit our submissions on top. Not only that **ALL SBD** that are earned by this post will go into \u201cpromote post\u201d itself thus helping you get free future advertising for your submissions! We\u2019ll be building out this post as we go as you can see we have a \u201cServices\u201d Category.\n\nIf you wish to get our upvote, just tag us with a SteemIt tag of **#upliftminnows** and we\u2019ll find your post. All proceeds of the post will go back to you so essentially you could have a free advertisement.\n<h2>How to Participate: </h2>\n\n<li>Simply, comment below with your story submission, or service and we\u2019ll add it to the page. Hit \u2018promote post\u2019 and send whatever amount you can and 'pool' it together with all other minnows. Put the $ amount you posted in your comment also. <b>Example: @joesmith $5 ( your link here )</b>.\n<br><br>\n<li>We will post the link you provide via a comment below to the post.\n<br><br>\n<li>The highest paying post will lead the list first and roll off the page after 20 entries.\n<br><br>\n<li>This post will last forever and each day/week a new post will be put up and  your listing could be carried over.\n<br><br>\n</li>\n\n<blockquote>\n  <p><strong>Note</strong> <br>\nFor this very first launch we are adding $50 to the pool. You may add as much as you want to this post, or as little as you want to get listed on <b>Uplift Minnows Initiative</b>.</p>\n</blockquote>\n \n<p><center><hr></center></p>\n <h2 id=\"steemit-story-submissions\"><center><strong>SteemIt Story Submissions:</strong></center></h2>\n<p><center><hr></center></p> \n\n<p></p><center><img src=\"https://payscape.com/wp-content/uploads/icon-globe-blue.png\" alt=\"enter image description here\" title=\"\"></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemtools/@kurtrohlandt/steemit-image-tools-pimp-your-posts\">SD- $6 | @kurtrohlandt: Steemit Image Tools - Pimp your posts</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steem/@williambanks/do-you-feel-taler-gnu-foundation-launches-their-own-cryptocoin\">SD- $5 | @williambanks: Do You Feel Taler? - GNU Foundation Launches Their Own Cryptocoin!</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/life/@michelle.gent/i-went-to-the-beach-and-i-cried\">SD- $5 | @michelle.gent: I went to the beach and I cried</a></b></center><p></p>\n\n\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemit/@me-tarzan/win-500-steempower-enter-steemit-daily-sweepstakes-100-winners-everyday\">SD- $2 | @me-tarzan: WIN !!!!! 500 !!!!!STEEMPOWER !!!!!..... ENTER STEEMIT DAILY SWEEPSTAKES ..... 100 WINNERS EVERYDAY</a></b></center><p></p>\n\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/life/@tfeldman/original-song-for-the-minnows-talkin-usd-01-cent-steemit-post-blues#comments\">SD- $1.50 | @tfeldman: Original Song for the Minnows: Talkin' $.01 Cent Steemit Post Blues</a></b></center><p></p>\n\n<center><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/Zdam6Uc03vc\" frameborder=\"0\" allowfullscreen></iframe></center>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemit/@geke/was-that-make-up-tutorial-really-worth-thousands-of-dollars\">SD -$1 | @geke: Was that make-up tutorial really worth thousands of dollars?</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/philosophy/@steemswede/philosophy-the-value-of-wonder\">SD -$1 | @steemswede: [PHILOSOPHY] The Value of Wonder</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/promoted/steemit\">Place Your Story Submission HERE! for $1 SBD!</a></b></center><p></p>\n  \n<p><center><hr></center></p>\n<h2 id=\"steemit-services\"><center><strong>SteemIt Services:</strong></center></h2>\n <center><hr><br></center>\n\n<center><img src=\"http://www.amesto.global/globalassets/fellesbilder-2015/ikoner/handshake-icon-200px.png\" alt=\"enter image description here\" title=\"\"></center></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"http://randomsteemit.com/\">SD -$2| @tyler-fletcher: RandomSteemit Promotion Article/ RandomSteemit.com (Steem Service)</a></b></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/promoted/steemit\">Place your SteemIt Service HERE!</a></b></center><p></p>\n \n<p></p><center><hr></center><p></p>\n<center><b>Follow us if you love what we are doing!</b> \u2764</center>\n<center><a href=\"https://steemit.com/@steemitqa\"><img src=\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\"></a>http://reneenouveau.com/Steem/100humansmall.jpg</center>\n\n<br><br>",
+    "body_length": 6870,
+    "cashout_time": "2016-09-10T16:49:18",
+    "category": "steemit",
+    "children": 50,
+    "created": "2016-09-03T16:49:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"upliftminnows\",\"steemsquad\"],\"users\":[\"advertise\",\"joesmith\"],\"image\":[\"https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_daf200df05a1435bb441b235515eace3~mv2_d_2941_2046_s_2.jpg?dn=minnow+mission+3.jpg\",\"https://payscape.com/wp-content/uploads/icon-globe-blue.png\",\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\",\"http://www.amesto.global/globalassets/fellesbilder-2015/ikoner/handshake-icon-200px.png\",\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\",\"http://reneenouveau.com/Steem/100humansmall.jpg\"],\"links\":[\"https://steemit.com/steemit/@profitgenerator/analysis-promoted-content\",\"https://steemit.com/steemtools/@kurtrohlandt/steemit-image-tools-pimp-your-posts\",\"https://steemit.com/steem/@williambanks/do-you-feel-taler-gnu-foundation-launches-their-own-cryptocoin\",\"https://steemit.com/life/@michelle.gent/i-went-to-the-beach-and-i-cried\",\"https://steemit.com/steemit/@me-tarzan/win-500-steempower-enter-steemit-daily-sweepstakes-100-winners-everyday\",\"https://steemit.com/life/@tfeldman/original-song-for-the-minnows-talkin-usd-01-cent-steemit-post-blues#comments\",\"https://steemit.com/steemit/@geke/was-that-make-up-tutorial-really-worth-thousands-of-dollars\",\"https://steemit.com/philosophy/@steemswede/philosophy-the-value-of-wonder\",\"https://steemit.com/promoted/steemit\",\"http://randomsteemit.com/\",\"https://steemit.com/@steemitqa\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T16:38:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9097095205888,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "11.997 HBD",
+    "percent_hbd": 10000,
+    "permlink": "uplift-your-story-submission-to-the-top-of-post-promote-uplift-minnows-initiative",
+    "post_id": 1113125,
+    "promoted": "75.915 HBD",
+    "replies": [],
+    "root_title": "Uplift Your Story Submission to the Top of Post Promote:  Uplift Minnows Initiative",
+    "title": "Uplift Your Story Submission to the Top of Post Promote:  Uplift Minnows Initiative",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitqa/uplift-your-story-submission-to-the-top-of-post-promote-uplift-minnows-initiative"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/paginated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/paginated.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..6af1b2ed15304f7fe6484fc5e640c147f7f9d42b
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/paginated.tavern.yaml
@@ -0,0 +1,30 @@
+---
+  test_name: Hivemind condenser_api.get_discussions_by_promoted patterns test
+
+  marks:
+    - patterntest # unlike in old version where page defining post (last from previous page) was always part of new page (along with others with the same
+                  # promotion, potentially making it impossible to move forward with pages), new version always skips it, also has defined order for posts with
+                  # the same payout (previously random)
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: condenser_api.get_discussions_by_promoted
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_discussions_by_promoted"
+          params: {"start_author":"james-show","start_permlink":"why-i-am-less-willing-to-short-steem-now","limit":3}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "paginated"
+            directory: "condenser_api_patterns/get_discussions_by_promoted"
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..3b2a9528d3e2c773872d0d48e9f0bd72d1260921
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit.orig.json
@@ -0,0 +1,28098 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "10680230250228",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6757100093988",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "1118902601491",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5925537844699",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3828633672665",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099954800",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210935138158",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3763461212",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690406462",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54134101721",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661302953",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213684579",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10777629083",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622843501",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967387415",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21550256405",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392405354610",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279111662172",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196163592993",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288174518",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74205930982",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2859098472",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5349082417",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59226109387",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1154102439",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432421152",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1506024470",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370098823461",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "917932650",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516144252764",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1350589595",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7658293419",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314968895861",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22791323090",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2596798738",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1490143673659",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687044369011",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2277766230",
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265741725388",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392842631094",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41240110326",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8970769157",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3125302080",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55677464852",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282967064",
+        "voter": "sonyanka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54720712494",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10312089759",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "457654847",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75271969902",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12378378533",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4569401045",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36245526538",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3967602880",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15604637635",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282893744",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "317446577",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17676726210",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79327997987",
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37118933112",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11621730593",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19174335590",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "17229683384",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1449783634",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182392593276",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3475085906",
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7258620066",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38490866307",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15696374746",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "722574736",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96847284284",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1955550774",
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26465755082",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31250845331",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8308751917",
+        "voter": "taker"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "18077487422",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1312318561",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138994752",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133044304",
+        "voter": "luke490"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "3155521800",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2330702675",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687222192",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1367410476",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982813675",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "932742778",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54210250128",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16517911072",
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3442234051",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10969248240",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2119284500",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21912805745",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39122672915",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10587465402",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6511663813",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12934893314",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57027057",
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57022706",
+        "voter": "cloud1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5899789038",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316012583",
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3648819614",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3893409579",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57896578",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57588741",
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362203207",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1659124232",
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2582438657",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282251870",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217739533",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103730281",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50603364",
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54376435",
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367433800",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2283906005",
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60123439",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74117002",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511475810",
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55357981",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96292269",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52610096",
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56130433",
+        "voter": "jessica.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83347013",
+        "voter": "flourishing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227374514",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714843637",
+        "voter": "earthtodr01d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51409471",
+        "voter": "drherhel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50290667",
+        "voter": "elena-guseva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82372906",
+        "voter": "doctorkot873"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80735872",
+        "voter": "dumpz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164330251",
+        "voter": "rogelio11"
+      }
+    ],
+    "author": "kafkanarchy84",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "# Happy September. #\n<a href='https://postimg.org/image/3wokqy0mf/' target='_blank'><img src='https://s15.postimg.org/3jx6kricr/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/'>\n\n**I know others on this website have said this, so I'm not the first, but yeah, I quit my job to write for Steemit.** \n\nActually, though, that's not entirely true. It's kind of true. I quit my job because something shifted inside of me. When the job was gone, Steemit, on the selfsame day, rose up into my focus immediately to fill the void like it was just waiting for me to finally get real. To do this stuff I've always been wanting to do. And always *have been doing* at the expense of sleep, money, time, etc. I was now beginning to get *paid for it.* What the!?!\n\n**The first half of August was bliss.** After some initial discouragement, I found some good verbs in the mouth of one Sterlin Luxan, and was inspired to actually dig down inside of myself and make a more [honest post.](https://steemit.com/steemit/@kafkanarchy84/why-i-have-quit-five-jobs-in-the-past-six-years-a-steemit-confessional) I finally made twenty bucks on the site. From there I thought, hell, I'll just do this full time. I began to make significant sums of cash for an honest day's worth of work writing, and felt that with my side job,  as long as I hammered down, I would be able to cover my family's usual expenses by the time September rolled around.\n\n\nhttps://s22.postimg.org/wk9d1kjsx/image.jpg\n*Spending time with my son has been one of the biggest bonuses of leaving my 9-5.*\n# **Well. August 31st. Paying all my bills with SBDs? No such luck, my friend.** # \n\nBut I will tell you one thing. I never dreamed I could pull down 2Gs cold, hard cash through writing in less than a month, even if one half of it is still vested in Steem Power (I am happy about this). I was sick to my stomach, though. I have a wife and a child. Playing games at this point was not an option. Still....I had heard something that was very lovely and very clear.\n\nIt was a kind of feeling I have never had before, but which was also at once very perfectly familiar. As my kid is playing on the Octopus slide behind me, and I am staring out at the sea, it hits me:  ***It's over. You will never teach kids again.***\n\n<a href='https://postimg.org/image/4xqdopsip/' target='_blank'><img src='https://s16.postimg.org/dfztt1z1h/image.jpg' border='0' alt='image'/><br />\n\n**Weird. It's like my wish, but this time I am not even wishing for it. It comes to me. I just know that that chapter of my life is completed. That was the day after I quit my job.**\n\n**Fast forward to the end of the month.** I haven't made enough money like I had hoped....I pray to someone or something over my Matsuya beef bowl in the sketchy back alley district of the burlesque dancers: *what should I do?* I was really, really feeling low and full of doubts and self-accusations.\n\nImmediately that silly voice came back again: \n # *(Keep doing what you're doing)* #\n\nI haven't been eating this month. Haven't been sleeping. Have had headaches. Upset stomach. Welcome to fear. Welcome to the real shit. You were so cocky! Are you lazy!? You didn't like your job but so what!? You've got a family!!! Son comes home from daycare. *DAAAAADDDYYYYYY!!!!!!! Let's play!!!!!*\n\nPull yourself together.\nDon't show your frayed nerves.\n\n**My wife is equally worried.**\nShe needs security. She wants to get into massage. Vocal training school. So many dreams. Here I am sitting around the house in my underwear when all I really want to do is hand her a big fat envelope full of money.\n\nhttps://s17.postimg.org/56h7g4qxb/image.jpg\n\n**I've never been lazy. I will work my ass off when I care, and when I need to.** Fuck sleep. Fuck food. Fuck everything but the goal. \n\n# I just can't seem to give a damn about most shit that everybody else says is important. #\nWell, a lot of shit, at least. Still. Mouths to feed, my friend. But that \"voice,\" didn't it mean something? And despite the nerves, hasn't this been one of the happiest, most productive months of my life? Yes. Yes, and yes. Besides, the other job was no good. Bad, unsustainable situation. You know that, Graham.\n\nhttps://s15.postimg.org/i7lfk6hzv/image.jpg\n*My buddy Kevin shows up to the Local.*\n\n**Back to now, August, 31st, 2016. Evening. I went to my friend Craig's bar tonight.** At the depth of my despair, on the bus ride over, I received a mail from my other friend, Aidan. There might be some part time work at his school. Mail sounds promising. \n\nAfter a couple beers at Craig's place it is settled I will work Saturdays mixing booze and playing guitar. I am starting to feel good again. It is starting to seem possible that I can build my own, full-time, part-time \"Steem-lance\" schedule. [Fake priest weddings](https://steemit.com/religion/@kafkanarchy84/my-life-as-a-fake-priest-true-believer), English classes, serving beer and singing....and....\n\n# STEEEEEEEEEEEEMMMMMM!!!!!!! #\n\nAnd you know what? \n\nI am going to document it every step of the way. This is the first episode. Hope to see you next time, from my first day on the job as a bartender. \n\nhttps://youtu.be/jasziAzaiZ4\n\n<a href='https://postimg.org/image/rjlhw49rp/' target='_blank'><img src='https://s18.postimg.org/aj2lnfwqh/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/'>\n\nhttps://s17.postimg.org/yb9pkx39b/image.jpg\n*Basically how I feel now that I have discovered Steemit.com*\n\nPeace, Love, and Anarchy,\n\n~KafkA\n\nP.S. Another thing I have never been good at is keeping a consistent diary. I'm too private, and can't be bothered, even for myself. Should \"My Steemit Life\" transform into an existentialist thought stream ramble resembling a blog-turned-extended-acid trip, please forgive me. Maybe I will commit to  5 episodes. That sounds like a good number to me. Deal?\n\n***\n*Graham Smith is a Voluntaryist activist residing in Niigata, Japan.*",
+    "body_length": 5976,
+    "cashout_time": "2016-10-03T05:59:15",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-01T18:17:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"blog\",\"life\",\"money\",\"writing\"],\"image\":[\"https:\\/\\/s15.postimg.org\\/3jx6kricr\\/image.jpg\",\"https:\\/\\/s22.postimg.org\\/wk9d1kjsx\\/image.jpg\",\"https:\\/\\/s16.postimg.org\\/dfztt1z1h\\/image.jpg\",\"https:\\/\\/s17.postimg.org\\/56h7g4qxb\\/image.jpg\",\"https:\\/\\/s15.postimg.org\\/i7lfk6hzv\\/image.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/jasziAzaiZ4\\/0.jpg\",\"https:\\/\\/s18.postimg.org\\/aj2lnfwqh\\/image.jpg\",\"https:\\/\\/s17.postimg.org\\/yb9pkx39b\\/image.jpg\"],\"links\":[\"https:\\/\\/postimg.org\\/image\\/3wokqy0mf\\/\",\"https:\\/\\/postimage.org\\/\",\"https:\\/\\/steemit.com\\/steemit\\/@kafkanarchy84\\/why-i-have-quit-five-jobs-in-the-past-six-years-a-steemit-confessional\",\"https:\\/\\/postimg.org\\/image\\/4xqdopsip\\/\",\"https:\\/\\/steemit.com\\/religion\\/@kafkanarchy84\\/my-life-as-a-fake-priest-true-believer\",\"https:\\/\\/youtu.be\\/jasziAzaiZ4\",\"https:\\/\\/postimg.org\\/image\\/rjlhw49rp\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T19:21:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34863582559813,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "141.758 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "my-new-steemit-life-ep-1-write-write-write-and-fill-me-up-barkeep",
+    "post_id": 826383,
+    "promoted": "250.000 HBD",
+    "replies": [],
+    "root_title": "My New Steemit Life, ep. 1. Write, write, write and fill me up, barkeep",
+    "title": "My New Steemit Life, ep. 1. Write, write, write and fill me up, barkeep",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@kafkanarchy84/my-new-steemit-life-ep-1-write-write-write-and-fill-me-up-barkeep"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "566627757523",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172935370348",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "979750467824",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3720488193",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4516841735",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "828581067",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65037632700",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993835727",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256442875",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398407857501",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405156538906",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2578424778892",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11606677474",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747493846",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1161008754",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5042513512",
+        "voter": "sammy007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21127702358",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392330736044",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "303917950005",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345836633",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22047833256",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3366382061",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3904360862",
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177791083963",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8045649981",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22595244740",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5586884897",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22786454650",
+        "voter": "teatree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34313430362",
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432715390",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "917851920",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "912434705",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56501870239",
+        "voter": "aenor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13177382319",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10327600289",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2217132176566",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6799266998",
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233230107272",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13833394447",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4387565307",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323509837196",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128856964990",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309032139",
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30230668820",
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179192996861",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4045665201",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2799169786",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3512092095",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4636329916",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12972939718",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5755812898",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3490323117",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7000480953",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58365810442",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12820500774",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4997920619",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3125302080",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55677464852",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4258098520",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4959284136",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2737885092",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5115172637",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14515244254",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5265412146",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11343270265",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512168285",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15963348720",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7022246224",
+        "voter": "jholmes91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646087329",
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "943863353",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151052306779",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91676883571",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11951646778",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "429990873",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181322915378",
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18940589315",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6198566354",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "9117162454",
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15663282979",
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167157550959",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4564314455",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247212033",
+        "voter": "swaghetti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5507864316",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79012264189",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7477138730",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2927449570",
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399177345",
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11984005559",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254384994",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123279502731",
+        "voter": "kevinpham20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120671854452",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3840860910",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10218475734",
+        "voter": "kewpiedoll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3021913571",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3022743349",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147627391",
+        "voter": "apptrade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2109841036",
+        "voter": "applesauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4831185704",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503443057",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570936521",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463879581",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7617108667",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3052689593",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "879507428",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "478035225",
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30896278536",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2688248291",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152695761",
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83547862361",
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4887223428",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64903901",
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30591994425",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1838865673",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2944662227",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165604593",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138994752",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133044304",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7190135631",
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9322960051",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3507463169",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "11871680838",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73603234",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101244129774",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1418847949",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249904869",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1237440732",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7130857719",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13905458489",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14291678999",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1624044881",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309692332",
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1103360772",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58645215",
+        "voter": "dubloon135"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "305607086",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9551786749",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55979644",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1890040933",
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115499462203",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70310629",
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25835980056",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1565604150",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41962066513",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75599342",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206212756",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68932158",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53873853",
+        "voter": "mike1911"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329313117",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55773949",
+        "voter": "alyssasanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78982323",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50182215",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "818498504",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1626480492",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72030714",
+        "voter": "rawbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4191984521",
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112287621",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "673845983",
+        "voter": "reddust"
+      }
+    ],
+    "author": "leavemealone",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "As we all sit here trying to build steem and support the project, Ned and Dan (two founders of Steemi) are transferring to Poloniex and dumping all over the buy orders killing the price.  Why are they doing this?  This needs to be stopped!!!\n\n![dumping](https://puu.sh/qWKV3/dde86c2c45.png)\n\nAnyone have any ideas what is going on here?  Is it time to get out while we can?",
+    "body_length": 373,
+    "cashout_time": "2016-10-04T11:59:45",
+    "category": "steemit",
+    "children": 116,
+    "created": "2016-09-01T22:49:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"market\",\"price\",\"steem\",\"poloniex\"],\"image\":[\"https:\\/\\/puu.sh\\/qWKV3\\/dde86c2c45.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T22:49:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11370017153084,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "18.273 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on",
+    "post_id": 828971,
+    "promoted": "201.352 HBD",
+    "replies": [],
+    "root_title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@leavemealone/ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10188876905486",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3830035846987",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3720292037",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215423119821",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4516598968",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "828540282",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65013129899",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993734736",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256433164",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731040242281",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747456946",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160950489",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392405354610",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "285682873005",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345823038",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432554801",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399788237",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1460925170254",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221213340693",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11592975842",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67555883079",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392842631094",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261495678",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3125302080",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61289877049",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154306980856",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89328435008",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152897742927",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2212025362",
+        "voter": "johnnydollar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36245526538",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282893744",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37122522843",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19174335590",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12483663020",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2461729572",
+        "voter": "ace108"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "12032742765",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26465755082",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159607688",
+        "voter": "naomi-louise"
+      },
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "250847007495",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2300",
+        "reputation": 0,
+        "rshares": "7631325795",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262882640828",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9839187353",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58103637174",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138994752",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "28138748642",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314141984",
+        "voter": "rusteller"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "1775190239",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687222192",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9157721462",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "603283562",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61110411",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97274422829",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7816453178",
+        "voter": "johnnyyash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57930015",
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10290925854",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1773143509",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23001901442",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282840398",
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "477616797",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269346417",
+        "voter": "serioustruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2238227885",
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75599342",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66091870",
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51578525",
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2169778252",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828978",
+        "voter": "mocat15"
+      }
+    ],
+    "author": "serioustruth",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><em><strong>Yesterday I added a really crappy post on Steemit</strong></em>. Although it was a bit of a <em><strong>negative post</strong></em>, I received some <em><strong>positive feedback</strong></em>. I realised that I have been looking at Steemit from the wrong perspective.&nbsp;</p>\n<p><img src=\"https://s20.postimg.org/m18fyrqb1/download_1.png\" width=\"225\" height=\"225\"/></p>\n<p>You see... <em><strong>I am a teacher</strong></em>, and to look at something from a teacher's perspective, is totally different than looking at something from a parent's point of view, or even a fellow steemit writer. &nbsp;I would like to thank @RHW for listening, and I am very glad to be part of this community. Many projects are being launched, &nbsp;and the whales are putting in a lot of effort to notice the new aspiring writers.</p>\n<p>I have changed my view on things now, &nbsp;I make a point to read as many posts as possible. I comment if needed, and I upvote a post if I find it interesting. We are not in a race here. We are after all in the business of finding new undiscovered talent and to be heard. Now, also said, that what interests me, <em><strong>might not be interesting to you at all.&nbsp;</strong></em></p>\n<p>What I have noticed is that there are quite a few nasty people on steemit. I am certainly not going to call them by their names, but I really feel sorry for these people, as they would not give someone the time of day.</p>\n<p><em>I felt very offended by some of the comments made about my post, but realised that negative feedback can be changed into a positive view.&nbsp;</em></p>\n<p><strong>I do not promote or upvote a post just for the sake of upvoting.&nbsp;</strong></p>\n<p><strong>I &nbsp;do my fair share by reading as many posts as possible about my interests.&nbsp;</strong>Now, also said, that what interests me, <em><strong>might not be interesting to you at all.&nbsp;</strong></em></p>\n<p><em><strong>But people are just people.</strong></em>............people&nbsp;should try and upvote the good posts and promote these writers, so we can have new and exciting reading material here on Steemit.&nbsp;</p>\n<p>If you do not succeed today, tomorrow is a new day. Try harder. Do not let negative comments make you lose your way. Don't give up. <em><strong>Stay positive.&nbsp;</strong></em></p>\n<p><em><strong>Because if you are noticed by the right person, then your posts will mean something. Then you will have a voice.</strong></em></p>\n<p>I am totally up for a good debate and if you don't agree with me on posts, then&nbsp;feel free to contact me and we can discuss your opinion. Everyone is entitled to their own opinion. If you like my posts please follow me on<a href=\"https://steemit.com/@serioustruth\">@serioustruth</a><br>\nTogether we can change the world. Feel free to share or promote my posts. I want to make a difference to the way people think.</p>\n<p>&nbsp;\u2764<strong>Keep on steeming!</strong></p>\n</html>",
+    "body_length": 2969,
+    "cashout_time": "2016-10-03T05:41:03",
+    "category": "success",
+    "children": 12,
+    "created": "2016-09-01T23:53:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"success\",\"steemit\",\"life\"],\"image\":[\"https:\\/\\/s20.postimg.org\\/m18fyrqb1\\/download_1.png\"],\"links\":[\"https:\\/\\/steemit.com\\/@serioustruth\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T00:01:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 19268044087375,
+    "parent_author": "",
+    "parent_permlink": "success",
+    "pending_payout_value": "46.997 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "why-we-can-all-succeed-in-life",
+    "post_id": 829471,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Why we can all succeed in life",
+    "title": "Why we can all succeed in life",
+    "total_payout_value": "0.000 HBD",
+    "url": "/success/@serioustruth/why-we-can-all-succeed-in-life"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4264801627311",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6355020214373",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210935138158",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513752148837",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10777629083",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392405354610",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23476395882",
+        "voter": "yefet"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "404897958",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "4615942497",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36761459891",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3148612688",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "976605325",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432543138",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469385562681",
+        "voter": "cyber"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "316201719",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12858141661",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52123584116",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7907158390",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320412905",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6444619088",
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3472486489",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154306980856",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36245526538",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3748211699",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8368454072",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282893744",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19174335590",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1501784652",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28355737154",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10210797077",
+        "voter": "exyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171701958057",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435478790",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15699815948",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14043989668",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2338655401",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2991165818",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26465755082",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7849492736",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165769057",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138994752",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97274422829",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764960163",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57930015",
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11628203002",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586319380",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172932392",
+        "voter": "ezrabcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69498750",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7034398796",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3640096656",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17334568050",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615797359",
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13680199584",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197982642374",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9213852022",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51454384",
+        "voter": "wanglai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      }
+    ],
+    "author": "pinkisland",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"http://i.onionstatic.com/onion/2738/1/16x9/565.jpg\" width=\"565\" height=\"318\"/></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Behind the desk, every student sits and observes every teacher and how they address the lesson. They look at one figure inside the class within their vision and that make the view limited in their eyes. But let switch the roles and try to see how the teacher look at their student in that big vision. Looking to a speaker is different than observing the reader. Chapter one in the book \u201cTeachers, Schools, and Society\u201d by David Miller Sadker and Karen R. Zittleman, discuss how teacher scenery is different from that of student and it guides the reader to find the positive and negative points for a teacher to encounter in his career; it will help reader to discover whether they should complete aiming for to become a teacher.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The goal for every reader is to find and choose the best career that will find happiness and bring the joy while practicing it. That\u2019s what makes the chapter more comfortable to read in; it didn\u2019t force the material on the reader but instead, it gives suggestions and real life examples about how being a teacher would look like. \u201cYou be the Judge\u201d is whole examples for a student to know how being a teacher could have a negative or positive impact on their lives, and it\u2019s a good way to them clarify their position whether to continue with being a teacher as a career meant to them or not convinced by. Also, there was a survey in the chapter that shows how many teachers get paid yearly in different states; it\u2019s a good side to the students to know that being a teacher could provide a decent life for them as a job.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Teachers need to have a bunch of specification in orders to be called a successor. Preparing a teacher to this career and guiding them to be effective to his class is an important step that could impact the whole future of both teachers and learner. That idea of preparation considers as an informative process and not implicit, and it\u2019s a good topic that's been clarified in that chapter. Moreover, another idea that been addressed at the end of the chapter is how the student could improve his skills and concepts of the learning process before graduation, and that been shown with listing several steps that the student should put into consideration in order to become successful and creative. It does not only help the learner himself in the long run but also give a chance to make his future classes more creative and cooperative at the time. For instance, some of the steps say that the teacher should study their courses that the handle carefully and planned for them ahead to make sure it\u2019s clear to him and would be to students at the time. Also, they should have a good impression during their learning process and to keep on building it on. That\u2019s how a student could have some ideas to consider and to begin with if they are struggling with what to start with or improve while they are still learning about their career.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Students should figure out if the teaching career is the one that meant to them and they will enjoy practicing end for most of their life. That chapter did a good job in discussing some topic that will help the student take their decision regarding this career and if they willing to take that challenge and start filling and building their knowledge. It does not only help the student to become successful teachers but also prepare them to make a more bright future for the generation they will be willing to teach, and to be creative with their work and thoughts. So, after knowing and considering what a teacher need to handle and think of, the student will start to find their own way to teach and make their job process different from other teachers they encounter before.&nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 4322,
+    "cashout_time": "2016-10-03T02:18:48",
+    "category": "writing",
+    "children": 7,
+    "created": "2016-09-02T01:14:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"writing\",\"analysis\",\"steemit\",\"life\"],\"image\":[\"http:\\/\\/i.onionstatic.com\\/onion\\/2738\\/1\\/16x9\\/565.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T01:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17239525786043,
+    "parent_author": "",
+    "parent_permlink": "writing",
+    "pending_payout_value": "37.412 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "teaching-as-a-career-or-analysis-of-the-book-teachers-schools-and-society",
+    "post_id": 830133,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Teaching As A Career  | Analysis of the Book : \u201cTeachers, Schools, and Society\u201d",
+    "title": "Teaching As A Career  | Analysis of the Book : \u201cTeachers, Schools, and Society\u201d",
+    "total_payout_value": "0.000 HBD",
+    "url": "/writing/@pinkisland/teaching-as-a-career-or-analysis-of-the-book-teachers-schools-and-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535956001874",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376210910452",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "2530030733798",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6868791504690",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726151150",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229262004927",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524044786",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "820975377",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7162998420481",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66022454227",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996536940",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256574080",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1316552393",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107564523042",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7511884959",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1813913350",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1281991226298",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424835962491",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "761501110340",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1131940785371",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29824545969",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750134298",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1196536230119",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168025207",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2745281235040",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35404297187",
+        "voter": "joshua"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "406975103750",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1424182557",
+        "voter": "jbradford"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9180689311",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346059306",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15938088337",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "753663976673",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375482272962",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "1796764686",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73847143577",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76668352353",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190169312803",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489465667",
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "50872817",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "612581945",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309142566089",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9534901206",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666331594856",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1827793190",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205903307851",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39833240245",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1027351719",
+        "voter": "coar"
+      },
+      {
+        "percent": "666",
+        "reputation": 0,
+        "rshares": "353351990",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17601176156",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405843973774",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10341217409",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57144356191",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260079987946",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75980218281",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518268974",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140526207453",
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412467399967",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22430460071",
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418622798",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2274330399691",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4190059511",
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7998622846",
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105851824009",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18555285556",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382747136304",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487099978706",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23735859481",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1130181250",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19586514634",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16087619085",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173891397847",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "145235686062",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2745357590",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "400",
+        "reputation": 0,
+        "rshares": "282225162",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6545907918",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2249535177",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6606808474",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375067125844",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6022204460",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8036262291",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7122827147",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68386703441",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5599529516",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280810708",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3576117505",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "57002255623",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33046735905",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5149116277",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5303452399",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75826571301",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5263073872",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24175712542",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2715996666",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119977364734",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5598045313",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342395061261",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5899298096",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15365648590",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631145568",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14995507254",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6317322640",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1501769437",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1353291463754",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97164483535",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43603809494",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "740422795",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18303819148",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11146913938",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176060985385",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29810248025",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10859176140",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66112176064",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13884859240",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416152871",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12348118332",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1907615672",
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "806370035",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53708107979",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417250555684",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42186828341",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5699385361",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "827785579",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2553460193",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194516421502",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32130489151",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3423042796",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9367946580",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2224818881",
+        "voter": "earnest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3576934262",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3446220471",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "14106406643",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2314291578",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27102377358",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5468461567",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7815470684",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019125915486",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24288681391",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10888263743",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102801288",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424845000",
+        "voter": "berrysmok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37652543503",
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "940261675",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639471735",
+        "voter": "curator"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "23270267458",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1480528431",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6376633931",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10123028535",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "584752369",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15817307763",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156369688",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "862061134",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090189555",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2666801113",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2238357029",
+        "voter": "dirty.hera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131625157",
+        "voter": "yulia98"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "512229631",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "10720241925",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61911147",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63085782",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "793861382304",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1928457089",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "942093795",
+        "voter": "transhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21837989409",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22352782004",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22360931482",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24149442143",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "27629185020",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "167928825704",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16350272739",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "6522124565",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6185106786",
+        "voter": "brendio"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "38527719167",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473946643269",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4176872896",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6623452381",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1577306627",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22357085584",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22355328422",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22352611343",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22349767400",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22346006171",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22344294392",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "92513391118",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263105171887",
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20622142384",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20350336517",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5369683283",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "3013299405",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56650918931",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63570195",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59738641",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10973358869",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57914427",
+        "voter": "steemo"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "6073118497",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22043736930",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57765027",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1590670250",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1127808427",
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10157142611",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74494304",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3933354492",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61296223",
+        "voter": "strangedays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84406705123",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58653788",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "398349859",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77220767",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1760257480",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29749490788",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5897804656",
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7980606923",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273211506",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58947349",
+        "voter": "wendelribeiro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55414210",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55396880",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406673",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56566121",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86327402421",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9149533951",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57439383",
+        "voter": "wholefoods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22338332510",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68437243690",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "12648203513",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "4009964661",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2214821974",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2500078806",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261579534201",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4161934026",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54999739",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153032594",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446928899",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2774307105",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103203866500",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22008008063",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961187",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41405284088",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270618086",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53966805",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53613607",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494664136",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2731168114",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53252658",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54293199",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9161548599",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92326483945",
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "992040757",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56897224",
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52560790",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52242652",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230725",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7295907898",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51922012",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2377534516",
+        "voter": "lilmisjenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341097233",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "620954332",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51994517",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99072246",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5320196521",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2437884565",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4765768150",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1835091693",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50569452",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50516543",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50514225",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67956001",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71092472",
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51484593",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8066814624",
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52176950",
+        "voter": "saiku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2856393738",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76034330",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154501261",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156889025",
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9342188316",
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155204122",
+        "voter": "budgiebee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155180811",
+        "voter": "majes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154551739",
+        "voter": "reddust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474962663",
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156136975",
+        "voter": "william007"
+      }
+    ],
+    "author": "tuck-fheman",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://s18.postimg.org/aid72t4nt/too_old.png\n\n# [I'm Too Old For This](https://youtu.be/MqBNSMbEzI0)\n\nYou youngin's holding onto your new age Eckhart Tolle \"live in the now\" Aleister Crowley regurgitated belief systems and rah rah sycophant always positive philosophies (so long as the handouts are still being raked in), all while rewarding, if not exalting, people with a complete disregard for human decency amaze me and give me pause to think ...  **what in the $@#! happened to this world?!**\n<br>\n\nhttps://i.imgflip.com/1adksj.jpg\n\n# Back In My Day\n\nDuring my heyday, people were able to speak their mind, so long as they did so with respect and allowed others to voice their opinion as well. Everyone was different, and that's what made each individual interesting. Nowadays, it seems most people just want to be like everyone else and fit in. Don't rock the boat, else you won't get your reward! It's like being in a Kindergarten class full of 20-30 somethings.\n\nThis younger generation seems to worry more about figuring out how to make themselves into a Gawd, while at the same time arguing over which psychopathic authoritarian they are going to vote for as their supreme leader. They do more thinking about who to vote for to control their lives than they do how they are going to survive on their own for the next 40 years or more.\n\nhttps://s16.postimg.org/dqbzdofj9/OK_dees_1_Copy.jpg \n\nWhich one of these \"leaders\" (and I must quote that) is going to do more for me, seems to be the biggest question of younger generations. While at the same time they hold onto the belief that everything was created just for them and everyone else is merely a part of them; their own personal sock puppets of pleasure who must reward them when they do something they consider to be worthwhile.\n<br>\n\nhttps://cdn.meme.am/instances/57755618.jpg\n\n# Vaporware Is Skeery\n\nOne of my biggest disappointments in this community came when @stellabelle, the person with the highest reputation on the site, made a post about an announced feature she liked in another decentralized blogging platform that doesn't even exist. \n\n### The horror! \n\nMany were quick to point out that the other platform was \"vaporware\", yet felt so threatened by her post about this \"vaporware\" that they created fictional stories to apparently discredit her. Others jumped on the bandwagon at every chance in the comments section. For what? For pointing out an announced feature in \"vaporware\"? Some even called this apparent \"vaporware\" a \"competitor\"!?\n\nhttps://s11.postimg.org/e5699gp5v/cover_ears.jpg\n\n# [Faith No More](https://youtu.be/3yVI3UgtvwU)\n\nThis says a lot about the faith these people actually have in Steemit. The fact that a piece of  \"vaporware\" can be considered a \"competitor\" to Steemit, along with the fact that these people feel threatened by this \"vaporware\" would make Leon Festinger roll over in his grave; **because he's dead ... just like this generations ability to debate on a topic without their favorite psychology book in front of them to fashion a response from someone else's thoughts.**\n\nWe even have one of the largest whales on Steemit flagging comments that dare mention a non-existent \"competitor\" or anyone saying anything that, in their mind, is considered \"divisive\" to the community. A flag from this person will all but hide a comment from anyone's view without seeking it out at the bottom of the page. \n\nhttps://s15.postimg.org/820q6kvkr/safe_space.jpg\n\n# [In Muh Safe Space](https://youtu.be/sXQkXXBqj_U)\n\n\nSo much for being a place to discuss anything openly. And yet, people here complain about Facebook and Reddit, yet I can mention Facebook all day on Reddit, and vice versa, and never have to worry that my comment will be hidden by a single individual. Even worse, Facebook and Reddit are some of the most censored platforms in existence.\n\n### Put that in your **[hash pipe](https://youtu.be/_9BGLtqqkVI)** and smoke it!\n\nSome here are taking it upon themselves to create a safe space for everyone else, because apparently the competition from these non-existent platforms is so strong we must hide their non-existent features very mention from the fragile masses. Back in my day, there was a saying ... \"competition is good\", but apparently that's no longer the case.\n\nhttps://s22.postimg.org/cal6wr4tt/manstuff.jpg\n\n# [Smells Like Teen Spirit](https://youtu.be/hTWKbfoikeg)\n\nHere on Steemit, it's hard to find anyone that appreciates sports, guns, hunting, cars or anything that my generation considers to be laced with testosterone. Sure I find computer/programming talk interesting, but it's rare these days to find people online that can talk the 4 basic man groups as well. I've found a few, but for the most part they are hiding within the Steemit caves of obscurity.\n\nSteemit advertises that \"original content\" is rewarded, yet anyone that can speak in great detail on any of those 4 basic man groups will rarely, if ever, be rewarded for doing so. There are a few of these well written articles on these topics here on Steemit, but you will be hard pressed to find one earning more than $5. Why Is that? \n\n### I'll tell you why ... because Steemit, for the most part, is lacking testosterone. \n# (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b\n<br>\n\nhttps://s13.postimg.org/oou4yaqp3/Grinds_my_gears1.jpg\n\n# [What Grinds My Gears](https://youtu.be/Q685Ko2DHDs)\n\nYou know what really grinds my gears? Steemit. **Steemit really grinds my gears.** Why? Because I'm too old for this shit! And for that reason, **this will be my last post on Steemit**. I will be relinquishing my posting key access for this account and leave it to the younger generation of Tuck Fheman's, so they can post happy thoughts about all things Steemit and be rewarded untold fortunes for doing so. I am just holding them back.\n\nI did my best to be a part of this generations next big thing, but generation Steemit is just too namby-pamby for this old codger. \n\n<div class=\"pull-left\">\nhttps://s22.postimg.org/9mkkeg19t/giphy.gif\n</div>\n<div class=\"pull-right\">\nhttps://s20.postimg.org/bcrfwvml9/mic_drop.gif\n</div>\n\n<br/>",
+    "body_length": 6089,
+    "cashout_time": "2016-10-12T07:28:27",
+    "category": "philosophy",
+    "children": 141,
+    "created": "2016-09-10T22:42:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"philosophy\",\"rant\",\"steemit\",\"new-age\",\"mic-drop\"],\"users\":[\"stellabelle\"],\"image\":[\"https:\\/\\/s18.postimg.org\\/aid72t4nt\\/too_old.png\",\"https:\\/\\/i.imgflip.com\\/1adksj.jpg\",\"https:\\/\\/s16.postimg.org\\/dqbzdofj9\\/OK_dees_1_Copy.jpg\",\"https:\\/\\/cdn.meme.am\\/instances\\/57755618.jpg\",\"https:\\/\\/s11.postimg.org\\/e5699gp5v\\/cover_ears.jpg\",\"https:\\/\\/s15.postimg.org\\/820q6kvkr\\/safe_space.jpg\",\"https:\\/\\/s22.postimg.org\\/cal6wr4tt\\/manstuff.jpg\",\"https:\\/\\/s13.postimg.org\\/oou4yaqp3\\/Grinds_my_gears1.jpg\",\"https:\\/\\/s22.postimg.org\\/9mkkeg19t\\/giphy.gif\",\"https:\\/\\/s20.postimg.org\\/bcrfwvml9\\/mic_drop.gif\"],\"links\":[\"https:\\/\\/youtu.be\\/MqBNSMbEzI0\",\"https:\\/\\/youtu.be\\/3yVI3UgtvwU\",\"https:\\/\\/youtu.be\\/sXQkXXBqj_U\",\"https:\\/\\/youtu.be\\/_9BGLtqqkVI\",\"https:\\/\\/youtu.be\\/hTWKbfoikeg\",\"https:\\/\\/youtu.be\\/Q685Ko2DHDs\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T22:42:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 42002060944755,
+    "parent_author": "",
+    "parent_permlink": "philosophy",
+    "pending_payout_value": "144.429 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "when-concerning-steemit-i-ve-come-to-realize-i-m-too-old-for-this",
+    "post_id": 915833,
+    "promoted": "138.990 HBD",
+    "replies": [],
+    "root_title": "When Concerning Steemit, I've Come To Realize ... I'm Too Old For This",
+    "title": "When Concerning Steemit, I've Come To Realize ... I'm Too Old For This",
+    "total_payout_value": "0.000 HBD",
+    "url": "/philosophy/@tuck-fheman/when-concerning-steemit-i-ve-come-to-realize-i-m-too-old-for-this"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2878128126837",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6998734695522",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6042719173062",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120838362492",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "991013934194",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "918527955423",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3719055998",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4515019251",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836782064",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64817001772",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993119622",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256394111",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210347006215",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34042532834",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401713935140",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398896422515",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17157086215",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747273339",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160639989",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21561714956",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302719926634",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345768342",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14351424587",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77086206429",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78070381820",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95730853785",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12739865723",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9785915976",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15462863713",
+        "voter": "jademont"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7554806704",
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1455984309",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098982781",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "340907048790",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9947116773",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9650580617",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2950703828",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89884543659",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17260900202",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14125062140",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22046139567",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79658049745",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431852861",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368696007081",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586286811332",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96224456283",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37451164846",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4597420837",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8881004054",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3596528108285",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388823990187",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391275913",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362378288951",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52998773109",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "863365208",
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59069076379",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124185870189",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8333460340",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266442266951",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500746650031",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48671150838",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138353237297",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1863788514",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2434631651",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100534891530",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43181755485",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403540320598",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40797153099",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18543754999",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289162489",
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302683064",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17546278068",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264522603",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8820348623",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204013843843",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300446841809",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3112471750",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4707075837",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15801611273",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32544390735",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2870229595",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133098789385",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "599975985871",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32961215897",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283810485",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25445457118",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259486897",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1625153964",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8892666616",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15616629499",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499156305959",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3613581209",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "198330012",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "183568347",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147240421388",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12022855311",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1571508493",
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "885891994",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "919965160",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10802622782",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4405634199",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24942066295",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1367833704",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10301497593",
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356943865",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47927575572",
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384335950",
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "793082709",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367441394",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47406569721",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70372093790",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42927707223",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3422295233",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5725254373",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2064928807",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3782713987",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12974410735",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2976001628",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252357240414",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3477776250",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3556231334",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59941579508",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3433845802",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19157179302",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3987315202",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35138047991",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12019513269",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73099576639",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8132763030",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214418183330",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "373770800",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26816500737",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6113574314",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683378197",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255303484",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255686119",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147914638",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148750003",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84813726",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4164065341",
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18119834837",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11673305563",
+        "voter": "quickfingersluc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220766396409",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11219620297",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "859954354",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20113164016",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7430932441",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203965977",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18453282331",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618560648",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408950035",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219368610",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "274335473",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76805770",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10590243337",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126426805",
+        "voter": "ipopular"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74356260",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18695991236",
+        "voter": "pixielolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1840946810",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "861558297",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1526231546",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456054658",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19988784545",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5647038859",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139439065521",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9225459807",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731723236",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5553712976",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951944925",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1515473458",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15130676889",
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8140603858",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759071342",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9623723965",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4010159410",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3565700998",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1146725005",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7063527946",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512286246",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3424311094",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14726415882",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10366372843",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12931796143",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293812470",
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85386694477",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55591289",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411872432",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1467824207",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253738615",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1030648559",
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145609627",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83673051926",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58499109",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62332619",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7624079651",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9995207527",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73290501683",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094162",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4390594623",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89766690138",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3574771803",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4346734216",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18099477167",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51095992",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467996430",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201888000",
+        "voter": "tlarsen2080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11457714027",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4621091782",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1609584914",
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194564074",
+        "voter": "arty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88366627",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709285853",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56583285",
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "581299661",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82668168",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262718397",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2209122623",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24239498471",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223746762",
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55278008",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117140255",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57522774",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311627797",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1524816681",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594706072",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1645692763",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5550458547",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454788",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50468091",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53474283",
+        "voter": "barbosabarros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51583902",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71766021",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631761737",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177106697",
+        "voter": "ziogio"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center><img src=\"https://stakepool.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-31-at-07.58.21.png\"></center>\n\n<center><h2>We are now 600+ users registered and 20-30 active hosts at any time of the day talking about steemit, crypto and news 24/7 live on air and this is how you do it to become a host on steemspeak radio stakepool</h2></center>\n\n<h1><center>WE WANT TO HEAR YOU TOO!</center></h1>\n\n<b>First</b>, make sure you have a GOOD Microphone and a GREAT Headset. When you are on air talking about your latest steemit-post or something else that is on your mind, you want to sound great and make sure you don\u00b4t transmit echo, so if you don\u00b4t have headphones - buy some before you join.\n\n<b>Second</b>, Download the Teamspeak 3 Client that works for your Operative System or Phone from <a href=\"http://teamspeak.com/downloads\">Official Teamspeak Download</a>.\n\n<b>Third</b>, Connect your TeamSpeak 3 Client to this server: <b>ts.steemspeak.com</b>\n\n---\n<center>It is THAT Simple!</center>\n---\n\n---\nOK, Now that you have logged in, you need to set your <b>Push To Talk Button!</b> And to do that I have included a good youtube-tutorial for you here so that you can easily figure out how to do it in settings->capture->push to talk->hotkeys\n\n<h1>Setting up the Push to Talk button!</h1>\nhttps://www.youtube.com/watch?v=u89aMcyfr2s\n\n<h4>The Mac Version settings are found in the Teamspeak 3->Preferences ->Capture</h4>\n\n---\n<center>If you just want to listen, go to <a href=\"http://steemspeak.com\">steemspeak.com</a>24/7 all year!</center>\n---",
+    "body_length": 1552,
+    "cashout_time": "2016-10-01T15:15:30",
+    "category": "steemit",
+    "children": 31,
+    "created": "2016-08-31T13:26:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"life\",\"freedom\",\"news\",\"music\"],\"image\":[\"https:\\/\\/stakepool.com\\/wp-content\\/uploads\\/2016\\/08\\/Screen-Shot-2016-08-31-at-07.58.21.png\",\"https:\\/\\/img.youtube.com\\/vi\\/u89aMcyfr2s\\/0.jpg\"],\"links\":[\"http:\\/\\/teamspeak.com\\/downloads\",\"https:\\/\\/www.youtube.com\\/watch?v=u89aMcyfr2s\",\"http:\\/\\/steemspeak.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T13:26:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31741689374910,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "120.057 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "how-to-connect-and-be-a-host-on-steemspeak-radio-and-let-your-voice-be-heard-across-the-world",
+    "post_id": 812590,
+    "promoted": "125.000 HBD",
+    "replies": [],
+    "root_title": "How to CONNECT and be a HOST on SteemSpeak Radio and let your VOICE be HEARD across the WORLD!",
+    "title": "How to CONNECT and be a HOST on SteemSpeak Radio and let your VOICE be HEARD across the WORLD!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/how-to-connect-and-be-a-host-on-steemspeak-radio-and-let-your-voice-be-heard-across-the-world"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "14287655717809",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372316824459",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7292928003093",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6712692598434",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8748358954886",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5924081466216",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20671106684513",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118417933788",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "923945830721",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898909637848",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2479218792",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3009798108",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557836382",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7335421547210",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43175636897",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1328665238",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170926788",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214530506030",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391741109003",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389075404441",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1331361114912",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77471889244",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253801568876",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20262312121",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "498161277",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773724643",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399862483868",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "411408907897",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6821654706",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230509608",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14466370135",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48090324970",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82688369456",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13170169522",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11072341222",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80028506637",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419229125146",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81246195312",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13405317241",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535527459153",
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3020965065",
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1454961783",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19097994036",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056146398",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "340794336001",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3315032051",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9613892204",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "847659311",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18234332542",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156478008187",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16814582950",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57941109413",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32680055185",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105824577331",
+        "voter": "amartinezque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24012631923",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54102266581",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973588246",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73938949282",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1430756403",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19203629337",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7452226457",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12917828173",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11828369962",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10554741746",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3518424323798",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363217648620",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342038785",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5613435698",
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362364795494",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51869215030",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186263884937",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4565655246",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258065486703",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13619124411",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138324583233",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1184500561",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140244128104",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636647277",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100470233346",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41356310366",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13787125963",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385584242228",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40796944760",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28959157027",
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289162489",
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17893924588",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266425807",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9856964632",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20384429842",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300446841809",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38998845686",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3043909864",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4522484628",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4911853013",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15159309172",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2763332921",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31283265272",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14006522484",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2928756549",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13606146685",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8236654789",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28836579075",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266065805",
+        "voter": "nurev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1559706980",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8358639536",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74156962501",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12165590095",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366301565",
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10585603645",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3610761428",
+        "voter": "owdy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "80089524",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "73425371",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1350155707",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1206462597",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143979313132",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10020572535",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14094648142",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127923097868",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15306226751",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "864077460",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15904625406",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4206277713",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11502422370",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165119969029",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33632847618",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89059288467",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34393459049",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348823659599",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11225967160",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4183969872",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8674367887",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389393307",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46987819188",
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61876999450",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43998433342",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19908734998",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15095626509",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19208995641",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2026353384",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3346143159",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5604949614",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1811685903",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7735024258",
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12972669244",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8412249152",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3449406742",
+        "voter": "kimmar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188704962743",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3409584558",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3485025335",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1432554908",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61134908757",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25467461905",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8079581131",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6737481039",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3227799659",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18031572419",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7960988445",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3143648302",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23784532545",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3982662435",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40963637365",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67031280822",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116058250",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1492718093",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534037396",
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100131242",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8132697646",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192890960021",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365818230",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111304161",
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25060291197",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4073521267",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646370099",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249753408",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250127725",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144699103",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145516307",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82969949",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10146325450",
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207780137797",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200189709",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1089072756",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4458162709",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "461290417",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1912624362",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11673105366",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20532124227",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8105938340",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17523357805",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568834437",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400045064",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214599727",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268956346",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75136080",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108154560",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13159019704",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125670168",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4182979272",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897211578",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1283349286",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2406933564",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24693180396",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1483559041",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2713256489",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5150829096",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5533183281",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11454886978",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099605749",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48206857966",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8761147948",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5886582033",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5495724559",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2131190527",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38671084581",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52102443",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15130676889",
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22839801085",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1711191717",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15561021463",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9238067538",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4004906164",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266924190",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3564833888",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5902111209",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162194218",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "724724078",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574381549",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93392827573",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14148411388",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15893252296",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63829521",
+        "voter": "dedushkadiesel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56272514",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93243566220",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "559711438",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70682332",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1361293312",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52502611",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52099594",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3235630451",
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323509012",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753317",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148403993",
+        "voter": "steem-engine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1200202101",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51619811",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28469021518",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1963729757",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83587645574",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29373154668",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61094018",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10543706281",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71357161",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2331044924",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405029117",
+        "voter": "noor818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863356",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51860909",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51852278",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92671420",
+        "voter": "how2steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3502906874",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8121800981",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941499119",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51481279",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59465570",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454956115",
+        "voter": "steemhorizon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18096899554",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2511369735",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11435132110",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6205342073",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4298995859",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22500043307",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562255",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85421073",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615508801",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55750195",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666955368",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8515004507",
+        "voter": "ironwood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79669298",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13864037687",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2155153681",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51712804",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109805573",
+        "voter": "maxfuchs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20656731535",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51388276",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51379706",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53537748",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814474",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607135202",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13828807095",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51451058",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262391495",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2146314155",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54349843",
+        "voter": "lynceus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24762164330",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52015504",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190473967",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140568307",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54949117",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304997419",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54665234",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582022660",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51979174",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50812926",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1579487626",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5683012749",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71251561",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979879533",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2439471741",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50507607",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454788",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65292516",
+        "voter": "paketkita.net"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73815531",
+        "voter": "conspiracynut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52710031",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143043369",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1869420478",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66920614",
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366333355",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607607141",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82374501",
+        "voter": "alexclarkbarry"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>Ladies and Gentlemen Welcome to the STEEMIT SHOW! 100% Pure Entertainment ONLY FOR YOU!</center>\n---\nhttps://www.youtube.com/watch?v=0SMMo7aQnPY\n\n\n---\n<center>Welcome to @fyrstikken I am so happy to see you! Leave a comment below so I know you have been here :)</center>\n---",
+    "body_length": 282,
+    "cashout_time": "2016-10-01T02:09:48",
+    "category": "steemit",
+    "children": 56,
+    "created": "2016-08-30T19:19:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"funny\",\"comedy\",\"fyrstikken\",\"entertainment\"],\"users\":[\"fyrstikken\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/0SMMo7aQnPY\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=0SMMo7aQnPY\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T19:19:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 88601715868403,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "809.229 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-steemit-show-fresh-entertainment-directly-to-you-because-we-need-a-good-laugh-d",
+    "post_id": 804282,
+    "promoted": "122.000 HBD",
+    "replies": [],
+    "root_title": "THE STEEMIT SHOW! - FRESH ENTERTAINMENT DIRECTLY TO YOU! - BECAUSE WE NEED A GOOD LAUGH :D",
+    "title": "THE STEEMIT SHOW! - FRESH ENTERTAINMENT DIRECTLY TO YOU! - BECAUSE WE NEED A GOOD LAUGH :D",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/the-steemit-show-fresh-entertainment-directly-to-you-because-we-need-a-good-laugh-d"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6861504603453",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5924234483394",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099192085",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762483356",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697315118",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54010291270",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660921578",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213661759",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34042532834",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1305259200680",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622724514",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967195088",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297041068093",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31488210815",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288140285",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46091338521",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15147326440",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29088869234",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2141819165",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692261667883",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91718922101",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12107337047",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236023250940",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60750319225",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79657198561",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431846323",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602018562",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586286811332",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64284714678",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37511548124",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8876135165",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391275913",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283907126703",
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1267900436",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324237643911",
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20461884222",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "929020048",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946608196",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429697273174",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686886224488",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267977999",
+        "voter": "alefernandez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4224777539",
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269921024",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6602307370",
+        "voter": "emhaze222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266592981",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204013843843",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31880219495",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14064842257",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25445573460",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7049471118",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105798664165",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147240421388",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41975059972",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1131075798",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "910500105",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4487120677",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37452179267",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17227141109",
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341993222983",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24443224969",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237985094",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6129221694",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4162801602",
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19507833697",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3498346239",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61164729955",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16745418519",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365818230",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841259695",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7093464346",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268956346",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4975171514",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112914306",
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1909130025",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993799598",
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456070989",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19988784545",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731723236",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15792261330",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238353830",
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88049981467",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1253580623",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3360204812",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54355927",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10079591501",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119439375",
+        "voter": "harrycoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12237404949",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145609627",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62332619",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7285753049",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74755928437",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59512540",
+        "voter": "boatman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3307244480",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12186383861",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58931862",
+        "voter": "wesley399"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1763987441",
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8629294348",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14595736783",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7184799429",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1604647373",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14193492376",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23042993006",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110372559",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84510824",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1230797907",
+        "voter": "profitgenerator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55821108",
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117787613687",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24239498471",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140568307",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56372318",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269335193609",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2984877979",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69255373",
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51342868",
+        "voter": "steemitmag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65057583",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3319272143",
+        "voter": "adilsontsilva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136773607",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245473",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3365771273",
+        "voter": "merlin"
+      }
+    ],
+    "author": "marketingmonk",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://steemit-bucket-4a743ec2.s3.amazonaws.com/Getting%20More%20Attention%20By%20Using%20The%20Promote%20Button.jpg\n\nThis is the eighth installment of what will turn into a paid course called The Complete Steemit Course.\n\nHere is Steemit Tutorial 8: Getting More Attention By Using The Promote Button:\n\n**(please note that this video was updated with a corrected version 23 hours after the original post)**\nhttps://www.youtube.com/watch?v=ob9Zksnguzg\n\nPrevious lessons here:\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-1-creating-an-account-on-steemit-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-2-steemit-account-dashboard-overview-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-3-creating-our-first-ever-basic-post-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-4-reading-writing-decorating-and-voting-on-comments-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-5-voting-power-weighting-spying-and-managing-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-6-getting-paid-twice-from-the-steem-network-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-7-buying-steem-power-with-steem-dollars-or-bitcoin-video\n\nPlease upvote to show your support, I really appreciate it.\nhttps://img1.steemit.com/0x0/https://www.cryptoversity.com/wp-content/uploads/Steemit-upvote-cta-3.gif",
+    "body_length": 1407,
+    "cashout_time": "2016-10-01T15:51:39",
+    "category": "steemit",
+    "children": 18,
+    "created": "2016-08-31T12:33:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"tutorial\",\"howto\",\"steem\",\"video\"],\"image\":[\"https:\\/\\/steemit-bucket-4a743ec2.s3.amazonaws.com\\/Getting%20More%20Attention%20By%20Using%20The%20Promote%20Button.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ob9Zksnguzg\\/0.jpg\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/www.cryptoversity.com\\/wp-content\\/uploads\\/Steemit-upvote-cta-3.gif\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=ob9Zksnguzg\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-1-creating-an-account-on-steemit-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-2-steemit-account-dashboard-overview-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-3-creating-our-first-ever-basic-post-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-4-reading-writing-decorating-and-voting-on-comments-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-5-voting-power-weighting-spying-and-managing-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-6-getting-paid-twice-from-the-steem-network-video\",\"https:\\/\\/steemit.com\\/steemit\\/@marketingmonk\\/steemit-tutorial-7-buying-steem-power-with-steem-dollars-or-bitcoin-video\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T11:32:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21127721369166,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "55.734 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-tutorial-8-getting-more-attention-by-using-the-promote-button-video",
+    "post_id": 812173,
+    "promoted": "121.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Tutorial 8: Getting More Attention By Using The Promote Button [VIDEO]",
+    "title": "Steemit Tutorial 8: Getting More Attention By Using The Promote Button [VIDEO]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@marketingmonk/steemit-tutorial-8-getting-more-attention-by-using-the-promote-button-video"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "12795811535287",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372316824459",
+        "voter": "berkah"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "143470451897",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898984807435",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2479522245",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3010199699",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557883458",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "471708497687",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43227563325",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1328824820",
+        "voter": "mini"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "4508768018730",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170935941",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34042532834",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748581030023",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258887406145",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "498208362",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773801809",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823317276751",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302719926634",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230521375",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411375686313",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26495887427",
+        "voter": "blackjincrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74201402070",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34871878822",
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431720661",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "935697420",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37511548124",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10314861252",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22856402506",
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13346309453",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1138049559",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129179648054",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "80804852397",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302683064",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198782719642",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7568897676",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124699737174",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246771748723",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69581481372",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12190374285",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143380752469",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22868729155",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614055241",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192822819405",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35158481984",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10952411440",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13738300392",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4088366345",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365818230",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13209938808",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841259695",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7093464346",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "11024739057",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268956346",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10075803326",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19988784545",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4933785537",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3865257981",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "402412698850",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76821186326",
+        "voter": "twinner"
+      },
+      {
+        "percent": "2600",
+        "reputation": 0,
+        "rshares": "8809932426",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "96034818561",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3834585662",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "19814357142",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "45623458403",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "1327717265",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63750303",
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54355927",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14055782855",
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3569023089",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1227614779",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "235297436",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6857054058",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71823713867",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094162",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11509623311",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54497132206",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12067433608",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384999327",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2311621568",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53351751",
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84510824",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23711007445",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50196187",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4120769636",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1301309204",
+        "voter": "robotev"
+      }
+    ],
+    "author": "james-show",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Trading Steem is not hard. In that part steem(it) development team has done a great job. Compared to the establishment Steem is a huge step in the right direction of fairness and openness.\n# How the JS index works\nJS measures the net result of the buyers and sellers actions.\nEveryone buying Steem (or anything else) in any financial instruments market does it to profit. Interesting distinction is however if those buyers or seller do expect their profits short term or long term.\n\n## How short term Steem \u201cspeculators\u201d act?\nThey buy steem and expect return in a matter of days, weeks, months.\n## How long term Steem \u201cinvestors\u201d act?\nThey buy steem and expect return in a matter of years. They buy steem, and in this particular high devaluation environment that Steem is quickly power up .\n\nMeasuring the net result from the Steem \u201cspeculators\u201d and  Steem \u201cinvestors\u201d buying, compared to Steem owners selling can give us the ultimate tool to measure the future price movement of Steem (in  the short to medium term).\n\n# And it turns out to be incredible easy\nAll of the described above is nothing more than the \u2026 increase/decrease of the total Steem held by exchanges! (with a few caveats I will keep  proprietary for now)\n\n# How this matters\u2026 give me a practice example.\nOK here it is.\nSteem hit a local low of 0.001224 btc/steem on 08/29 4:30 UTC. Since then the price is generally higher. Should you buy (out of FOMO) or wait for the price to come down to even lower levels sometime in the near future.\nIf JS index has fallen down since  08/29 (as it has indeed) this means that all the buying (price increase) was by short time speculators. So, if no news justifie their buying exuberance, you can expect soon those speculative buyers to give up/cash out of their short term position and the price to continue following the long term trend of the JS index itself.\n\n# Initial JS index\nThe index is set at __1000.000__ as for 2016-07-26 12:56:12 UTC\n\n# Current  JS index\nAs of 2016-08-31 03:03 (UTC) the value is: __553.650__\n#\n[EDIT]\nBelow is a chart of JS Index and Steem price for July 27th to Aug 30th NB some days have more than one data point.\n#\n\n![Imgur](http://i.imgur.com/Ukazg7G.png)\n#\n#steemit #trading #finance #steem #money",
+    "body_length": 2239,
+    "cashout_time": "2016-10-01T17:41:42",
+    "category": "steemit",
+    "children": 18,
+    "created": "2016-08-31T04:11:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"trading\",\"finance\",\"steem\",\"money\"],\"image\":[\"http:\\/\\/i.imgur.com\\/Ukazg7G.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T15:07:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 24273347100904,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "68.637 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-only-index-you-should-know-to-successfully-buy-and-sell-steem-introducing-the-js-index",
+    "post_id": 808898,
+    "promoted": "110.001 HBD",
+    "replies": [],
+    "root_title": "The only index you should know to successfully buy and sell Steem \u2013 Introducing the JS Index!",
+    "title": "The only index you should know to successfully buy and sell Steem \u2013 Introducing the JS Index!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@james-show/the-only-index-you-should-know-to-successfully-buy-and-sell-steem-introducing-the-js-index"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7376349250899",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347165551187",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "44274584365947",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104392312",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3769119494",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684036241",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54908039872",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663427874",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213797798",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2179781689511",
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73521122782",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425629339547",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2705241943122",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1131791016752",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "625020571",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973177874",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "830121840154",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288359524",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392749106258",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73536772482",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18718327214",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437226882",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4895173431",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26804675937",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2024361326",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25288596864",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "9800",
+        "reputation": 0,
+        "rshares": "20099547557",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147573839789",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1412747751",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260051658583",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13566797440",
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341225233",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13354424579",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1200786297",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31290973763",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184732571490",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188002796893",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6741772425",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15700155766",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497410679",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26357168295",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207235087440",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328681996462",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55888461363",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254380477",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276540283",
+        "voter": "eugeney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237567730",
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "427726403899",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10242467766",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31087345031",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63385860760",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515128572920",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "451567923",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501733856",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464367728",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10267745462",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14937577469",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1081057545",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4587496780",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222795356",
+        "voter": "pet1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451642041",
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3541613089",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144302620",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24462414835",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79393522553",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42141046380",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89569037",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13235028002",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3403721399",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172170120707",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7072264218",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15576505282",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23812000153",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48416629676",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14672233176",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614745323",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29931116488",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14665762430",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512358622",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467497332",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921642016",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "39800990412",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7347175730",
+        "voter": "taker"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "3321239318",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014130741336",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21154154829",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "488479148",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23411380876",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23922770445",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23931515943",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36590374553",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232181512613",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8684796827",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "2766736973",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51300024326",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23927381371",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23925693365",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23923074313",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23919971478",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1377661260",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23916289883",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23914622519",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117212658457",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60010840",
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1368553119",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4012799516",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501320787",
+        "voter": "ricardoguthrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61677203",
+        "voter": "diversesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1625904484",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8086511647",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58977371",
+        "voter": "jers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3195802403",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50027573",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84334739073",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "530776888",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58964015",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23908415458",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2976871874",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7674971846",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "581734461",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232089407",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118894339",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042033097",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "884230796",
+        "voter": "pollux.one"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53608244",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108931030653",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "647204061",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3068876882",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23554872251",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44243439919",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-145412269",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85242648206",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56115613811",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44213782610",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125198095",
+        "voter": "emeline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1379855528",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100628450",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5175145781",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3134124136",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50516543",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92968218",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "1514029449",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59746972",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "521874035",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78462337",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130634157",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139650528",
+        "voter": "danie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155069498",
+        "voter": "silver-lyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148768653",
+        "voter": "rnrador"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136350043",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154135510",
+        "voter": "vlfl"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>[![SteemyLogoHeadOnlyLarge00009.md.png](https://www.steemimg.com/images/2016/09/09/SteemyLogoHeadOnlyLarge00009.md.png)](https://www.steemimg.com/image/uGfn3)</center>\n\n# BETA AVAILABLE - Steemy for iOS and Android\n(*special shout out to @xeroc for his guiding hand during on-device tx signing implementation)\n\nWe're happy to announce that the first public beta of [Steemy](https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem) is available for iOS and Android!  If you'd like to participate in the beta, simply send an email to steemapp@gmail.com and which device (iOS or Android) so we can send you a beta invite.  We're utilizing hockeyapp.net (microsoft) to manage the beta. \n\n### Some important things about the beta:\n- *Use at your own risk - **period**.*  \n- Don't login with an account that has your life savings in STEEM. Why? Because this is a beta product!\n- Don't login with your password if you don't feel comfortable - you can still use the app without logging in. Key import options will be available in a future version.\n- Images you upload from your mobile device are publicly available to the world. \n- Image hosting providers could change during the beta and your images could be wiped out permanently without notice\n- We receive crash reports, analytics and other useful debugging information from HockeyApp\n- Once signed up, you will receive notifications to download all future versions of the beta\n- Are there known issues? Yup! Expect frequent beta versions with no announcement.\n- Hockey provides features to send us feedback directly. There's a 100% chance we'll get your feedback if you submit through hockey app or email us steemapp@gmail.com.\n\n# How You Can Help\nWe are developing at a feverishly-fast pace...as fast as two guys can who have day jobs and families to support.  If we could, we'd say adios to the day job and focus 100% on Steemy (that's a dream I have weekly).   That being said, the reality is that we are building this with our own time, energy and spare funds.   That makes us no less passionate or driven, but imposes real-world constraints on development.\n\nYou can help us by:\n1) Participating in the beta\n2) Giving us constructive feedback on crashes, design, and other app-specifics\n3) Of course, financial - any funds we receive via upvoting go directly to supporting our monthly server costs, red bull addiction, etc...\n\n# How to sign up for the beta\n- Email us at steemapp@gmail.com and tell us which device (iOS or Android) you want an invite for\n- Or, if you don't care who sees your email address, post a comment below and specify iOS or Android (or both)\n\n# What is Steemy?\n\n[Learn more about Steemy Here](https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem)",
+    "body_length": 2814,
+    "cashout_time": "2016-10-10T18:10:27",
+    "category": "steemit",
+    "children": 12,
+    "created": "2016-09-09T16:36:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemapp\",\"steemy\",\"steemmobile\"],\"users\":[\"xeroc\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/09\\/SteemyLogoHeadOnlyLarge00009.md.png\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/uGfn3\",\"https:\\/\\/steemit.com\\/steemit\\/@steemapp\\/introducing-steemy-fully-native-ios-android-apps-for-steem\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T17:25:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 59917201858253,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "334.065 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "ann-steemy-mobile-app-beta-available-for-ios-android",
+    "post_id": 903475,
+    "promoted": "110.000 HBD",
+    "replies": [],
+    "root_title": "[ANN] Steemy Mobile App - Beta Available for iOS/Android",
+    "title": "[ANN] Steemy Mobile App - Beta Available for iOS/Android",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemapp/ann-steemy-mobile-app-beta-available-for-ios-android"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28337481495132",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "605054202636",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375797501706",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6899657717718",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5875425725245",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2103735705580",
+        "voter": "hr1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "197350870235",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4823041872577",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2482489693",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1689744353709",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013973227",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552727348",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43722960528",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330267679",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171024455",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200631444608",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1423891958",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "876459346701",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118179862461",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8846955965",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2152310689",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7948252496",
+        "voter": "supergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499903743",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "775810627",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230665087",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24794631524",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16251020055",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19597409080",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85526339302",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10083460529",
+        "voter": "makishart"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "92433605489",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74987247876",
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75795031193",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "10071098316",
+        "voter": "fkn"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": "487271558",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": "5369463575",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28340759824",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "4700",
+        "reputation": 0,
+        "rshares": "49448005933",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "13247495874",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "4519322665",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144465949299",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26516736386",
+        "voter": "tmendieta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490443153",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67847295588",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1069348096",
+        "voter": "murh"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "9544167563",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41167926762",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4451341567",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": "380437107",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258363528866",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377834429632",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "33524923089",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15132186921",
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51960349384",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208799779463",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4477345730",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13353689520",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33785196884",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1490503275679",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43185482362",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5339578403",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2882668559",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6494753195",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536461338",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39865567060",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4525901650",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50785197295",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "22535574872",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248645032085",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4286578655",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117261767025",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524443148",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4768148761",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "874985559",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120365648521",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792008422388",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "30376512860",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4223912868",
+        "voter": "owdy"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "237022986",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "265901386",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "243759726",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151763700815",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452069359",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1473450451",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90756765",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16453997687",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13294445014",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3758408519",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25328130017",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346983489",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36334866498",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150621438",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11534871172",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235512684",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "448946992",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43462674468",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1815380313",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7443194536",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96640276",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130211659731",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3710606394",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "11106355045",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3175094870",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3353659009",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64027340659",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7620147467",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4245145393",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3143598968",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16426451743",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182764669318",
+        "voter": "jl777"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "8159179596",
+        "voter": "positive"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6111284001",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764587130",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15575907279",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639009474",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24863078932",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1711275100",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2242556592",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "268949193",
+        "voter": "fnait"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "245394332",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149502446",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184489646",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20170588933",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110626149",
+        "voter": "bluebell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5475281216",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122233144003",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70376481208",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7871166550",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60565253",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61700262",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24430920885",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24407155133",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24416426858",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "1735770144",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63747178",
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3199941620",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24412199287",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24410732703",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24408329032",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24405573752",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1656951191",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24402026987",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24400841139",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81338740",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376414529",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19318370958",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86892789274",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12781131185",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232895758",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55022014",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192175071324",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62174144",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58453204",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8867300566",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11751323553",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57914427",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20318867928",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56535984",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71228043",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60730988",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1802712014",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51199976",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11813114611",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56563243",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57391432",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "565879902",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71740798",
+        "voter": "hhcwebmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55393797",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387773",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "626012702821",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5805302022",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11978540048",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55399493",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56575537",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56570509",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387660",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8470010325",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7163167644",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24395131330",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1908971109",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71221451964",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46612959839",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8161550832",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18579446047",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1401285964",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4503423419",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "5800",
+        "reputation": 0,
+        "rshares": "25379964093",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54999739",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52425992",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1970534065",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7834748327",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1572045156",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4679890064",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26082174893",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59542406",
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84026579",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24033874515",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55085378",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6881062319",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53966805",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53613607",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "803386637",
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52171620",
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54362089",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55979441",
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54019345",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54017499",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54977174",
+        "voter": "optimus-prime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1386590598",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56897224",
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52545761",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2941923052",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158636223091",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53331040",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53324520",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53318865",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1841985827",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52988378",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5170755904",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326611087837",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59390432273",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179868865",
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039974",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4453859197",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63407335",
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51838673",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951354892",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354988640",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1881146859",
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106836853",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51141851",
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1560287283",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846735133",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7899939563",
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76019801",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157643687",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159918764",
+        "voter": "tanemahuta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155753958",
+        "voter": "mityay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158786091",
+        "voter": "jennane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158642800",
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158057595",
+        "voter": "sdc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161205518",
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161089804",
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160973134",
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160957729",
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160900665",
+        "voter": "digitalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160835930",
+        "voter": "skrillex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157654556",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160789982",
+        "voter": "jack.johnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154109909",
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156821466",
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150483032",
+        "voter": "serikus"
+      }
+    ],
+    "author": "churdtzu",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![jumpingpeoplesteemitanarchyfaba6.jpg](https://www.steemimg.com/images/2016/09/06/jumpingpeoplesteemitanarchyfaba6.jpg)\n\nFor many of us, Steemit has already changed so much - the way we navigate the web, the way we think about money, and for a fortunate committed few, it's even changed their professions. However, the change that I expect from this model goes even deeper. It's possible that Steemit, and descendent technologies, may play a part in creating a voluntary world, a stateless world, in which everyone who takes money from someone, or puts someone in a cage without their consent, or orders such acts, will be seen and treated as a criminal. There are several ways in which Steemit can aid this cause. Let's start with the most important - the conversation.\n\n# It changes the way we talk\n![argument288ba5.jpg](https://www.steemimg.com/images/2016/09/06/argument288ba5.jpg)\n## The problem with voluntaryist argumentation\nMany of you might have noticed, and even been a party to, hard-line conversations about anarchy, in which the voluntaryist proceeds to take the words of the other party, and question them about some perceived inconsistency in their beliefs, attempting to lead them through a Socratic dialogue, in order to bring them to accept the truth - that the other party is wrong - very, very wrong. You also might have noticed (as I eventually noticed, after years of banging my head on walls) that this technique almost never works.\n\nOf course, the reason that it doesn't work, is because people have a need to feel that they're being understood, that their concerns are heard, that their thoughts are valid. In brief, they need to feel like people. If you don't treat someone like a person - unless you're talking to an exceptionally patient person - you're unlikely to receive a personable response.\n## An oasis\nThe comment section on YouTube is a running joke. Facebook discussions descend into dirtslinging, strawmen and threats. You may wade through many racist and sexist comments before you find something that is truly valuable information, and even then it may be tainted with aggression. In contrast, Steemit's comments sections seem like a desert oasis - all but filled with calm discussion, respect, insight, or at the very least, positivity. Surely, this is a place where one can have a constructive conversation about controversial topics.\n## The incentive to be good\nI have noticed over these few short months, the way that Steemit has changed the way that I interact with people, especially online - on Steemit and other social networks. I've found myself a few times, even as I'm about to make a statement which is mildly passive-aggressive, thinking \"Hold on - is this something I would write if my reputation were on the line? If not, maybe I shouldn't write it.\" Even when I'm going to give someone some piercing criticism, which, if presented in the wrong way, may seem a condemnation, I can find ways to demonstrate empathy, such as compliments or other niceties.\n\nIt may sound like an unfortunate description of humanity (or of myself) to say it, but when our bank balances and reputations are on the line in every moment, we can find ways to communicate more kindly, and therefore, more fluidly, with the people we interact with.\n## Commitment and consistency\nIn Cialdini's famous and excellent book, [Influence: The psychology of persuasion](http://amzn.to/2c5z38T) he describes how, when people make a commitment to something, they are more likely to see it as part of their identity, and strive to live up to that identity.\n\nWhen people are kind to each other, respectful, and even open-minded on Steemit, it's not just that they're pretending to be nice. By acting nicer, they become nicer. By acting more open-minded, they become more open-minded.\n## The quality of our ideas\nIf the ideas of voluntaryism are as good as we believe they are, then surely a place like Steemit, where people are strongly encouraged to be respectful, considerate, empathetic and even open-minded, would be an ideal place to discuss them. If it turns out that our ideas are not as good as we think they are, then it gives us the perfect medium to discover something even better. That is beautiful.\n# Tax-free and shameless\n![breakchains10ab9.png](https://www.steemimg.com/images/2016/09/06/breakchains10ab9.png)\nIn many developed countries, taxes are generally seen as legitimate and necessary, and people claim to be proud of paying their taxes - sometimes because they truly believe it, and sometimes because they don't want to face the fact that they have been forced into an elaborate con, from which they have no apparent escape.\u007f\n\nBut what if they did have an escape? What if, instead of being paid as an employee, having their income taxes automatically deducted from their pay, they were paid directly. What if thousands or millions of people were making income, or making a living, this way, and decided to openly flout the tax authority, publicly, knowing that it wouldn't have the resources to pursue any more than a small fraction of the cases?\n\nObviously, that would damage the appearance of legitimacy of the state, and also the perception of omniscience and omnipotence that its proponents tend to ascribe to it.\n# Development of cryptoanarchic solutions\n>\"Unlike the communities traditionally associated with the word 'anarchy', in a crypto-anarchy the government is not temporarily destroyed but permanently forbidden and permanently unnecessary. It\u2019s a community where the threat of violence is impotent because violence is impossible, and violence is impossible because its participants cannot be linked to their true names or physical locations.\"\n> - Wei Dai\n\nWe all know that Steemit/Steem is much more accessible than virtually any other cryptocurrency, being based around a style of platform which more than one billion people are already familiar with. That's pretty cool, and that means that more money will flow into cryptocurrency, meaning more attention, and thus even more development for similar technologies.\n\nMore development in cryptocurrency means more methods to control money, and other forms of information, publicly, privately, or anonymously, without governments being able to do anything about it.\n# Conclusion\nSteemit is an important step, a continuation of the snowball effect of cryptocurrency, leading us to a voluntary, cryptoanarchic future, full of wonders we have not yet imagined, and degrees of freedom as yet unforeseeable. Boldly we take our pens, pads, keyboards and wallets, building a highway to a world where concepts are our language and our tools, but never our weapons, where the purity of ideas is worth fighting for, but never worth fighting with.\n\n---\n\n# About me\n\n[![kurt robinson in the mountains of puebla](https://www.steemimg.com/images/2016/08/26/pictureofmecroppedbdb8d.md.jpg)](https://www.steemimg.com/image/gsqzK)\n\nMy name is Kurt Robinson. I grew up in Australia, but now I live in Guadalajara, Jalisco. I write interesting things about voluntaryism, futurism, science fiction, travelling Latin America, and psychedelics. Remember to press follow so you can stay up to date with all the cool shit I post, and follow our podcast where we talk about crazy ideas for open-minded people, here: @paradise-paradox, and like us on Facebook here - [The Paradise Paradox](https://www.facebook.com/theparadiseparadox/)\n\n# Some other cool posts\n\nHere are some other posts of mine to check out:\n\n[Freedom seekers' song: \"Freedom on the beach (To Acapulco Part 2)\"](https://steemit.com/music/@churdtzu/freedom-seekers-song-freedom-on-the-beach-to-acapulco-part-2)\n\n[Everyone deserves truth; everyone deserves compassion](https://steemit.com/life/@churdtzu/everyone-deserves-truth-everyone-deserves-compassion)\n\n[Impossible! A conversation with a statist about starting a business](https://steemit.com/anarchism/@churdtzu/impossible-a-conversation-with-a-statist-about-starting-a-business)\n\n[Freedom trumps fear: Everything you do is an act of liberty](https://steemit.com/freedom/@churdtzu/freedom-trumps-fear-everything-you-do-is-an-act-of-liberty)",
+    "body_length": 8141,
+    "cashout_time": "2016-10-08T00:37:00",
+    "category": "steemit",
+    "children": 28,
+    "created": "2016-09-06T22:36:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"anarchism\",\"anarchy\",\"bitcoin\",\"blockchain\"],\"users\":[\"paradise-paradox\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/jumpingpeoplesteemitanarchyfaba6.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/argument288ba5.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/06\\/breakchains10ab9.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/26\\/pictureofmecroppedbdb8d.md.jpg\"],\"links\":[\"http:\\/\\/amzn.to\\/2c5z38T\",\"https:\\/\\/www.steemimg.com\\/image\\/gsqzK\",\"https:\\/\\/www.facebook.com\\/theparadiseparadox\\/\",\"https:\\/\\/steemit.com\\/music\\/@churdtzu\\/freedom-seekers-song-freedom-on-the-beach-to-acapulco-part-2\",\"https:\\/\\/steemit.com\\/life\\/@churdtzu\\/everyone-deserves-truth-everyone-deserves-compassion\",\"https:\\/\\/steemit.com\\/anarchism\\/@churdtzu\\/impossible-a-conversation-with-a-statist-about-starting-a-business\",\"https:\\/\\/steemit.com\\/freedom\\/@churdtzu\\/freedom-trumps-fear-everything-you-do-is-an-act-of-liberty\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T22:50:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60135241680958,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "311.891 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-will-make-the-world-an-anarchic-voluntary-society",
+    "post_id": 876880,
+    "promoted": "101.100 HBD",
+    "replies": [],
+    "root_title": "Steemit will make the world an anarchic, voluntary society",
+    "title": "Steemit will make the world an anarchic, voluntary society",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@churdtzu/steemit-will-make-the-world-an-anarchic-voluntary-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "636650937593",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2222223261106",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6354361142613",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3100095944",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3763655895",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690429176",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54156746043",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661372715",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213687824",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4512972751283",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "114482134346",
+        "voter": "smooth.witness"
+      },
+      {
+        "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"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96966639395",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432524983",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204696463721",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48813685424",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "86347513299",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54492837940",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320412905",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15188383397",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37017484438",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9003560871",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254384994",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299816166",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503443057",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39260815990",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7734375234",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "12077024248",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6340430376",
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7012331246",
+        "voter": "lukmarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3689933012",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "439152462157",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46397054584",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "7646986289",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "102612381504",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3840496066",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1153305624",
+        "voter": "mama-steem"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "21261822926",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "604216404",
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "52782383311",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4437884870",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43344608886",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3574511545",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4827568973",
+        "voter": "melek"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "235453627",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624346748",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72642145",
+        "voter": "discernente"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61202454",
+        "voter": "plotbot2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74117002",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52111731",
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249534502",
+        "voter": "letstalkliberty"
+      }
+    ],
+    "author": "claudiop63",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Diamond_cutter._Amsterdam._2012.jpg/517px-Diamond_cutter._Amsterdam._2012.jpg\" width=\"517\" height=\"480\"/></p>\n<p><a href=\"https://commons.wikimedia.org/wiki/File:Diamond_cutter._Amsterdam._2012.jpg\">Image Credit</a></p>\n<p>&nbsp;This post is based on a presentation I gave at the United Nations' Office in Geneva in 2011, available <a href=\"http://fr.slideshare.net/claudioparrinello/semantic-knowledge-management-and-technology-transfer\">here</a>.&nbsp;&nbsp;&nbsp;</p>\n<p>Most successful and innovative&nbsp;organizations worldwide&nbsp;are knowledge-intensive organizations. Professional knowledge, in particular technical know-how, is a key asset for such organizations as their success depends to a large extent on their ability to create, manage and transfer knowledge efficiently. Let us call this process <strong>knowledge valorisation.</strong> &nbsp;</p>\n<p>I review below some of the key enablers of knowledge valorisation&nbsp;by sketching a sort of road map.&nbsp;</p>\n<h1>Step 1</h1>\n<p>&nbsp;The first step shown below&nbsp;might look trivial, but I believe that most organizations (in particular those which are in the process of restructuring, M&amp;A, etc)&nbsp;might find it worthwhile.&nbsp;</p>\n<p><img src=\"https://s17.postimg.org/ueoc9n77j/road.png\" width=\"959\" height=\"545\"/></p>\n<p>In other words,&nbsp;the first challenge is to make sure that knowledge is properly tracked and stored, especially if the organization is very large.&nbsp; If knowledge turns out to be mostly in <strong>implicit</strong> form, the organization runs a significant risk to lose knowledge and performance as a result of staff turnover, as when the key people leave or retire, nobody may be able to run some critical processes. In addition, as implicit knowledge is difficult to share, if explicit knowledge on key processes is not available, it is difficult for new recruits to become quickly operational. &nbsp;</p>\n<h1><strong>Step 2</strong>&nbsp;</h1>\n<p>If a large body of documents spanning the organizational knowledge landscape is available in electronic format, it is appropriate to set up and use a formal knowledge classification scheme. The most powerful approach to knowledge classification, following the principles of semantics, is based on two components: &nbsp;</p>\n<ul>\n  <li><strong>Taxonomies</strong>, i.e. multi-level, tree-like classification frameworks. An example of a comprehensive, well-known taxonomy is Linnaeus\u2019 classification scheme for nature as divided into three kingdoms: mineral, vegetable and animal. Linnaeus used five levels: class, order, genus, species, and variety.&nbsp;Advanced knowledge management might call for the definition of multiple taxonomies, as shown in the example below. &nbsp;</li>\n</ul>\n<p><br></p>\n<ul>\n  <li><strong>Classification rules</strong>, i.e. a set of criteria to place each document in one (or more) positions in the taxonomy. Rules are typically based on specific properties of the document. Simple classification rules are based on keywords and other metadata, e.g. if a document has \u201cJava\u201d as a keyword, it is likely to be classified under a \u201ccomputer science\u201d branch of a technological taxonomy. &nbsp;</li>\n</ul>\n<p>The above elements, taken as a whole constitute an <strong>ontology</strong>, i.e. a detailed, potentially exhaustive description of a knowledge domain in terms of a collection of data records, together with their metadata/attributes, organized and classified in one or more taxonomy-based \u201ccatalogues\u201d. &nbsp;</p>\n<p><img src=\"https://s13.postimg.org/jbvf5lv93/semantics.png\" width=\"1006\" height=\"522\"/></p>\n<p>&nbsp;The pictures above refer to&nbsp;an ontology which is relevant to a public research organization which regards technology transfer as part of its mission.&nbsp;Such organizations feel strong pressure by their funding bodies to demonstrate the positive socio-economic impact of public research on society through concrete examples. In order to meet such demands, they must define and implement a proactive and cost-effective Knowledge &amp; Technology Transfer (KTT) strategy. Then it is essential that all the knowledge assets in the organization are identified (technologies, general know-how, training capabilities) and as many KTT channels (licensing of intellectual property, joint R&amp;D with industry, training, people mobility \u2026) as possible are enabled. &nbsp;</p>\n<h1><strong>Step 3</strong>&nbsp;</h1>\n<p>At this point, a classification engine is used:&nbsp;</p>\n<p><img src=\"https://s15.postimg.org/fk988pp6j/classify.png\" width=\"971\" height=\"558\"/></p>\n<p>&nbsp;The ultimate deliverable is a context-sensitive, searchable knowledge catalogue&nbsp; &nbsp;</p>\n<p><br></p>\n<p><img src=\"https://s22.postimg.org/w8zb4dy35/catalogue.png\" width=\"1065\" height=\"616\"/></p>\n<p>&nbsp;</p>\n<h1><strong>Informal Summary</strong>&nbsp;</h1>\n<p>All the tools described above aim at avoiding that in a large organization people reinvent the wheel all the time, just out of lack of knowledge of what their colleagues are working/have worked on. &nbsp;</p>\n<p>Moreover, using the wheel analogy: if you are into technology transfer, such tools will help&nbsp;you show your \"wheel\" outside your organization and identify whoever could use it to make an innovative car!&nbsp;</p>\n<p>Please note that some older comments to this post refer to (very different) content which has now been removed. Please disregard them.&nbsp;&nbsp;</p>\n</html>",
+    "body_length": 5526,
+    "cashout_time": "2016-10-02T23:02:57",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-01T22:28:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"science\",\"techreview\",\"knowledge-management\",\"tech-transfer\"],\"image\":[\"https:\\/\\/upload.wikimedia.org\\/wikipedia\\/commons\\/thumb\\/3\\/31\\/Diamond_cutter._Amsterdam._2012.jpg\\/517px-Diamond_cutter._Amsterdam._2012.jpg\",\"https:\\/\\/s17.postimg.org\\/ueoc9n77j\\/road.png\",\"https:\\/\\/s13.postimg.org\\/jbvf5lv93\\/semantics.png\",\"https:\\/\\/s15.postimg.org\\/fk988pp6j\\/classify.png\",\"https:\\/\\/s22.postimg.org\\/w8zb4dy35\\/catalogue.png\"],\"links\":[\"https:\\/\\/commons.wikimedia.org\\/wiki\\/File:Diamond_cutter._Amsterdam._2012.jpg\",\"http:\\/\\/fr.slideshare.net\\/claudioparrinello\\/semantic-knowledge-management-and-technology-transfer\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T12:21:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15273611827178,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "28.714 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steembets-bet-for-free-by-upvoting-and-win-steem-dollars-inauguration-bet-clinton-vs-trump",
+    "post_id": 828794,
+    "promoted": "101.010 HBD",
+    "replies": [],
+    "root_title": "A Road Map to Knowledge Valorization.",
+    "title": "A Road Map to Knowledge Valorization.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@claudiop63/steembets-bet-for-free-by-upvoting-and-win-steem-dollars-inauguration-bet-clinton-vs-trump"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17252532938558",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "563544646717",
+        "voter": "barrie"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6315235154015",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347118013623",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2030615881329",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1362045275157",
+        "voter": "moment"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74794629682",
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18199948682777",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5132668112897",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3158922122495",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2013866692939",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452138762783",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122063056602",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5549073747882",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1130543463912",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1078421331456",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973319882060",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "317991297021",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4390790041307",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104099771",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1703029168107",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768755382",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684005121",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54832970366",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663301832",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213794688",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1761824676683",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77621760528",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419831065181",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525849575920",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2729895305560",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1388728405",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108221038447",
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "856088750266",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115621134894",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2105322267",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1167734251538",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "930994265690",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29435510701",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10313567606",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74144086470",
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624994115",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "4400",
+        "reputation": 0,
+        "rshares": "11954581297",
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973117194",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7857031052",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "9800",
+        "reputation": 0,
+        "rshares": "22930428594",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821520527371",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45098187494",
+        "voter": "steem-samiam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288353305",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23782884498",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23508133721",
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156356235250",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1665762057",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13943466836",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9981237712",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80544628435",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79788923294",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9309121573",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2917439250",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60077820020",
+        "voter": "lovelace"
+      },
+      {
+        "percent": "7681",
+        "reputation": 0,
+        "rshares": "433286620876",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18188509022",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447093363",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5012814614",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29025548799",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "51511112084",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26767597085",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23926167464",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11007893154",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713096374287",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "600",
+        "reputation": 0,
+        "rshares": "1214499527",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142837633946",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7603057313",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47384537807",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32873370739",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210251560697",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446299268",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65065948062",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "634222963816",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6615030220",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2316584245",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39904848284",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "989996166543",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58352742195",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35110203447",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8443022788",
+        "voter": "badger311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8738727767",
+        "voter": "badger313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8702230036",
+        "voter": "badger312"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9001297583",
+        "voter": "badger316"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9123216648",
+        "voter": "badger319"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9030881970",
+        "voter": "badger3101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8483805402",
+        "voter": "badger3111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9045984338",
+        "voter": "badger3121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8654403079",
+        "voter": "badger3131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8762447633",
+        "voter": "badger3141"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8738856222",
+        "voter": "badger3171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8546274352",
+        "voter": "badger3181"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9132638993",
+        "voter": "badger3191"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8546111243",
+        "voter": "badger3112"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8887325560",
+        "voter": "badger3132"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8760496163",
+        "voter": "badger3162"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8991568485",
+        "voter": "badger3113"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8642210535",
+        "voter": "badger3123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8766005376",
+        "voter": "badger3133"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9117652407",
+        "voter": "badger3153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8796092252",
+        "voter": "badger3163"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8826632166",
+        "voter": "badger3193"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8776220485",
+        "voter": "badger3114"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8685065534",
+        "voter": "badger3124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8587877805",
+        "voter": "badger3144"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8509649715",
+        "voter": "badger3154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8376968178",
+        "voter": "badger3164"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8709012551",
+        "voter": "badger3174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8989471544",
+        "voter": "badger3194"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8885761375",
+        "voter": "badger3105"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8829258163",
+        "voter": "badger3135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8423190788",
+        "voter": "badger3145"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9007115204",
+        "voter": "badger3155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8699822976",
+        "voter": "badger3175"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8475866437",
+        "voter": "badger3195"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8117642153",
+        "voter": "badger3106"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8936995703",
+        "voter": "badger3116"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8984990351",
+        "voter": "badger3126"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8611633869",
+        "voter": "badger3136"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8257944656",
+        "voter": "badger3146"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8489790477",
+        "voter": "badger3156"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8705807126",
+        "voter": "badger3166"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8620566580",
+        "voter": "badger3176"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8755292907",
+        "voter": "badger3186"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8791096935",
+        "voter": "badger3196"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8718533747",
+        "voter": "badger3107"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8470685116",
+        "voter": "badger315"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8967138703",
+        "voter": "badger318"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9016793543",
+        "voter": "badger3151"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8688906443",
+        "voter": "badger3161"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8948374029",
+        "voter": "badger3122"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8885133976",
+        "voter": "badger3142"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9108283408",
+        "voter": "badger3152"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8410991139",
+        "voter": "badger3172"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8924725447",
+        "voter": "badger3182"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8679951369",
+        "voter": "badger3192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8594490108",
+        "voter": "badger3143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8857724326",
+        "voter": "badger3173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8564073808",
+        "voter": "badger3104"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8275966513",
+        "voter": "badger3134"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8683148373",
+        "voter": "badger3184"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8620185227",
+        "voter": "badger3115"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9093630617",
+        "voter": "badger3165"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8719257308",
+        "voter": "badger3185"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8781270592",
+        "voter": "badger314"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9015963430",
+        "voter": "badger317"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8754170130",
+        "voter": "badger3102"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8715598583",
+        "voter": "badger3103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8642543556",
+        "voter": "badger3125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8608651698",
+        "voter": "badger3183"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3763646381067",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36046509876",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348982422",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370569600141",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54767511884",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53269273621",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209092851311",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354361794480",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78424941158",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31280996795",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "65197303116",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191479703088",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5664514968",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5615273302",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104818069176",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198642563544",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45230308604",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65999119522",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2248678065",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484274771",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17553722653",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166076560580",
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259043859301",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4681431941",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86510715978",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19423192668",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3030270280",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400966190394",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25016204342",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6929637554",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "439636157",
+        "voter": "kevindetreville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27793386253",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55885606243",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "723038245",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "439350376",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474968055",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "451813345",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1410590580557",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1211684689",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16639042839",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4630627643",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11261506552",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207386074024",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32300012796",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17025297072",
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2319671143",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451642041",
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3319276861",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25460531811",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11383490141",
+        "voter": "pablox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398034717",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242744796",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334006173068",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14364948465",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33639885970",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391368491",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11811714291",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20012517255",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42112607012",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33852058607",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89569037",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5685679532",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12942070229",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2696617320",
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22153382159",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2552794240",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "307757751744",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2727436517",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2745487317",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200869173",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165693192350",
+        "voter": "gabbans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3572057744",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23775123893",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36882567360",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89813747359",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161375754014",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14736639309",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3576728200",
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17601936013",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780190949",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21537531300",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13752659940",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614667524",
+        "voter": "curator"
+      },
+      {
+        "percent": "8200",
+        "reputation": 0,
+        "rshares": "2870180302",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30059788973",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1596140305",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2727754330",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485033626",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454860590",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2624223649",
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121759228",
+        "voter": "sazbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38412629886",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3695837170",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13394934034",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152942524",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843609166",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8813780350",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3047151322",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5213738136",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125370043554",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075235976",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4546480722",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "6900",
+        "reputation": 0,
+        "rshares": "45907939906",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6952211747",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5294811148",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61911147",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61714352",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1013075640820",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14888335610",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8107058910",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23400822736",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23911327544",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23919974845",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24510986824",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37769139083",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5173147926",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238503886159",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588461921530",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27629927141",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8921988905",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62472234",
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "7752",
+        "reputation": 0,
+        "rshares": "11461897501",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52698903911",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3898490945",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3334161508",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23915896370",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23914376448",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23911757517",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23908878849",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1875150048",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23905113215",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23903642189",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117128230821",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20173385112",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92960462722",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5427321003",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61261066",
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1171268133",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58773515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4122573976",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "318643015",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72629533",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62173784",
+        "voter": "clarissa1994"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63271446",
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69485065",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62188234",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58467607",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28304654029",
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41103504553",
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3580186356",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61746903",
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1580029996",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56682205",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283235546",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8307326565",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56535984",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71241819",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27199865099",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63118959",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84277779404",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53638070",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209436170",
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57405835",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "545451614",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310811927",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "1451684469",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9317330986",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1556041697",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56598010",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56591855",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "626888257495",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1443151504",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59750246",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4479862265",
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195160565",
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13247070006",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "925594033",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55414210",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55396880",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406673",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387660",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3728859219",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8480971863",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7423407511",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23897322847",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63837413",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2680828708",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65821995450",
+        "voter": "justinlaak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76937378345",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47338695487",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21806631879",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1699561647",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53437036902",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2349339281",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60157039",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53853911",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236254009",
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565688",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58000712",
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1841770571",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8573074284",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4848459038",
+        "voter": "englishtchrivy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1807478779",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25628967648",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60418402",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55546978",
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2011662877",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65997918",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14206144526",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2439186312",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2077581159",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23544130242",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961187",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41415380854",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1581775775",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53966805",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55768488",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55709351",
+        "voter": "misscathy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "18052253827",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14836422309",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3697930196",
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53252658",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52077150",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85083750",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65372788",
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56042508",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5414296170",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646077790",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1210270353",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "793170907",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4264779052",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51465774",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112543619",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54523663",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52242652",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230725",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287913287",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25313560101",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2550877074",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51922012",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227735119",
+        "voter": "irininich"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "2165334759",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337067509",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71464098",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "352780841414",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54084259617",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "13532116930",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341116913",
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1359710881",
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3134996274",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50933404",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5059183261",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100628450",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209715303",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5312185929",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4759548989",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1953000600",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2287432998",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9299091881",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52882252",
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20142442639",
+        "voter": "storyseeker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454901",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468757",
+        "voter": "zees"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50980153",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50326986",
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1430783777",
+        "voter": "dakini-dion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039951271",
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4591083065",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50602980",
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50211016",
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1145435510",
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52724271",
+        "voter": "s0lo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50907857",
+        "voter": "oxygen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1049562163",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50865840",
+        "voter": "sting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452005898",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50572441",
+        "voter": "unilever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50565798",
+        "voter": "penthouse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98761775",
+        "voter": "dovepeacelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50664711",
+        "voter": "buckland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52278600",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7743755308",
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239968899",
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3517432636",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510694927",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76019801",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35493215038",
+        "voter": "abdullar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1256840918",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157689742",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161446234",
+        "voter": "yasiin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146096965",
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162904624",
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165306997",
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159762514",
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162227319",
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149641144",
+        "voter": "michaelstobiersk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158655277",
+        "voter": "kjsxj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161700361",
+        "voter": "shadowcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161218747",
+        "voter": "sdc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157816798",
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160870736",
+        "voter": "electronicarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157706877",
+        "voter": "cybergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151363355",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160649364",
+        "voter": "trevorlyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158860455",
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157182398",
+        "voter": "planet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150675328",
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156882242",
+        "voter": "dontbenormal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50161010",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159539963",
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159425365",
+        "voter": "tipsandtricks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159352476",
+        "voter": "panic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159318360",
+        "voter": "stimmt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146775786",
+        "voter": "zaidkhalifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159121147",
+        "voter": "noah.trader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149732389",
+        "voter": "gopher75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155945743",
+        "voter": "lenny1220"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159061028",
+        "voter": "dragonfruit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152792898",
+        "voter": "blackheart304"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146443049",
+        "voter": "steemit2670"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146428143",
+        "voter": "anysound.studio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158627191",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158621293",
+        "voter": "bfem44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152318749",
+        "voter": "apolymask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158526983",
+        "voter": "oghenetony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149129648",
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158259107",
+        "voter": "zedsdead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158236061",
+        "voter": "paulohenry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158229557",
+        "voter": "pac3mak3r"
+      }
+    ],
+    "author": "calaber24p",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Revamping Curation Is The Way To Increase Steem Power Demand\n\nIf you haven\u2019t been living under a rock, for the past month or so, it has been quite clear that the price of Steem has been rapidly falling. Although before the run up to $4 was most likely in a bubble and the system is in no danger of failing, as it has worked at this price before, I still believe there is a long term solution that needs to be found to fix this problem. Ned made a post yesterday talking about ideas he had, which mostly, in my opinion focused on lowering the supply entering the market, but this is only a symptom of the problem. My solution although a bit drastic addresses the problem which is a lack of incentive to purchase Steem and power up. \n\nhttp://www.chicagoartistsresource.org/sites/chicagoartistsresource.org/files/curator_1.jpg\n\nTo begin, what are the incentives now? Well the main incentive is having weight while voting, as well as getting a daily return on the Steem Power you have in the system. These might seem like adequate incentives in theory, but in practice I think we are seeing something very different. The problem right now is even with the daily interest we are getting on our Steem Power, we have still been losing money due to the price drops. The interest, which is supposed to act like inflation protection, is actually doing nothing because as long as the price is falling, people are not going to want to move their Steem dollars or Steem into Steem Power. We need to give a greater incentive to hold and purchase Steem Power that will benefit us as a community in the long run. Sure we can wait for the price to fall and have people cash out and make it cheaper to enter the system, but this still doesn\u2019t address the underlying problem.\n\nSo what is my solution? I strongly believe we need to move the payout split to 50:50 between authors and curators from the current 75:25 it is at. I know this will be controversial, especially because many authors today, INCLUDING MYSELF, are making essentially a living off the site, but ultimately it comes down to what is best for the community. We need to look at who is adding more value to the site, the authors or the curators. Depending on who you ask their answer might be different, but in my opinion both are equally as important. One cannot survive without the other and the payouts should reflect that.\n\nhttps://steemit.com/images/steemit-share.png\n\nCurating is supposed to be a heavy incentive for people to enter the system, but the earnings from it are subpar at best. For example, I have 20,000 Steem Power and my average earnings per day is around 6 Steem Power. That means my daily return on investment is .03% a day and only around 11% a year and that is with a pretty profitable curating strategy. Sure it will technically come out to a bit higher than 11% due to compounding but it still won\u2019t make that much of a difference. A huge selling point to me was that if you choose to curate rather than create content you will also be able to earn a sufficient amount, but no one is going to put 20,000 Steem into Steem Power that they would have to wait 2 years to pull out if the reward of waiting is not sufficient enough. Selling Steemit as a platform where the users who upvote the content are equally as valuable as the users who create the content makes users actually want to buy Steem and convert it into Steem Power. \n\nWe should not focus on slowing down the supply that enters the market, but rather retaining and creating new users that will become active daily. Once people have upvotes that actually mean something we will see people flock to the system. Rather than just browsing reddit and upvoting, with no return, they would have a much better experience here. The majority of the people on the site are not authors but lurkers or readers and we need to cater specifically to that crowd because they will end up as the masses, should more come. Authors deserve to be paid for their work but the percentage of money that goes to payouts is a lot. \n\n\nhttp://www.firebellymarketing.com/wp-content/uploads/2011/10/building-community-Firebelly-570x467.jpg\n\nLike I stated before, I have been very successful and Steemit which is why I want to cut down my rewards, because if we continue in the direction we are currently going, it will become a race to the bottom , at which point everyone will leave. I strongly believe that splitting the curation rewards and author rewards equally can benefit the demand for Steem power in the long run and cause a higher amount of user retention within the system. \n\n-Calaber24p",
+    "body_length": 4602,
+    "cashout_time": "2016-10-10T00:44:06",
+    "category": "steemit",
+    "children": 157,
+    "created": "2016-09-08T19:45:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"money\",\"community\",\"curation\"],\"image\":[\"http:\\/\\/www.chicagoartistsresource.org\\/sites\\/chicagoartistsresource.org\\/files\\/curator_1.jpg\",\"https:\\/\\/steemit.com\\/images\\/steemit-share.png\",\"http:\\/\\/www.firebellymarketing.com\\/wp-content\\/uploads\\/2011\\/10\\/building-community-Firebelly-570x467.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T19:45:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 101222153785235,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "945.742 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "revamping-curation-is-the-way-to-increase-steem-power-demand",
+    "post_id": 895482,
+    "promoted": "101.000 HBD",
+    "replies": [],
+    "root_title": "Revamping Curation Is The Way To Increase Steem Power Demand",
+    "title": "Revamping Curation Is The Way To Increase Steem Power Demand",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "642721549946",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14422749876087",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3575373896498",
+        "voter": "excalibur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7464607221397",
+        "voter": "firstclass"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3639191953732",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1669923224095",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3717974185",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213574639759",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513559168",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836606639",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6988007861700",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5996727817604",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64642495505",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992560012",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256364536",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39818841412",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371954710239",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2460761021349",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16151007755",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15367378869",
+        "voter": "lee5"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "1231163835379",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79076699259",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451819636",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747109758",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160364064",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22287691419",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348774027722",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345721003",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24424815444",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9962447624",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85472012036",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47052482880",
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51668605167",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3208539412",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14777664032",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13421601084",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550131611031",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8054401464",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11394690603",
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485282260",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5697146207",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638584817",
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38099821345",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320314797075",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9264258149",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10412058674",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "659470671268",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262097263544",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3586538842",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3736219522",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56755039638",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226277413706",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1105470146",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73899745411",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787734654",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3085996565",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299422990503",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "555763114",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61230816598",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244194157676",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9343888042",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24793132900",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4213953082",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501194922",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361800166976",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310003040",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9062015039",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13825920793",
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379034832",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49609829871",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100887290594",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67218157738",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168781926859",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4444948583",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9215212832",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207639750909",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72775359846",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135534940490",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649863857",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2070185449",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151313598203",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270287220",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189534597524",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5593332072",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107979574982",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4132934549",
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245565399746",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4972308003",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26691657968",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32317449277",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12407406735",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6731496155",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8077166192",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1061763080",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2000840823",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8698490005",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7061836326",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58024990300",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12820190462",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5944808360",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234977975",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53277444047",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5630151895",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38998653626",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3135864378",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4805051818",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25329895988",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122037864807",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5942450964",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1399449402",
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132989014669",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9678069378",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "653051005053",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1558901402",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69645935778",
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8348978059",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68835084756",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12165310382",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658969843140",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3016989385",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "213566804",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "195795730",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12433580012",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127921982448",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1088582281",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27989665079",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5235602369",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393022921",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470865927",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4326102127",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13785486061",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11255732354",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4664449459",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103415609409",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38979052441",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9855694815",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483030862",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4401948859",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7769709545",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52805276639",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28292287957",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13726024129",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3664108103",
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247320271",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10404996383",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2265421279",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421650464",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11687972825",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10504748862",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16957784324",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43955087155",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39380899533",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14477258419",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3802303915",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5603336399",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3857990313",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "608149252",
+        "voter": "ltndd1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13799232019",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12201911383",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2418631221",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37544436861",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2375612859",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19954745854",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1432554908",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58632057805",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6951568553",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60733709",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13480328466",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77066217",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3140171089",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24333845376",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "575306930",
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4496265875",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19650090910",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8983200296",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66906230856",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203502299985",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1073667948",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1015996473375",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27385580346",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "12217525826",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1696363424",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255227790",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255610425",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147899496",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148734861",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84798583",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "701002863",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5508463953",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203439098227",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951657512",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841171661",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20112172284",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22963130568",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35578875588",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8206970252",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18436436380",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574079280",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1365471076",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412577837",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221284317",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77551309",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5923617216",
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6184990126",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129066659",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27072053846",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18648831056",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238861651541",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1318009421",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2388216457",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26544745435",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28261072116",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1150395178",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9217169586",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37382286273",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14952644998",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3863422357",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53473560",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22837595162",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2590447050",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14437396418",
+        "voter": "artist1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20733647424",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12921898525",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32699512403",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3732561387",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1112917083",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636463375",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1964111181",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7190118987",
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15890354633",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111083493",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233570693",
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452879496",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2442169380",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62218938",
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6640826883",
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49201150707",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53884258",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773487823",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11166998088",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3299401993",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7832829923",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71551789",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4540723045",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3362202338",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375929648",
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27312396571",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2209169349",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85721943459",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6982744040",
+        "voter": "bitminter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54969817",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6089195575",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1719224371",
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10519914536",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75911873",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20118440636",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61302506",
+        "voter": "ignat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5584741517",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62279229",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8034296271",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106783648",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121845327",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2309373844",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "771632829",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89747247797",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438819769",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941499119",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58571448",
+        "voter": "isaacmorgentaler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368407925",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62312186",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19465520550",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24299155176",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12663340608",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8098231266",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13767766871",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1770994317",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58744201",
+        "voter": "myfriends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239974453639",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231798813",
+        "voter": "blue1950"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2313482861",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58875692",
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8826238500",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624200855",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56716182",
+        "voter": "sammie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54424511",
+        "voter": "matt525"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4007339571",
+        "voter": "asuran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18209474827",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69826982",
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1583451185",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36471501608",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55660383",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12993402861",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56017401",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230031117",
+        "voter": "rebelmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3947043569",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89846801",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5465873870",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2241938484",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413377157",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53942218",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79722988",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3311264992",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69606440",
+        "voter": "bmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56547885",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97810726",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24760371336",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860573886",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2577157447",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4592050223",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232285326",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4494562067",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91630309",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50210263",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379994386",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37096549717",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51524412",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52676609",
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1774661835",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1643965133",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5812421354",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3041925009",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2489010152",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50460250",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439002",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50436594",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56387357",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "791391648",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25501132189",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1455020482",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1967797933",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2869000034",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008239952",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50565379",
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50357208",
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52411214",
+        "voter": "mr189"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53215131",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55523890",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52098977",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4619546516",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50431113",
+        "voter": "stringer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245473",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51250081",
+        "voter": "steemjustice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50420952",
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50299690",
+        "voter": "blakeir"
+      }
+    ],
+    "author": "jesta",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "For the time being, DO NOT promote a post that's past it's first payout phase. \n\nI've [opened an issue on github](https://github.com/steemit/steemit.com/issues/199) about the issue and hopefully we'll see a resolution soon.\n\nCurrently you can promote any post, even those past the first payout phase. The problem is that if it's in it's second payout phase or beyond, as soon as someone votes on the post, the promoted status gets completely removed. \n\nI'm putting this message out there to hopefully help avoid any potential frustration this issue may cause.",
+    "body_length": 559,
+    "cashout_time": "2016-09-30T04:45:45",
+    "category": "steemit",
+    "children": 78,
+    "created": "2016-08-30T02:57:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https:\\/\\/github.com\\/steemit\\/steemit.com\\/issues\\/199\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T03:23:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60433265388165,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "396.437 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out",
+    "post_id": 796890,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@jesta/psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29150477200511",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "701289384385",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25414633165852",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7174019152101",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210082807921",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1764791171902",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624152304261",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4648685890081",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6351970742614",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099420761",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762775739",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697355955",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7188761077812",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481370244096",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54042459354",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32970728002",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425105452508",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26810306273",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661039186",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213669926",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38923095598",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64581427225",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15818603292",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398943529648",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2463177709510",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856507042",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9947524418",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2438952883",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452823187408",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622762084",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1120034999305",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967255526",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2771175740309",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839864397684",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136849931495",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65907216897",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6554332244",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288151719",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23957331951",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14107159251",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14365023000",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "881970618",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77103074369",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314721920304",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71043895599",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24175856122",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11709056510",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2945062368",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087651795909",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5074405568",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "829397963387",
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520911060129",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8059030205",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475449654",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "844668962218",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581844145",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19479953917",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26181526037",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056240258",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330922076737",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10610979162",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9268194915",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677773729537",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "928388769",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2557289360",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91719101598",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59225313172",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141414573060",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13116548685",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55582109386",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236099584762",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59558616330",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55235327891",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73982297699",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582588520898",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432017470",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7304641272",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25681264725",
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19944116455",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42338694092",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534614046975",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63018482318",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16492689268",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24310014144",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9361058328",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3674081134736",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372036035609",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6472724320",
+        "voter": "tom-sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371338569",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52893388475",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254528506273",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53001732751",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "90478643138",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12944835075",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54146897521",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199373714258",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9459589952",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266447843894",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501068247274",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327889281",
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1948772954",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2644116640",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138950405749",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "767974669228",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6009304227",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70959553359",
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98088341974",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269875655864",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44099614167",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6874971065",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28278082847",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8989505147",
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41629748060",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3660956268",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8702193878",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12845439804",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3475503565",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302683064",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199741557",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236520170145",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8561508638",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214476092245",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42481260342",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3112847393",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5856624277",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226933661994",
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15179347364",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122110321617",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124699737174",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15389739696",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20713322105",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "546797902965",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29887760404",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293427569",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230296351",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8721417924",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77587644053",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "476648200946",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3541453614",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "211552013",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "195806237",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823925676",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24638975246",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150447264693",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7172948519",
+        "voter": "ashikmiah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42831693849",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7726853303",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "812099979",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246668071",
+        "voter": "meiks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "919975933",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666787941",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5814827093",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013710280",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11280533352",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39456765083",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192958794775",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5305619945",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10678601154",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4185662810",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58809847081",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1396522137",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349307643",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293677046360",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11184349825",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4245765824",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369337292",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2875639977",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11249031580",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1140298026",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297463655",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2180799492",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15413678024",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19745928897",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4461061038",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939224933",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2992631645",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437754345",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37719378911",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25483068946",
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12396216231",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3409584558",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58723641585",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27478627702",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6880831700",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18787146710",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14042810323",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10048486235",
+        "voter": "tessaddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3145819717",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231654921805",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25046106508",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4647865096",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36117391359",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78635089731",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3476354385",
+        "voter": "mastletter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155789703",
+        "voter": "xand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203745188637",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016267553073",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26882316910",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "10192963847",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683543474",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255303484",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255686119",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147914638",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148750003",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84813726",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261379803",
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31846354099",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207787451268",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501806576",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5062409505",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112070311",
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951690317",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686451244",
+        "voter": "clonewarz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14847664684",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10761876132",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841259695",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20113867987",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7262356354",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217563709",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17534589350",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1793399910",
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618773038",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408950035",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219368610",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10855436202",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76805770",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2077025402",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117818134",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125682243",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "861558297",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456070989",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27752122387",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5449172599",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124605670789",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1023333164",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52633105216",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8765080527",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731831758",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5411545736",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46610922073",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14656318513",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52102443",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23337147272",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2595700392",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20215747355",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23051494572",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3801240661",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "482511907124",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4673772256",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9241877973",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34796180612",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2221730069",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3651315001",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2561315048",
+        "voter": "uuuhha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102188578929",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256407267931",
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1291393037",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12816228337",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94576187995",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3532206423",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57523014",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1694788518",
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687490845",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59458578",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52502611",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1228509011",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54355927",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436393958",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5653663246",
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273860901",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61293441",
+        "voter": "chrismarketing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234905614",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27919047116",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1636585181",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52405452",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11443509504",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117292449",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62391219",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7142895146",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72982892",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61874235",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1157125253",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37801320901",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2427660705",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20523010963",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "596060484",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288080558",
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6763113815",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296332739",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428185120",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3239749695",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2510434809",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59993245",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8646097362",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "301096603",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59226282",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70234608899",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39122184230",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73706708",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1779402721",
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10832852934",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7757948841",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12474263816",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1734880593",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "959083434",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "307241644",
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61576570",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258080185",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5110452751",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60364183",
+        "voter": "uri-bruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1241673056",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17764316625",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56761351",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74585233974",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55633002031",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14150272924",
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59103677",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74584024",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394178677",
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55140441",
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21483815812",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1713129061",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115141637",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37275195891",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15859669622",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57184430",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3725515516",
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5661463232",
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55473809",
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5854747574",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490887668",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16076822216",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82786113",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55725073",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58126364",
+        "voter": "chaeya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23191446542",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9370846764",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2759964885",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4840990082",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55093071",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53110243",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55070425",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117997260",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794249",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54036170",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108903782",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57522774",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70034816",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52521499",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242929782471",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68637522935",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37138701009",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54464024",
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53400199",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52041445",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130590614407",
+        "voter": "jamielefay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53143662",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2610482432",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1575506866",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142968891",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92282121",
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3022511117",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89109313",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4965019350",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50686168",
+        "voter": "jcdobber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50658555",
+        "voter": "dillon-sauers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50182215",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50817111",
+        "voter": "mehran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293689087",
+        "voter": "iontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50420952",
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249226300",
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1632559314",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61342952",
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154276916",
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155926994",
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![Alt text](http://cdn.dailyseoblog.com/wp-content/uploads/2015/11/Competition_SEO.jpg)\n\nNew competition is in town, here I said it. Many people don\u2019t like competition, some people fear it, some people get motivated by it, and some people see it as an opportunity that helps them step up to the next level.\n\nPersonally, I get the same emotional reflex from new competition than I get from any change of weather, it doesn\u2019t really faze me that much.  Long time ago I\u2019ve learned to open a new folder in my brain containing all the elements that I can\u2019t control, and the emergence of new competition certainly qualifies for that folder.\n\nAnd the reason I do that is because I think that the worst thing you possibly can do is to let your fear-based reactions make your decisions for you.\n\nAlthough to be totally honest with you, I\u2019d be an idiot if I told you to completely ignore competition and act as if doesn\u2019t don\u2019t exist. \n\nSometimes it\u2019s well worth your attention because it may show you something you\u2019ve missed, it may remind of why you do what you do in the first place, and depending on the competition, it can even help you improve and advance. \n\n![Alt Text](http://2.bp.blogspot.com/-jCsWg5lEM9w/To2MZ4wwQMI/AAAAAAAAI8Q/VNo2kdw4ot8/s640/Matrix_067Pyxurz.jpg)\n\nA few months ago a new disruptive technology came to the world. It allowed all sorts content creators to make some income doing what they love, all while bypassing the restrictive censorship of armies of gate keepers around the world. And since you\u2019re reading this, then you\u2019re probably using it too.\n\nBut here\u2019s the thing, when what you do is truly amazing, you can\u2019t really expect that no one else is going to try to replicate it. In fact, the strange thing would be that if no one was ever going to attempt to create \u201cthe new steemit\u201d.\n\nAfter all, competition is a part of life, and it\u2019s almost here so maybe it\u2019s time we talked about it.\n\n# Dancing with Mr. Ying and Miss Yang\n\nOn the positive side, competition can make us stronger and more connected. All those small debates and unnecessary dramas would suddenly take a back seat to more important matters. \n\nIt can motivate us to up our game and take it to the next level. It can encourage us to keep improving so we don\u2019t get too comfortable. It can help us realize what we have, and not take it for granted. \n\n![Alt Text](http://3.bp.blogspot.com/-TVDMaHEL61w/U1_ZuVFcttI/AAAAAAAAMvg/dt0wlqDLFWI/s1600/living+in+the+matrix.jpg)\n\nBut there's another way  to approach competition, the Yang way, where you can go to that room where you archive all those things that you can\u2019t control, head towards the door and kick it wide open. Just sit there and let fear invade you.\n\nI know this sounds crazy, but believe it or not, the second most common thing people do in face of competition is to fear it and let them rush into making unnecessary decisions. Now, I don\u2019t know about you but to me panic doesn\u2019t precisely strike me as a solid strategy.\n\nHowever, I do understand why some people might experience some concerns. *\"Look, there\u2019s a new competition, they have a brand new website, their logo looks so professionally made, their name is so catchy. Hell, they even have shiny shoes\u2026\"* \n\nFrom that point on, it will be just a matter of time until this question starts circling around: *What if people start pouring there?*\n\nI hate to break it to you, but these things can and will probably happen.\n\nA few steemians will move there and that\u2019s ok. In fact, that\u2019s very understandable, they will have their reasons. Maybe they go on their own, or maybe they will have an offer to join. \n\nSo when that happens, there are two things that you can do:\n\nYou can worry that people are migrating elsewhere, or you can remember the \u201csecret\u201d: That they will never stop making people. \n\nPlus, if that if the goal is expansion, then it\u2019s a comfort knowing that the journey hasn\u2019t changed and that we\u2019re still on the same course.\n\n# Destination Moon\n\nThat  are enough potential users in the planet for everyone, they will never stop making people, remember? \n\nPlus, if the dream was grow and reach hundreds of thousands, maybe millions of people, then nothing has really changed in the grand scheme of things. right?\n\nMaybe a few will leave and it\u2019s ok, maybe they\u2019ll come back quickly afterwards, maybe they won\u2019t or maybe this is a good opportunity to remember:\n\n## That moon we all talked about, our moon, is still the goal.\n\n![Alt Text](https://s9.postimg.io/ptqv6s6of/Untitled_design.png)\n\n*Picture dedicated to @smooth.  Thank you for the logo advice!*\n\n# A View from the Future\n\nSo in the future if you read some open letters from some prominent writers explaining why they moved away to the competition, so maybe we don't need to give these things more importance than they deserve.\n\nSometimes diversification is a smart move, sometimes people need to look for what\u2019s best for them, and sometimes they look for whatever they perceive as such. Whatever the case may be, it\u2019s still their choice and they are free to change their minds.\n\nAnd yes, we will probably read a few editorial posts about *\u201cWhy I left steemit for X\u201d* and maybe a little worry might circle your train of thought. \n\nMaybe their reasons are totally valid, or maybe they\u2019re unconsciously making up a story with which they can justify it to themselves. So all of the sudden every small problem is magnified and the grass on the other side looks greener. It happens.\n\nEither way, it\u2019s not our place to judge them.\n\nAnd yes, the preachers of doom will jump at the opportunity to parade their psychic abilities, *See? People are leaving steemit already. I told you!*, but when that happens please remember that we\u2019re talking about people who never let a good crisis go to waste. So whatever they say should probably be taken with a fine pure grain of Himalayan salt.\n\nThese are things that we can\u2019t control, here\u2019s what we can do.\n\nWe can step up, we can up our game, we can show them what this platform has already proved, we can remember why we joined and that maybe, just maybe show them that we are still fighting for that fucking moon.\n\nBecause let\u2019s not forget, steem is third behind Bitcoin and Ether.\n\n### And just as Bitcoin had so many new competing coins that were going to completely erase it from the map, we\u2019ll probably hear the same song again.\n\n![Alt Text](http://tr1.cbsistatic.com/hub/i/2014/11/04/27691a45-1606-4647-9093-637886cc89be/forecast-crystal-ball-prediction.jpg)\n\nThere will be many death predictions too. Bitcoin had about a hundred of them, so don't be surprised when that happens.\n\nBut what if I\u2019m wrong and the competition is very strong?\n\nWell then we learn to compete better. Competition is a part of life, and it can make you better if you know how to approach it. In fact, [I wrote about the subject in the past](https://steemit.com/life/@the-alien/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age).\n\nSo this goes for those of us who experienced the life changing abilities of this platform, and especially for those who are crazy enough to still believe in the same dream that we are at the beginning  stages of a beautiful game changer. For those who still have the same passion about disruptiveness as in the first day, here\u2019s something that we can do:\n\n# We Can Bet on Our Strengths\n\n![Alt Text](https://pbs.twimg.com/media/Cm8iJ91XEAIVokI.jpg)\n\nWe can focus on what steemit has achieved already and introduce it to the world. How many people have made some good income already? How many projects has steemit helped? How many it has brought in to life? How many relationships have been forged?\n\nSo maybe you\u2019re a filmmaker looking for a good story, maybe you can make a documentary about the lives that steemit has changed and its future effects on society, maybe the rest of us can help you.\n\nMaybe I should listen to my own words and lead by example. Maybe I should carve out some time and finally launch my very own book that was born out of pure steem.\n\nOr maybe we shouldn\u2019t have to do anything at all. Maybe we shouldn\u2019t have to step up our game just yet, and ignore any competition.\n\nI\u2019m not quite sure.\n\nWhatever the case may be, I just want you to know that if you\u2019re here for the long run, than you should know that more competition will come, and when that happens don\u2019t listen to the alarming voices and trust your own judgement.\n\nI want you to know that it\u2019s not the end, that this is the beginning and that I hope that you\u2019re still enjoying this beautifully game changing ride and not planning to give up your seat just yet.\n\n#### Image Sources: [1](http://dailyseoblog.com/how-to-discover-your-competitions-seo-strategies/) - [2](http://pyxurz.blogspot.com.br/2011/10/matrix-page-2-of-7.html) - [3](http://humansarefree.com/2014/04/16-signs-that-you-are-slave-living-in.html)- [4](http://wallpaper.zone/carlsberg-wallpaper) - [5](http://www.techrepublic.com/article/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends/) - [6](https://twitter.com/riaali4)",
+    "body_length": 9016,
+    "cashout_time": "2016-10-02T00:55:54",
+    "category": "life",
+    "children": 90,
+    "created": "2016-08-31T20:01:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"competition\",\"psychology\",\"alien\"],\"users\":[\"smooth\"],\"image\":[\"http:\\/\\/cdn.dailyseoblog.com\\/wp-content\\/uploads\\/2015\\/11\\/Competition_SEO.jpg\",\"http:\\/\\/2.bp.blogspot.com\\/-jCsWg5lEM9w\\/To2MZ4wwQMI\\/AAAAAAAAI8Q\\/VNo2kdw4ot8\\/s640\\/Matrix_067Pyxurz.jpg\",\"http:\\/\\/3.bp.blogspot.com\\/-TVDMaHEL61w\\/U1_ZuVFcttI\\/AAAAAAAAMvg\\/dt0wlqDLFWI\\/s1600\\/living+in+the+matrix.jpg\",\"https:\\/\\/s9.postimg.io\\/ptqv6s6of\\/Untitled_design.png\",\"http:\\/\\/tr1.cbsistatic.com\\/hub\\/i\\/2014\\/11\\/04\\/27691a45-1606-4647-9093-637886cc89be\\/forecast-crystal-ball-prediction.jpg\",\"https:\\/\\/pbs.twimg.com\\/media\\/Cm8iJ91XEAIVokI.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/life\\/@the-alien\\/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age\",\"http:\\/\\/dailyseoblog.com\\/how-to-discover-your-competitions-seo-strategies\\/\",\"http:\\/\\/pyxurz.blogspot.com.br\\/2011\\/10\\/matrix-page-2-of-7.html\",\"http:\\/\\/humansarefree.com\\/2014\\/04\\/16-signs-that-you-are-slave-living-in.html\",\"http:\\/\\/wallpaper.zone\\/carlsberg-wallpaper\",\"http:\\/\\/www.techrepublic.com\\/article\\/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends\\/\",\"https:\\/\\/twitter.com\\/riaali4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T23:28:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 115579310823374,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1282.366 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "we-have-competition-so-what",
+    "post_id": 816377,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "We Have Competition, So What?",
+    "title": "We Have Competition, So What?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/we-have-competition-so-what"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1068066740232",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-14428335580523",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6580940624714",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2516500322385",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9730263409820",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2238089828373",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117245008705",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581077721826",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016281567712",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4712575705195",
+        "voter": "wang"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "50128182486",
+        "voter": "adm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101248946",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765091051",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690619464",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54354410559",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661935517",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213718493",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2001205407251",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418315136885",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424995350979",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2859018151628",
+        "voter": "recursive"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "223774607744",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14213361017",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11473937036",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623025846",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "23639540033",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967713364",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299060965565",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121855691094",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288235837",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "9548778927",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38491019685",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1767163827",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419437392055",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1579031296",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16975075430",
+        "voter": "jademont"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "7579732231",
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1459747282",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "6757762580",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "10632532459",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16892420207",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1448343606",
+        "voter": "n25052016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7584918683",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37443492197",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666866364",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74100412917",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1419670146",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2578496905",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39320777722",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8666838603",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13246631412",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3835227080462",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364306847511",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401376869",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2339939419364",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "93314085385",
+        "voter": "wingz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "28201520191",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212735022017",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17038534997",
+        "voter": "andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79982031063",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-209838822321",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177241468",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "5655530548",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2787011053",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175537967389",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "79382741",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792170905",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5943847648",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1460965920149",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687075875567",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46038400775",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14127596797",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470524735958",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "11246189112",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267393527",
+        "voter": "artisan"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "4490182566",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289162489",
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17550246480",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1318198250",
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12952739395",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5365157925",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266657278",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47434235880",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330653046604",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3392620167",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5858174588",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9866111769",
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5253410818",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22467197866",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34735743250",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47802301892",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281926950358",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14545520870",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24971256573",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6918017824",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946734032",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16677138219",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1339918531",
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "23124728884",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690010021",
+        "voter": "busser"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "74680604",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "188768554",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "211774654",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "194127478",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "6900",
+        "reputation": 0,
+        "rshares": "112654580280",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2068776947",
+        "voter": "gazm"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1711089537",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1605307412",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "126505514",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10429341978",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237084223",
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1969204308",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4194090115",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342507039",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242542379761",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10514634467",
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786532034",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "826867066",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70528519000",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41938187661",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19329526526",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44336327098",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-128498217434",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5644661682",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1919200251",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13274390807",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3093346077",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10945767657",
+        "voter": "stevo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10151327610",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259629450569",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-30470822745",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8266500094",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2117017421",
+        "voter": "earnest"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-262081883",
+        "voter": "shing3e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1600176825",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7971365358",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204046586021",
+        "voter": "jl777"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3900840609",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "6548020005",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1399761805",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1833955050",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277681916",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278097823",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160825350",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161733355",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92188832",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11734903206",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12811217967",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19696646539",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8065287272",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17558743505",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594907055",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207927318",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445158598",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238573730",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83484533",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "214182446",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "195430067",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7109462134",
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115507974",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13595360798",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7520902716",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129103709",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658509913",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30896278536",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77914394030",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8783779105",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3658561552",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53835780",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1556598011",
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1472655783",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54844677",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "3995394560",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25077308053",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6000428593",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2300718527",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1821180466",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4338245273",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979617190",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1407114808",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7948406128",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101379161825",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70413598",
+        "voter": "ragnaroek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88710491389",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4645077272",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "21851097144",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2482187793",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "4100",
+        "reputation": 0,
+        "rshares": "23525650772",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55265906",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53370316",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12436071828",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61746903",
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52985539",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1664097198",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52848854",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338891141",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71506742",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230331964",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61515128",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "983145708",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83962397834",
+        "voter": "miacats"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-37335893668",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114992597",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545877",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61167862",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53648513",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74131936",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-61687049",
+        "voter": "kanusteem"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "3900348752",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7833422368",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71551855",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60661014",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310680382",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651551511",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59610335965",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "834306506",
+        "voter": "inferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12520030511",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4730854063",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3289942651",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1288112247",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792593563",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863356",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039566",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51852278",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3719392493",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1810222177",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2519054922",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57399342",
+        "voter": "ethansteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51481279",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475206804",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58064982",
+        "voter": "zite"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4156286103",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562255",
+        "voter": "curpose"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-861184213",
+        "voter": "ontofractal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59978409",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "532936297",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "850866519",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1005088816",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2331050847",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59995797",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51712804",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1442988265",
+        "voter": "nadin3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683907739",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51718188",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51388276",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51379706",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34329581722",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15597377801",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254519172",
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5757204428",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814474",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157129613626",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54632424",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131546618",
+        "voter": "illusiveman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2713459817",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54012814",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106768414",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588271491",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23572897576",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1615824466",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74117002",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5292676076",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50470409",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63543002",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1548545048",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53002525",
+        "voter": "swapman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8160990156",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59088198",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4882248396",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1306905034",
+        "voter": "mrabdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69546372",
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51797456",
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52171779",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3039484418",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71167473",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154396017",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163216276",
+        "voter": "zacariajames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124699787",
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162784893",
+        "voter": "knights"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://stakepool.com/wp-content/uploads/2016/08/photo3.jpg</center>\n\nSo, I was sitting in my $5000 massage chair smoking a cuban cigar when all of a sudden all kinds of bells started ringing. So I had to stop what I was doing and walk all the way over to my enormous trading-desk on the opposite side of my man-cave to see what was going on, and of course - there it was... A new post from my ex-boyfriend who cannot believe I dumped him for a better looking guy, and I knew he was out for blood so I started reading:\n\n<h3>A littlebit of history first</h3>\n\nWhen I wrote against @stellabelle and her article about synero-amp vs steemit, @tuck-fheman started spamming my comment section with all kinds of accusations, and lately he has started what he calls a \"comic-strip\" about me where he is doing his very best to harass the hell out of me.\n\n<h5>I still stand by what I wrote in my article against @stellabelle - it was a very dumb move on her behalf and I have people on record who confess to buying synereo-amp and losing money because of her article. The point of calling her out was to let her know that she has a loud voice in this community, and that she therefore must be careful advising people about investments and projects in a market she has no real clue about, because she is new.</h5>\n\nThen, when I apologized in public to @heiditravels for using explicit words when I was mad at her for not showing up to a Public Relation Interview when she came to Per\u00fa, an Interview that would have gone out on Television to 10 million Peruvians in prime-time and maybe secure 200,000 new signups for Steemit, he went on another rampage and started posting screenshots of the conversation and tried to get people to flag my post, which did not work because people are not stupid around here - they see what is going on.\n\n<h1>I still think what @heiditravels did was selfish, but I am over it - It is history @tuck-fheman - she wanted the @dollarvigilante more then me, and I have come to accept that he is much better looking then me, no homo :) (Just kidding)</h1>\n\nToday @tuck-fheman posted another harassment-cartoon, and even went to the #steemitabuse chat and bragged about it, told people that I was a sociopath that needed to be stopped, a woman-abuser and many other things that was just degrading and sad to read from him.\n\n<h2>Tuck & Stella = Early adopters who made a lot of steem posting pure shit</h2>\n\nSo what do I do? He is one with the most reputation on Steemit because he was very early into steemit and was in the original \"circle-jerk\"-club as they called it. Apparently back in those days you could post a picture of your garbage-can and make thousands of steem and now a days you have to actually make real content with real value.\n\nThen we have @stellabelle - I have nothing against her, never tried to attack her in any way - just had to speak up when she decided to embrace synereo-amp in a way that felt like... she was pooping where she was eating and I have honestly not read a single article she has published since. Instead I have found new aspiring artists like @poeticsnake who make amazing drawings and really put in a lot of real work in her art.\n\n@stellabelle also is from the very early adopters of steemit who made a lot of steem by writing articles about how she ripped of her friends when she was a car-salesman, or how she used to shoplift in stores when she was rich. Something to be proud of? Would those articles be worth anything if she wrote them today?\n\n<h1>In case you don\u00b4t know what I do on Steemit, I make comedy, entertainment, cartoons Here are a few examples for earlier:</h1>\n\nhttps://www.youtube.com/watch?v=ojNbGf5oIhM\n\nhttps://www.youtube.com/watch?v=vh-TKt_GSCc\n\nhttps://www.youtube.com/watch?v=ijVJNn0qgxg\n\nhttps://www.youtube.com/watch?v=ZHzdXtFKwYA\n\nhttps://www.youtube.com/watch?v=0SMMo7aQnPY\n\n\n---\n<h1>I also do Technical Analysis of Forex, Stocks and Crypto-Currency in posts like this:</h1>\n\nhttps://www.youtube.com/watch?v=dyXt_kJhomU\n\n---\n\n<h1>And I also make funny songs about steemit and crypto like this:</h1>\n\nhttps://www.youtube.com/watch?v=6P2FB9Mg_YI\n\nand like this:\n\nhttps://www.youtube.com/watch?v=3gfntBEI3Aw\n\n---\n<center>So please - Tuck-Fheman, Stellabelle - Leave me alone if you are going to act like bullies and collude and harass me - there is no point to that! <b>Start doing something positive for Steemit instead of all this negativity! </b>And to all the rest of you - I hope you see it that I loud and clear do not want to have anything to do with these two people. </center>\n---\n\n<center><img src=\"http://i.imgur.com/JhD2D0s.png\"></center>\n\n<center><img src=\"http://i.imgur.com/DLFAEdd.png\"></center>\n\nBreaking up is never easy, I know - but you have to let me go :)",
+    "body_length": 4768,
+    "cashout_time": "2016-10-05T10:04:33",
+    "category": "steemit",
+    "children": 106,
+    "created": "2016-09-03T21:39:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"abuse\",\"witnesses\",\"steemitabuse\"],\"users\":[\"stellabelle\",\"tuck-fheman\",\"heiditravels\",\"dollarvigilante\",\"poeticsnake\"],\"image\":[\"https:\\/\\/stakepool.com\\/wp-content\\/uploads\\/2016\\/08\\/photo3.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ojNbGf5oIhM\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/vh-TKt_GSCc\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ijVJNn0qgxg\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ZHzdXtFKwYA\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/0SMMo7aQnPY\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/dyXt_kJhomU\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/6P2FB9Mg_YI\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/3gfntBEI3Aw\\/0.jpg\",\"http:\\/\\/i.imgur.com\\/JhD2D0s.png\",\"http:\\/\\/i.imgur.com\\/DLFAEdd.png\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=ojNbGf5oIhM\",\"https:\\/\\/www.youtube.com\\/watch?v=vh-TKt_GSCc\",\"https:\\/\\/www.youtube.com\\/watch?v=ijVJNn0qgxg\",\"https:\\/\\/www.youtube.com\\/watch?v=ZHzdXtFKwYA\",\"https:\\/\\/www.youtube.com\\/watch?v=0SMMo7aQnPY\",\"https:\\/\\/www.youtube.com\\/watch?v=dyXt_kJhomU\",\"https:\\/\\/www.youtube.com\\/watch?v=6P2FB9Mg_YI\",\"https:\\/\\/www.youtube.com\\/watch?v=3gfntBEI3Aw\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T22:52:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 28528575081428,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "112.665 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-harassment-wow-it-finally-happened-to-me-too-d",
+    "post_id": 848240,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28904011889414",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520098232581",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27187008322655",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169804839880",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2636342185376",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169207940021",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3073876330742",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2008563761368",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594575320115",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011916646700",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2393257515326",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1107774806631",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4973802490322",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4674533411216",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2482055809",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1809839585238",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013424240",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552662812",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "491465130261",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43649505393",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5572119315",
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32994834817",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392020164380",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26825111274",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330064009",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171009273",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208927024954",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2005815389795",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11196356543",
+        "voter": "steemservices3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13072638952",
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14855376121",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444955155332",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2792476965429",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1532665365",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "918878966751",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123571015707",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2248950812",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453188235245",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11723893904",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499845540",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "775709423",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786483423564",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "408396261389",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40480067408",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230642309",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25304604461",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14464815855",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1820924487",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "12861662310",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "548931646",
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1055355445022",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19313464152",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "832212930452",
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68620290271",
+        "voter": "idealist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "611673479623",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19603806106",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29124731949",
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487043900",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5487072034",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110425095104",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29577376352",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2105697423",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338115289584",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26446572833",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13242421616",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "733881760856",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "679520448",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "4200",
+        "reputation": 0,
+        "rshares": "4974441347",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151937411878",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230470945840",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534596286",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74166126146",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623001349410",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425459923",
+        "voter": "murh"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3590512275",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2634258540",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378920499792",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15588807020",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42977927576",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64657896111",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98243686947",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24400271615",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8199640991",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13249527549",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377944761420",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380255021",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370334988153",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233304410850",
+        "voter": "wingz"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "33522431436",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54397942319",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213100572181",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6210962615",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403936875902",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "539220549910",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78420366563",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012427662",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3247481989",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36310114628",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "719254637693",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167123545461",
+        "voter": "ikigai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5829433150",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687228830675",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108637592108",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272424359692",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2937074898",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2502021825",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3406174686",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36049155648",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562575775",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43623897139",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44534121657",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53127948729",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243464927250",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "14593112076",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "2600",
+        "reputation": 0,
+        "rshares": "1349434599",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92800123706",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3329170505",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15569455870",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16406069363",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23470130902",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467472850580",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120310968454",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60653460344",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10592956071",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103734236038",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3661486271",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485287450",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531132027",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486886690",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25575729781",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148458773016",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "504635563",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1206556077",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1630261480",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4600997385",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15976597511",
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10929036897",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13555525897",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3978399004",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21722940066",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10435159079",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349470768",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11941739853",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43183709774",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410205647",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3215762929",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10050955929",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "429865972",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370939417531",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43452166600",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7443194536",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103711516",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3786816110",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5649736542",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243501388",
+        "voter": "mix68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "744454404903",
+        "voter": "ramta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3174794355",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438064420",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280968811744",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64246109862",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1911344111",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7024624095",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7327096445",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6105234990",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234706981000",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29860845400",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116065815",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102459876",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182710907037",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37640387244",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16288614419",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1798884189",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269576627",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269980297",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156093986",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156975275",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89476508",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500969295",
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117711994",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764587130",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21325436037",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15571624866",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644954948",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8147029083",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221401214",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436474032",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749726803",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233864769",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81814843",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2222862544",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537189684",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "502409799",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536957638",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5841936138",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117834331",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29626477289",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139296107",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217225350",
+        "voter": "choccy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1859734787",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18184768944",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7816664104",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5874256428",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128078777101",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1279745964",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8331474043",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103516772",
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57873464",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58958028",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "7300",
+        "reputation": 0,
+        "rshares": "693670933974",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267736473",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25730062568",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16142522947",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51338511950",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4615241075",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3066422709",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807752948",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103522443133",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "7300",
+        "reputation": 0,
+        "rshares": "77778400648",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18051601393",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17911590129",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93195477512",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5248424662",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265682837",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9442440033",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "423788872",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59410849",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55911760",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11703925092",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "17730431006",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55449983",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55306941",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345831698",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234954849",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66371585",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29493027614",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65068915",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065111573",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54908311",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54842915",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117308646",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545877",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62391219",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143792",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116751214",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54313084",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72982892",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61874235",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1497361810",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17605373303",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35420250755",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57802223",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57795937",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101227402628",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662204978880",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1443290254",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54220781",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54218223",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54216305",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54213405",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54209199",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59993245",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8891054106",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53821337",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24772824820",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59226282",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71200836239",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46612959839",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "163983245",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16355375535",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "2977572185",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57797939",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53853911",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "724970673",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54705383",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146567272",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1923215341",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366942350",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118894339",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "813530163",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14529944296",
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58249183",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77673986",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7315831479",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2484284234",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56265756",
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52836995",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1650630573",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127978892",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52505412",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50191639",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32097581345",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15297756343",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53252658",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5646175108",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "397453188",
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160081558",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51451058",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158538070448",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55725073",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230725",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9219166710",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52088375",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2660739677",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55093071",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5273026357",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1541628858",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108903782",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "717513029",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341331436972",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4014959887",
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62339306632",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25877183239",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53353220",
+        "voter": "swisswatcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "772900078",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066584907",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65975408",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53729098",
+        "voter": "dariuszg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2762392872",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2035771305",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1290719213",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1451959158",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8917175222",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175892938",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54059416",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52368690",
+        "voter": "rooster.ninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4788178237",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50368777",
+        "voter": "eagleeye7850"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57266113",
+        "voter": "technium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1093018575",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50536471",
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50484452",
+        "voter": "connect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317220",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1684721465",
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99417982",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979811276",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151614981",
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51876835",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74402358",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81556444",
+        "voter": "brainup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82287966",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157628162",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60962152",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163439230",
+        "voter": "zubasky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162925257",
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162911190",
+        "voter": "front"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156833866",
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162561543",
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162424202",
+        "voter": "unlabeled"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155910854",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161855613",
+        "voter": "jamicwe219"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158660342",
+        "voter": "iberia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161815656",
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116987070",
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107496727",
+        "voter": "elsi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160573104",
+        "voter": "sortinghat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154276916",
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152869602",
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![Alt Text](http://www.geliosoft.com/100-happy-dollars-3d/falling-money-wallpaper.jpg)\n\nHave you ever wondered  why people keep trusting career politicians to handle their finances? It\u2019s a fascinating thing really. This is one of the biggest mind-boggling mysteries that seem to defy even time itself, mysteries that are impossible to explain from a purely rational point of view.\n\nAsk any person in the world \u2013 scratch that \u2013 ask any person in the history of the world to describe politics in one word and you are guaranteed to hear some of the following words: Deceiving, dishonest, incompetent, cheating\u2026Etc. And probably, this is from the generous side.\n\nNow,  ask any of those people how come they trusted those individuals to manage their finances, and it would seem like you\u2019re speaking Chinese to them.\n\n## And that area right there is where the real game is being played.\n\nThat\u2019s the space where critical thinking dulls, where the emperor sells clothes, and no one\u2019s looking at Pinocchio\u2019s nose. How on earth would a known dishonest, power hungry person convince the others that he should be the one that makes the decisions on behalf of everybody?\n\nWorse than that, they give them all the power, no accountability and a virtual 100% probability to screw them , and everybody just keeps pretending to be surprised when these things happens.\n\n# Why Does This Keep Happening to Me?\n\nYou change the country, you change the century but the song remains the same, and the mystery survives. The only way to keep convincing people to accept a deal that acts against their own self-interest is to create a story that makes the exploitation of mankind look like the solution to their problem. \n\n![Alt text](http://vignette2.wikia.nocookie.net/lostpedia/images/b/b2/Lastsupper.jpg/revision/latest?cb=20100117063640)\n\nYou look around, you find countries like Bolivia or Venezuela (just to give a few examples) that are extraordinarily blessed at the very same time with a rich abundance in natural resources  and a starving population despite the fact that these two things should be mutually exclusive by any stretch of the imagination.\n\nYou can\u2019t be that incompetent if you tried.\n\nBut then again, this isn\u2019t about incompetence. Their solutions were already predetermined in the narrative, and when it doesn't work and the tale falls on its own weight, they\u2019ll just repeat the same process again, because the narrative remains the same.\n\nThey keep seizing more lands, more factories and they keep \u201ccracking down\u201d on competition and seize everything in the name of \u2018the common good\u2019. Then they bankrupt them as well and they seize more and bankrupt those too. \n\n### If it wasn\u2019t so heartbreaking it would be hilarious.\n\nHere\u2019s the crazy part of all this is that  this wide spread phenomenon is completely irrelevant to the economic system, the economic policy, or to the continent, and it's happening across the board. \n\n![Alt Text](http://redlikeme.ca/wp-content/uploads/2015/10/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg)\n\nFind me a person in southern Europe that has good things to say about politicians in the ECB.\n\nAll the solutions they present are hell bent on screwing the little guy, whether it\u2019s draconian austerity measures, raising the retirement age, bank bail outs\u2026Etc\n\nI\u2019m not saying that it\u2019s due to incompetence, dishonesty, or both. I\u2019m saying that it\u2019s irrelevant, because the solution is already pre-set beforehand to achieve one purpose, and one purpose only, that power keeps consolidating itself. \n\nThat might explain why we always keep hearing sentences like this one: *\u201cThe game is rigged\u201d*, which happens to be one of the most popular expressions of our generation.\n\nLet me give you another example.\n\nWhen you turn on the radio and there are some finance experts on, how many times we hear the following words: \n\n*They\u2019re making things worse; They\u2019re repeating the same mistakes again;  Things are actually getting worse and not better; The solutions are creating more problems than solving; How come the recovery is worse than the recession?*\n\nYou see where this is going? \n\nAnd this is not exclusive to our generation, in fact this story form is a very common archetypal myth that exists across every society and period of human history.  With the very same the result, that whatever action that will be taken it will only serve to reinforce the dominant narrative.\n\n# Once Upon a Time\n\nIt is believed that the cavemen were the first storytellers, and whoever controlled the dominant story had a strong pull on the rest of society.\n\n![Alt Text](http://www.kino.de/wp-content/gallery/homo-erectus-2007/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg)\n\nThe  human story is at the heart of everything, it\u2019s the prima material of how most people perceive reality, the moment you question someone else\u2019s dominant narrative, the debate is over before it\u2019s even started. For many people, they much rather fall for the same thing again and again and until the end of times, rather than to dare questioning the story they grew up around.\n\n> ### *\u201cIt\u2019s easier to fool people, than show them that they have been fooled\u201d.*\u2014 Mark Twain\n\nThe crazy part however, is that the even if those individuals were to fully realized how they've been fooled, they would probably still willingly walk towards the fire nonetheless. Metaphorically speaking.\n\n### Unless of course, there is a new story that replaces the old story.\n\nI remember reading one of James Altucher\u2019s amazing posts and had a wake up call. I hope I\u2019m not butchering the story, but it basically it goes like this: A friend of James asked him to go with her to the bank to help her decide the best option for her to put her money. Since he has some solid expertise in the finance world, it seemed like a wise decision for her part.\n\nDuring that meeting in the bank, James just sat down, said nothing and only listened, when they finally left the bank he started explaining to her all the ways that they were trying to take advantage of her and rip her off.\n\n*\u201cHow can they do that to me?\u201d*\n\nThe next day, she went to the bank and did everything they asked her nonetheless.\n\n![Alt text](http://blogs-images.forbes.com/maggiemcgrath/files/2015/06/0211_hipster-piggy-bank-401k_1024x576.jpg)\n\n# This is How the Story Goes\n\nCommon folklore has it that there are those people among us that regular people  that look just like me and you, but when they get a magical paper that says that they work for the status quo, then an invisible laser descends from the sky and grants them all sorts supernatural abilities and financial savoir-faire.\n\nWell, sort of... Everything they touch still goes to crap, but that doesn\u2019t matter anymore and their never-ceasing incompetence doesn\u2019t seem to bother anyone either. Because now, they're part of the narrative.\n\n### And apparently, narrative trumps logic. \n\nA successful investor once told me: *Never listen to government economists, if they knew how to manage money, they would\u2019ve made money themselves instead of telling people what to do.*\n\n![Alt Text](https://ascendingstarseed.files.wordpress.com/2016/08/cc12b-preppers2b-2bdoomsday.jpg)\n\nAs the Altucher story goes, along with countless others, whenever there is a threat to the narrative, the debate is over before it has even started. For many people in the world, defying authority is just about the last thing they would do, and that includes killing themselves and their own children.\n\nBut let\u2019s go back to the subject of the day. We tell ourselves a story that defies every single law of the universe, that the idea of good business is spending trillions of Dollars bombing millions of people and generating the biggest debtor nation the world has ever seen.\n\nIf that is not telling you anything then honestly, I don\u2019t know what does.\n\nWe tell ourselves even crazier stories, that if we just grabbed enough productive citizens and stacked them into jail cells for victim-less crimes, or for carrying bits of vegetation in their pockets, then we're going to revitalize the economy, and that oh! We will rehabilitate those poor souls through brutality and sexual violence.\n\n### Again, narrative trumps logic in ways logic can't even perceive.\n\nSome people choose to deny their programming, and that seems as the right choice because sooner or later those stories could start acting as their very own gatekeepers. I\u2019m not talking about inner resistance, I\u2019m saying that maybe we need a new story that replaces the old story.\n\n![Alt Text](http://i0.wp.com/dailyzen.co.uk/wp-content/uploads/2015/03/How-to-Make-Good-choices-and-make-the-most-of-them.jpg)\n\nThere has never been a better time for financial independence than the times we live in, there has never been so many options available for someone to start their own company, find jobs, or make their own movies even\u2026 All of that without dealing with a large number of resistant gate-keepers who may or may not have been programmed to serve a certain narrative.\n\nI don't know about you but personally, if I had to follow a narrative, I much rather have one that I designed for myself rather than one that I was born into.\n\n# Closing thoughts\n\nThey say that when there is a paradigm shift, there is usually a new story that renders the other story irrelevant, but until then and even though the tools are already available to the public, people will not make the final move until they start seeing a certain degree of mass-adoption around them.\n\nIt is that mass adoption aspect that would make it acceptable for their psyche to separate from that old, probably coercive narrative that has been attached to them.\n\n![Alt Text](http://www.elfm.co.uk/wp-content/uploads/2014/12/storytelling-night.jpg)\n\nA few minutes ago, I was just going to end this piece with a question: \u201cDoes the Blockchain need a story?\u201d\n\nBut then I realized that steemit has both the crypto-currency and the story aspect. So I\u2019m swapping that question for a few modest words:\n\nCan we just work together to build something beautiful? Do you guys see what we have here? Why don\u2019t we just focus on what we have and how we can improve it. After all, it\u2019s much harder to create something really great when you\u2019re being held back by unnecessary drama. Wouldn't you agree?\n\n And not to forget:\n\n### Your dream needs you full steem.\n \nSources: [1](http://www.geliosoft.com/100-happy-dollars-3d/) - [2](http://lostpedia.wikia.com/wiki/The_Lost_Supper) - [3](http://redlikeme.ca/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing/) - [4](http://www.kino.de/film/homo-erectus-2007/) - [5](http://money.cnn.com/pf/millennials-and-their-money/) - [6](https://ascendingstarseed.wordpress.com/category/economy-and-global-collapse/) - [7](http://dailyzen.co.uk/2015/03/19/how-to-make-good-choices-and-make-the-most-of-them/) - [8](https://storify.com/ProfKarim/the-power-of-storytelling)\n\n## [*Follow the Alien*](https://steemit.com/@the-alien)",
+    "body_length": 10964,
+    "cashout_time": "2016-10-07T11:28:24",
+    "category": "life",
+    "children": 49,
+    "created": "2016-09-06T00:18:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"philosophy\",\"psychology\",\"alien\"],\"image\":[\"http:\\/\\/www.geliosoft.com\\/100-happy-dollars-3d\\/falling-money-wallpaper.jpg\",\"http:\\/\\/vignette2.wikia.nocookie.net\\/lostpedia\\/images\\/b\\/b2\\/Lastsupper.jpg\\/revision\\/latest?cb=20100117063640\",\"http:\\/\\/redlikeme.ca\\/wp-content\\/uploads\\/2015\\/10\\/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg\",\"http:\\/\\/www.kino.de\\/wp-content\\/gallery\\/homo-erectus-2007\\/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg\",\"http:\\/\\/blogs-images.forbes.com\\/maggiemcgrath\\/files\\/2015\\/06\\/0211_hipster-piggy-bank-401k_1024x576.jpg\",\"https:\\/\\/ascendingstarseed.files.wordpress.com\\/2016\\/08\\/cc12b-preppers2b-2bdoomsday.jpg\",\"http:\\/\\/i0.wp.com\\/dailyzen.co.uk\\/wp-content\\/uploads\\/2015\\/03\\/How-to-Make-Good-choices-and-make-the-most-of-them.jpg\",\"http:\\/\\/www.elfm.co.uk\\/wp-content\\/uploads\\/2014\\/12\\/storytelling-night.jpg\"],\"links\":[\"http:\\/\\/www.geliosoft.com\\/100-happy-dollars-3d\\/\",\"http:\\/\\/lostpedia.wikia.com\\/wiki\\/The_Lost_Supper\",\"http:\\/\\/redlikeme.ca\\/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing\\/\",\"http:\\/\\/www.kino.de\\/film\\/homo-erectus-2007\\/\",\"http:\\/\\/money.cnn.com\\/pf\\/millennials-and-their-money\\/\",\"https:\\/\\/ascendingstarseed.wordpress.com\\/category\\/economy-and-global-collapse\\/\",\"http:\\/\\/dailyzen.co.uk\\/2015\\/03\\/19\\/how-to-make-good-choices-and-make-the-most-of-them\\/\",\"https:\\/\\/storify.com\\/ProfKarim\\/the-power-of-storytelling\",\"https:\\/\\/steemit.com\\/@the-alien\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T08:14:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 110391035728415,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1196.314 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "logic-and-fiat-money-are-they-mutually-exclusive",
+    "post_id": 868056,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/logic-and-fiat-money-are-they-mutually-exclusive"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28904209517709",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-56559208770",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633095325237",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "404682721071",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "25814870366911",
+        "voter": "dan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2321790225223",
+        "voter": "diaphanous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2077749979912",
+        "voter": "bmw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1860859029886",
+        "voter": "books"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1551086497755",
+        "voter": "butterfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1469367520215",
+        "voter": "commedy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6141142270335",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6934956643994",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5536285359773",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103030120",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1689669975555",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767362463",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6142381502949",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54638988750",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662795178",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3921583473347",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62849848037",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1460238073",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897783861872",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118160004239",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8846544205",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2249794908",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1220931423430",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326641694341",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23992305455",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26771021432",
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969744364",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "804647377325",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78719523584",
+        "voter": "jwest40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361589712598",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32423888615",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83099570491",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24793284195",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14471587511",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163614861708",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9864254866",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14902174889",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "71563667896",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52311045620",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411271639019",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78952260790",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11754655518",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3913661416",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552268439259",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487226144",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "6100",
+        "reputation": 0,
+        "rshares": "3975544133",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5612587148",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109201913867",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28968973138",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2062724006",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331414403780",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "4518704719",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144379940729",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54482680287",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33524081215",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26516736386",
+        "voter": "tmendieta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37994042628",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2366331863",
+        "voter": "alenevaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534991050",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67845312433",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425735650",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6894648848",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17773072912",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602425396",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13216041083",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198603454941",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15588807020",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42080883570",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941565976892",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23912266183",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6242728467",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685622702",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12984552465",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "2917169504539",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386419893744",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8806878751",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380391693",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52367224290",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349484107",
+        "voter": "yonatann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377770820778",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40679365477",
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308660771107",
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "13998741368",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55873941967",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108025258280",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53194598358",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412538354215",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1486565432",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13353610720",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "430294140",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "4700",
+        "reputation": 0,
+        "rshares": "11167158479",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988882833",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19192619156",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15756733173",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33784111908",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182873871538",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5709056203",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9721696359",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687254164754",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075516962",
+        "voter": "comm-press"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109117596483",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6740408834",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31925745781",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68617907780",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2375236125",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "12981212473",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3755852203",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "5400",
+        "reputation": 0,
+        "rshares": "15858494668",
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536461338",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40094142832",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39857869532",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50782349370",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "22535574872",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275298770505",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20203030978",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243464927250",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318035694495",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43816713486",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60077712293",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90689728719",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3297954099",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8587323673",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17199764671",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22616447166",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122136592502",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282238576797",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3286950628",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516176839",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12276334224",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6927337869",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242042299",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597179386",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69160956194",
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120331087671",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26149661294",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2761970265",
+        "voter": "wintrop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7012104525",
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "513898732093",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4223216611",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112572902958",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236699236",
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "48431592474",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5516539304",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "2893393868",
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1111186856",
+        "voter": "demyan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56528698039",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16937012018",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525662045",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40069670306",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1525991347",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17954765467",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4507281503",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "4200",
+        "reputation": 0,
+        "rshares": "26722878081",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3949738963",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11743458717",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685025327",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218350821",
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2438495293",
+        "voter": "thelindvall"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "426995359",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10624714992",
+        "voter": "fogspam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3758226202",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24926432348",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11466221508",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346695853",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38296982211",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12382501577",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12897559714",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2086071510",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235512684",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20010696496",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55174325289",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45468090152",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240374641",
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7144301672",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96640276",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129948707617",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3709534148",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5772890880",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2091519389",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13003141497",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3175079093",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18161034703",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2450336934",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201222637041",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "2045718563",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13357712366",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "40980982912",
+        "voter": "opheliafu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298430647098",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5853998263",
+        "voter": "kidsysco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3493315959",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14607170571",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64250965781",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123387400",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7924257770",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7311343446",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3248799071",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2691561605",
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "848614521",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4244751071",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13833357665",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3244193020",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2283280595",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26463727332",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38546045916",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39483002950",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84759836456",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3869796932",
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182754922360",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "977883724416",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9747030367",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39264915236",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1781950310",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269576627",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269980297",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156093986",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156975275",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89476508",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115403915",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95203313420",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10448758256",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32452429861",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115883340",
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133255616",
+        "voter": "bigb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571692815",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3835587963",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5372665495",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15514579228",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916462256",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15575145963",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614416410",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3297833326",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "432287231",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1750139335",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231618512",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4914389699",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81028161",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2242469546",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2849432107",
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554432980",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36985556688",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1731857982",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5554504133",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518235137",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21557151502",
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142706881",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115172592",
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27075686327",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244863448245",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2873547475",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188414958",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1458929155",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19540258029",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150369025",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5474983827",
+        "voter": "jed78"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "6677336214",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122226950104",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254151045",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4400767306",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70376481208",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7870689325",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6529244168",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59219358",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1561593690",
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6817558610",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58958028",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501549780",
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18337113073",
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25086446776",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54208918167",
+        "voter": "sextusempiricus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25748578986",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1916476866",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20943614649",
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14587304759",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2312594930",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4344940420",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6812512111",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1393113935",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8284755955",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101494312815",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100860038",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91120502513",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5443084062",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12780436995",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232895758",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58773515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189563166525",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312105000",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59410849",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55911760",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3302532712",
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710962726",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55449983",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982196003",
+        "voter": "fooblic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1986815415",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580406077",
+        "voter": "bmcv001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21699399275",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55306941",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1558777881",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68397753",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67990404",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29495720282",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60730988",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1884653469",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74898697",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88707336012",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490764449",
+        "voter": "sc-steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52419023",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143792",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577428472",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6753644017",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62395538",
+        "voter": "olya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8451306126",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54313084",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1549192117",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19205801220",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56598010",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56591855",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75583534",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2707740797",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "640494020911",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1371874570",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67104569235",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12003456501",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1389946718",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2560790218",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "963036943",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54220781",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54218223",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54216305",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54213405",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54209199",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4276803918",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187186651",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8469707556",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856443329",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2569452228",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53821337",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2866954104",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22522846885",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6050957442",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1871540303",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71218036289",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47545219036",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4000720825",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18578707926",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "5228073529",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4503042264",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52708083",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58330329",
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59194500",
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "733021198",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565688",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4382079199",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1624044881",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2017275348",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1572019930",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4887499753",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "670709305",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25570333868",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69572705",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57437168622",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98218493",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90577741",
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79568473",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20981590167",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57330113",
+        "voter": "aavkc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "675058400",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2433107936",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9191275813",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52836995",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6743441072",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101985046",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1616413109",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66879121",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133765107",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7518726707",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56987529",
+        "voter": "thepeacefulrebel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185622553",
+        "voter": "greatness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52505412",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12190963825",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "7100",
+        "reputation": 0,
+        "rshares": "24470534532",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15150640986",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3748408212",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85083750",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52847912",
+        "voter": "teruneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57099030",
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5529568480",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5272311109",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814474",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17059963076",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1518574310",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51451058",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3064424390",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277324152",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89038335",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537067064",
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1769489244",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2605716510",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343538723",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1449131127",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50554364",
+        "voter": "danbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327174897",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334013630052",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5674559575",
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59387530704",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9136703623",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1167978510",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "482952591",
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52226204",
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61567608",
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161284159",
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582922475",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1642685153",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2929180084",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210337011",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5725265619",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4651778852",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2744828616",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357202147",
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55826263",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2818894604",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951311375",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1129379312",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "5911683344",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1420415841",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338284222",
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8712540579",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347888867",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1352042554",
+        "voter": "mojojojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457160010",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336901289",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343046311",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039370994",
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4689184321",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "924825759",
+        "voter": "schattenjaeger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2382508857",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143571824",
+        "voter": "flowergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615424969",
+        "voter": "nathanjtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77317255",
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1692965069",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50568084",
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50536471",
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50532230",
+        "voter": "friends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50508468",
+        "voter": "lookie-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52005424",
+        "voter": "natord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55484657",
+        "voter": "steemettes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317220",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1757970224",
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4316683465",
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2918207689",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74402358",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1309209290",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154426469",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161446234",
+        "voter": "yasiin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164151372",
+        "voter": "flowmetheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147014100",
+        "voter": "eunnykim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065088190",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159374062",
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156089617",
+        "voter": "kalev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152729000",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276984194",
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132806923",
+        "voter": "swtcamito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158051137",
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157727916",
+        "voter": "dulani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141916333",
+        "voter": "laskoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154501465",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119814391",
+        "voter": "oliver.smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157648960",
+        "voter": "viper666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110346066",
+        "voter": "jack.johnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160689927",
+        "voter": "paulreifsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122578153",
+        "voter": "rubenkusters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157126941",
+        "voter": "adpipop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157060221",
+        "voter": "craneos6626"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147606365",
+        "voter": "laskovskiy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153814397",
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159993665",
+        "voter": "ttarabichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156821466",
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125821091",
+        "voter": "jasonxg"
+      }
+    ],
+    "author": "dantheman",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://i.imgflip.com/p1ij6.jpg<br/>**CENSORSHIP**</center>\n\nLanguage is a very powerful tool because it shapes the way we think. The words we choose to use [impact how we think, feel, and reason about the world around us](https://en.wikipedia.org/wiki/Linguistic_relativity). Today I would like to address the word *censorship* because it is a very hot topic on steemit.\n\nThe first problem we always face is different and ambiguous definitions for censorship.  Unfortunately, it isn\u2019t always practical to *define* our terms in every debate and therefore drama queens toss the term \u201ccensorship\u201d around far too easily. I would go so far as to say that the censorship card is played about as often and illegitimately as the race card.  Often those who play the *race card* are more *racist and oppressive* than those they slander, the same principle applies to those who play the censorship card.\n\n## Censorship requires Aggression \n\nThe defining characteristic of a free society is the absence of initiation of violence. This includes the credible threat of violence, fraud, theft, etc.   Without the threat of aggression people can freely say whatever they want, whenever they want without fear that their person or property will be harmed. A critical distinction of a free society is that you cannot express yourself in ways that violate the property rights of others.\n\n## Graffiti is Aggression and violation of Property Rights\n \nGraffiti is defined as writing or drawings scribbled, scratched, or **sprayed illicitly on a wall or other surface in a public place**. In a free society the Graffiti artist would be tracked down and expected to pay restitution to the property owner.  No rational individual would argue that the artist has been censored by the property owner or that the property owner is the one initiating aggression against the artist.\n\n## Property Owner defines Art vs Graffiti \nThere are places where graffiti-style art is acceptable and is actually encouraged. In this case no aggression has occurred and therefore the action is legitimate. \n\n<center> https://farm8.staticflickr.com/7485/15754046208_7d666a75a9_o.jpg</center>\n\n## Spam, Porn, Harassment, and Fraudulent posts are Digital Graffiti  \n\nWhen it comes to websites like Facebook, YouTube, Google, Reddit, and Steemit we have digital property owned by individuals providing a free and voluntary service to society. It is not possible for these organizations to censor user content because they are not using violence, theft, etc. \n\nThe only true censorship is when government agents approach these companies and demand content be removed under threat of force or violence.  Provided these companies are not under any kind of threat, there can be no censorship.\n\nWhen someone [demands that YouTube share ad revenue](/steemit/@calaber24p/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video) they are taking the role of the Graffiti artist that demands property owners not repaint over their artwork.\n\nSome people may consider the [Graffiti artwork worth thousands of dollars](https://en.wikipedia.org/wiki/Banksy), but this doesn\u2019t change the moral character of the vandalism.  Likewise, some people may feel their humor, sarcasm, teasing, crude language, or vulgar posts to be artwork and demand that other users see it and/or up vote it for payment. \n\n## Graffiti Hurts Community Value \n\nWe all love the idea that Free Speech adds value to the speaker, but our selfish desires to be heard come at the expense of the listeners.  Few people desire to move into a neighborhood where there is unfettered graffiti and complete disrespect for property rights.  Likewise, few people want to join an online community where there are no standards of mutual respect.\n\n## A Perception Problem \n\nWe have a very real problem in society today.  The problem is that people feel *entitled* to things that are not theirs.  Whether it is health care, google ranking, reputation, or [right for gay couples to be served by particular vendors who oppose gay marriage](http://www.politifact.com/florida/statements/2013/jul/08/tony-perkins/wedding-vendors-have-been-forced-participate-same-/).  These entitlements can only be delivered by initiating force and violence against innocent people.\n\nIf a particular vendor (YouTube, Facebook, Google, or your Local Florist) will not serve you, then you must take your business elsewhere.  Vendors who lose a significant amount of business will voluntarily reconsider their policies.   \n\n## But they have a monopoly!  \n\nTo the extent that a business gains the vast majority of the market share without relying on government regulations to shield them from competition, the monopoly is deserved and was earned by providing a quality product that others were unable to compete with.\n\nThere are no laws forcing everyone to use Google, YouTube, Reddit, or Facebook. There are no regulations preventing competitors from starting up and competing.  Complaining about their unwillingness to serve you is like a local mall refusing to allow certain tenants.  It will certainly make business more challenging for those tenants, but the prospective tenants are not entitled to a prime high-traffic spot in the mall.\n\n## Flagging Posts based upon Differing Opinions \n\nSome people have been complaining about users who down-vote posts they disagree with. The basis of the idea is that all posts are *entitled to* funding from those who support the ideas.  This stance is in direct opposition to the vested interests of every stakeholder.  \n\n\n<center>http://godfatherpolitics.com/wp-content/uploads/2014/03/thomas-jefferson.png</center>  \n\nWhat should happen when one stakeholder wishes to fund a cause abhorrent to another stakeholder of equal size?  The two opinions are canceled out and the remaining stakeholders get to decide.\n\n## Incentive to be Tolerant and Inclusive \n\nAll users, particularly whales, have financial incentive to be tolerant and inclusive.  This grows the overall network effect and makes everyone the most money possible.  To the extent any community adopts a culture of intolerance that overly restricts the range of acceptable opinion it will push people away.  New communities will form to serve the needs of those who are rejected and the free market competition for mindshare will continue.\n\n\n## Conclusion\n\nIf Steem remains a libertarian / anarchist enclave then it will fail to attract a broader audience and that in turn will mean that ordinary people will not get involved with cryptocurrency.  Likewise, if Steemit fails to curtail abusive, threatening, and toxic individuals it will also drive away the broader audience leaving only those with skin thick enough to take the abuse of trolls.  \n\nI want Steem be a healthy, vibrant community with engaging discussions from people with all points of view. Unfortunately (and fortunately?), I am only one of many users who have a say in what kind of content gets voted on.  Each and every one of us contributes to the culture and we will all succeed or fail based upon how we act.\n\nLets stop throwing the term \u201ccensorship\u201d around here on Steemit unless it is explicitly referring to the threat of violence.  It is out of place and conjures up inappropriate negative reactions similar to playing the race card.  Instead, lets focus on the rights of all voters to express their opinion for or against any post.  If you disagree with how someone is voting, then focus your argument on how something adds or removes value to the community rather than whether someone is committing the \u201cvile\u201d sin of non-censorship by utilizing their legitimate voting rights.\n\nSteemit is a free and voluntary platform built on the basis of free association; censorship is impossible in such an environment even if the community or steemit.com chooses to minimize the visibility of some content or block it all together.  \n\nThe blockchain is open, your content is logged and recorded for all time.  Anyone who wants to see your content or offer a competing service to steemit.com is free to curate and display what they like.  \n\n## P.S. On Definitions \n\nWe live in a world where common words are generally used in ways that are in direct contradiction of their meaning.  The unfortunate reality dramatically lowers the quality of public discourse because it allows people to talk past each other.  Activists leverage the emotional response to the word censorship to provoke people into violating the property rights of others.  It may well be that censorship is taking on a broader meaning that would also encompass the no coerced behavior of Google, Facebook, etc.   The problem with the broader meaning is that the word censorship is no longer useful for accurately defining moral/immoral behavior.  Under the broader definition, accusing someone of censorship is as meaningless as accusing them of filtering spam emails.  How dare they censor spam artists!",
+    "body_length": 8987,
+    "cashout_time": "2016-10-08T03:07:00",
+    "category": "censorship",
+    "children": 164,
+    "created": "2016-09-06T18:45:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"censorship\",\"steemit\",\"steem\"],\"image\":[\"https:\\/\\/i.imgflip.com\\/p1ij6.jpg\",\"https:\\/\\/farm8.staticflickr.com\\/7485\\/15754046208_7d666a75a9_o.jpg\",\"http:\\/\\/godfatherpolitics.com\\/wp-content\\/uploads\\/2014\\/03\\/thomas-jefferson.png\"],\"links\":[\"https:\\/\\/en.wikipedia.org\\/wiki\\/Linguistic_relativity\",\"\\/steemit\\/@calaber24p\\/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Banksy\",\"http:\\/\\/www.politifact.com\\/florida\\/statements\\/2013\\/jul\\/08\\/tony-perkins\\/wedding-vendors-have-been-forced-participate-same-\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T18:45:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 117550898840994,
+    "parent_author": "",
+    "parent_permlink": "censorship",
+    "pending_payout_value": "1193.934 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "censorship-is-impossible-in-a-free-society",
+    "post_id": 874688,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Censorship is impossible in a Free Society",
+    "title": "Censorship is impossible in a Free Society",
+    "total_payout_value": "0.000 HBD",
+    "url": "/censorship/@dantheman/censorship-is-impossible-in-a-free-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20924903115",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316515996824",
+        "voter": "chitty"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "53674162292",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375656420380",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37310054020",
+        "voter": "james-show"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "2261027179",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401475391",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426173324",
+        "voter": "murh"
+      },
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "24526746705",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208985003729",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15761970927",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2706408618",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "61572228994",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "85869752009",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44050470303",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10487597892",
+        "voter": "nineyards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3661397048",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59328435116",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32438700122",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8253914298",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8181635146",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14239373762",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30764850573",
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "441006366819",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112591076283",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155086424302",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66801231",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4047643732",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3092827406",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "434137550",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2614032281",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "395135521",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43466091162",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3789831728",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5556418828",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2552654221",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "957548802260",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212019463",
+        "voter": "jasen.g1311"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "2338658584",
+        "voter": "ace108"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "12829825322",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4238804280",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52207362",
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25386139768",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5075657424",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393674302",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "63288595594",
+        "voter": "laonie"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "7296353019",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58804600",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "13007083652",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "103099601827",
+        "voter": "somebody"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "3856981690",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "22781126275",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "7095478692",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154454721",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "1782244397",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "3591246793",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2846899090",
+        "voter": "lightsplasher"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "235835929",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10995099944",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68417395",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53516176",
+        "voter": "cnmtz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26476661103",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59047422",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2897317590",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631282506",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9771811576",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91543033",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12721442209",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335474158",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "842943776",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52636635",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116378965",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78376579",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144014259",
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146428143",
+        "voter": "anysound.studio"
+      }
+    ],
+    "author": "craig-grant",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "change gon come\nhttps://www.youtube.com/watch?v=pb7shsTextM\n\n### read Ned's post @ https://steemit.com/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction\n---\n\n---\nhttps://www.steemimg.com/images/2016/09/07/20160907_200828f7272.jpg\nhttps://www.steemimg.com/images/2016/09/07/20160907_20085398483.jpg\n\n####  Get 3 meals for $30(shipping included), each meal serves two. That's $5 per meal for the highest quality food you will ever taste @ [https://www.homechef.com](https://www.homechef.com/invite/ezxbJf89eBnV)\n---\n\nFollow @craig-grant\n\nHeaven = have fun :)",
+    "body_length": 586,
+    "cashout_time": "2016-10-09T05:09:18",
+    "category": "freedom",
+    "children": 15,
+    "created": "2016-09-07T23:51:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"freedom\",\"steemit\",\"steempower\"],\"users\":[\"craig-grant\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/pb7shsTextM\\/0.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/20160907_200828f7272.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=pb7shsTextM\",\"https:\\/\\/steemit.com\\/steem\\/@ned\\/increasing-curation-demand-for-steem-power-and-community-interaction\",\"https:\\/\\/www.homechef.com\\/invite\\/ezxbJf89eBnV\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T00:31:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 3501633293272,
+    "parent_author": "",
+    "parent_permlink": "freedom",
+    "pending_payout_value": "1.473 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steem-report-curation-and-steem-power-ideas-by-ned",
+    "post_id": 887381,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "STEEM report, curation and steem power ideas by Ned",
+    "title": "STEEM report, curation and steem power ideas by Ned",
+    "total_payout_value": "0.000 HBD",
+    "url": "/freedom/@craig-grant/steem-report-curation-and-steem-power-ideas-by-ned"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6037220797579",
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6188577829665",
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "44768805123",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275442884564",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104040479",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768680486",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683998880",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6866537342197",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54822763106",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62230748588",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663275306",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213794688",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624987874",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973106272",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2426634324",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288351745",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "407365466819",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 0,
+        "rshares": "5909000055",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34065858898",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1676027632124",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426395561",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12169071403",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2014177224856",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110343825376",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56082132071",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208041294929",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "810326494",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687280474158",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82816554383",
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52215058764",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328801133166",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5337878917",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11267463759",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27228156990",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13487365582",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48416629676",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916861351",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25669997218",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1716002786",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7545983800",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25386139768",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70391342282",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297488015220",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11496127617",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62030829",
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17391787537",
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9074805566",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79579408",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69901150",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60418402",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7577221661",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54523663",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25313560101",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336916962",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71104606",
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78462337",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112139269",
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143652897",
+        "voter": "zaidkhalifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158720852",
+        "voter": "carloss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130634157",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149129648",
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154943231",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145903154",
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138768078",
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150546432",
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Community & Social Media Manager\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for an exceptional communicator to be the liaison between Steemit and our rapidly growing user base.  This is a role where you will be an expert in building and growing communities on and offline; you\u2019ve got ideas for this and can implement them.  You can also think big picture and for the long term \u2013 your ideas will reflect that.  Online communities are where you thrive and as such you know how to leverage them and will be able to do so for Steemit.  You have a track record of getting things done, live and breath social media, and want to work with a fast growing company that will change the world.\n\n### Responsibilities\n- Help deliver a best in class user experience to Steemit users who engage with us through social media\n- Be an active voice on relevant channels as a Steemit advocate\n- Monitor and post content to and across other social media networks including Facebook, Twitter, Reddit, etc. on a daily basis\n- Develop and track performance metrics for social media channels and advise on ways to maximize performance\n- Develop customer acquisition strategies through social media channels\n\n### Qualifications\n- 2 or more years of experience managing a brand's online presence\n- Motivated self-starter with great communication and writing/editing skills\n- Ability to collaborate and work with others, taking their viewpoints into consideration\n- Good judgment, professionalism, and levelheadedness as a social media ambassador\n- Nice to have: Interest in cryptocurrency and blockchains with experience in the community\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 2344,
+    "cashout_time": "2016-10-09T20:59:42",
+    "category": "steemit",
+    "children": 21,
+    "created": "2016-09-08T14:25:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitjobs\",\"jobs\",\"marketing\",\"socialmedia\"],\"image\":[\"https:\\/\\/farm9.staticflickr.com\\/8190\\/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:53:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 25834048756473,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "40.211 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "new-steemit-job-posting-community-and-social-media-manager",
+    "post_id": 892705,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Community & Social Media Manager",
+    "title": "New Steemit Job Posting: Community & Social Media Manager",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitjobs/new-steemit-job-posting-community-and-social-media-manager"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..664a3da09fd67fb147b296e6a253776bddad3ce6
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit.pat.json
@@ -0,0 +1,24990 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "2900",
+        "reputation": 176979684007,
+        "rshares": 10680230250228,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6757100093988,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "5000",
+        "reputation": 25104157850610,
+        "rshares": 1118902601491,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5925537844699,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 3828633672665,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099954800,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 210935138158,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3763461212,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690406462,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54134101721,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661302953,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213684579,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10777629083,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622843501,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967387415,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 21550256405,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392405354610,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 279111662172,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 196163592993,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288174518,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 74205930982,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2859098472,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5349082417,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59226109387,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1154102439,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432421152,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 1506024470,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 370098823461,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 917932650,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 516144252764,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1350589595,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 7658293419,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 314968895861,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 22791323090,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2596798738,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1490143673659,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687044369011,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2797012370034,
+        "rshares": 2277766230,
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 265741725388,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 392842631094,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 41240110326,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 8970769157,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3125302080,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 55677464852,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156169282296,
+        "rshares": 282967064,
+        "voter": "sonyanka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 54720712494,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 10312089759,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 457654847,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 75271969902,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12378378533,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4569401045,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 36245526538,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3967602880,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 15604637635,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1282893744,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 317446577,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 17676726210,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 79327997987,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37118933112,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 11621730593,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19174335590,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "8000",
+        "reputation": 6467956247739,
+        "rshares": 17229683384,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1449783634,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182392593276,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1639613775527,
+        "rshares": 3475085906,
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 7258620066,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 38490866307,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15696374746,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 722574736,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 96847284284,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19410587962,
+        "rshares": 1955550774,
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26465755082,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 31250845331,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8308751917,
+        "voter": "taker"
+      },
+      {
+        "percent": "8000",
+        "reputation": 3194641726781,
+        "rshares": 18077487422,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1312318561,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3138994752,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 133044304,
+        "voter": "luke490"
+      },
+      {
+        "percent": "8000",
+        "reputation": 11122126920308,
+        "rshares": 3155521800,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 2330702675,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 687222192,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1367410476,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 982813675,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "8000",
+        "reputation": 4637390447698,
+        "rshares": 932742778,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 54210250128,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18105338219923,
+        "rshares": 16517911072,
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3442234051,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 10969248240,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 2119284500,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 21912805745,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 39122672915,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 10587465402,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 6511663813,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 12934893314,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23294106,
+        "rshares": 57027057,
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57022706,
+        "voter": "cloud1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8298658614343,
+        "rshares": 5899789038,
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329317015182,
+        "rshares": 316012583,
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 3648819614,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3893409579,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57896578,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18873434262,
+        "rshares": 57588741,
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 362203207,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 966857371343,
+        "rshares": 1659124232,
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2582438657,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282251870,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 217739533,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 103730281,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50603364,
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25713525688,
+        "rshares": 54376435,
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 367433800,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4408882617025,
+        "rshares": 2283906005,
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 60123439,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 74117002,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726273314822,
+        "rshares": 511475810,
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 55357981,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 96292269,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23031447736,
+        "rshares": 52610096,
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20789357061,
+        "rshares": 56130433,
+        "voter": "jessica.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1715232698,
+        "rshares": 83347013,
+        "voter": "flourishing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 227374514,
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207621757319,
+        "rshares": 714843637,
+        "voter": "earthtodr01d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57563330721,
+        "rshares": 51409471,
+        "voter": "drherhel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1780315,
+        "rshares": 50290667,
+        "voter": "elena-guseva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15629621723,
+        "rshares": 82372906,
+        "voter": "doctorkot873"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286727,
+        "rshares": 80735872,
+        "voter": "dumpz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 164330251,
+        "voter": "rogelio11"
+      }
+    ],
+    "author": "kafkanarchy84",
+    "author_reputation": 18105338219923,
+    "beneficiaries": [],
+    "body": "# Happy September. #\n<a href='https://postimg.org/image/3wokqy0mf/' target='_blank'><img src='https://s15.postimg.org/3jx6kricr/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/'>\n\n**I know others on this website have said this, so I'm not the first, but yeah, I quit my job to write for Steemit.** \n\nActually, though, that's not entirely true. It's kind of true. I quit my job because something shifted inside of me. When the job was gone, Steemit, on the selfsame day, rose up into my focus immediately to fill the void like it was just waiting for me to finally get real. To do this stuff I've always been wanting to do. And always *have been doing* at the expense of sleep, money, time, etc. I was now beginning to get *paid for it.* What the!?!\n\n**The first half of August was bliss.** After some initial discouragement, I found some good verbs in the mouth of one Sterlin Luxan, and was inspired to actually dig down inside of myself and make a more [honest post.](https://steemit.com/steemit/@kafkanarchy84/why-i-have-quit-five-jobs-in-the-past-six-years-a-steemit-confessional) I finally made twenty bucks on the site. From there I thought, hell, I'll just do this full time. I began to make significant sums of cash for an honest day's worth of work writing, and felt that with my side job,  as long as I hammered down, I would be able to cover my family's usual expenses by the time September rolled around.\n\n\nhttps://s22.postimg.org/wk9d1kjsx/image.jpg\n*Spending time with my son has been one of the biggest bonuses of leaving my 9-5.*\n# **Well. August 31st. Paying all my bills with SBDs? No such luck, my friend.** # \n\nBut I will tell you one thing. I never dreamed I could pull down 2Gs cold, hard cash through writing in less than a month, even if one half of it is still vested in Steem Power (I am happy about this). I was sick to my stomach, though. I have a wife and a child. Playing games at this point was not an option. Still....I had heard something that was very lovely and very clear.\n\nIt was a kind of feeling I have never had before, but which was also at once very perfectly familiar. As my kid is playing on the Octopus slide behind me, and I am staring out at the sea, it hits me:  ***It's over. You will never teach kids again.***\n\n<a href='https://postimg.org/image/4xqdopsip/' target='_blank'><img src='https://s16.postimg.org/dfztt1z1h/image.jpg' border='0' alt='image'/><br />\n\n**Weird. It's like my wish, but this time I am not even wishing for it. It comes to me. I just know that that chapter of my life is completed. That was the day after I quit my job.**\n\n**Fast forward to the end of the month.** I haven't made enough money like I had hoped....I pray to someone or something over my Matsuya beef bowl in the sketchy back alley district of the burlesque dancers: *what should I do?* I was really, really feeling low and full of doubts and self-accusations.\n\nImmediately that silly voice came back again: \n # *(Keep doing what you're doing)* #\n\nI haven't been eating this month. Haven't been sleeping. Have had headaches. Upset stomach. Welcome to fear. Welcome to the real shit. You were so cocky! Are you lazy!? You didn't like your job but so what!? You've got a family!!! Son comes home from daycare. *DAAAAADDDYYYYYY!!!!!!! Let's play!!!!!*\n\nPull yourself together.\nDon't show your frayed nerves.\n\n**My wife is equally worried.**\nShe needs security. She wants to get into massage. Vocal training school. So many dreams. Here I am sitting around the house in my underwear when all I really want to do is hand her a big fat envelope full of money.\n\nhttps://s17.postimg.org/56h7g4qxb/image.jpg\n\n**I've never been lazy. I will work my ass off when I care, and when I need to.** Fuck sleep. Fuck food. Fuck everything but the goal. \n\n# I just can't seem to give a damn about most shit that everybody else says is important. #\nWell, a lot of shit, at least. Still. Mouths to feed, my friend. But that \"voice,\" didn't it mean something? And despite the nerves, hasn't this been one of the happiest, most productive months of my life? Yes. Yes, and yes. Besides, the other job was no good. Bad, unsustainable situation. You know that, Graham.\n\nhttps://s15.postimg.org/i7lfk6hzv/image.jpg\n*My buddy Kevin shows up to the Local.*\n\n**Back to now, August, 31st, 2016. Evening. I went to my friend Craig's bar tonight.** At the depth of my despair, on the bus ride over, I received a mail from my other friend, Aidan. There might be some part time work at his school. Mail sounds promising. \n\nAfter a couple beers at Craig's place it is settled I will work Saturdays mixing booze and playing guitar. I am starting to feel good again. It is starting to seem possible that I can build my own, full-time, part-time \"Steem-lance\" schedule. [Fake priest weddings](https://steemit.com/religion/@kafkanarchy84/my-life-as-a-fake-priest-true-believer), English classes, serving beer and singing....and....\n\n# STEEEEEEEEEEEEMMMMMM!!!!!!! #\n\nAnd you know what? \n\nI am going to document it every step of the way. This is the first episode. Hope to see you next time, from my first day on the job as a bartender. \n\nhttps://youtu.be/jasziAzaiZ4\n\n<a href='https://postimg.org/image/rjlhw49rp/' target='_blank'><img src='https://s18.postimg.org/aj2lnfwqh/image.jpg' border='0' alt='image'/><br /><a target='_blank' href='https://postimage.org/'>\n\nhttps://s17.postimg.org/yb9pkx39b/image.jpg\n*Basically how I feel now that I have discovered Steemit.com*\n\nPeace, Love, and Anarchy,\n\n~KafkA\n\nP.S. Another thing I have never been good at is keeping a consistent diary. I'm too private, and can't be bothered, even for myself. Should \"My Steemit Life\" transform into an existentialist thought stream ramble resembling a blog-turned-extended-acid trip, please forgive me. Maybe I will commit to  5 episodes. That sounds like a good number to me. Deal?\n\n***\n*Graham Smith is a Voluntaryist activist residing in Niigata, Japan.*",
+    "body_length": 5976,
+    "cashout_time": "2016-09-08T18:17:12",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-01T18:17:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"blog\",\"life\",\"money\",\"writing\"],\"image\":[\"https://s15.postimg.org/3jx6kricr/image.jpg\",\"https://s22.postimg.org/wk9d1kjsx/image.jpg\",\"https://s16.postimg.org/dfztt1z1h/image.jpg\",\"https://s17.postimg.org/56h7g4qxb/image.jpg\",\"https://s15.postimg.org/i7lfk6hzv/image.jpg\",\"https://img.youtube.com/vi/jasziAzaiZ4/0.jpg\",\"https://s18.postimg.org/aj2lnfwqh/image.jpg\",\"https://s17.postimg.org/yb9pkx39b/image.jpg\"],\"links\":[\"https://postimg.org/image/3wokqy0mf/\",\"https://postimage.org/\",\"https://steemit.com/steemit/@kafkanarchy84/why-i-have-quit-five-jobs-in-the-past-six-years-a-steemit-confessional\",\"https://postimg.org/image/4xqdopsip/\",\"https://steemit.com/religion/@kafkanarchy84/my-life-as-a-fake-priest-true-believer\",\"https://youtu.be/jasziAzaiZ4\",\"https://postimg.org/image/rjlhw49rp/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T19:21:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34863582559813,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "141.758 HBD",
+    "percent_hbd": 10000,
+    "permlink": "my-new-steemit-life-ep-1-write-write-write-and-fill-me-up-barkeep",
+    "post_id": 1088170,
+    "promoted": "250.000 HBD",
+    "replies": [],
+    "root_title": "My New Steemit Life, ep. 1. Write, write, write and fill me up, barkeep",
+    "title": "My New Steemit Life, ep. 1. Write, write, write and fill me up, barkeep",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@kafkanarchy84/my-new-steemit-life-ep-1-write-write-write-and-fill-me-up-barkeep"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 145171381514207,
+        "rshares": 566627757523,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 172935370348,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 979750467824,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3720488193,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4516841735,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 828581067,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 65037632700,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1993835727,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256442875,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 398407857501,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 405156538906,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2578424778892,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 11606677474,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747493846,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1161008754,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327846425796,
+        "rshares": 5042513512,
+        "voter": "sammy007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 21127702358,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392330736044,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 303917950005,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345836633,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 22047833256,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3366382061,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 596707334180,
+        "rshares": 3904360862,
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 177791083963,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8045649981,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 22595244740,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5586884897,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3532411814632,
+        "rshares": 22786454650,
+        "voter": "teatree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34313430362,
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432715390,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 917851920,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "0",
+        "reputation": 5904057835766,
+        "rshares": 912434705,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6960979873594,
+        "rshares": 56501870239,
+        "voter": "aenor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 13177382319,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10327600289,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2217132176566,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85870977835,
+        "rshares": 6799266998,
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 233230107272,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 13833394447,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4387565307,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 323509837196,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 128856964990,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30097018787,
+        "rshares": 309032139,
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1877846106598,
+        "rshares": 30230668820,
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 179192996861,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1960155455032,
+        "rshares": 4045665201,
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2799169786,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 3512092095,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 4636329916,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 12972939718,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 5755812898,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3490323117,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 7000480953,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 58365810442,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 12820500774,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4997920619,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3125302080,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 55677464852,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4258098520,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 4959284136,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2737885092,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5115172637,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14515244254,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 5265412146,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 11343270265,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 512168285,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 15963348720,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2806857550600,
+        "rshares": 7022246224,
+        "voter": "jholmes91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 1646087329,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 943863353,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 151052306779,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 91676883571,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 11951646778,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "100",
+        "reputation": 5463774640621,
+        "rshares": 429990873,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19032649381,
+        "rshares": 181322915378,
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 18940589315,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 6198566354,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "8000",
+        "reputation": 338909620445,
+        "rshares": 9117162454,
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133430062956,
+        "rshares": 15663282979,
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 167157550959,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4564314455,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16814465318,
+        "rshares": 247212033,
+        "voter": "swaghetti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 5507864316,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 79012264189,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 7477138730,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1705318675121,
+        "rshares": 2927449570,
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 399177345,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 11984005559,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1254384994,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11216247387925,
+        "rshares": 123279502731,
+        "voter": "kevinpham20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 120671854452,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3840860910,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241600128334,
+        "rshares": 10218475734,
+        "voter": "kewpiedoll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 3021913571,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3022743349,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147627391,
+        "voter": "apptrade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33167351,
+        "rshares": 2109841036,
+        "voter": "applesauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4831185704,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2503443057,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 570936521,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 463879581,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7617108667,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17164865565,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3052689593,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 879507428,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 551563663183,
+        "rshares": 478035225,
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 30896278536,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2688248291,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2405411059,
+        "rshares": 152695761,
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 83547862361,
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4887223428,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2871713285,
+        "rshares": 64903901,
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 30591994425,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1838865673,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 2944662227,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 165604593,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3138994752,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 133044304,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134345349682,
+        "rshares": 7190135631,
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9322960051,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3507463169,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 11871680838,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 73603234,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 101244129774,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1418847949,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 249904869,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1237440732,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 7130857719,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 6300363201553,
+        "rshares": 13905458489,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 14291678999,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1624044881,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329317015182,
+        "rshares": 309692332,
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 1103360772,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103763051875,
+        "rshares": 58645215,
+        "voter": "dubloon135"
+      },
+      {
+        "percent": "0",
+        "reputation": 7258302306624,
+        "rshares": 305607086,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 9551786749,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17751314058,
+        "rshares": 55979644,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177940547303,
+        "rshares": 1890040933,
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 115499462203,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29018448461,
+        "rshares": 70310629,
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25835980056,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1565604150,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 41962066513,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 75599342,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 206212756,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 68932158,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4020037945,
+        "rshares": 53873853,
+        "voter": "mike1911"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 329313117,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73687899905,
+        "rshares": 55773949,
+        "voter": "alyssasanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 78982323,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 50182215,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 818498504,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1626480492,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 444262969,
+        "rshares": 72030714,
+        "voter": "rawbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151518932812,
+        "rshares": 4191984521,
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112287621,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1309073721476,
+        "rshares": 673845983,
+        "voter": "reddust"
+      }
+    ],
+    "author": "leavemealone",
+    "author_reputation": 177940547303,
+    "beneficiaries": [],
+    "body": "As we all sit here trying to build steem and support the project, Ned and Dan (two founders of Steemi) are transferring to Poloniex and dumping all over the buy orders killing the price.  Why are they doing this?  This needs to be stopped!!!\n\n![dumping](https://puu.sh/qWKV3/dde86c2c45.png)\n\nAnyone have any ideas what is going on here?  Is it time to get out while we can?",
+    "body_length": 373,
+    "cashout_time": "2016-09-08T22:49:21",
+    "category": "steemit",
+    "children": 116,
+    "created": "2016-09-01T22:49:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"market\",\"price\",\"steem\",\"poloniex\"],\"image\":[\"https://puu.sh/qWKV3/dde86c2c45.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T22:49:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 11370017153084,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "18.273 HBD",
+    "percent_hbd": 10000,
+    "permlink": "ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on",
+    "post_id": 1091486,
+    "promoted": "201.352 HBD",
+    "replies": [],
+    "root_title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "title": "@ned & @dantheman DUMP 50,500 STEEM on Market today!  WTF is going on?!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@leavemealone/ned-and-dantheman-dump-50-500-steem-on-market-today-wtf-is-going-on"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4264801627311,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6355020214373,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 210935138158,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4513752148837,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10777629083,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392405354610,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23476395882,
+        "voter": "yefet"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 404897958,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 376960001789,
+        "rshares": 4615942497,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 36761459891,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3148612688,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 976605325,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432543138,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 469385562681,
+        "voter": "cyber"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 316201719,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12858141661,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52123584116,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 7907158390,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 320412905,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657547218546,
+        "rshares": 6444619088,
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3472486489,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 154306980856,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 36245526538,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3748211699,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 8368454072,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1282893744,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19174335590,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1501784652,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 28355737154,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2179414806836,
+        "rshares": 10210797077,
+        "voter": "exyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 171701958057,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 435478790,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15699815948,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 14043989668,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 2338655401,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2991165818,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26465755082,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7849492736,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 165769057,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3138994752,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 97274422829,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 764960163,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10002818,
+        "rshares": 57930015,
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11628203002,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 586319380,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 235011136772,
+        "rshares": 172932392,
+        "voter": "ezrabcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 69498750,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7034398796,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3640096656,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 17334568050,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949895649943,
+        "rshares": 615797359,
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 13680199584,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 197982642374,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9213852022,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27027586,
+        "rshares": 51454384,
+        "voter": "wanglai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      }
+    ],
+    "author": "pinkisland",
+    "author_reputation": 6264990277085,
+    "beneficiaries": [],
+    "body": "<html>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=\"http://i.onionstatic.com/onion/2738/1/16x9/565.jpg\" width=\"565\" height=\"318\"/></p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Behind the desk, every student sits and observes every teacher and how they address the lesson. They look at one figure inside the class within their vision and that make the view limited in their eyes. But let switch the roles and try to see how the teacher look at their student in that big vision. Looking to a speaker is different than observing the reader. Chapter one in the book \u201cTeachers, Schools, and Society\u201d by David Miller Sadker and Karen R. Zittleman, discuss how teacher scenery is different from that of student and it guides the reader to find the positive and negative points for a teacher to encounter in his career; it will help reader to discover whether they should complete aiming for to become a teacher.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The goal for every reader is to find and choose the best career that will find happiness and bring the joy while practicing it. That\u2019s what makes the chapter more comfortable to read in; it didn\u2019t force the material on the reader but instead, it gives suggestions and real life examples about how being a teacher would look like. \u201cYou be the Judge\u201d is whole examples for a student to know how being a teacher could have a negative or positive impact on their lives, and it\u2019s a good way to them clarify their position whether to continue with being a teacher as a career meant to them or not convinced by. Also, there was a survey in the chapter that shows how many teachers get paid yearly in different states; it\u2019s a good side to the students to know that being a teacher could provide a decent life for them as a job.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Teachers need to have a bunch of specification in orders to be called a successor. Preparing a teacher to this career and guiding them to be effective to his class is an important step that could impact the whole future of both teachers and learner. That idea of preparation considers as an informative process and not implicit, and it\u2019s a good topic that's been clarified in that chapter. Moreover, another idea that been addressed at the end of the chapter is how the student could improve his skills and concepts of the learning process before graduation, and that been shown with listing several steps that the student should put into consideration in order to become successful and creative. It does not only help the learner himself in the long run but also give a chance to make his future classes more creative and cooperative at the time. For instance, some of the steps say that the teacher should study their courses that the handle carefully and planned for them ahead to make sure it\u2019s clear to him and would be to students at the time. Also, they should have a good impression during their learning process and to keep on building it on. That\u2019s how a student could have some ideas to consider and to begin with if they are struggling with what to start with or improve while they are still learning about their career.</p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Students should figure out if the teaching career is the one that meant to them and they will enjoy practicing end for most of their life. That chapter did a good job in discussing some topic that will help the student take their decision regarding this career and if they willing to take that challenge and start filling and building their knowledge. It does not only help the student to become successful teachers but also prepare them to make a more bright future for the generation they will be willing to teach, and to be creative with their work and thoughts. So, after knowing and considering what a teacher need to handle and think of, the student will start to find their own way to teach and make their job process different from other teachers they encounter before.&nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 4322,
+    "cashout_time": "2016-09-09T01:14:12",
+    "category": "writing",
+    "children": 7,
+    "created": "2016-09-02T01:14:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"writing\",\"analysis\",\"steemit\",\"life\"],\"image\":[\"http://i.onionstatic.com/onion/2738/1/16x9/565.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T01:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17239525786043,
+    "parent_author": "",
+    "parent_permlink": "writing",
+    "pending_payout_value": "37.412 HBD",
+    "percent_hbd": 10000,
+    "permlink": "teaching-as-a-career-or-analysis-of-the-book-teachers-schools-and-society",
+    "post_id": 1092931,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Teaching As A Career  | Analysis of the Book : \u201cTeachers, Schools, and Society\u201d",
+    "title": "Teaching As A Career  | Analysis of the Book : \u201cTeachers, Schools, and Society\u201d",
+    "total_payout_value": "0.000 HBD",
+    "url": "/writing/@pinkisland/teaching-as-a-career-or-analysis-of-the-book-teachers-schools-and-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3500",
+        "reputation": 145171381514207,
+        "rshares": 10188876905486,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 3830035846987,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3720292037,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 215423119821,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4516598968,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 828540282,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 65013129899,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1993734736,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256433164,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 731040242281,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747456946,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160950489,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392405354610,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 285682873005,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345823038,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432554801,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 399788237,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1460925170254,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 221213340693,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 11592975842,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 67555883079,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 392842631094,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 261495678,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3125302080,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 61289877049,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 154306980856,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 89328435008,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 152897742927,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1410670651,
+        "rshares": 2212025362,
+        "voter": "johnnydollar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 36245526538,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1282893744,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37122522843,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19174335590,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 12483663020,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 2461729572,
+        "voter": "ace108"
+      },
+      {
+        "percent": "3800",
+        "reputation": 17698439393799,
+        "rshares": 12032742765,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26465755082,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161798129127,
+        "rshares": 159607688,
+        "voter": "naomi-louise"
+      },
+      {
+        "percent": "1900",
+        "reputation": 10771708337101,
+        "rshares": 250847007495,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2300",
+        "reputation": 18027204457681,
+        "rshares": 7631325795,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 262882640828,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206355094166,
+        "rshares": 9839187353,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 58103637174,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3138994752,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "1900",
+        "reputation": 3016325652890,
+        "rshares": 28138748642,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311638758804,
+        "rshares": 314141984,
+        "voter": "rusteller"
+      },
+      {
+        "percent": "3900",
+        "reputation": 1851205309677,
+        "rshares": 1775190239,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 687222192,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 9157721462,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 603283562,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61110411,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 97274422829,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2551239163442,
+        "rshares": 7816453178,
+        "voter": "johnnyyash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10002818,
+        "rshares": 57930015,
+        "voter": "success43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 10290925854,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1773143509,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 23001901442,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740952354750,
+        "rshares": 282840398,
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 477616797,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1373853332548,
+        "rshares": 269346417,
+        "voter": "serioustruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4408882617025,
+        "rshares": 2238227885,
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 75599342,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189363957513,
+        "rshares": 66091870,
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23031447736,
+        "rshares": 51578525,
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 2169778252,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13744830964,
+        "rshares": 50828978,
+        "voter": "mocat15"
+      }
+    ],
+    "author": "serioustruth",
+    "author_reputation": 1373853332548,
+    "beneficiaries": [],
+    "body": "<html>\n<p><em><strong>Yesterday I added a really crappy post on Steemit</strong></em>. Although it was a bit of a <em><strong>negative post</strong></em>, I received some <em><strong>positive feedback</strong></em>. I realised that I have been looking at Steemit from the wrong perspective.&nbsp;</p>\n<p><img src=\"https://s20.postimg.org/m18fyrqb1/download_1.png\" width=\"225\" height=\"225\"/></p>\n<p>You see... <em><strong>I am a teacher</strong></em>, and to look at something from a teacher's perspective, is totally different than looking at something from a parent's point of view, or even a fellow steemit writer. &nbsp;I would like to thank @RHW for listening, and I am very glad to be part of this community. Many projects are being launched, &nbsp;and the whales are putting in a lot of effort to notice the new aspiring writers.</p>\n<p>I have changed my view on things now, &nbsp;I make a point to read as many posts as possible. I comment if needed, and I upvote a post if I find it interesting. We are not in a race here. We are after all in the business of finding new undiscovered talent and to be heard. Now, also said, that what interests me, <em><strong>might not be interesting to you at all.&nbsp;</strong></em></p>\n<p>What I have noticed is that there are quite a few nasty people on steemit. I am certainly not going to call them by their names, but I really feel sorry for these people, as they would not give someone the time of day.</p>\n<p><em>I felt very offended by some of the comments made about my post, but realised that negative feedback can be changed into a positive view.&nbsp;</em></p>\n<p><strong>I do not promote or upvote a post just for the sake of upvoting.&nbsp;</strong></p>\n<p><strong>I &nbsp;do my fair share by reading as many posts as possible about my interests.&nbsp;</strong>Now, also said, that what interests me, <em><strong>might not be interesting to you at all.&nbsp;</strong></em></p>\n<p><em><strong>But people are just people.</strong></em>............people&nbsp;should try and upvote the good posts and promote these writers, so we can have new and exciting reading material here on Steemit.&nbsp;</p>\n<p>If you do not succeed today, tomorrow is a new day. Try harder. Do not let negative comments make you lose your way. Don't give up. <em><strong>Stay positive.&nbsp;</strong></em></p>\n<p><em><strong>Because if you are noticed by the right person, then your posts will mean something. Then you will have a voice.</strong></em></p>\n<p>I am totally up for a good debate and if you don't agree with me on posts, then&nbsp;feel free to contact me and we can discuss your opinion. Everyone is entitled to their own opinion. If you like my posts please follow me on<a href=\"https://steemit.com/@serioustruth\">@serioustruth</a><br>\nTogether we can change the world. Feel free to share or promote my posts. I want to make a difference to the way people think.</p>\n<p>&nbsp;\u2764<strong>Keep on steeming!</strong></p>\n</html>",
+    "body_length": 2969,
+    "cashout_time": "2016-09-08T23:53:00",
+    "category": "success",
+    "children": 12,
+    "created": "2016-09-01T23:53:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"success\",\"steemit\",\"life\"],\"image\":[\"https://s20.postimg.org/m18fyrqb1/download_1.png\"],\"links\":[\"https://steemit.com/@serioustruth\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T00:01:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 19268044087375,
+    "parent_author": "",
+    "parent_permlink": "success",
+    "pending_payout_value": "46.997 HBD",
+    "percent_hbd": 10000,
+    "permlink": "why-we-can-all-succeed-in-life",
+    "post_id": 1092128,
+    "promoted": "200.000 HBD",
+    "replies": [],
+    "root_title": "Why we can all succeed in life",
+    "title": "Why we can all succeed in life",
+    "total_payout_value": "0.000 HBD",
+    "url": "/success/@serioustruth/why-we-can-all-succeed-in-life"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 535956001874,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 376210910452,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "300",
+        "reputation": 13270505121655,
+        "rshares": 2530030733798,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6868791504690,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726151150,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 229262004927,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524044786,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 820975377,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7162998420481,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66022454227,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996536940,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256574080,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1316552393,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 107564523042,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7511884959,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1813913350,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1281991226298,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 424835962491,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 761501110340,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1131940785371,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 29824545969,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750134298,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1196536230119,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168025207,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2745281235040,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3593784049076,
+        "rshares": 35404297187,
+        "voter": "joshua"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 406975103750,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47033692888,
+        "rshares": 1424182557,
+        "voter": "jbradford"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 9180689311,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346059306,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 15938088337,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76633033946568,
+        "rshares": 753663976673,
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 375482272962,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "1700",
+        "reputation": 1339573287588,
+        "rshares": 1796764686,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 73847143577,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 76668352353,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 190169312803,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8604717232,
+        "rshares": 489465667,
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": 50872817,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "900",
+        "reputation": 376960001789,
+        "rshares": 612581945,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 309142566089,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9534901206,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 666331594856,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "500",
+        "reputation": 15755437221598,
+        "rshares": 1827793190,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 205903307851,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 39833240245,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1027351719,
+        "voter": "coar"
+      },
+      {
+        "percent": "666",
+        "reputation": 2902053059801,
+        "rshares": 353351990,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 17601176156,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 405843973774,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 10341217409,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 57144356191,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 260079987946,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 75980218281,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 13518268974,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16316471180830,
+        "rshares": 140526207453,
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 412467399967,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2170379596106,
+        "rshares": 22430460071,
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 418622798,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2274330399691,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771738440035,
+        "rshares": 4190059511,
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4260826979219,
+        "rshares": 7998622846,
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 105851824009,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 18555285556,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 382747136304,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 487099978706,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23735859481,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1130181250,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19586514634,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 16087619085,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173891397847,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "7800",
+        "reputation": 598181152117,
+        "rshares": 145235686062,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2745357590,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "400",
+        "reputation": 5571311902261,
+        "rshares": 282225162,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 6545907918,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2249535177,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6606808474,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 375067125844,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 6022204460,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8036262291,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 7122827147,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 68386703441,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5599529516,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 280810708,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3576117505,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "3300",
+        "reputation": 336763673779,
+        "rshares": 57002255623,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 33046735905,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 5149116277,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5303452399,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 75826571301,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5263073872,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 24175712542,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2715996666,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 119977364734,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5598045313,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 342395061261,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 5899298096,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 15365648590,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1631145568,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 14995507254,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 6317322640,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1501769437,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1353291463754,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 97164483535,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 43603809494,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 740422795,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 18303819148,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11146913938,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 176060985385,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 29810248025,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10859176140,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 66112176064,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 13884859240,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 416152871,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 12348118332,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1311079777932,
+        "rshares": 1907615672,
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 806370035,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 53708107979,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 417250555684,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42186828341,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5699385361,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "0",
+        "reputation": 9999779221262,
+        "rshares": 827785579,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2553460193,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 194516421502,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 32130489151,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3423042796,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 9367946580,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2314406420479,
+        "rshares": 2224818881,
+        "voter": "earnest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3576934262,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3446220471,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 14106406643,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 2314291578,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 27102377358,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5468461567,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7815470684,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1019125915486,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 24288681391,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 10888263743,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 102801288,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16793516,
+        "rshares": 424845000,
+        "voter": "berrysmok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39913884914319,
+        "rshares": 37652543503,
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 940261675,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639471735,
+        "voter": "curator"
+      },
+      {
+        "percent": "7800",
+        "reputation": 17698439393799,
+        "rshares": 23270267458,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1480528431,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 6376633931,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 10123028535,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 584752369,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 15817307763,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 156369688,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 862061134,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 4090189555,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2666801113,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40835071879,
+        "rshares": 2238357029,
+        "voter": "dirty.hera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92225510961,
+        "rshares": 131625157,
+        "voter": "yulia98"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3278418228934,
+        "rshares": 512229631,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "1500",
+        "reputation": 988942038058,
+        "rshares": 10720241925,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 61911147,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 63085782,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "7800",
+        "reputation": 10771708337101,
+        "rshares": 793861382304,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 1928457089,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447426144854,
+        "rshares": 942093795,
+        "voter": "transhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 21837989409,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22352782004,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22360931482,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 24149442143,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "7800",
+        "reputation": 18027204457681,
+        "rshares": 27629185020,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "7800",
+        "reputation": 5776723480371,
+        "rshares": 167928825704,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 16350272739,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "7800",
+        "reputation": 206355094166,
+        "rshares": 6522124565,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 6185106786,
+        "voter": "brendio"
+      },
+      {
+        "percent": "7800",
+        "reputation": 97845484474,
+        "rshares": 38527719167,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 63541793,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 473946643269,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4176872896,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6623452381,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1577306627,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22357085584,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22355328422,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22352611343,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22349767400,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22346006171,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22344294392,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "8000",
+        "reputation": 3016325652890,
+        "rshares": 92513391118,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46067925183928,
+        "rshares": 263105171887,
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 20622142384,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 20350336517,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5369683283,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "7800",
+        "reputation": 1851205309677,
+        "rshares": 3013299405,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 56650918931,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 63570195,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 59738641,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10973358869,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 57914427,
+        "voter": "steemo"
+      },
+      {
+        "percent": "7800",
+        "reputation": 4195733833721,
+        "rshares": 6073118497,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 22043736930,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 57765027,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1590670250,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849623403126,
+        "rshares": 1127808427,
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 10157142611,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 74494304,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3933354492,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1568155549,
+        "rshares": 61296223,
+        "voter": "strangedays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 84406705123,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 58653788,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "7800",
+        "reputation": 730408370151,
+        "rshares": 398349859,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 77220767,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1760257480,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 29749490788,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3789939590477,
+        "rshares": 5897804656,
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 7980606923,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 273211506,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58947349,
+        "voter": "wendelribeiro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55414210,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55396880,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55406673,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56566121,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 86327402421,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 9149533951,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57439383,
+        "voter": "wholefoods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22338332510,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 68437243690,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "3000",
+        "reputation": 18890223518661,
+        "rshares": 12648203513,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "1500",
+        "reputation": 11490547563070,
+        "rshares": 4009964661,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2214821974,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2500078806,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 261579534201,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4161934026,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54999739,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 153032594,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 446928899,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 2774307105,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 103203866500,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 22008008063,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961187,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 41405284088,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7270618086,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 53966805,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53613607,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 494664136,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 2731168114,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53252658,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54293199,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 9161548599,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52915101,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 92326483945,
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 992040757,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16147984004,
+        "rshares": 56897224,
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52560790,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52242652,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52230725,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 7295907898,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51922012,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1871240031576,
+        "rshares": 2377534516,
+        "voter": "lilmisjenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 341097233,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 620954332,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51994517,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 99072246,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5320196521,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 2437884565,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4765768150,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 1835091693,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50569452,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50516543,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50514225,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 67956001,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23031447736,
+        "rshares": 71092472,
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51484593,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 8066814624,
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22253174707,
+        "rshares": 52176950,
+        "voter": "saiku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 2856393738,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76034330,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154501261,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33159895743,
+        "rshares": 156889025,
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251629303655,
+        "rshares": 9342188316,
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79770443777,
+        "rshares": 155204122,
+        "voter": "budgiebee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18731007381,
+        "rshares": 155180811,
+        "voter": "majes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1309073721476,
+        "rshares": 154551739,
+        "voter": "reddust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 474962663,
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156136975,
+        "voter": "william007"
+      }
+    ],
+    "author": "tuck-fheman",
+    "author_reputation": 147478489309626,
+    "beneficiaries": [],
+    "body": "https://s18.postimg.org/aid72t4nt/too_old.png\n\n# [I'm Too Old For This](https://youtu.be/MqBNSMbEzI0)\n\nYou youngin's holding onto your new age Eckhart Tolle \"live in the now\" Aleister Crowley regurgitated belief systems and rah rah sycophant always positive philosophies (so long as the handouts are still being raked in), all while rewarding, if not exalting, people with a complete disregard for human decency amaze me and give me pause to think ...  **what in the $@#! happened to this world?!**\n<br>\n\nhttps://i.imgflip.com/1adksj.jpg\n\n# Back In My Day\n\nDuring my heyday, people were able to speak their mind, so long as they did so with respect and allowed others to voice their opinion as well. Everyone was different, and that's what made each individual interesting. Nowadays, it seems most people just want to be like everyone else and fit in. Don't rock the boat, else you won't get your reward! It's like being in a Kindergarten class full of 20-30 somethings.\n\nThis younger generation seems to worry more about figuring out how to make themselves into a Gawd, while at the same time arguing over which psychopathic authoritarian they are going to vote for as their supreme leader. They do more thinking about who to vote for to control their lives than they do how they are going to survive on their own for the next 40 years or more.\n\nhttps://s16.postimg.org/dqbzdofj9/OK_dees_1_Copy.jpg \n\nWhich one of these \"leaders\" (and I must quote that) is going to do more for me, seems to be the biggest question of younger generations. While at the same time they hold onto the belief that everything was created just for them and everyone else is merely a part of them; their own personal sock puppets of pleasure who must reward them when they do something they consider to be worthwhile.\n<br>\n\nhttps://cdn.meme.am/instances/57755618.jpg\n\n# Vaporware Is Skeery\n\nOne of my biggest disappointments in this community came when @stellabelle, the person with the highest reputation on the site, made a post about an announced feature she liked in another decentralized blogging platform that doesn't even exist. \n\n### The horror! \n\nMany were quick to point out that the other platform was \"vaporware\", yet felt so threatened by her post about this \"vaporware\" that they created fictional stories to apparently discredit her. Others jumped on the bandwagon at every chance in the comments section. For what? For pointing out an announced feature in \"vaporware\"? Some even called this apparent \"vaporware\" a \"competitor\"!?\n\nhttps://s11.postimg.org/e5699gp5v/cover_ears.jpg\n\n# [Faith No More](https://youtu.be/3yVI3UgtvwU)\n\nThis says a lot about the faith these people actually have in Steemit. The fact that a piece of  \"vaporware\" can be considered a \"competitor\" to Steemit, along with the fact that these people feel threatened by this \"vaporware\" would make Leon Festinger roll over in his grave; **because he's dead ... just like this generations ability to debate on a topic without their favorite psychology book in front of them to fashion a response from someone else's thoughts.**\n\nWe even have one of the largest whales on Steemit flagging comments that dare mention a non-existent \"competitor\" or anyone saying anything that, in their mind, is considered \"divisive\" to the community. A flag from this person will all but hide a comment from anyone's view without seeking it out at the bottom of the page. \n\nhttps://s15.postimg.org/820q6kvkr/safe_space.jpg\n\n# [In Muh Safe Space](https://youtu.be/sXQkXXBqj_U)\n\n\nSo much for being a place to discuss anything openly. And yet, people here complain about Facebook and Reddit, yet I can mention Facebook all day on Reddit, and vice versa, and never have to worry that my comment will be hidden by a single individual. Even worse, Facebook and Reddit are some of the most censored platforms in existence.\n\n### Put that in your **[hash pipe](https://youtu.be/_9BGLtqqkVI)** and smoke it!\n\nSome here are taking it upon themselves to create a safe space for everyone else, because apparently the competition from these non-existent platforms is so strong we must hide their non-existent features very mention from the fragile masses. Back in my day, there was a saying ... \"competition is good\", but apparently that's no longer the case.\n\nhttps://s22.postimg.org/cal6wr4tt/manstuff.jpg\n\n# [Smells Like Teen Spirit](https://youtu.be/hTWKbfoikeg)\n\nHere on Steemit, it's hard to find anyone that appreciates sports, guns, hunting, cars or anything that my generation considers to be laced with testosterone. Sure I find computer/programming talk interesting, but it's rare these days to find people online that can talk the 4 basic man groups as well. I've found a few, but for the most part they are hiding within the Steemit caves of obscurity.\n\nSteemit advertises that \"original content\" is rewarded, yet anyone that can speak in great detail on any of those 4 basic man groups will rarely, if ever, be rewarded for doing so. There are a few of these well written articles on these topics here on Steemit, but you will be hard pressed to find one earning more than $5. Why Is that? \n\n### I'll tell you why ... because Steemit, for the most part, is lacking testosterone. \n# (\u256f\u00b0\u25a1\u00b0)\u256f\ufe35 \u253b\u2501\u253b\n<br>\n\nhttps://s13.postimg.org/oou4yaqp3/Grinds_my_gears1.jpg\n\n# [What Grinds My Gears](https://youtu.be/Q685Ko2DHDs)\n\nYou know what really grinds my gears? Steemit. **Steemit really grinds my gears.** Why? Because I'm too old for this shit! And for that reason, **this will be my last post on Steemit**. I will be relinquishing my posting key access for this account and leave it to the younger generation of Tuck Fheman's, so they can post happy thoughts about all things Steemit and be rewarded untold fortunes for doing so. I am just holding them back.\n\nI did my best to be a part of this generations next big thing, but generation Steemit is just too namby-pamby for this old codger. \n\n<div class=\"pull-left\">\nhttps://s22.postimg.org/9mkkeg19t/giphy.gif\n</div>\n<div class=\"pull-right\">\nhttps://s20.postimg.org/bcrfwvml9/mic_drop.gif\n</div>\n\n<br/>",
+    "body_length": 6089,
+    "cashout_time": "2016-09-17T22:42:27",
+    "category": "philosophy",
+    "children": 141,
+    "created": "2016-09-10T22:42:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"philosophy\",\"rant\",\"steemit\",\"new-age\",\"mic-drop\"],\"users\":[\"stellabelle\"],\"image\":[\"https://s18.postimg.org/aid72t4nt/too_old.png\",\"https://i.imgflip.com/1adksj.jpg\",\"https://s16.postimg.org/dqbzdofj9/OK_dees_1_Copy.jpg\",\"https://cdn.meme.am/instances/57755618.jpg\",\"https://s11.postimg.org/e5699gp5v/cover_ears.jpg\",\"https://s15.postimg.org/820q6kvkr/safe_space.jpg\",\"https://s22.postimg.org/cal6wr4tt/manstuff.jpg\",\"https://s13.postimg.org/oou4yaqp3/Grinds_my_gears1.jpg\",\"https://s22.postimg.org/9mkkeg19t/giphy.gif\",\"https://s20.postimg.org/bcrfwvml9/mic_drop.gif\"],\"links\":[\"https://youtu.be/MqBNSMbEzI0\",\"https://youtu.be/3yVI3UgtvwU\",\"https://youtu.be/sXQkXXBqj_U\",\"https://youtu.be/_9BGLtqqkVI\",\"https://youtu.be/hTWKbfoikeg\",\"https://youtu.be/Q685Ko2DHDs\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T22:42:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 42002060944755,
+    "parent_author": "",
+    "parent_permlink": "philosophy",
+    "pending_payout_value": "144.429 HBD",
+    "percent_hbd": 10000,
+    "permlink": "when-concerning-steemit-i-ve-come-to-realize-i-m-too-old-for-this",
+    "post_id": 1201658,
+    "promoted": "138.990 HBD",
+    "replies": [],
+    "root_title": "When Concerning Steemit, I've Come To Realize ... I'm Too Old For This",
+    "title": "When Concerning Steemit, I've Come To Realize ... I'm Too Old For This",
+    "total_payout_value": "0.000 HBD",
+    "url": "/philosophy/@tuck-fheman/when-concerning-steemit-i-ve-come-to-realize-i-m-too-old-for-this"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2878128126837,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6998734695522,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 6042719173062,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120838362492,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 991013934194,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 918527955423,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3719055998,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4515019251,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836782064,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64817001772,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1993119622,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256394111,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 210347006215,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34042532834,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 401713935140,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 398896422515,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 17157086215,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747273339,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160639989,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 21561714956,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 302719926634,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345768342,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14351424587,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 77086206429,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78070381820,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 95730853785,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 12739865723,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9785915976,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15462863713,
+        "voter": "jademont"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 7554806704,
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 376960001789,
+        "rshares": 1455984309,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2098982781,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 340907048790,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 9947116773,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9650580617,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 2950703828,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 89884543659,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 17260900202,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 14125062140,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 22046139567,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 79658049745,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431852861,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 368696007081,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 586286811332,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 96224456283,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37451164846,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 4597420837,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 8881004054,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3596528108285,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 388823990187,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 391275913,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 362378288951,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 52998773109,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488865370830,
+        "rshares": 863365208,
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 59069076379,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 124185870189,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8333460340,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 266442266951,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 500746650031,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48671150838,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 138353237297,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1863788514,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2434631651,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 100534891530,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 43181755485,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 403540320598,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6767512298331,
+        "rshares": 40797153099,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 18543754999,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": -781106253,
+        "rshares": 289162489,
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 302683064,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17546278068,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 264522603,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8820348623,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 204013843843,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 300446841809,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3112471750,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4707075837,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 15801611273,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 32544390735,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2870229595,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 133098789385,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 599975985871,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 32961215897,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 283810485,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25445457118,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380128900631,
+        "rshares": 259486897,
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1625153964,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8892666616,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 15616629499,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 499156305959,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3613581209,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 198330012,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 183568347,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147240421388,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12022855311,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793209170784,
+        "rshares": 1571508493,
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 885891994,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 919965160,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10802622782,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4405634199,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24942066295,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1367833704,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 669199844401,
+        "rshares": 10301497593,
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 356943865,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8911872385291,
+        "rshares": 47927575572,
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6500609847,
+        "rshares": 384335950,
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 793082709,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 367441394,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 47406569721,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 70372093790,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42927707223,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3422295233,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5725254373,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 2064928807,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3782713987,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12974410735,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 2976001628,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 252357240414,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3477776250,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3556231334,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 59941579508,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3433845802,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 19157179302,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 3987315202,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 35138047991,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 12019513269,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 73099576639,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 8132763030,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 214418183330,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 373770800,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 26816500737,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6113574314,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1683378197,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255303484,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255686119,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147914638,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148750003,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84813726,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 4164065341,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 18119834837,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4911895513371,
+        "rshares": 11673305563,
+        "voter": "quickfingersluc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 220766396409,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 11219620297,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 859954354,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20113164016,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7430932441,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 203965977,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18453282331,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 618560648,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 408950035,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 219368610,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 274335473,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76805770,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 10590243337,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19116185390,
+        "rshares": 126426805,
+        "voter": "ipopular"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 74356260,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8561737881023,
+        "rshares": 18695991236,
+        "voter": "pixielolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 1840946810,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 861558297,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1526231546,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456054658,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19988784545,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 5647038859,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 139439065521,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9225459807,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 731723236,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5553712976,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1951944925,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 1515473458,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552713989475,
+        "rshares": 15130676889,
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8140603858,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1759071342,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9623723965,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 4010159410,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3565700998,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1146725005,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7063527946,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 512286246,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3424311094,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14726415882,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10366372843,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12931796143,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311638758804,
+        "rshares": 293812470,
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 85386694477,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795134,
+        "rshares": 55591289,
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 411872432,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1467824207,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 253738615,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849623403126,
+        "rshares": 1030648559,
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145609627,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83673051926,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58499109,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 62332619,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 7624079651,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 9995207527,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 73290501683,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 50094162,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2594661721428,
+        "rshares": 4390594623,
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 89766690138,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3574771803,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 4346734216,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 18099477167,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 51095992,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 467996430,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 390670616718,
+        "rshares": 201888000,
+        "voter": "tlarsen2080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11457714027,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4621091782,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 433370384966,
+        "rshares": 1609584914,
+        "voter": "imag1ne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126370178809,
+        "rshares": 194564074,
+        "voter": "arty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 88366627,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 709285853,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013640486,
+        "rshares": 56583285,
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 581299661,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 82668168,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 262718397,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2209122623,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24239498471,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 346099916175,
+        "rshares": 223746762,
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 55278008,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 117140255,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 57522774,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 311627797,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 1524816681,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 594706072,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1645692763,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5550458547,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50523318,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454788,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50468091,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53474283,
+        "voter": "barbosabarros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 51583902,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 71766021,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 1631761737,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843039218853,
+        "rshares": 177106697,
+        "voter": "ziogio"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 111391460708814,
+    "beneficiaries": [],
+    "body": "<center><img src=\"https://stakepool.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-31-at-07.58.21.png\"></center>\n\n<center><h2>We are now 600+ users registered and 20-30 active hosts at any time of the day talking about steemit, crypto and news 24/7 live on air and this is how you do it to become a host on steemspeak radio stakepool</h2></center>\n\n<h1><center>WE WANT TO HEAR YOU TOO!</center></h1>\n\n<b>First</b>, make sure you have a GOOD Microphone and a GREAT Headset. When you are on air talking about your latest steemit-post or something else that is on your mind, you want to sound great and make sure you don\u00b4t transmit echo, so if you don\u00b4t have headphones - buy some before you join.\n\n<b>Second</b>, Download the Teamspeak 3 Client that works for your Operative System or Phone from <a href=\"http://teamspeak.com/downloads\">Official Teamspeak Download</a>.\n\n<b>Third</b>, Connect your TeamSpeak 3 Client to this server: <b>ts.steemspeak.com</b>\n\n---\n<center>It is THAT Simple!</center>\n---\n\n---\nOK, Now that you have logged in, you need to set your <b>Push To Talk Button!</b> And to do that I have included a good youtube-tutorial for you here so that you can easily figure out how to do it in settings->capture->push to talk->hotkeys\n\n<h1>Setting up the Push to Talk button!</h1>\nhttps://www.youtube.com/watch?v=u89aMcyfr2s\n\n<h4>The Mac Version settings are found in the Teamspeak 3->Preferences ->Capture</h4>\n\n---\n<center>If you just want to listen, go to <a href=\"http://steemspeak.com\">steemspeak.com</a>24/7 all year!</center>\n---",
+    "body_length": 1552,
+    "cashout_time": "2016-09-07T13:26:54",
+    "category": "steemit",
+    "children": 31,
+    "created": "2016-08-31T13:26:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"life\",\"freedom\",\"news\",\"music\"],\"image\":[\"https://stakepool.com/wp-content/uploads/2016/08/Screen-Shot-2016-08-31-at-07.58.21.png\",\"https://img.youtube.com/vi/u89aMcyfr2s/0.jpg\"],\"links\":[\"http://teamspeak.com/downloads\",\"https://www.youtube.com/watch?v=u89aMcyfr2s\",\"http://steemspeak.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T13:26:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 31741689374910,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "120.057 HBD",
+    "percent_hbd": 10000,
+    "permlink": "how-to-connect-and-be-a-host-on-steemspeak-radio-and-let-your-voice-be-heard-across-the-world",
+    "post_id": 1070639,
+    "promoted": "125.000 HBD",
+    "replies": [],
+    "root_title": "How to CONNECT and be a HOST on SteemSpeak Radio and let your VOICE be HEARD across the WORLD!",
+    "title": "How to CONNECT and be a HOST on SteemSpeak Radio and let your VOICE be HEARD across the WORLD!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/how-to-connect-and-be-a-host-on-steemspeak-radio-and-let-your-voice-be-heard-across-the-world"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4900",
+        "reputation": 145171381514207,
+        "rshares": 14287655717809,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 372316824459,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7292928003093,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6712692598434,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8748358954886,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5924081466216,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 20671106684513,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 118417933788,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 923945830721,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 898909637848,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2479218792,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3009798108,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 557836382,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7335421547210,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43175636897,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1328665238,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170926788,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 214530506030,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 391741109003,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 389075404441,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1331361114912,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 77471889244,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 253801568876,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 20262312121,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 498161277,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 773724643,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 399862483868,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 411408907897,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6821654706,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230509608,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 14466370135,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 48090324970,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 82688369456,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13170169522,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11072341222,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 80028506637,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419229125146,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 81246195312,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 13405317241,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 535527459153,
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 3020965065,
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 376960001789,
+        "rshares": 1454961783,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 19097994036,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056146398,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 340794336001,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 5414208804644,
+        "rshares": 3315032051,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9613892204,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 847659311,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 18234332542,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 156478008187,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 16814582950,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57941109413,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 32680055185,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11952915931943,
+        "rshares": 105824577331,
+        "voter": "amartinezque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 24012631923,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 54102266581,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 973588246,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73938949282,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1430756403,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19203629337,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7452226457,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 12917828173,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 11828369962,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10554741746,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3518424323798,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 363217648620,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 342038785,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1376656930605,
+        "rshares": 5613435698,
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 362364795494,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51869215030,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 186263884937,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4565655246,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 258065486703,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13619124411,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 138324583233,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1184500561,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 140244128104,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 636647277,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 100470233346,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 41356310366,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 13787125963,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 385584242228,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6767512298331,
+        "rshares": 40796944760,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632946346,
+        "rshares": 28959157027,
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": -781106253,
+        "rshares": 289162489,
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17893924588,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 266425807,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 9856964632,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 20384429842,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 300446841809,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 38998845686,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3043909864,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4522484628,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4911853013,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 15159309172,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2763332921,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 31283265272,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 14006522484,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2928756549,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 13606146685,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 8236654789,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 28836579075,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8672589523,
+        "rshares": 266065805,
+        "voter": "nurev"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1559706980,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8358639536,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 74156962501,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12165590095,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17820220099,
+        "rshares": 1366301565,
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10585603645,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3610761428,
+        "voter": "owdy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 80089524,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 73425371,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1350155707,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 1206462597,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 143979313132,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10020572535,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14094648142,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 127923097868,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15306226751,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 864077460,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 15904625406,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4206277713,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11502422370,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 165119969029,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33632847618,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 89059288467,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 34393459049,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 348823659599,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 11225967160,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4183969872,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8674367887,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 389393307,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8911872385291,
+        "rshares": 46987819188,
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 61876999450,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 43998433342,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19908734998,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15095626509,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 19208995641,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2026353384,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3346143159,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5604949614,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1811685903,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4617586503531,
+        "rshares": 7735024258,
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12972669244,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 8412249152,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40018503599,
+        "rshares": 3449406742,
+        "voter": "kimmar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 188704962743,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3409584558,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3485025335,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1432554908,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 61134908757,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 25467461905,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8079581131,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6737481039,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3227799659,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18031572419,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 7960988445,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3143648302,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 23784532545,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 3982662435,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 40963637365,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 67031280822,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116058250,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1492718093,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1861971243,
+        "rshares": 534037396,
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 100131242,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 8132697646,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 192890960021,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 365818230,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111304161,
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 25060291197,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "2000",
+        "reputation": 10519849768972,
+        "rshares": 4073521267,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1646370099,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 249753408,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 250127725,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144699103,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 145516307,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82969949,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 10146325450,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207780137797,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 200189709,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1089072756,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4458162709,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 461290417,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1912624362,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 11673105366,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20532124227,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 8105938340,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17523357805,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 568834437,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 400045064,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 214599727,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 268956346,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 75136080,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 108154560,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13159019704,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 125670168,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4182979272,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 897211578,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1283349286,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2406933564,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 24693180396,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1483559041,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2713256489,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5150829096,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 5533183281,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11454886978,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1099605749,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 48206857966,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8761147948,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5886582033,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5495724559,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 2131190527,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 52489886,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 38671084581,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 52102443,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552713989475,
+        "rshares": 15130676889,
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 22839801085,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1711191717,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 15561021463,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9238067538,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 4004906164,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2266924190,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3564833888,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 5902111209,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 162194218,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 724724078,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 574381549,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 93392827573,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14148411388,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 15893252296,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10083212488,
+        "rshares": 63829521,
+        "voter": "dedushkadiesel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 56272514,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 93243566220,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 559711438,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 70682332,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1361293312,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 52502611,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 52099594,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": -451593763871,
+        "rshares": 3235630451,
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 323509012,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 51753317,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110840095927,
+        "rshares": 148403993,
+        "voter": "steem-engine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1200202101,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 51619811,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 59896309,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28469021518,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1963729757,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83587645574,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 29373154668,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 52400873,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61094018,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 10543706281,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 71357161,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2331044924,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93571901011,
+        "rshares": 405029117,
+        "voter": "noor818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51863356,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51860909,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51856300,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51852278,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156837664557,
+        "rshares": 92671420,
+        "voter": "how2steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3502906874,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8121800981,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1941499119,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51481279,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 59465570,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42570834630,
+        "rshares": 454956115,
+        "voter": "steemhorizon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 18096899554,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 2511369735,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11435132110,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6205342073,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 4298995859,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 22500043307,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51562255,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 85421073,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 615508801,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 55750195,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 666955368,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3206505571198,
+        "rshares": 8515004507,
+        "voter": "ironwood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 79669298,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 13864037687,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 2155153681,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51712804,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133411660608,
+        "rshares": 109805573,
+        "voter": "maxfuchs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 20656731535,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51388276,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51379706,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 53537748,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51814474,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51812703,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 607135202,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 13828807095,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51451058,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 262391495,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2146314155,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51148009,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 154743752672,
+        "rshares": 54349843,
+        "voter": "lynceus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24762164330,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52015504,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 190473967,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 140568307,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54949117,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 304997419,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54665234,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 582022660,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51979174,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 50812926,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1579487626,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5683012749,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 71251561,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2979879533,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2439471741,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50507607,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454788,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 287801947294,
+        "rshares": 65292516,
+        "voter": "paketkita.net"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127848310425,
+        "rshares": 73815531,
+        "voter": "conspiracynut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 52710031,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 143043369,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 1869420478,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3302532614,
+        "rshares": 66920614,
+        "voter": "willio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1366333355,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 607607141,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82374501,
+        "voter": "alexclarkbarry"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 111391460708814,
+    "beneficiaries": [],
+    "body": "<center>Ladies and Gentlemen Welcome to the STEEMIT SHOW! 100% Pure Entertainment ONLY FOR YOU!</center>\n---\nhttps://www.youtube.com/watch?v=0SMMo7aQnPY\n\n\n---\n<center>Welcome to @fyrstikken I am so happy to see you! Leave a comment below so I know you have been here :)</center>\n---",
+    "body_length": 282,
+    "cashout_time": "2016-09-06T19:19:30",
+    "category": "steemit",
+    "children": 56,
+    "created": "2016-08-30T19:19:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"funny\",\"comedy\",\"fyrstikken\",\"entertainment\"],\"users\":[\"fyrstikken\"],\"image\":[\"https://img.youtube.com/vi/0SMMo7aQnPY/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=0SMMo7aQnPY\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T19:19:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 88601715868403,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "809.229 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-steemit-show-fresh-entertainment-directly-to-you-because-we-need-a-good-laugh-d",
+    "post_id": 1060237,
+    "promoted": "122.000 HBD",
+    "replies": [],
+    "root_title": "THE STEEMIT SHOW! - FRESH ENTERTAINMENT DIRECTLY TO YOU! - BECAUSE WE NEED A GOOD LAUGH :D",
+    "title": "THE STEEMIT SHOW! - FRESH ENTERTAINMENT DIRECTLY TO YOU! - BECAUSE WE NEED A GOOD LAUGH :D",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/the-steemit-show-fresh-entertainment-directly-to-you-because-we-need-a-good-laugh-d"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6861504603453,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5924234483394,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099192085,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762483356,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697315118,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54010291270,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660921578,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213661759,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34042532834,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1305259200680,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622724514,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967195088,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 297041068093,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31488210815,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288140285,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 46091338521,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15147326440,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 29088869234,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2141819165,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 692261667883,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 91718922101,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 12107337047,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 236023250940,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 60750319225,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 79657198561,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431846323,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 602018562,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 586286811332,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 64284714678,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37511548124,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 8876135165,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 391275913,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62345041692781,
+        "rshares": 283907126703,
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1267900436,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30409765924218,
+        "rshares": 324237643911,
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 20461884222,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 929020048,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1946608196,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1429697273174,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686886224488,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840377473305,
+        "rshares": 2267977999,
+        "voter": "alefernandez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089233647296,
+        "rshares": 4224777539,
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 269921024,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 759728295534,
+        "rshares": 6602307370,
+        "voter": "emhaze222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 266592981,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 204013843843,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 31880219495,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14064842257,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25445573460,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 7049471118,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 105798664165,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147240421388,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 41975059972,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1131075798,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 910500105,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4487120677,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 37452179267,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17227141109,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 341993222983,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24443224969,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 237985094,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 6129221694,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6741143115703,
+        "rshares": 4162801602,
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19507833697,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3498346239,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 61164729955,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 16745418519,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 365818230,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841259695,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7093464346,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 268956346,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 4975171514,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6699598900,
+        "rshares": 112914306,
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 1909130025,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19410587962,
+        "rshares": 1993799598,
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456070989,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19988784545,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 731723236,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 15792261330,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127737479,
+        "rshares": 238353830,
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 88049981467,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3401416945201,
+        "rshares": 1253580623,
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3360204812,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795134,
+        "rshares": 54355927,
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 10079591501,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68479560828,
+        "rshares": 119439375,
+        "voter": "harrycoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 12237404949,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145609627,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 62332619,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7285753049,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 74755928437,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59512540,
+        "voter": "boatman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3307244480,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12186383861,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3724390017,
+        "rshares": 58931862,
+        "voter": "wesley399"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2918379629,
+        "rshares": 1763987441,
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8629294348,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 14595736783,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 7184799429,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 1604647373,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 14193492376,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 23042993006,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 110372559,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 84510824,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2523049726780,
+        "rshares": 1230797907,
+        "voter": "profitgenerator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3983778979,
+        "rshares": 55821108,
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 117787613687,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24239498471,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 140568307,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 56372318,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 269335193609,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2984877979,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329560640,
+        "rshares": 69255373,
+        "voter": "kattz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2597167689048,
+        "rshares": 51342868,
+        "voter": "steemitmag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 65057583,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164535440268,
+        "rshares": 3319272143,
+        "voter": "adilsontsilva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 136773607,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50245473,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3365771273,
+        "voter": "merlin"
+      }
+    ],
+    "author": "marketingmonk",
+    "author_reputation": 7404914959204,
+    "beneficiaries": [],
+    "body": "https://steemit-bucket-4a743ec2.s3.amazonaws.com/Getting%20More%20Attention%20By%20Using%20The%20Promote%20Button.jpg\n\nThis is the eighth installment of what will turn into a paid course called The Complete Steemit Course.\n\nHere is Steemit Tutorial 8: Getting More Attention By Using The Promote Button:\n\n**(please note that this video was updated with a corrected version 23 hours after the original post)**\nhttps://www.youtube.com/watch?v=ob9Zksnguzg\n\nPrevious lessons here:\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-1-creating-an-account-on-steemit-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-2-steemit-account-dashboard-overview-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-3-creating-our-first-ever-basic-post-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-4-reading-writing-decorating-and-voting-on-comments-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-5-voting-power-weighting-spying-and-managing-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-6-getting-paid-twice-from-the-steem-network-video\n\nhttps://steemit.com/steemit/@marketingmonk/steemit-tutorial-7-buying-steem-power-with-steem-dollars-or-bitcoin-video\n\nPlease upvote to show your support, I really appreciate it.\nhttps://img1.steemit.com/0x0/https://www.cryptoversity.com/wp-content/uploads/Steemit-upvote-cta-3.gif",
+    "body_length": 1407,
+    "cashout_time": "2016-09-07T12:33:12",
+    "category": "steemit",
+    "children": 18,
+    "created": "2016-08-31T12:33:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"tutorial\",\"howto\",\"steem\",\"video\"],\"image\":[\"https://steemit-bucket-4a743ec2.s3.amazonaws.com/Getting%20More%20Attention%20By%20Using%20The%20Promote%20Button.jpg\",\"https://img.youtube.com/vi/ob9Zksnguzg/0.jpg\",\"https://img1.steemit.com/0x0/https://www.cryptoversity.com/wp-content/uploads/Steemit-upvote-cta-3.gif\"],\"links\":[\"https://www.youtube.com/watch?v=ob9Zksnguzg\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-1-creating-an-account-on-steemit-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-2-steemit-account-dashboard-overview-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-3-creating-our-first-ever-basic-post-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-4-reading-writing-decorating-and-voting-on-comments-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-5-voting-power-weighting-spying-and-managing-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-6-getting-paid-twice-from-the-steem-network-video\",\"https://steemit.com/steemit/@marketingmonk/steemit-tutorial-7-buying-steem-power-with-steem-dollars-or-bitcoin-video\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T11:32:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21127721369166,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "55.734 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemit-tutorial-8-getting-more-attention-by-using-the-promote-button-video",
+    "post_id": 1070095,
+    "promoted": "121.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Tutorial 8: Getting More Attention By Using The Promote Button [VIDEO]",
+    "title": "Steemit Tutorial 8: Getting More Attention By Using The Promote Button [VIDEO]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@marketingmonk/steemit-tutorial-8-getting-more-attention-by-using-the-promote-button-video"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28865473791883,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 17174544934448,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6741398871343,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8391169619604,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5925252164516,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18336382560162,
+        "rshares": 187621512499,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099515402,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762904646,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697373904,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1585286495451,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54046050794,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661086507,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8717425187,
+        "rshares": 5907379161631,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213673190,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2142024197765,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33250846024,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 740067577802,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 253842278185,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622778402,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1120034999305,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967281634,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 823522090888,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31150917768,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 40749565179,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288158246,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 80058020962,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411023729959,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78077847939,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 173731843505,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7585671701,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 550644954644,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 36301508450,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 8059949925,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 14125062140,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33820692,
+        "rshares": 426969856,
+        "voter": "zheka-melnikov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 570227675922,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431967857,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 47661340196,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 195004765553,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 37374648233,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 511396696440,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3663597787321,
+        "rshares": 21926968622,
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 20539865673,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37511548124,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 11592122420,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9361058328,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 107752715191,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 13348057713,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 251383713111,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13352180210,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 20461698330,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37015270307,
+        "rshares": 334447067,
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 138950405749,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3900",
+        "reputation": 598181152117,
+        "rshares": 86227251302,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 14067763080,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4821174317675,
+        "rshares": 1170048458,
+        "voter": "alexft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 16019230638,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 210538398,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3374026415,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 204013843843,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10364264135,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132657096959,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 240080589407,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 466928201309,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 296710962,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 210192659,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 36264884009,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 72257534352,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 113581011154,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 144039542662,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 13532699743,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 143380752469,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325589414514,
+        "rshares": 515148804,
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 14019560181,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2932258651,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 109188618706,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 8923261762,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 29701247281,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11929926137,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 12871286440,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3655676496603,
+        "rshares": 10289043539,
+        "voter": "cloveandcinnamon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116820988881,
+        "rshares": 7236481997,
+        "voter": "corinnestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 332446975,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2027442179,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3629922224,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089175666268,
+        "rshares": 1001662053,
+        "voter": "jsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 82686830113,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 59943852587,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 183660738363,
+        "rshares": 3219325103,
+        "voter": "moviefan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 3034936936,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3573419992,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 2030193955,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 17744271849,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5043336912,
+        "rshares": 1894056221,
+        "voter": "idan4326"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 74885413307,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958834221798,
+        "rshares": 3547300393,
+        "voter": "mastletter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 400623749,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 26243392108,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 929113870632,
+        "rshares": 333358949,
+        "voter": "valenttina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 261379803,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2997941608767,
+        "rshares": 6108553793,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 203458546034,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6960645822,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2564054618,
+        "rshares": 107496012,
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841259695,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 445706908,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7093464346,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 208498554,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 184772599,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17665762711,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "3500",
+        "reputation": 17698439393799,
+        "rshares": 10248653702,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 31943139423,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 5344490062,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273478087406,
+        "rshares": 362618765,
+        "voter": "laurame86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 10175387109,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 69849820,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 4975171514,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 15053973666,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456070989,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19368137736,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1049062937,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1951944925,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "3400",
+        "reputation": 10771708337101,
+        "rshares": 375668517110,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23834697789,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2595700392,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47886131750712,
+        "rshares": 121563194275,
+        "voter": "bridgetbunchy"
+      },
+      {
+        "percent": "2200",
+        "reputation": 18027204457681,
+        "rshares": 6307916292,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 5776723480371,
+        "rshares": 102479436470,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3835982150,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 15650028306,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 35535725906,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "3700",
+        "reputation": 97845484474,
+        "rshares": 19821844477,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 5921167530,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3067653962,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "3500",
+        "reputation": 3016325652890,
+        "rshares": 45657317456,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 13118148961,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127737479,
+        "rshares": 228819677,
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 52521013,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 714188538,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1851205309677,
+        "rshares": 1438747070,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41231458058,
+        "rshares": 56250267,
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 687153403,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 773487823,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 10323552313,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013272646520,
+        "rshares": 510558795,
+        "voter": "galamirissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": -171959953,
+        "rshares": 61569261,
+        "voter": "hysmagus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 233196315,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "3900",
+        "reputation": 4195733833721,
+        "rshares": 3570294010,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 22911239981,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5838110908,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 4508841975,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 833401927651,
+        "rshares": 795125532,
+        "voter": "kateblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 63734270,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1145609627,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396514667430,
+        "rshares": 174751392,
+        "voter": "florentina"
+      },
+      {
+        "percent": "3900",
+        "reputation": 730408370151,
+        "rshares": 235328801,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 10748521073,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20522445870,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 64551062343,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1258347207,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 51095992,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2976838803,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3077370360823,
+        "rshares": 2291984181,
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503220992718,
+        "rshares": 97567611,
+        "voter": "claudia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 35066739983,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12921415762,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 2006235920,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 7454987616,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11509373633,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 6671849990,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 23649624986,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 11380609295,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 420580334986,
+        "rshares": 76756531,
+        "voter": "xntryk1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133379152381,
+        "rshares": 111425803,
+        "voter": "jyezie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1181054867,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 85913014,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55633002031,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 72888933,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186924852752,
+        "rshares": 67994567,
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225178513133,
+        "rshares": 55443372,
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 1580324483,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 10800740085,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66311335718,
+        "rshares": 108822425815,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7184066856,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544245232901,
+        "rshares": 316281166,
+        "voter": "getonthetrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 56017401,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3639301731,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293042273,
+        "rshares": 56566110,
+        "voter": "minihelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 3319520861,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955050298650,
+        "rshares": 346743386,
+        "voter": "masonmiler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 16416762623,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 84510824,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55936364,
+        "voter": "minisupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708267266,
+        "rshares": 766025841,
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24770721231,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9370846764,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4836979493,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 93771031,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10408522028,
+        "rshares": 105329833,
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70707045777,
+        "rshares": 59536536,
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207506656,
+        "rshares": 53043871,
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1576328130,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 68442517,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2921775535,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2610482432,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1002683608,
+        "rshares": 52282021,
+        "voter": "pdavid000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14055702340,
+        "rshares": 54464967,
+        "voter": "mynameisricky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 89309975,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 5219360203,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20789357061,
+        "rshares": 55029837,
+        "voter": "jessica.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 50878690,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179388602625,
+        "rshares": 91297442,
+        "voter": "qezzit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2093855721226,
+        "rshares": 80288789,
+        "voter": "benberger"
+      }
+    ],
+    "author": "thecryptofiend",
+    "author_reputation": 16234753830016,
+    "beneficiaries": [],
+    "body": "<html>\n<h1>Introduction</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_75367465_SMALLee110.jpg\" width=\"848\" height=\"565\"/></p>\n<p>I have found myself in a contemplative mood over the last few days. &nbsp;The main reason for this that I am due to have surgery on my left eye this Thursday (1st September) - sorry for constantly bringing it up and being such a wimp. &nbsp;</p>\n<p>The surgery is routine and is in some ways self-inflicted - it is due to a complication with having had laser eye surgery last year to correct my vision. &nbsp;</p>\n<p>Had I not had that done I wouldn't be in this position (although) I don't regret it. &nbsp;No procedure is without risk and since this is a second procedure the risk is increased. &nbsp;It is even greater because I am also a type I diabetic (on insulin) which slows healing down and makes complications more likely.</p>\n<p>My eyesight is very important to me particularly due to my artistic hobbies like photography. &nbsp;Luckily my right eye is absolutely fine at the moment.</p>\n<p>Anyway the natural anxiety over this has lead me to be quite introspective and think about life in general. &nbsp;I have been thinking back to some of the the things I have learned and how they might have helped me had I known them when I was younger.</p>\n<p>They are in no particular order. &nbsp;I make no apologies for some of them being quite obvious or even the sort of cheesy advice you would read on a greeting card.</p>\n<p>So here they are in no particular order:</p>\n<p><br></p>\n<h1>Money and your career are important but not that important</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Serbian-Dinar-and-another-Currency-000082274485_Smalla1ad2.jpg\" width=\"839\" height=\"571\"/></p>\n<p>When I was younger I was (like many kids) convinced that having lots of money would bring happiness. &nbsp;Having the latest Nike Air Jordans and most fashionable clothes, gadgets and the like was a matter of not only pride but vane necessity.</p>\n<p>It was only later that I started to realise that whilst money is a necessity for paying bills and the like it is only a tool. &nbsp;Above a certain level of comfort having more money doesn't really equate to being happier. &nbsp;It just equates to being able to have more \"things\" i.e. possessions. &nbsp;</p>\n<p>Depending on how you get the money it can also lead to a poverty of the more valuable commodity which is time. &nbsp;</p>\n<p>By similar extension whilst your career should be important it should not be the most important thing in your life. &nbsp;No matter what you do you aren't going to be able to buy yourself more time so don't waste it needlessly going after more money or a better position at work. &nbsp;</p>\n<p>It is a kind of Faustian pact where you get the worse end of the deal. &nbsp;</p>\n<h3>Time is the truly important commodity and sharing it with others is one of the most valuable uses of it.</h3>\n<h1><br></h1>\n<h1>Following the herd (or shoal) doesn't doesn't pay off</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_16631433_SMALLec951.jpg\" width=\"848\" height=\"565\"/></p>\n<p>We are all programmed by society and culture to follow what is \"normal\" and ordinary. &nbsp;This is especially true during those early teen years. &nbsp;Even though we pretend to rebel by picking subcultures like goth, emo, metalhead or whatever this is just a thinly veiled surface level of individuality. &nbsp;</p>\n<p>At it's base it is as conformist as anything else and is merely designed to massage our egos whilst still allowing us to be cocooned within the comfort of our own selected \"tribe\".</p>\n<h3>Truly great people, the kind that change the world don't follow herds or tribes or anything else. &nbsp;They set their own destiny and forge their own path. &nbsp;</h3>\n<p>They make the world follow them.</p>\n<p>I know what kind of person I would rather be and it isn't one of the sheep.</p>\n<p><br></p>\n<h1>Follow your own dreams not those of others</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_76511897_SMALL42a71.jpg\" width=\"848\" height=\"565\"/></p>\n<p>This is related to the idea of ignoring \"herd mentality\". &nbsp;We often have dreams and expectations placed upon us by our family, friends and teachers. &nbsp;I remember once telling one of my teachers that I wanted to be an artist or a film director and being told:</p>\n<h3>\"You are much too clever to waste your life on something like that. &nbsp;You should be a doctor or a lawyer.\"</h3>\n<p>It may seem like a complement but these kind of sentiments can be just as damaging as more obviously disparaging ones because they psychologically close down certain options in our lives. &nbsp;One can be made to feel that doing what we want would be letting our family, friends and educators down so we push those things aside and just do what is expected of us.</p>\n<p>This ultimately leads to dissatisfaction with our work and our lives. &nbsp;It is much harder to change this in your thirties or later and much easier in practical terms to do it when you are in your teen years and choosing your career. &nbsp;</p>\n<p>Paradoxically it seems harder in your teens to say no to the psychological pressure even though it is ultimately your choice.</p>\n<h3>Self confidence in your own ability to know what you truly want early one pays off in the long term. &nbsp;Don't live your life for other people.</h3>\n<p><br></p>\n<h1>People who agree with you all the time aren't helping you</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Better_an_open_enemy_false_friendb2a45.png\" width=\"794\" height=\"403\"/></p>\n<p>We naturally like to associate with people who have similar views to us and seem agreeable to us. &nbsp;This is part of human nature. &nbsp;Unfortunately what many of us don't realise when we are younger is that a good friend needs to be honest with us. &nbsp;</p>\n<p>Someone who is always a \"Yes-man\" can actually encourage us to stagnate and reinforce our negative behaviours. &nbsp;It is simply not healthy and it is dishonest. &nbsp;Your best friends are those who tell you the truth and call you out on your bullshit. &nbsp;</p>\n<p>Similarly in your work and acedemic life it is important to listen to conflicting opinions. &nbsp;Just reading material that agrees with what you already think prevents you from evolving both from a personal and an intellectual standpoint. &nbsp;</p>\n<p>We can see this in modern internet culture where people focus purely on material that agrees with their political or societal opinions. &nbsp;</p>\n<h3>Ultimately it leads to greater division, polarisation and entrenchment of attitudes.</h3>\n<p><br></p>\n<h1>There is no shame in changing your opinion</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/chinese-proverb-on-windmilla2b73.jpg\" width=\"800\" height=\"560\"/></p>\n<p>To some degree people who have very strong opinions may be respected. &nbsp;It is seen as a sign of confidence. &nbsp;</p>\n<p>It could also be a sign of inflexibility and inability to change. &nbsp;</p>\n<p>I believe now that life is all about change and evolution. &nbsp;If you stop moving you get left behind. &nbsp;</p>\n<p>When I was younger I would stubbornly hold on to opinions and beliefs as a matter of pride. &nbsp;There was a certain amount of machismo behind sticking to your opinions and not conceding to those of others. &nbsp;To change them would be seen as some sort of humiliation.</p>\n<p>This is a complete fallacy of course. &nbsp;</p>\n<h3>To stick to an opinion merely for the sake of not changing is not only foolish it is positively pathological. &nbsp;</h3>\n<p>Ultimately it means that you do not progress as a person. &nbsp;I now realise there is no shame in changing your position and admitting that you were wrong. &nbsp;</p>\n<p>In many ways it is a lot braver because you are sure to get flack from others who are unable to do the same for \"flip-flopping\".</p>\n<p><br></p>\n<p><br></p>\n<h1>Cherish your friends and family because you don't know how long you have with them</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Happy-multigeneration-family-walking-in-the-countryside-000073792689_Small8784a.jpg\" width=\"848\" height=\"565\"/></p>\n<p>I found this out the hard way in my early twenties. &nbsp;A friend of mine (let's call him John) who I had been with throughout Junior school went to a different college from me. &nbsp;This was in a different area of the country. &nbsp;Though we often made plans to get together they would often follow through for logistical reasons.</p>\n<h3>Over time our conversations and meetings became less and less frequent as \"life\" started to get in the way. &nbsp;</h3>\n<p>A few years later when I was home from University and I hadn't heard from him in a while I bumped into a mutual friend.</p>\n<p>Nothing in my life had prepared me for what I heard next. &nbsp;</p>\n<p>A year earlier John had been involved in a minor road accident whilst riding his motorbike. &nbsp;He had fallen off as a result and had received what seemed at the time like a minor knock to his head. &nbsp;Feeling fine he had decided that he didn't need to go to hospital. &nbsp;</p>\n<p>Unfortunately for him, that minor knock on his head had ruptured a small artery in his meninges, resulting in a slow but progressive increase in intracranial pressure. &nbsp;</p>\n<h3>A few hours later he literally dropped dead. &nbsp;He was only 21.</h3>\n<p>I felt so much guilt. &nbsp;</p>\n<p>This friend had been so close, like a brother to me. &nbsp;</p>\n<p>He had died so suddenly and I hadn't even known. &nbsp;</p>\n<p>I had so many regrets - maybe if we had gotten together before his death it could somehow have changed things just enough to prevent this from happening? &nbsp;</p>\n<p>I kept having such thoughts and I still have them from time to time.</p>\n<h3>I don't think I have every truly gotten over the trauma of this.</h3>\n<p>You assume that the people you care about and love will always be there just because you can't imagine life without them. &nbsp;</p>\n<p>The fact is life is fragile. &nbsp;Nobody knows how long they have to live.</p>\n<p>Life and death happen all around us all the time. &nbsp;</p>\n<h3>Appreciate and spend time with loved ones whilst you can because you never know when that time will be up, either for you or for them.</h3>\n<p><br></p>\n<h1>Your parents and grandparents were young too</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/Photo-album---photos-of-children-000070298559_Small3feff.jpg\" width=\"848\" height=\"565\"/></p>\n<p>One of my teachers at school used to say that -</p>\n<h3>\"When you are young you know everything except your own ignorance.\"&nbsp;</h3>\n<p>&nbsp;This is so true. &nbsp;Once we become teenagers we tend to assume we know better than everyone else. &nbsp;</p>\n<p>When our parents and grandparents give us valuable advice we tend to ignore it because - what do they know? &nbsp;</p>\n<p>We tend to forget that they were once young and had the same kind of hopes and dreams we do. &nbsp;By being further on in their lives and having more experience they can give us a perspective that we lack.</p>\n<p>They are a resource that we ignore at our peril.</p>\n<p><br></p>\n<h1>Never give up on your hobbies and interests</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/painting-brush53238.jpg\" width=\"800\" height=\"530\"/></p>\n<p>We all know the saying that \"variety is the spice of life\". &nbsp;We all tend to get pushed for time as we get older and develop more responsibilities. &nbsp;</p>\n<p>It is very easy to give up on those simple hobbies that gave us so much pleasure when we were younger. &nbsp;</p>\n<p>Whether it was engaging in a particular sport, listening to music, enjoying nature or just travelling we tend to give less importance and priority to these activities.</p>\n<p>These kind of activities are very important for recharging our mental energy and helping us to get away from the worries and concerns of life. &nbsp;</p>\n<p>One could almost consider them to be like a from of activity based meditation.</p>\n<p>I gave up on my art work for many years due to the sheer workload I had during University and then in work. &nbsp;</p>\n<p>This was a mistake and it was only through being forced to re-enage with it through ill health that I realised how important and fulfilling a part of my life it was and now still is.</p>\n<h1><br></h1>\n<h1>My Final Point: Life is short make sure you actually experience it</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_89191645_SMALL0da25.jpg\" width=\"848\" height=\"565\"/></p>\n<p>As you get older you start to realise how quickly time passes by. &nbsp;We have a tendency to live in either the past or the future, rarely experiencing the present. &nbsp;</p>\n<p>Not only does this make time appear to pass more quickly but it also leaves us unable to appreciate what we have at the time only realising it later through the lens of hindsight. &nbsp;</p>\n<p>One of the principles of mindfulness is the idea of recapturing and experiencing the moment. &nbsp;</p>\n<p>I think we would all do well to follow this idea. &nbsp;</p>\n<h3>By reconnecting with our momentary existence we can become more aware of our own thoughts, feelings and what we ultimately want. &nbsp;</h3>\n<p>It can also allow us to readjust our focus on what is important and start to concentrate on it more whilst we still have time. &nbsp;</p>\n<p>So many of us simply drift through our lives without the kind of focus this could provide and you don't want to be the person who starts making these kind of observations when it is too late for you to be doing anything with them.</p>\n<h3>You don't want to end up feeling like you were just a passive bystander or a passenger in your own life.</h3>\n<p><br></p>\n<h1>Conclusion</h1>\n<p><img src=\"https://www.steemimg.com/images/2016/08/31/iStock_57565926_SMALLac7bb.jpg\"/></p>\n<p>Thanks very much for reading. &nbsp;I hope you found it useful and interesting.</p>\n<h3>Do you have any similar things that you wished you had known when you were younger? Please share in the comments below.</h3>\n<p>This will probably be my last post for a while as I am due to have eye surgery tomorrow and will be recuperating for some days. &nbsp;</p>\n<p>If I have time I might put out another post before the operation but if I don't please all take care and I wish you all the best.</p>\n<p><br></p>\n<p><em>You can find more of my work by following me @thecryptofiend - thanks.</em></p>\n</html>",
+    "body_length": 14538,
+    "cashout_time": "2016-09-07T17:41:00",
+    "category": "life",
+    "children": 67,
+    "created": "2016-08-31T17:41:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"philosophy\",\"psychology\",\"writing\",\"steemsquad\"],\"users\":[\"thecryptofiend\"],\"image\":[\"https://www.steemimg.com/images/2016/08/31/iStock_75367465_SMALLee110.jpg\",\"https://www.steemimg.com/images/2016/08/31/Serbian-Dinar-and-another-Currency-000082274485_Smalla1ad2.jpg\",\"https://www.steemimg.com/images/2016/08/31/iStock_16631433_SMALLec951.jpg\",\"https://www.steemimg.com/images/2016/08/31/iStock_76511897_SMALL42a71.jpg\",\"https://www.steemimg.com/images/2016/08/31/Better_an_open_enemy_false_friendb2a45.png\",\"https://www.steemimg.com/images/2016/08/31/chinese-proverb-on-windmilla2b73.jpg\",\"https://www.steemimg.com/images/2016/08/31/Happy-multigeneration-family-walking-in-the-countryside-000073792689_Small8784a.jpg\",\"https://www.steemimg.com/images/2016/08/31/Photo-album---photos-of-children-000070298559_Small3feff.jpg\",\"https://www.steemimg.com/images/2016/08/31/painting-brush53238.jpg\",\"https://www.steemimg.com/images/2016/08/31/iStock_89191645_SMALL0da25.jpg\",\"https://www.steemimg.com/images/2016/08/31/iStock_57565926_SMALLac7bb.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T00:56:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 87244901893478,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "778.040 HBD",
+    "percent_hbd": 10000,
+    "permlink": "things-i-wish-i-d-known-when-i-was-18",
+    "post_id": 1073636,
+    "promoted": "120.000 HBD",
+    "replies": [],
+    "root_title": "Things I wish I'd known when I was 18",
+    "title": "Things I wish I'd known when I was 18",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@thecryptofiend/things-i-wish-i-d-known-when-i-was-18"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "7600",
+        "reputation": 8151223409709,
+        "rshares": 12795811535287,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 372316824459,
+        "voter": "berkah"
+      },
+      {
+        "percent": "7600",
+        "reputation": 18336382560162,
+        "rshares": 143470451897,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 898984807435,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2479522245,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3010199699,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 557883458,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 471708497687,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43227563325,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1328824820,
+        "voter": "mini"
+      },
+      {
+        "percent": "7600",
+        "reputation": 8717425187,
+        "rshares": 4508768018730,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170935941,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34042532834,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 748581030023,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 258887406145,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 498208362,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 773801809,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 823317276751,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 302719926634,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230521375,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411375686313,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4500464238667,
+        "rshares": 26495887427,
+        "voter": "blackjincrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 74201402070,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34871878822,
+        "voter": "james-show"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431720661,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 935697420,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 37511548124,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10314861252,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2170379596106,
+        "rshares": 22856402506,
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 13346309453,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1138049559,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 129179648054,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3800",
+        "reputation": 598181152117,
+        "rshares": 80804852397,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 302683064,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 198782719642,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 7568897676,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 124699737174,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 246771748723,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 69581481372,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12190374285,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 143380752469,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 22868729155,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 614055241,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 192822819405,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 35158481984,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 10952411440,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 13738300392,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4088366345,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 365818230,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 13209938808,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841259695,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7093464346,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3700",
+        "reputation": 17698439393799,
+        "rshares": 11024739057,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 268956346,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 10075803326,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19988784545,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4933785537,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 3865257981,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "3500",
+        "reputation": 10771708337101,
+        "rshares": 402412698850,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 76821186326,
+        "voter": "twinner"
+      },
+      {
+        "percent": "2600",
+        "reputation": 18027204457681,
+        "rshares": 8809932426,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 5776723480371,
+        "rshares": 96034818561,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3834585662,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 97845484474,
+        "rshares": 19814357142,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "3600",
+        "reputation": 3016325652890,
+        "rshares": 45623458403,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "3400",
+        "reputation": 1851205309677,
+        "rshares": 1327717265,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41231458058,
+        "rshares": 63750303,
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795134,
+        "rshares": 54355927,
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3552896427510,
+        "rshares": 14055782855,
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3900",
+        "reputation": 4195733833721,
+        "rshares": 3569023089,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1227614779,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3900",
+        "reputation": 730408370151,
+        "rshares": 235297436,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6857054058,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 71823713867,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 50094162,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11509623311,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 54497132206,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12067433608,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 384999327,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2311621568,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 53351751,
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 84510824,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23711007445,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50196187,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4120769636,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1301309204,
+        "voter": "robotev"
+      }
+    ],
+    "author": "james-show",
+    "author_reputation": 5045406568403,
+    "beneficiaries": [],
+    "body": "Trading Steem is not hard. In that part steem(it) development team has done a great job. Compared to the establishment Steem is a huge step in the right direction of fairness and openness.\n# How the JS index works\nJS measures the net result of the buyers and sellers actions.\nEveryone buying Steem (or anything else) in any financial instruments market does it to profit. Interesting distinction is however if those buyers or seller do expect their profits short term or long term.\n\n## How short term Steem \u201cspeculators\u201d act?\nThey buy steem and expect return in a matter of days, weeks, months.\n## How long term Steem \u201cinvestors\u201d act?\nThey buy steem and expect return in a matter of years. They buy steem, and in this particular high devaluation environment that Steem is quickly power up .\n\nMeasuring the net result from the Steem \u201cspeculators\u201d and  Steem \u201cinvestors\u201d buying, compared to Steem owners selling can give us the ultimate tool to measure the future price movement of Steem (in  the short to medium term).\n\n# And it turns out to be incredible easy\nAll of the described above is nothing more than the \u2026 increase/decrease of the total Steem held by exchanges! (with a few caveats I will keep  proprietary for now)\n\n# How this matters\u2026 give me a practice example.\nOK here it is.\nSteem hit a local low of 0.001224 btc/steem on 08/29 4:30 UTC. Since then the price is generally higher. Should you buy (out of FOMO) or wait for the price to come down to even lower levels sometime in the near future.\nIf JS index has fallen down since  08/29 (as it has indeed) this means that all the buying (price increase) was by short time speculators. So, if no news justifie their buying exuberance, you can expect soon those speculative buyers to give up/cash out of their short term position and the price to continue following the long term trend of the JS index itself.\n\n# Initial JS index\nThe index is set at __1000.000__ as for 2016-07-26 12:56:12 UTC\n\n# Current  JS index\nAs of 2016-08-31 03:03 (UTC) the value is: __553.650__\n#\n[EDIT]\nBelow is a chart of JS Index and Steem price for July 27th to Aug 30th NB some days have more than one data point.\n#\n\n![Imgur](http://i.imgur.com/Ukazg7G.png)\n#\n#steemit #trading #finance #steem #money",
+    "body_length": 2239,
+    "cashout_time": "2016-09-07T04:11:24",
+    "category": "steemit",
+    "children": 18,
+    "created": "2016-08-31T04:11:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"trading\",\"finance\",\"steem\",\"money\"],\"image\":[\"http://i.imgur.com/Ukazg7G.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T15:07:03",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 24273347100904,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "68.636 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-only-index-you-should-know-to-successfully-buy-and-sell-steem-introducing-the-js-index",
+    "post_id": 1066137,
+    "promoted": "110.001 HBD",
+    "replies": [],
+    "root_title": "The only index you should know to successfully buy and sell Steem \u2013 Introducing the JS Index!",
+    "title": "The only index you should know to successfully buy and sell Steem \u2013 Introducing the JS Index!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@james-show/the-only-index-you-should-know-to-successfully-buy-and-sell-steem-introducing-the-js-index"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7376349250899,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 347165551187,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "7000",
+        "reputation": 13270505121655,
+        "rshares": 44274584365947,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104392312,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3769119494,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684036241,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54908039872,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663427874,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213797798,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185067624745,
+        "rshares": 2179781689511,
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 73521122782,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 425629339547,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 9028537022578,
+        "rshares": -2705241943122,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1131791016752,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 625020571,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973177874,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 830121840154,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288359524,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 392749106258,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 73536772482,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 18718327214,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 437226882,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 4895173431,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 26804675937,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2024361326,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 25288596864,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "9800",
+        "reputation": 15755437221598,
+        "rshares": 20099547557,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 147573839789,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1412747751,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 260051658583,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2663003206978,
+        "rshares": 13566797440,
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 341225233,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13354424579,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1200786297,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 31290973763,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 184732571490,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 188002796893,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6741772425,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 15700155766,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 497410679,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 26357168295,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 207235087440,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 328681996462,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55888461363,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254380477,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23563927691,
+        "rshares": 276540283,
+        "voter": "eugeney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9824421122,
+        "rshares": 237567730,
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 427726403899,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 10242467766,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 31087345031,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 63385860760,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 515128572920,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 451567923,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 501733856,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 464367728,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10267745462,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14937577469,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1081057545,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4587496780,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493380760,
+        "rshares": 222795356,
+        "voter": "pet1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629304079354,
+        "rshares": 19451642041,
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3541613089,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 3144302620,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24462414835,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 79393522553,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42141046380,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 89569037,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13235028002,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3403721399,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 172170120707,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 7072264218,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 15576505282,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 23812000153,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 48416629676,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 14672233176,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614745323,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 29931116488,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 14665762430,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 512358622,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 467497332,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 921642016,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "5300",
+        "reputation": 988942038058,
+        "rshares": 39800990412,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7347175730,
+        "voter": "taker"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10137266406870,
+        "rshares": 3321239318,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1014130741336,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 21154154829,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "500",
+        "reputation": 1407146536376,
+        "rshares": 488479148,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 23411380876,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23922770445,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23931515943,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 36590374553,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 232181512613,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206355094166,
+        "rshares": 8684796827,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1038813018744,
+        "rshares": 2766736973,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 51300024326,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23927381371,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23925693365,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23923074313,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23919971478,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 1377661260,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23916289883,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23914622519,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3016325652890,
+        "rshares": 117212658457,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794157244,
+        "rshares": 60010840,
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1368553119,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4012799516,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450498634848,
+        "rshares": 501320787,
+        "voter": "ricardoguthrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46947249,
+        "rshares": 61677203,
+        "voter": "diversesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 1625904484,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 8086511647,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58977371,
+        "voter": "jers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3195802403,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50027573,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 84334739073,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 530776888,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 58964015,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23908415458,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2976871874,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 7674971846,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "0",
+        "reputation": 8420918209808,
+        "rshares": 581734461,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 232089407,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118894339,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 1042033097,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 986609023336,
+        "rshares": 884230796,
+        "voter": "pollux.one"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 53608244,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 108931030653,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 647204061,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 3068876882,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 23554872251,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 44243439919,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 333300187103,
+        "rshares": -145412269,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 85242648206,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 56115613811,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 44213782610,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96725733083,
+        "rshares": 125198095,
+        "voter": "emeline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1379855528,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 100628450,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5175145781,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 3134124136,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50516543,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 92968218,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "5100",
+        "reputation": 414609406210,
+        "rshares": 1514029449,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 59746972,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 521874035,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78462337,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 130634157,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 139650528,
+        "voter": "danie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2471420,
+        "rshares": 155069498,
+        "voter": "silver-lyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2421364,
+        "rshares": 148768653,
+        "voter": "rnrador"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 136350043,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154135510,
+        "voter": "vlfl"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 5743108025054,
+    "beneficiaries": [],
+    "body": "<center>[![SteemyLogoHeadOnlyLarge00009.md.png](https://www.steemimg.com/images/2016/09/09/SteemyLogoHeadOnlyLarge00009.md.png)](https://www.steemimg.com/image/uGfn3)</center>\n\n# BETA AVAILABLE - Steemy for iOS and Android\n(*special shout out to @xeroc for his guiding hand during on-device tx signing implementation)\n\nWe're happy to announce that the first public beta of [Steemy](https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem) is available for iOS and Android!  If you'd like to participate in the beta, simply send an email to steemapp@gmail.com and which device (iOS or Android) so we can send you a beta invite.  We're utilizing hockeyapp.net (microsoft) to manage the beta. \n\n### Some important things about the beta:\n- *Use at your own risk - **period**.*  \n- Don't login with an account that has your life savings in STEEM. Why? Because this is a beta product!\n- Don't login with your password if you don't feel comfortable - you can still use the app without logging in. Key import options will be available in a future version.\n- Images you upload from your mobile device are publicly available to the world. \n- Image hosting providers could change during the beta and your images could be wiped out permanently without notice\n- We receive crash reports, analytics and other useful debugging information from HockeyApp\n- Once signed up, you will receive notifications to download all future versions of the beta\n- Are there known issues? Yup! Expect frequent beta versions with no announcement.\n- Hockey provides features to send us feedback directly. There's a 100% chance we'll get your feedback if you submit through hockey app or email us steemapp@gmail.com.\n\n# How You Can Help\nWe are developing at a feverishly-fast pace...as fast as two guys can who have day jobs and families to support.  If we could, we'd say adios to the day job and focus 100% on Steemy (that's a dream I have weekly).   That being said, the reality is that we are building this with our own time, energy and spare funds.   That makes us no less passionate or driven, but imposes real-world constraints on development.\n\nYou can help us by:\n1) Participating in the beta\n2) Giving us constructive feedback on crashes, design, and other app-specifics\n3) Of course, financial - any funds we receive via upvoting go directly to supporting our monthly server costs, red bull addiction, etc...\n\n# How to sign up for the beta\n- Email us at steemapp@gmail.com and tell us which device (iOS or Android) you want an invite for\n- Or, if you don't care who sees your email address, post a comment below and specify iOS or Android (or both)\n\n# What is Steemy?\n\n[Learn more about Steemy Here](https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem)",
+    "body_length": 2814,
+    "cashout_time": "2016-09-16T16:36:24",
+    "category": "steemit",
+    "children": 12,
+    "created": "2016-09-09T16:36:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemapp\",\"steemy\",\"steemmobile\"],\"users\":[\"xeroc\"],\"image\":[\"https://www.steemimg.com/images/2016/09/09/SteemyLogoHeadOnlyLarge00009.md.png\"],\"links\":[\"https://www.steemimg.com/image/uGfn3\",\"https://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-09T17:25:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 59917201858253,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "334.065 HBD",
+    "percent_hbd": 10000,
+    "permlink": "ann-steemy-mobile-app-beta-available-for-ios-android",
+    "post_id": 1186151,
+    "promoted": "110.000 HBD",
+    "replies": [],
+    "root_title": "[ANN] Steemy Mobile App - Beta Available for iOS/Android",
+    "title": "[ANN] Steemy Mobile App - Beta Available for iOS/Android",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemapp/ann-steemy-mobile-app-beta-available-for-ios-android"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28337481495132,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 605054202636,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 375797501706,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6899657717718,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5875425725245,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2103735705580,
+        "voter": "hr1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 36749432321730,
+        "rshares": 197350870235,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4823041872577,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2482489693,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1689744353709,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3013973227,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 552727348,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43722960528,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1330267679,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 171024455,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 200631444608,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1423891958,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 876459346701,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 118179862461,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8846955965,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2152310689,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7948252496,
+        "voter": "supergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 499903743,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 775810627,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230665087,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24794631524,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 16251020055,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19597409080,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 85526339302,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 10083460529,
+        "voter": "makishart"
+      },
+      {
+        "percent": "6500",
+        "reputation": 14073457536993,
+        "rshares": 92433605489,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12594877551576,
+        "rshares": 74987247876,
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 75795031193,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "5100",
+        "reputation": 4931834878069,
+        "rshares": 10071098316,
+        "voter": "fkn"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": 487271558,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "9900",
+        "reputation": 376960001789,
+        "rshares": 5369463575,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 28340759824,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "4700",
+        "reputation": 5216776171708,
+        "rshares": 49448005933,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "5100",
+        "reputation": 5414208804644,
+        "rshares": 13247495874,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "3800",
+        "reputation": 15755437221598,
+        "rshares": 4519322665,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 144465949299,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4611433093423,
+        "rshares": 26516736386,
+        "voter": "tmendieta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 490443153,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 67847295588,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1069348096,
+        "voter": "murh"
+      },
+      {
+        "percent": "6000",
+        "reputation": 1598588545490,
+        "rshares": 9544167563,
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 41167926762,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 4451341567,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": 380437107,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 258363528866,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 377834429632,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3804349938696,
+        "rshares": 33524923089,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5092263832878,
+        "rshares": 15132186921,
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 51960349384,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 208799779463,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4477345730,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13353689520,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 33785196884,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1490503275679,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 43185482362,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 5339578403,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2882668559,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 6494753195,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 536461338,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 39865567060,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4525901650,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 50785197295,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "2500",
+        "reputation": 17405459234693,
+        "rshares": 22535574872,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 248645032085,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 4286578655,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 117261767025,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 4524443148,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 4768148761,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 874985559,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 120365648521,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 792008422388,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "5100",
+        "reputation": 19111656178138,
+        "rshares": 30376512860,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 4223912868,
+        "voter": "owdy"
+      },
+      {
+        "percent": "5100",
+        "reputation": 3891722,
+        "rshares": 237022986,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "5100",
+        "reputation": 9142611234,
+        "rshares": 265901386,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5100",
+        "reputation": 3871042,
+        "rshares": 243759726,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 151763700815,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325589414514,
+        "rshares": 452069359,
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1473450451,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 90756765,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 16453997687,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 13294445014,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3758408519,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 25328130017,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 11346983489,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 36334866498,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 3150621438,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 11534871172,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 235512684,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 448946992,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 43462674468,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1248165138944,
+        "rshares": 1815380313,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7443194536,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 96640276,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 130211659731,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3710606394,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "3700",
+        "reputation": 3167747223142,
+        "rshares": 11106355045,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3175094870,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3353659009,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64027340659,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 7620147467,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 4245145393,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3143598968,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 16426451743,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182764669318,
+        "voter": "jl777"
+      },
+      {
+        "percent": "5100",
+        "reputation": 10519849768972,
+        "rshares": 8159179596,
+        "voter": "positive"
+      },
+      {
+        "percent": "5000",
+        "reputation": 2997941608767,
+        "rshares": 6111284001,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 764587130,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15575907279,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639009474,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 24863078932,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1711275100,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2242556592,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "5100",
+        "reputation": 147425730,
+        "rshares": 268949193,
+        "voter": "fnait"
+      },
+      {
+        "percent": "5100",
+        "reputation": 3720753029,
+        "rshares": 245394332,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 149502446,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 184489646,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 20170588933,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 123114635,
+        "rshares": 110626149,
+        "voter": "bluebell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5475281216,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 122233144003,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 70376481208,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7871166550,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 60565253,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 61700262,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 24430920885,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24407155133,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24416426858,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "3000",
+        "reputation": 97328985094,
+        "rshares": 1735770144,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 996049,
+        "rshares": 63747178,
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 3199941620,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24412199287,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24410732703,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24408329032,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24405573752,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "2000",
+        "reputation": 2021353867281,
+        "rshares": 1656951191,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24402026987,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24400841139,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 81338740,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1376414529,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 19318370958,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 86892789274,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12781131185,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1232895758,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 55022014,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 192175071324,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 62174144,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 58453204,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8867300566,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439786891,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 11751323553,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 57914427,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 20318867928,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 56535984,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 71228043,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 60730988,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1802712014,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51199976,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 11813114611,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56563243,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 57391432,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 565879902,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35808965090,
+        "rshares": 71740798,
+        "voter": "hhcwebmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 55393797,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387773,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 626012702821,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5805302022,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 11978540048,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55399493,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56575537,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56570509,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387660,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8470010325,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 7163167644,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24395131330,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310309073633,
+        "rshares": 1908971109,
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 71221451964,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 46612959839,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 8161550832,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 18579446047,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1401285964,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4503423419,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "5800",
+        "reputation": 793368183438,
+        "rshares": 25379964093,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54999739,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52425992,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1970534065,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8298658614343,
+        "rshares": 7834748327,
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1572045156,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 4679890064,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 26082174893,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18873434262,
+        "rshares": 59542406,
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 84026579,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 24033874515,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55085378,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 6881062319,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 53966805,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53613607,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269774223718,
+        "rshares": 803386637,
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52171620,
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54362089,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6671012929,
+        "rshares": 55979441,
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54019345,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54017499,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824657,
+        "rshares": 54977174,
+        "voter": "optimus-prime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1386590598,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16147984004,
+        "rshares": 56897224,
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52545761,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 2941923052,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 158636223091,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53331040,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53324520,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318865,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1841985827,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52988378,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 5170755904,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 326611087837,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59390432273,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351488360313,
+        "rshares": 179868865,
+        "voter": "chadcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039974,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4453859197,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35362050236,
+        "rshares": 63407335,
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 51838673,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1951354892,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 354988640,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3061556951554,
+        "rshares": 1881146859,
+        "voter": "puffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 106836853,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51141851,
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1560287283,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 846735133,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 7899939563,
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76019801,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157643687,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5082960080,
+        "rshares": 159918764,
+        "voter": "tanemahuta"
+      },
+      {
+        "percent": "10000",
+        "reputation": -373198720,
+        "rshares": 155753958,
+        "voter": "mityay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1696431355721,
+        "rshares": 158786091,
+        "voter": "jennane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158642800,
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158057595,
+        "voter": "sdc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161205518,
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161089804,
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160973134,
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160957729,
+        "voter": "realtime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160900665,
+        "voter": "digitalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160835930,
+        "voter": "skrillex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 157654556,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160789982,
+        "voter": "jack.johnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116818017503,
+        "rshares": 154109909,
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1478840966,
+        "rshares": 156821466,
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 150483032,
+        "voter": "serikus"
+      }
+    ],
+    "author": "churdtzu",
+    "author_reputation": 34935156153627,
+    "beneficiaries": [],
+    "body": "![jumpingpeoplesteemitanarchyfaba6.jpg](https://www.steemimg.com/images/2016/09/06/jumpingpeoplesteemitanarchyfaba6.jpg)\n\nFor many of us, Steemit has already changed so much - the way we navigate the web, the way we think about money, and for a fortunate committed few, it's even changed their professions. However, the change that I expect from this model goes even deeper. It's possible that Steemit, and descendent technologies, may play a part in creating a voluntary world, a stateless world, in which everyone who takes money from someone, or puts someone in a cage without their consent, or orders such acts, will be seen and treated as a criminal. There are several ways in which Steemit can aid this cause. Let's start with the most important - the conversation.\n\n# It changes the way we talk\n![argument288ba5.jpg](https://www.steemimg.com/images/2016/09/06/argument288ba5.jpg)\n## The problem with voluntaryist argumentation\nMany of you might have noticed, and even been a party to, hard-line conversations about anarchy, in which the voluntaryist proceeds to take the words of the other party, and question them about some perceived inconsistency in their beliefs, attempting to lead them through a Socratic dialogue, in order to bring them to accept the truth - that the other party is wrong - very, very wrong. You also might have noticed (as I eventually noticed, after years of banging my head on walls) that this technique almost never works.\n\nOf course, the reason that it doesn't work, is because people have a need to feel that they're being understood, that their concerns are heard, that their thoughts are valid. In brief, they need to feel like people. If you don't treat someone like a person - unless you're talking to an exceptionally patient person - you're unlikely to receive a personable response.\n## An oasis\nThe comment section on YouTube is a running joke. Facebook discussions descend into dirtslinging, strawmen and threats. You may wade through many racist and sexist comments before you find something that is truly valuable information, and even then it may be tainted with aggression. In contrast, Steemit's comments sections seem like a desert oasis - all but filled with calm discussion, respect, insight, or at the very least, positivity. Surely, this is a place where one can have a constructive conversation about controversial topics.\n## The incentive to be good\nI have noticed over these few short months, the way that Steemit has changed the way that I interact with people, especially online - on Steemit and other social networks. I've found myself a few times, even as I'm about to make a statement which is mildly passive-aggressive, thinking \"Hold on - is this something I would write if my reputation were on the line? If not, maybe I shouldn't write it.\" Even when I'm going to give someone some piercing criticism, which, if presented in the wrong way, may seem a condemnation, I can find ways to demonstrate empathy, such as compliments or other niceties.\n\nIt may sound like an unfortunate description of humanity (or of myself) to say it, but when our bank balances and reputations are on the line in every moment, we can find ways to communicate more kindly, and therefore, more fluidly, with the people we interact with.\n## Commitment and consistency\nIn Cialdini's famous and excellent book, [Influence: The psychology of persuasion](http://amzn.to/2c5z38T) he describes how, when people make a commitment to something, they are more likely to see it as part of their identity, and strive to live up to that identity.\n\nWhen people are kind to each other, respectful, and even open-minded on Steemit, it's not just that they're pretending to be nice. By acting nicer, they become nicer. By acting more open-minded, they become more open-minded.\n## The quality of our ideas\nIf the ideas of voluntaryism are as good as we believe they are, then surely a place like Steemit, where people are strongly encouraged to be respectful, considerate, empathetic and even open-minded, would be an ideal place to discuss them. If it turns out that our ideas are not as good as we think they are, then it gives us the perfect medium to discover something even better. That is beautiful.\n# Tax-free and shameless\n![breakchains10ab9.png](https://www.steemimg.com/images/2016/09/06/breakchains10ab9.png)\nIn many developed countries, taxes are generally seen as legitimate and necessary, and people claim to be proud of paying their taxes - sometimes because they truly believe it, and sometimes because they don't want to face the fact that they have been forced into an elaborate con, from which they have no apparent escape.\u007f\n\nBut what if they did have an escape? What if, instead of being paid as an employee, having their income taxes automatically deducted from their pay, they were paid directly. What if thousands or millions of people were making income, or making a living, this way, and decided to openly flout the tax authority, publicly, knowing that it wouldn't have the resources to pursue any more than a small fraction of the cases?\n\nObviously, that would damage the appearance of legitimacy of the state, and also the perception of omniscience and omnipotence that its proponents tend to ascribe to it.\n# Development of cryptoanarchic solutions\n>\"Unlike the communities traditionally associated with the word 'anarchy', in a crypto-anarchy the government is not temporarily destroyed but permanently forbidden and permanently unnecessary. It\u2019s a community where the threat of violence is impotent because violence is impossible, and violence is impossible because its participants cannot be linked to their true names or physical locations.\"\n> - Wei Dai\n\nWe all know that Steemit/Steem is much more accessible than virtually any other cryptocurrency, being based around a style of platform which more than one billion people are already familiar with. That's pretty cool, and that means that more money will flow into cryptocurrency, meaning more attention, and thus even more development for similar technologies.\n\nMore development in cryptocurrency means more methods to control money, and other forms of information, publicly, privately, or anonymously, without governments being able to do anything about it.\n# Conclusion\nSteemit is an important step, a continuation of the snowball effect of cryptocurrency, leading us to a voluntary, cryptoanarchic future, full of wonders we have not yet imagined, and degrees of freedom as yet unforeseeable. Boldly we take our pens, pads, keyboards and wallets, building a highway to a world where concepts are our language and our tools, but never our weapons, where the purity of ideas is worth fighting for, but never worth fighting with.\n\n---\n\n# About me\n\n[![kurt robinson in the mountains of puebla](https://www.steemimg.com/images/2016/08/26/pictureofmecroppedbdb8d.md.jpg)](https://www.steemimg.com/image/gsqzK)\n\nMy name is Kurt Robinson. I grew up in Australia, but now I live in Guadalajara, Jalisco. I write interesting things about voluntaryism, futurism, science fiction, travelling Latin America, and psychedelics. Remember to press follow so you can stay up to date with all the cool shit I post, and follow our podcast where we talk about crazy ideas for open-minded people, here: @paradise-paradox, and like us on Facebook here - [The Paradise Paradox](https://www.facebook.com/theparadiseparadox/)\n\n# Some other cool posts\n\nHere are some other posts of mine to check out:\n\n[Freedom seekers' song: \"Freedom on the beach (To Acapulco Part 2)\"](https://steemit.com/music/@churdtzu/freedom-seekers-song-freedom-on-the-beach-to-acapulco-part-2)\n\n[Everyone deserves truth; everyone deserves compassion](https://steemit.com/life/@churdtzu/everyone-deserves-truth-everyone-deserves-compassion)\n\n[Impossible! A conversation with a statist about starting a business](https://steemit.com/anarchism/@churdtzu/impossible-a-conversation-with-a-statist-about-starting-a-business)\n\n[Freedom trumps fear: Everything you do is an act of liberty](https://steemit.com/freedom/@churdtzu/freedom-trumps-fear-everything-you-do-is-an-act-of-liberty)",
+    "body_length": 8141,
+    "cashout_time": "2016-09-13T22:36:27",
+    "category": "steemit",
+    "children": 28,
+    "created": "2016-09-06T22:36:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"anarchism\",\"anarchy\",\"bitcoin\",\"blockchain\"],\"users\":[\"paradise-paradox\"],\"image\":[\"https://www.steemimg.com/images/2016/09/06/jumpingpeoplesteemitanarchyfaba6.jpg\",\"https://www.steemimg.com/images/2016/09/06/argument288ba5.jpg\",\"https://www.steemimg.com/images/2016/09/06/breakchains10ab9.png\",\"https://www.steemimg.com/images/2016/08/26/pictureofmecroppedbdb8d.md.jpg\"],\"links\":[\"http://amzn.to/2c5z38T\",\"https://www.steemimg.com/image/gsqzK\",\"https://www.facebook.com/theparadiseparadox/\",\"https://steemit.com/music/@churdtzu/freedom-seekers-song-freedom-on-the-beach-to-acapulco-part-2\",\"https://steemit.com/life/@churdtzu/everyone-deserves-truth-everyone-deserves-compassion\",\"https://steemit.com/anarchism/@churdtzu/impossible-a-conversation-with-a-statist-about-starting-a-business\",\"https://steemit.com/freedom/@churdtzu/freedom-trumps-fear-everything-you-do-is-an-act-of-liberty\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T22:50:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60135241680958,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "311.891 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemit-will-make-the-world-an-anarchic-voluntary-society",
+    "post_id": 1152348,
+    "promoted": "101.100 HBD",
+    "replies": [],
+    "root_title": "Steemit will make the world an anarchic, voluntary society",
+    "title": "Steemit will make the world an anarchic, voluntary society",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@churdtzu/steemit-will-make-the-world-an-anarchic-voluntary-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 32455846463901,
+        "rshares": 636650937593,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2222223261106,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6354361142613,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3100095944,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3763655895,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690429176,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54156746043,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661372715,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213687824,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4512972751283,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "0",
+        "reputation": 83941319998,
+        "rshares": 114482134346,
+        "voter": "smooth.witness"
+      },
+      {
+        "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"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 96966639395,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432524983,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 204696463721,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 48813685424,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "3900",
+        "reputation": 598181152117,
+        "rshares": 86347513299,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 54492837940,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 320412905,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 15188383397,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 37017484438,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 9003560871,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1254384994,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 299816166,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2503443057,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 39260815990,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7734375234,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3800",
+        "reputation": 17698439393799,
+        "rshares": 12077024248,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774005265165,
+        "rshares": 6340430376,
+        "voter": "logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2865139821445,
+        "rshares": 7012331246,
+        "voter": "lukmarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 3689933012,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "3700",
+        "reputation": 10771708337101,
+        "rshares": 439152462157,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 46397054584,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "2400",
+        "reputation": 18027204457681,
+        "rshares": 7646986289,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 5776723480371,
+        "rshares": 102612381504,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3840496066,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 892119536265,
+        "rshares": 1153305624,
+        "voter": "mama-steem"
+      },
+      {
+        "percent": "3800",
+        "reputation": 97845484474,
+        "rshares": 21261822926,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 144042539115,
+        "rshares": 604216404,
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "3800",
+        "reputation": 3016325652890,
+        "rshares": 52782383311,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4437884870,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 43344608886,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "3900",
+        "reputation": 4195733833721,
+        "rshares": 3574511545,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 4827568973,
+        "voter": "melek"
+      },
+      {
+        "percent": "3900",
+        "reputation": 730408370151,
+        "rshares": 235453627,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 624346748,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 219406056989,
+        "rshares": 72642145,
+        "voter": "discernente"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250756708358,
+        "rshares": 61202454,
+        "voter": "plotbot2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 74117002,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16065524765,
+        "rshares": 52111731,
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 249534502,
+        "voter": "letstalkliberty"
+      }
+    ],
+    "author": "claudiop63",
+    "author_reputation": 8079179261851,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Diamond_cutter._Amsterdam._2012.jpg/517px-Diamond_cutter._Amsterdam._2012.jpg\" width=\"517\" height=\"480\"/></p>\n<p><a href=\"https://commons.wikimedia.org/wiki/File:Diamond_cutter._Amsterdam._2012.jpg\">Image Credit</a></p>\n<p>&nbsp;This post is based on a presentation I gave at the United Nations' Office in Geneva in 2011, available <a href=\"http://fr.slideshare.net/claudioparrinello/semantic-knowledge-management-and-technology-transfer\">here</a>.&nbsp;&nbsp;&nbsp;</p>\n<p>Most successful and innovative&nbsp;organizations worldwide&nbsp;are knowledge-intensive organizations. Professional knowledge, in particular technical know-how, is a key asset for such organizations as their success depends to a large extent on their ability to create, manage and transfer knowledge efficiently. Let us call this process <strong>knowledge valorisation.</strong> &nbsp;</p>\n<p>I review below some of the key enablers of knowledge valorisation&nbsp;by sketching a sort of road map.&nbsp;</p>\n<h1>Step 1</h1>\n<p>&nbsp;The first step shown below&nbsp;might look trivial, but I believe that most organizations (in particular those which are in the process of restructuring, M&amp;A, etc)&nbsp;might find it worthwhile.&nbsp;</p>\n<p><img src=\"https://s17.postimg.org/ueoc9n77j/road.png\" width=\"959\" height=\"545\"/></p>\n<p>In other words,&nbsp;the first challenge is to make sure that knowledge is properly tracked and stored, especially if the organization is very large.&nbsp; If knowledge turns out to be mostly in <strong>implicit</strong> form, the organization runs a significant risk to lose knowledge and performance as a result of staff turnover, as when the key people leave or retire, nobody may be able to run some critical processes. In addition, as implicit knowledge is difficult to share, if explicit knowledge on key processes is not available, it is difficult for new recruits to become quickly operational. &nbsp;</p>\n<h1><strong>Step 2</strong>&nbsp;</h1>\n<p>If a large body of documents spanning the organizational knowledge landscape is available in electronic format, it is appropriate to set up and use a formal knowledge classification scheme. The most powerful approach to knowledge classification, following the principles of semantics, is based on two components: &nbsp;</p>\n<ul>\n  <li><strong>Taxonomies</strong>, i.e. multi-level, tree-like classification frameworks. An example of a comprehensive, well-known taxonomy is Linnaeus\u2019 classification scheme for nature as divided into three kingdoms: mineral, vegetable and animal. Linnaeus used five levels: class, order, genus, species, and variety.&nbsp;Advanced knowledge management might call for the definition of multiple taxonomies, as shown in the example below. &nbsp;</li>\n</ul>\n<p><br></p>\n<ul>\n  <li><strong>Classification rules</strong>, i.e. a set of criteria to place each document in one (or more) positions in the taxonomy. Rules are typically based on specific properties of the document. Simple classification rules are based on keywords and other metadata, e.g. if a document has \u201cJava\u201d as a keyword, it is likely to be classified under a \u201ccomputer science\u201d branch of a technological taxonomy. &nbsp;</li>\n</ul>\n<p>The above elements, taken as a whole constitute an <strong>ontology</strong>, i.e. a detailed, potentially exhaustive description of a knowledge domain in terms of a collection of data records, together with their metadata/attributes, organized and classified in one or more taxonomy-based \u201ccatalogues\u201d. &nbsp;</p>\n<p><img src=\"https://s13.postimg.org/jbvf5lv93/semantics.png\" width=\"1006\" height=\"522\"/></p>\n<p>&nbsp;The pictures above refer to&nbsp;an ontology which is relevant to a public research organization which regards technology transfer as part of its mission.&nbsp;Such organizations feel strong pressure by their funding bodies to demonstrate the positive socio-economic impact of public research on society through concrete examples. In order to meet such demands, they must define and implement a proactive and cost-effective Knowledge &amp; Technology Transfer (KTT) strategy. Then it is essential that all the knowledge assets in the organization are identified (technologies, general know-how, training capabilities) and as many KTT channels (licensing of intellectual property, joint R&amp;D with industry, training, people mobility \u2026) as possible are enabled. &nbsp;</p>\n<h1><strong>Step 3</strong>&nbsp;</h1>\n<p>At this point, a classification engine is used:&nbsp;</p>\n<p><img src=\"https://s15.postimg.org/fk988pp6j/classify.png\" width=\"971\" height=\"558\"/></p>\n<p>&nbsp;The ultimate deliverable is a context-sensitive, searchable knowledge catalogue&nbsp; &nbsp;</p>\n<p><br></p>\n<p><img src=\"https://s22.postimg.org/w8zb4dy35/catalogue.png\" width=\"1065\" height=\"616\"/></p>\n<p>&nbsp;</p>\n<h1><strong>Informal Summary</strong>&nbsp;</h1>\n<p>All the tools described above aim at avoiding that in a large organization people reinvent the wheel all the time, just out of lack of knowledge of what their colleagues are working/have worked on. &nbsp;</p>\n<p>Moreover, using the wheel analogy: if you are into technology transfer, such tools will help&nbsp;you show your \"wheel\" outside your organization and identify whoever could use it to make an innovative car!&nbsp;</p>\n<p>Please note that some older comments to this post refer to (very different) content which has now been removed. Please disregard them.&nbsp;&nbsp;</p>\n</html>",
+    "body_length": 5526,
+    "cashout_time": "2016-09-08T22:28:42",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-01T22:28:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"science\",\"techreview\",\"knowledge-management\",\"tech-transfer\"],\"image\":[\"https://upload.wikimedia.org/wikipedia/commons/thumb/3/31/Diamond_cutter._Amsterdam._2012.jpg/517px-Diamond_cutter._Amsterdam._2012.jpg\",\"https://s17.postimg.org/ueoc9n77j/road.png\",\"https://s13.postimg.org/jbvf5lv93/semantics.png\",\"https://s15.postimg.org/fk988pp6j/classify.png\",\"https://s22.postimg.org/w8zb4dy35/catalogue.png\"],\"links\":[\"https://commons.wikimedia.org/wiki/File:Diamond_cutter._Amsterdam._2012.jpg\",\"http://fr.slideshare.net/claudioparrinello/semantic-knowledge-management-and-technology-transfer\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T12:21:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 15273611827178,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "28.723 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steembets-bet-for-free-by-upvoting-and-win-steem-dollars-inauguration-bet-clinton-vs-trump",
+    "post_id": 1091240,
+    "promoted": "101.010 HBD",
+    "replies": [],
+    "root_title": "A Road Map to Knowledge Valorization.",
+    "title": "A Road Map to Knowledge Valorization.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@claudiop63/steembets-bet-for-free-by-upvoting-and-win-steem-dollars-inauguration-bet-clinton-vs-trump"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 83122046,
+        "rshares": 17252532938558,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 563544646717,
+        "voter": "barrie"
+      },
+      {
+        "percent": "2000",
+        "reputation": 32455846463901,
+        "rshares": 6315235154015,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 347118013623,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2030615881329,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1362045275157,
+        "voter": "moment"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1582895535608,
+        "rshares": 74794629682,
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 18199948682777,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 5132668112897,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3158922122495,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2013866692939,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 452138762783,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 122063056602,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5549073747882,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1130543463912,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1078421331456,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 973319882060,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 317991297021,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4390790041307,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104099771,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1703029168107,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3768755382,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684005121,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54832970366,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663301832,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213794688,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1761824676683,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 77621760528,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 419831065181,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 525849575920,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2729895305560,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1388728405,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250001478305,
+        "rshares": 108221038447,
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 856088750266,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 115621134894,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2105322267,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 83941319998,
+        "rshares": 1167734251538,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 930994265690,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 29435510701,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 10313567606,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2369366055877,
+        "rshares": 74144086470,
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624994115,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "4400",
+        "reputation": 268787058152,
+        "rshares": 11954581297,
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973117194,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7857031052,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "9800",
+        "reputation": 6977251504339,
+        "rshares": 22930428594,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 821520527371,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1268313655180,
+        "rshares": 45098187494,
+        "voter": "steem-samiam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288353305,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23782884498,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23508133721,
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 156356235250,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1665762057,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13943466836,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1339573287588,
+        "rshares": 9981237712,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 80544628435,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 79788923294,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9309121573,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2917439250,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3828884985898,
+        "rshares": 60077820020,
+        "voter": "lovelace"
+      },
+      {
+        "percent": "7681",
+        "reputation": 12382143533351,
+        "rshares": 433286620876,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 18188509022,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 447093363,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5012814614,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 29025548799,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5216776171708,
+        "rshares": 51511112084,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 26767597085,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 23926167464,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 11007893154,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 713096374287,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "600",
+        "reputation": 15755437221598,
+        "rshares": 1214499527,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 142837633946,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7603057313,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 47384537807,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 32873370739,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 210251560697,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 446299268,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 65065948062,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 634222963816,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 6615030220,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2316584245,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 39904848284,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 989996166543,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 58352742195,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 35110203447,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7574468910,
+        "rshares": 8443022788,
+        "voter": "badger311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8738727767,
+        "voter": "badger313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8702230036,
+        "voter": "badger312"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9001297583,
+        "voter": "badger316"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9123216648,
+        "voter": "badger319"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9030881970,
+        "voter": "badger3101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8483805402,
+        "voter": "badger3111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9045984338,
+        "voter": "badger3121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8654403079,
+        "voter": "badger3131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8762447633,
+        "voter": "badger3141"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8738856222,
+        "voter": "badger3171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8546274352,
+        "voter": "badger3181"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9132638993,
+        "voter": "badger3191"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8546111243,
+        "voter": "badger3112"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8887325560,
+        "voter": "badger3132"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8760496163,
+        "voter": "badger3162"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8991568485,
+        "voter": "badger3113"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8642210535,
+        "voter": "badger3123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8766005376,
+        "voter": "badger3133"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9117652407,
+        "voter": "badger3153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8796092252,
+        "voter": "badger3163"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8826632166,
+        "voter": "badger3193"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8776220485,
+        "voter": "badger3114"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8685065534,
+        "voter": "badger3124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8587877805,
+        "voter": "badger3144"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8509649715,
+        "voter": "badger3154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8376968178,
+        "voter": "badger3164"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8709012551,
+        "voter": "badger3174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8989471544,
+        "voter": "badger3194"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8885761375,
+        "voter": "badger3105"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8829258163,
+        "voter": "badger3135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8423190788,
+        "voter": "badger3145"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9007115204,
+        "voter": "badger3155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8699822976,
+        "voter": "badger3175"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8475866437,
+        "voter": "badger3195"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8117642153,
+        "voter": "badger3106"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8936995703,
+        "voter": "badger3116"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8984990351,
+        "voter": "badger3126"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8611633869,
+        "voter": "badger3136"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8257944656,
+        "voter": "badger3146"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8489790477,
+        "voter": "badger3156"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8705807126,
+        "voter": "badger3166"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8620566580,
+        "voter": "badger3176"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8755292907,
+        "voter": "badger3186"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8791096935,
+        "voter": "badger3196"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8718533747,
+        "voter": "badger3107"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8470685116,
+        "voter": "badger315"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8967138703,
+        "voter": "badger318"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9016793543,
+        "voter": "badger3151"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8688906443,
+        "voter": "badger3161"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8948374029,
+        "voter": "badger3122"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8885133976,
+        "voter": "badger3142"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9108283408,
+        "voter": "badger3152"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8410991139,
+        "voter": "badger3172"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8924725447,
+        "voter": "badger3182"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8679951369,
+        "voter": "badger3192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8594490108,
+        "voter": "badger3143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8857724326,
+        "voter": "badger3173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8564073808,
+        "voter": "badger3104"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8275966513,
+        "voter": "badger3134"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8683148373,
+        "voter": "badger3184"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8620185227,
+        "voter": "badger3115"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9093630617,
+        "voter": "badger3165"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8719257308,
+        "voter": "badger3185"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8781270592,
+        "voter": "badger314"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9015963430,
+        "voter": "badger317"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8754170130,
+        "voter": "badger3102"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8715598583,
+        "voter": "badger3103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8642543556,
+        "voter": "badger3125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8608651698,
+        "voter": "badger3183"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3763646381067,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 36046509876,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 348982422,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 370569600141,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 54767511884,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 53269273621,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 209092851311,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 354361794480,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 78424941158,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 31280996795,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "3400",
+        "reputation": 22794273843250,
+        "rshares": 65197303116,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 191479703088,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5664514968,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5615273302,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 104818069176,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 198642563544,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 45230308604,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 65999119522,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2248678065,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 484274771,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17553722653,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36391001943292,
+        "rshares": 166076560580,
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 259043859301,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4681431941,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 86510715978,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254364900,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 19423192668,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 3030270280,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 400966190394,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25016204342,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6929637554,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 439636157,
+        "voter": "kevindetreville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 27793386253,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 55885606243,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 723038245,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 439350376,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 474968055,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 451813345,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1410590580557,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1211684689,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 16639042839,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4630627643,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11261506552,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 207386074024,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 32300012796,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2377467033356,
+        "rshares": 17025297072,
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2319671143,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629304079354,
+        "rshares": 19451642041,
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3319276861,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 25460531811,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11383490141,
+        "voter": "pablox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1398034717,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 242744796,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 334006173068,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 14364948465,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 33639885970,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 391368491,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 11811714291,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 20012517255,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42112607012,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 33852058607,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 89569037,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5685679532,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12942070229,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1386339611284,
+        "rshares": 2696617320,
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 22153382159,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2552794240,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 307757751744,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 2727436517,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 2745487317,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200869173,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 433924646062,
+        "rshares": 165693192350,
+        "voter": "gabbans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3572057744,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 23775123893,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 36882567360,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 89813747359,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 161375754014,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 14736639309,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58265386995,
+        "rshares": 3576728200,
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 17601936013,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780190949,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 21537531300,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 13752659940,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614667524,
+        "voter": "curator"
+      },
+      {
+        "percent": "8200",
+        "reputation": 7172977970558,
+        "rshares": 2870180302,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 30059788973,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1596140305,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2727754330,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 485033626,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 454860590,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125619617814,
+        "rshares": 2624223649,
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36363525108,
+        "rshares": 121759228,
+        "voter": "sazbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 38412629886,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3695837170,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13394934034,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 152942524,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 843609166,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8813780350,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 3047151322,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5213738136,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 125370043554,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1075235976,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 4546480722,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "6900",
+        "reputation": 988942038058,
+        "rshares": 45907939906,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 6952211747,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5294811148,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 61911147,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 61714352,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1013075640820,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14888335610,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8107058910,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 23400822736,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23911327544,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23919974845,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 24510986824,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 37769139083,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 5173147926,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 238503886159,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 588461921530,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 27629927141,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206355094166,
+        "rshares": 8921988905,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 996049,
+        "rshares": 62472234,
+        "voter": "korzhovskyi"
+      },
+      {
+        "percent": "7752",
+        "reputation": 1751717743,
+        "rshares": 11461897501,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 52698903911,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3898490945,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 3334161508,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23915896370,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23914376448,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23911757517,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23908878849,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 1875150048,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23905113215,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23903642189,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3016325652890,
+        "rshares": 117128230821,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 20173385112,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 92960462722,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5427321003,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794157244,
+        "rshares": 61261066,
+        "voter": "jackkomber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1171268133,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 58773515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4122573976,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3740136030964,
+        "rshares": 318643015,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 72629533,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3762419282,
+        "rshares": 62173784,
+        "voter": "clarissa1994"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12277776,
+        "rshares": 63271446,
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 69485065,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 62188234,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 58467607,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 28304654029,
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15018520093808,
+        "rshares": 41103504553,
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3580186356,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61746903,
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 1580029996,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 56682205,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 283235546,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 8307326565,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 56535984,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 71241819,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 27199865099,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 63118959,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 84277779404,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53638070,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 209436170,
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 57405835,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 545451614,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 310811927,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "1400",
+        "reputation": 3814152361740,
+        "rshares": 1451684469,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9317330986,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1556041697,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 56598010,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56591855,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 626888257495,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1443151504,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59750246,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4479862265,
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1005947450655,
+        "rshares": 195160565,
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 13247070006,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 925594033,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55414210,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55396880,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55406673,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387660,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3728859219,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8480971863,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 7423407511,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23897322847,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 63837413,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 2680828708,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15582512683043,
+        "rshares": 65821995450,
+        "voter": "justinlaak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 76937378345,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 47338695487,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 21806631879,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1699561647,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 53437036902,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2349339281,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 60157039,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53853911,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10614920699,
+        "rshares": 236254009,
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565688,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4595623910,
+        "rshares": 58000712,
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1841770571,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8298658614343,
+        "rshares": 8573074284,
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5409679767352,
+        "rshares": 4848459038,
+        "voter": "englishtchrivy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1807478779,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 25628967648,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 60418402,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201616978,
+        "rshares": 55546978,
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 2011662877,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 65997918,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 14206144526,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 2439186312,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2077581159,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 23544130242,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961187,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 41415380854,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1581775775,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 53966805,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52496656,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 55768488,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71887903,
+        "rshares": 55709351,
+        "voter": "misscathy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 837791549130,
+        "rshares": 18052253827,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 14836422309,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3697930196,
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53252658,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52077150,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 85083750,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26897821824,
+        "rshares": 65372788,
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5414296170,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52915101,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 646077790,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 1210270353,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 793170907,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 4264779052,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51465774,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 112543619,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 54523663,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52242652,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52230725,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287913287,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25313560101,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2550877074,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51922012,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 227735119,
+        "voter": "irininich"
+      },
+      {
+        "percent": "4000",
+        "reputation": 3301652860610,
+        "rshares": 2165334759,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 337067509,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 71464098,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 352780841414,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 54084259617,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "3000",
+        "reputation": 26215514,
+        "rshares": 13532116930,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269520578215,
+        "rshares": 341116913,
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451285776301,
+        "rshares": 1359710881,
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 3134996274,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50933404,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 5059183261,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 100628450,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 209715303,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5312185929,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4759548989,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1953000600,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 2287432998,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 9299091881,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23031447736,
+        "rshares": 52882252,
+        "voter": "lennex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7835540052910,
+        "rshares": 20142442639,
+        "voter": "storyseeker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454901,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 242968142,
+        "rshares": 51468757,
+        "voter": "zees"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50980153,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 50326986,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 826888501848,
+        "rshares": 1430783777,
+        "voter": "dakini-dion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 659608632671,
+        "rshares": 1039951271,
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4591083065,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50602980,
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46150823,
+        "rshares": 50211016,
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1150196390848,
+        "rshares": 1145435510,
+        "voter": "anns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92809064720,
+        "rshares": 52724271,
+        "voter": "s0lo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50907857,
+        "voter": "oxygen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 1049562163,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50865840,
+        "voter": "sting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 1452005898,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50572441,
+        "voter": "unilever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50565798,
+        "voter": "penthouse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 98761775,
+        "voter": "dovepeacelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5643099,
+        "rshares": 50664711,
+        "voter": "buckland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 52278600,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370226651,
+        "rshares": 7743755308,
+        "voter": "cato-the-elder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 239968899,
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3517432636,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 510694927,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76019801,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 506147790,
+        "rshares": 35493215038,
+        "voter": "abdullar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1256840918,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157689742,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10583434066,
+        "rshares": 161446234,
+        "voter": "yasiin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33024540131,
+        "rshares": 146096965,
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162904624,
+        "voter": "allianz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 610439007851,
+        "rshares": 165306997,
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 345429965231,
+        "rshares": 159762514,
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108412302232,
+        "rshares": 162227319,
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 939050919776,
+        "rshares": 149641144,
+        "voter": "michaelstobiersk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330431039244,
+        "rshares": 158655277,
+        "voter": "kjsxj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161700361,
+        "voter": "shadowcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161218747,
+        "voter": "sdc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157816798,
+        "voter": "gravity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160870736,
+        "voter": "electronicarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157706877,
+        "voter": "cybergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 151363355,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14542508249,
+        "rshares": 160649364,
+        "voter": "trevorlyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116818017503,
+        "rshares": 158860455,
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157182398,
+        "voter": "planet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7037495995,
+        "rshares": 150675328,
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25973383237,
+        "rshares": 156882242,
+        "voter": "dontbenormal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50161010,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159539963,
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159425365,
+        "voter": "tipsandtricks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159352476,
+        "voter": "panic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159318360,
+        "voter": "stimmt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676794,
+        "rshares": 146775786,
+        "voter": "zaidkhalifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 120873643,
+        "rshares": 159121147,
+        "voter": "noah.trader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144604,
+        "rshares": 149732389,
+        "voter": "gopher75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2485385,
+        "rshares": 155945743,
+        "voter": "lenny1220"
+      },
+      {
+        "percent": "10000",
+        "reputation": 350258454,
+        "rshares": 159061028,
+        "voter": "dragonfruit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48393566209,
+        "rshares": 152792898,
+        "voter": "blackheart304"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146443049,
+        "voter": "steemit2670"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9906297,
+        "rshares": 146428143,
+        "voter": "anysound.studio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158627191,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158621293,
+        "voter": "bfem44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189531519222,
+        "rshares": 152318749,
+        "voter": "apolymask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 946441304,
+        "rshares": 158526983,
+        "voter": "oghenetony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 149129648,
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158259107,
+        "voter": "zedsdead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158236061,
+        "voter": "paulohenry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158229557,
+        "voter": "pac3mak3r"
+      }
+    ],
+    "author": "calaber24p",
+    "author_reputation": 76096938200261,
+    "beneficiaries": [],
+    "body": "Revamping Curation Is The Way To Increase Steem Power Demand\n\nIf you haven\u2019t been living under a rock, for the past month or so, it has been quite clear that the price of Steem has been rapidly falling. Although before the run up to $4 was most likely in a bubble and the system is in no danger of failing, as it has worked at this price before, I still believe there is a long term solution that needs to be found to fix this problem. Ned made a post yesterday talking about ideas he had, which mostly, in my opinion focused on lowering the supply entering the market, but this is only a symptom of the problem. My solution although a bit drastic addresses the problem which is a lack of incentive to purchase Steem and power up. \n\nhttp://www.chicagoartistsresource.org/sites/chicagoartistsresource.org/files/curator_1.jpg\n\nTo begin, what are the incentives now? Well the main incentive is having weight while voting, as well as getting a daily return on the Steem Power you have in the system. These might seem like adequate incentives in theory, but in practice I think we are seeing something very different. The problem right now is even with the daily interest we are getting on our Steem Power, we have still been losing money due to the price drops. The interest, which is supposed to act like inflation protection, is actually doing nothing because as long as the price is falling, people are not going to want to move their Steem dollars or Steem into Steem Power. We need to give a greater incentive to hold and purchase Steem Power that will benefit us as a community in the long run. Sure we can wait for the price to fall and have people cash out and make it cheaper to enter the system, but this still doesn\u2019t address the underlying problem.\n\nSo what is my solution? I strongly believe we need to move the payout split to 50:50 between authors and curators from the current 75:25 it is at. I know this will be controversial, especially because many authors today, INCLUDING MYSELF, are making essentially a living off the site, but ultimately it comes down to what is best for the community. We need to look at who is adding more value to the site, the authors or the curators. Depending on who you ask their answer might be different, but in my opinion both are equally as important. One cannot survive without the other and the payouts should reflect that.\n\nhttps://steemit.com/images/steemit-share.png\n\nCurating is supposed to be a heavy incentive for people to enter the system, but the earnings from it are subpar at best. For example, I have 20,000 Steem Power and my average earnings per day is around 6 Steem Power. That means my daily return on investment is .03% a day and only around 11% a year and that is with a pretty profitable curating strategy. Sure it will technically come out to a bit higher than 11% due to compounding but it still won\u2019t make that much of a difference. A huge selling point to me was that if you choose to curate rather than create content you will also be able to earn a sufficient amount, but no one is going to put 20,000 Steem into Steem Power that they would have to wait 2 years to pull out if the reward of waiting is not sufficient enough. Selling Steemit as a platform where the users who upvote the content are equally as valuable as the users who create the content makes users actually want to buy Steem and convert it into Steem Power. \n\nWe should not focus on slowing down the supply that enters the market, but rather retaining and creating new users that will become active daily. Once people have upvotes that actually mean something we will see people flock to the system. Rather than just browsing reddit and upvoting, with no return, they would have a much better experience here. The majority of the people on the site are not authors but lurkers or readers and we need to cater specifically to that crowd because they will end up as the masses, should more come. Authors deserve to be paid for their work but the percentage of money that goes to payouts is a lot. \n\n\nhttp://www.firebellymarketing.com/wp-content/uploads/2011/10/building-community-Firebelly-570x467.jpg\n\nLike I stated before, I have been very successful and Steemit which is why I want to cut down my rewards, because if we continue in the direction we are currently going, it will become a race to the bottom , at which point everyone will leave. I strongly believe that splitting the curation rewards and author rewards equally can benefit the demand for Steem power in the long run and cause a higher amount of user retention within the system. \n\n-Calaber24p",
+    "body_length": 4602,
+    "cashout_time": "2016-09-15T19:45:42",
+    "category": "steemit",
+    "children": 157,
+    "created": "2016-09-08T19:45:42",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"money\",\"community\",\"curation\"],\"image\":[\"http://www.chicagoartistsresource.org/sites/chicagoartistsresource.org/files/curator_1.jpg\",\"https://steemit.com/images/steemit-share.png\",\"http://www.firebellymarketing.com/wp-content/uploads/2011/10/building-community-Firebelly-570x467.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T19:45:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 101222153785235,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "945.749 HBD",
+    "percent_hbd": 10000,
+    "permlink": "revamping-curation-is-the-way-to-increase-steem-power-demand",
+    "post_id": 1176093,
+    "promoted": "101.000 HBD",
+    "replies": [],
+    "root_title": "Revamping Curation Is The Way To Increase Steem Power Demand",
+    "title": "Revamping Curation Is The Way To Increase Steem Power Demand",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@calaber24p/revamping-curation-is-the-way-to-increase-steem-power-demand"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 4152367932922,
+        "rshares": 5918843919195,
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1133069631465,
+        "rshares": 3094288914832,
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 25104157850610,
+        "rshares": 44768805123,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 281563837555,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104040479,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3768680486,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 683998880,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54822763106,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3745363549909,
+        "rshares": 62230748588,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663275306,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213794688,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624987874,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973106272,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2378101638,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288351745,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 51320362201,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 415852247378,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 944762156062,
+        "rshares": 5909000055,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 33254767020,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1676027632124,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1412752719,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 12169071403,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2014177224856,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 54982482422,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 181123599305,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 810326494,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3924899966690,
+        "rshares": 81192700375,
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52215058764,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 5444636495,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 26683762212,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 13487365582,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2234056550,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127663674848,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 47467283996,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 898149895,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 7545983800,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25386139768,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2844677790,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11270713350,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "5300",
+        "reputation": 3740136030964,
+        "rshares": 637699371,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439786891,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9074805566,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 60418402,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 660913097252,
+        "rshares": 3470902934,
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 53433189,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 330178623,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312902704,
+        "rshares": 72720620,
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78462337,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896905122572,
+        "rshares": 109940460,
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 130634157,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146022781,
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158042096,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86373454182,
+        "rshares": 145903154,
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 138768078,
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153557360,
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 896905122572,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Blockchain Developer\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for a blockchain developer who can work in an extremely faced paced environment to help scale the Steemit platform over the next year and beyond. You will be an essential member of the team who will provide added agility and expertise to ensure an unbeatable product.\n\n### Responsibilities\n- Independently identify and manage bugs, schedule tasks, investigate code\n- Handle full development cycle of components (formalize task, write code, test, set-up and support production, resolve user requests)\n- Write flexible, manageable, and modular code that can adapt to post-launch change\n- Build scalable, efficient, high performance solutions\n\n### Qualifications\n- Bachelor\u2019s in Computer Science (or similar) or equivalent experience\n- Expert in C++ or newer\n- Hands on experience with Git\n- Collaborative team player capable of listening to different perspectives and implementing the best solution based on those views\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 1715,
+    "cashout_time": "2016-09-15T15:11:24",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-09-08T15:11:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitjobs\",\"blockchain\",\"developer\"],\"image\":[\"https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:54:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14341719035931,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "22.508 HBD",
+    "percent_hbd": 10000,
+    "permlink": "new-steemit-job-posting-blockchain-developer",
+    "post_id": 1173018,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Blockchain Developer",
+    "title": "New Steemit Job Posting: Blockchain Developer",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitjobs/new-steemit-job-posting-blockchain-developer"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 4152367932922,
+        "rshares": 6037220797579,
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1133069631465,
+        "rshares": 6188577829665,
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 25104157850610,
+        "rshares": 44768805123,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 275442884564,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104040479,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3768680486,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 683998880,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6866537342197,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54822763106,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3745363549909,
+        "rshares": 62230748588,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663275306,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213794688,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624987874,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973106272,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2426634324,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288351745,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 407365466819,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 944762156062,
+        "rshares": 5909000055,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34065858898,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1676027632124,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426395561,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 12169071403,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200733663789408,
+        "rshares": 2014177224856,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 110343825376,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 56082132071,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 208041294929,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 810326494,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687280474158,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3924899966690,
+        "rshares": 82816554383,
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52215058764,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 328801133166,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 5337878917,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 11267463759,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 27228156990,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 13487365582,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 48416629676,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 916861351,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 25669997218,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1716002786,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 7545983800,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25386139768,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 70391342282,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 297488015220,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11496127617,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12277776,
+        "rshares": 62030829,
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3439786891,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525888505148,
+        "rshares": 17391787537,
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9074805566,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 79579408,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 69901150,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 60418402,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7577221661,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 54523663,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25313560101,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 336916962,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312902704,
+        "rshares": 71104606,
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78462337,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896905122572,
+        "rshares": 112139269,
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65836326,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676794,
+        "rshares": 143652897,
+        "voter": "zaidkhalifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158720852,
+        "voter": "carloss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 130634157,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 149129648,
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154943231,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86373454182,
+        "rshares": 145903154,
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 138768078,
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 150546432,
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 896905122572,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Community & Social Media Manager\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for an exceptional communicator to be the liaison between Steemit and our rapidly growing user base.  This is a role where you will be an expert in building and growing communities on and offline; you\u2019ve got ideas for this and can implement them.  You can also think big picture and for the long term \u2013 your ideas will reflect that.  Online communities are where you thrive and as such you know how to leverage them and will be able to do so for Steemit.  You have a track record of getting things done, live and breath social media, and want to work with a fast growing company that will change the world.\n\n### Responsibilities\n- Help deliver a best in class user experience to Steemit users who engage with us through social media\n- Be an active voice on relevant channels as a Steemit advocate\n- Monitor and post content to and across other social media networks including Facebook, Twitter, Reddit, etc. on a daily basis\n- Develop and track performance metrics for social media channels and advise on ways to maximize performance\n- Develop customer acquisition strategies through social media channels\n\n### Qualifications\n- 2 or more years of experience managing a brand's online presence\n- Motivated self-starter with great communication and writing/editing skills\n- Ability to collaborate and work with others, taking their viewpoints into consideration\n- Good judgment, professionalism, and levelheadedness as a social media ambassador\n- Nice to have: Interest in cryptocurrency and blockchains with experience in the community\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 2344,
+    "cashout_time": "2016-09-15T14:25:18",
+    "category": "steemit",
+    "children": 21,
+    "created": "2016-09-08T14:25:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitjobs\",\"jobs\",\"marketing\",\"socialmedia\"],\"image\":[\"https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:53:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 25834048756473,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "40.127 HBD",
+    "percent_hbd": 10000,
+    "permlink": "new-steemit-job-posting-community-and-social-media-manager",
+    "post_id": 1172537,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Community & Social Media Manager",
+    "title": "New Steemit Job Posting: Community & Social Media Manager",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitjobs/new-steemit-job-posting-community-and-social-media-manager"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 20924903115,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 316515996824,
+        "voter": "chitty"
+      },
+      {
+        "percent": "5100",
+        "reputation": 14073457536993,
+        "rshares": 53674162292,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 375656420380,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 37310054020,
+        "voter": "james-show"
+      },
+      {
+        "percent": "1400",
+        "reputation": 15755437221598,
+        "rshares": 2261027179,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 401475391,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426173324,
+        "voter": "murh"
+      },
+      {
+        "percent": "3200",
+        "reputation": 16234753830016,
+        "rshares": 24526746705,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 208985003729,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 15761970927,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2706408618,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "3400",
+        "reputation": 22794273843250,
+        "rshares": 61572228994,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 598181152117,
+        "rshares": 85869752009,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 44050470303,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2503881173561,
+        "rshares": 10487597892,
+        "voter": "nineyards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3661397048,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 59328435116,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 32438700122,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 8253914298,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 8181635146,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14239373762,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9081117484953,
+        "rshares": 30764850573,
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 441006366819,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 112591076283,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 155086424302,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 66801231,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4047643732,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 3092827406,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 434137550,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2614032281,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 395135521,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 43466091162,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3789831728,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5556418828,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2552654221,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 957548802260,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19817905281,
+        "rshares": 212019463,
+        "voter": "jasen.g1311"
+      },
+      {
+        "percent": "6600",
+        "reputation": 7172977970558,
+        "rshares": 2338658584,
+        "voter": "ace108"
+      },
+      {
+        "percent": "3800",
+        "reputation": 17698439393799,
+        "rshares": 12829825322,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 4238804280,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": -39372262885,
+        "rshares": 52207362,
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 25386139768,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5075657424,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 4393674302,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "300",
+        "reputation": 10771708337101,
+        "rshares": 63288595594,
+        "voter": "laonie"
+      },
+      {
+        "percent": "9000",
+        "reputation": 9337635520,
+        "rshares": 7296353019,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958503,
+        "rshares": 58804600,
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "3100",
+        "reputation": 18027204457681,
+        "rshares": 13007083652,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "4000",
+        "reputation": 5776723480371,
+        "rshares": 103099601827,
+        "voter": "somebody"
+      },
+      {
+        "percent": "4000",
+        "reputation": 206355094166,
+        "rshares": 3856981690,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "4000",
+        "reputation": 97845484474,
+        "rshares": 22781126275,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "300",
+        "reputation": 3016325652890,
+        "rshares": 7095478692,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 154454721,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "3900",
+        "reputation": 1851205309677,
+        "rshares": 1782244397,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "4000",
+        "reputation": 4195733833721,
+        "rshares": 3591246793,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641833483915,
+        "rshares": 2846899090,
+        "voter": "lightsplasher"
+      },
+      {
+        "percent": "4000",
+        "reputation": 730408370151,
+        "rshares": 235835929,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 10995099944,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 68417395,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 905160938,
+        "rshares": 53516176,
+        "voter": "cnmtz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26476661103,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 59047422,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 2897317590,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1631282506,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 9771811576,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 91543033,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 12721442209,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288672343,
+        "rshares": 335474158,
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 842943776,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 52636635,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 116378965,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78376579,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144014259,
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9906297,
+        "rshares": 146428143,
+        "voter": "anysound.studio"
+      }
+    ],
+    "author": "craig-grant",
+    "author_reputation": 54345938068170,
+    "beneficiaries": [],
+    "body": "change gon come\nhttps://www.youtube.com/watch?v=pb7shsTextM\n\n### read Ned's post @ https://steemit.com/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction\n---\n\n---\nhttps://www.steemimg.com/images/2016/09/07/20160907_200828f7272.jpg\nhttps://www.steemimg.com/images/2016/09/07/20160907_20085398483.jpg\n\n####  Get 3 meals for $30(shipping included), each meal serves two. That's $5 per meal for the highest quality food you will ever taste @ [https://www.homechef.com](https://www.homechef.com/invite/ezxbJf89eBnV)\n---\n\nFollow @craig-grant\n\nHeaven = have fun :)",
+    "body_length": 586,
+    "cashout_time": "2016-09-14T23:51:24",
+    "category": "freedom",
+    "children": 15,
+    "created": "2016-09-07T23:51:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"freedom\",\"steemit\",\"steempower\"],\"users\":[\"craig-grant\"],\"image\":[\"https://img.youtube.com/vi/pb7shsTextM/0.jpg\",\"https://www.steemimg.com/images/2016/09/07/20160907_200828f7272.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=pb7shsTextM\",\"https://steemit.com/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction\",\"https://www.homechef.com/invite/ezxbJf89eBnV\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T00:31:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 3501633293272,
+    "parent_author": "",
+    "parent_permlink": "freedom",
+    "pending_payout_value": "1.473 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steem-report-curation-and-steem-power-ideas-by-ned",
+    "post_id": 1165807,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "STEEM report, curation and steem power ideas by Ned",
+    "title": "STEEM report, curation and steem power ideas by Ned",
+    "total_payout_value": "0.000 HBD",
+    "url": "/freedom/@craig-grant/steem-report-curation-and-steem-power-ideas-by-ned"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28904209517709,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 446491524573,
+        "rshares": -56559208770,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 633095325237,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 404682721071,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "5100",
+        "reputation": 42786247901122,
+        "rshares": 25814870366911,
+        "voter": "dan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2321790225223,
+        "voter": "diaphanous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2077749979912,
+        "voter": "bmw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1860859029886,
+        "voter": "books"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1551086497755,
+        "voter": "butterfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1469367520215,
+        "voter": "commedy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 6141142270335,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 6934956643994,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5536285359773,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3103030120,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1689669975555,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3767362463,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690899726,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6142381502949,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54638988750,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1662795178,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213777416,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 3921583473347,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 62849848037,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1460238073,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 897783861872,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 118160004239,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8846544205,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2249794908,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1220931423430,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 326641694341,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 23992305455,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 624870220,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 268787058152,
+        "rshares": 26771021432,
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 969744364,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 804647377325,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5154121875287,
+        "rshares": 78719523584,
+        "voter": "jwest40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 361589712598,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 32423888615,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288328206,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 83099570491,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24793284195,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14471587511,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 163614861708,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 9864254866,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14902174889,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "5000",
+        "reputation": 14073457536993,
+        "rshares": 71563667896,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 52311045620,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411271639019,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78952260790,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 11754655518,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3913661416,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 552268439259,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 487226144,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "6100",
+        "reputation": 944762156062,
+        "rshares": 3975544133,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5612587148,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11372617606769,
+        "rshares": 109201913867,
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 28968973138,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2062724006,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 331414403780,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3200",
+        "reputation": 15755437221598,
+        "rshares": 4518704719,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 144379940729,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 54482680287,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 33524081215,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4611433093423,
+        "rshares": 26516736386,
+        "voter": "tmendieta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 37994042628,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7317943657,
+        "rshares": 2366331863,
+        "voter": "alenevaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 534991050,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 67845312433,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425735650,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 6894648848,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 17773072912,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 602425396,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 13216041083,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 198603454941,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598588545490,
+        "rshares": 15588807020,
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 42080883570,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 941565976892,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 23912266183,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 6242728467,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 4685622702,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 12984552465,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "7600",
+        "reputation": 71931696380,
+        "rshares": 2917169504539,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 386419893744,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 8806878751,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 380391693,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 52367224290,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10450737135,
+        "rshares": 349484107,
+        "voter": "yonatann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 377770820778,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14734236654427,
+        "rshares": 40679365477,
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62345041692781,
+        "rshares": 308660771107,
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "500",
+        "reputation": 20763505296686,
+        "rshares": 13998741368,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55873941967,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 108025258280,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 53194598358,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 412538354215,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1486565432,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13353610720,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212451198738,
+        "rshares": 430294140,
+        "voter": "magdalena"
+      },
+      {
+        "percent": "4700",
+        "reputation": 1050758001641,
+        "rshares": 11167158479,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 988882833,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19192619156,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 15756733173,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 33784111908,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 182873871538,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5709056203,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9721696359,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687254164754,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1133039287233,
+        "rshares": 1075516962,
+        "voter": "comm-press"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 109117596483,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6740408834,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31925745781,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 68617907780,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2375236125,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "3000",
+        "reputation": 6767512298331,
+        "rshares": 12981212473,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3755852203,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "5400",
+        "reputation": 2632946346,
+        "rshares": 15858494668,
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 536461338,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 40094142832,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 39857869532,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 50782349370,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "2500",
+        "reputation": 17405459234693,
+        "rshares": 22535574872,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 275298770505,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 20203030978,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 243464927250,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 318035694495,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 43816713486,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 60077712293,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 90689728719,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3297954099,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 8587323673,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 17199764671,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254364900,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 22616447166,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122136592502,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 282238576797,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 3286950628,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 516176839,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 12276334224,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6927337869,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 242042299,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1597179386,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 456375266764,
+        "rshares": 69160956194,
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 120331087671,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 26149661294,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573516438,
+        "rshares": 2761970265,
+        "voter": "wintrop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91432229392,
+        "rshares": 7012104525,
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 513898732093,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 4223216611,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 112572902958,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81102912,
+        "rshares": 236699236,
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "3100",
+        "reputation": 3320684282022,
+        "rshares": 48431592474,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727668809534,
+        "rshares": 5516539304,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "5200",
+        "reputation": 657552887015,
+        "rshares": 2893393868,
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 710038072,
+        "rshares": 1111186856,
+        "voter": "demyan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 56528698039,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 16937012018,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325589414514,
+        "rshares": 525662045,
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40069670306,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1525991347,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 17954765467,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4507281503,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "4200",
+        "reputation": 9968156990,
+        "rshares": 26722878081,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3949738963,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11743458717,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4685025327,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1855825,
+        "rshares": 218350821,
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60009630836,
+        "rshares": 2438495293,
+        "voter": "thelindvall"
+      },
+      {
+        "percent": "0",
+        "reputation": 11644551965460,
+        "rshares": 426995359,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2200070551939,
+        "rshares": 10624714992,
+        "voter": "fogspam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3758226202,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 24926432348,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11466221508,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 11346695853,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 38296982211,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 12382501577,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 12897559714,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2086071510,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 235512684,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 20010696496,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 55174325289,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 45468090152,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510987855,
+        "rshares": 240374641,
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7144301672,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 96640276,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 129948707617,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3709534148,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5772890880,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 2091519389,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13003141497,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3175079093,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 18161034703,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2450336934,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 201222637041,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 2452090874303,
+        "rshares": 2045718563,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 13357712366,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "2900",
+        "reputation": 57820199104417,
+        "rshares": 40980982912,
+        "voter": "opheliafu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 298430647098,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661515438853,
+        "rshares": 5853998263,
+        "voter": "kidsysco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3493315959,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14607170571,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64250965781,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 123387400,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 7924257770,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7311343446,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3248799071,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1107579084929,
+        "rshares": 2691561605,
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 848614521,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 4244751071,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 7740774800016,
+        "rshares": 13833357665,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3244193020,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 2283280595,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 26463727332,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 38546045916,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 39483002950,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 84759836456,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3415496053078,
+        "rshares": 3869796932,
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 104788510,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182754922360,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 977883724416,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 9747030367,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 39264915236,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1781950310,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269576627,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269980297,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156093986,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156975275,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89476508,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 115403915,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 95203313420,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078296488269,
+        "rshares": 10448758256,
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 32452429861,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 496208892,
+        "rshares": 115883340,
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96522929177,
+        "rshares": 133255616,
+        "voter": "bigb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 571692815,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 3835587963,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 5372665495,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 15514579228,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 916462256,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15575145963,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614416410,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 3297833326,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 432287231,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1750139335,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 231618512,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 4914389699,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81028161,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2242469546,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125619617814,
+        "rshares": 2849432107,
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 554432980,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 36985556688,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1731857982,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5554504133,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13518235137,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3821319838891,
+        "rshares": 21557151502,
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 142706881,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6699598900,
+        "rshares": 115172592,
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27075686327,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 244863448245,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 2873547475,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 188414958,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1458929155,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 19540258029,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 3150369025,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5474983827,
+        "voter": "jed78"
+      },
+      {
+        "percent": "4900",
+        "reputation": 283380527576,
+        "rshares": 6677336214,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 122226950104,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1254151045,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 4400767306,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 70376481208,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7870689325,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 6529244168,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 59219358,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636819078766,
+        "rshares": 1561593690,
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 6817558610,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 58958028,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 604356859725,
+        "rshares": 2501549780,
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552713989475,
+        "rshares": 18337113073,
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 25086446776,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 130522396758,
+        "rshares": 54208918167,
+        "voter": "sextusempiricus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 25748578986,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1916476866,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19073889900896,
+        "rshares": 20943614649,
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 14587304759,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2312594930,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4344940420,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6812512111,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1393113935,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8284755955,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 101494312815,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 100860038,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 91120502513,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5443084062,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12780436995,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1232895758,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 58773515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 189563166525,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 312105000,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 59410849,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 55911760,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": -451593763871,
+        "rshares": 3302532712,
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 710962726,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 55449983,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2860793589,
+        "rshares": 982196003,
+        "voter": "fooblic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1986815415,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 145684441672,
+        "rshares": 580406077,
+        "voter": "bmcv001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 21699399275,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 55306941,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1558777881,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 68397753,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 67990404,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 29495720282,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 60730988,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1884653469,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 74898697,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 88707336012,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725736773651,
+        "rshares": 490764449,
+        "voter": "sc-steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52419023,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 56143792,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 577428472,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 6753644017,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11525643543,
+        "rshares": 62395538,
+        "voter": "olya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 8451306126,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54313084,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1549192117,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 19205801220,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 56598010,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56591855,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 75583534,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2707740797,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 640494020911,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1371874570,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 67104569235,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 12003456501,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1389946718,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2560790218,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 963036943,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54220781,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54218223,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54216305,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54213405,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54209199,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4276803918,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 187186651,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8469707556,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1856443329,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2569452228,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53821337,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2866954104,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 22522846885,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 6050957442,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310309073633,
+        "rshares": 1871540303,
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 71218036289,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 47545219036,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9053611702217,
+        "rshares": 4000720825,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 18578707926,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "100",
+        "reputation": 896116963054,
+        "rshares": 5228073529,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4503042264,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52708083,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58330329,
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23296483960,
+        "rshares": 59194500,
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 733021198,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565688,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 4382079199,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1624044881,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 2017275348,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1572019930,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 4887499753,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 670709305,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 25570333868,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 69572705,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 57437168622,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 98218493,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199905262704,
+        "rshares": 90577741,
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 79568473,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 20981590167,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34250890230,
+        "rshares": 57330113,
+        "voter": "aavkc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 675058400,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2433107936,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 9191275813,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52836995,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 6743441072,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 3101985046,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1616413109,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 66879121,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 133765107,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7518726707,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620019,
+        "rshares": 56987529,
+        "voter": "thepeacefulrebel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 52842496,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25413691969,
+        "rshares": 185622553,
+        "voter": "greatness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52505412,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52496656,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 12190963825,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "7100",
+        "reputation": 837791549130,
+        "rshares": 24470534532,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15150640986,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 3748408212,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 85083750,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6359996795,
+        "rshares": 52847912,
+        "voter": "teruneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6671012929,
+        "rshares": 57099030,
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5529568480,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 5272311109,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51814474,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51812703,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 17059963076,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1518574310,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51451058,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 3064424390,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 277324152,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 89038335,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117903399171,
+        "rshares": 537067064,
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51148009,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1769489244,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2605716510,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 343538723,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 1449131127,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1647174,
+        "rshares": 50554364,
+        "voter": "danbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 327174897,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 334013630052,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8671572242235,
+        "rshares": 5674559575,
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59387530704,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "3000",
+        "reputation": 26215514,
+        "rshares": 9136703623,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 1167978510,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 353288883728,
+        "rshares": 482952591,
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451285776301,
+        "rshares": 52226204,
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50050365062,
+        "rshares": 61567608,
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70707045777,
+        "rshares": 161284159,
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 582922475,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1642685153,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 2929180084,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 210337011,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5725265619,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 4651778852,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2744828616,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327349908318,
+        "rshares": 357202147,
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 55826263,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2818894604,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1951311375,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 1129379312,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1713402087003,
+        "rshares": 5911683344,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1420415841,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768451347973,
+        "rshares": 338284222,
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 8712540579,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 347888867,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638366942222,
+        "rshares": 1352042554,
+        "voter": "mojojojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 1457160010,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 336901289,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 343046311,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 659608632671,
+        "rshares": 1039370994,
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4689184321,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1124648368001,
+        "rshares": 924825759,
+        "voter": "schattenjaeger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1286719931439,
+        "rshares": 2382508857,
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161389518041,
+        "rshares": 143571824,
+        "voter": "flowergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3938805566864,
+        "rshares": 615424969,
+        "voter": "nathanjtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68065278228,
+        "rshares": 77317255,
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1692965069,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50568084,
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50536471,
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50532230,
+        "voter": "friends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50508468,
+        "voter": "lookie-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271380763884,
+        "rshares": 52005424,
+        "voter": "natord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47952480972,
+        "rshares": 55484657,
+        "voter": "steemettes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 50317220,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1757970224,
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151518932812,
+        "rshares": 4316683465,
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2918207689,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74402358,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1309209290,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154426469,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10583434066,
+        "rshares": 161446234,
+        "voter": "yasiin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2435301894,
+        "rshares": 164151372,
+        "voter": "flowmetheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2064615506,
+        "rshares": 147014100,
+        "voter": "eunnykim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675589247639,
+        "rshares": 1065088190,
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159374062,
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156089617,
+        "voter": "kalev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 152729000,
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678509864471,
+        "rshares": 276984194,
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875118455,
+        "rshares": 132806923,
+        "voter": "swtcamito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158051137,
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157727916,
+        "voter": "dulani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39836927140,
+        "rshares": 141916333,
+        "voter": "laskoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15369201941,
+        "rshares": 154501465,
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119814391,
+        "voter": "oliver.smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157648960,
+        "voter": "viper666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 110346066,
+        "voter": "jack.johnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160689927,
+        "voter": "paulreifsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11669657116,
+        "rshares": 122578153,
+        "voter": "rubenkusters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7559361841,
+        "rshares": 157126941,
+        "voter": "adpipop"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1013362818,
+        "rshares": 157060221,
+        "voter": "craneos6626"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33427042566,
+        "rshares": 147606365,
+        "voter": "laskovskiy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7037495995,
+        "rshares": 153814397,
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159993665,
+        "voter": "ttarabichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1478840966,
+        "rshares": 156821466,
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10568161397,
+        "rshares": 125821091,
+        "voter": "jasonxg"
+      }
+    ],
+    "author": "dantheman",
+    "author_reputation": 145171381514207,
+    "beneficiaries": [],
+    "body": "<center>https://i.imgflip.com/p1ij6.jpg<br/>**CENSORSHIP**</center>\n\nLanguage is a very powerful tool because it shapes the way we think. The words we choose to use [impact how we think, feel, and reason about the world around us](https://en.wikipedia.org/wiki/Linguistic_relativity). Today I would like to address the word *censorship* because it is a very hot topic on steemit.\n\nThe first problem we always face is different and ambiguous definitions for censorship.  Unfortunately, it isn\u2019t always practical to *define* our terms in every debate and therefore drama queens toss the term \u201ccensorship\u201d around far too easily. I would go so far as to say that the censorship card is played about as often and illegitimately as the race card.  Often those who play the *race card* are more *racist and oppressive* than those they slander, the same principle applies to those who play the censorship card.\n\n## Censorship requires Aggression \n\nThe defining characteristic of a free society is the absence of initiation of violence. This includes the credible threat of violence, fraud, theft, etc.   Without the threat of aggression people can freely say whatever they want, whenever they want without fear that their person or property will be harmed. A critical distinction of a free society is that you cannot express yourself in ways that violate the property rights of others.\n\n## Graffiti is Aggression and violation of Property Rights\n \nGraffiti is defined as writing or drawings scribbled, scratched, or **sprayed illicitly on a wall or other surface in a public place**. In a free society the Graffiti artist would be tracked down and expected to pay restitution to the property owner.  No rational individual would argue that the artist has been censored by the property owner or that the property owner is the one initiating aggression against the artist.\n\n## Property Owner defines Art vs Graffiti \nThere are places where graffiti-style art is acceptable and is actually encouraged. In this case no aggression has occurred and therefore the action is legitimate. \n\n<center> https://farm8.staticflickr.com/7485/15754046208_7d666a75a9_o.jpg</center>\n\n## Spam, Porn, Harassment, and Fraudulent posts are Digital Graffiti  \n\nWhen it comes to websites like Facebook, YouTube, Google, Reddit, and Steemit we have digital property owned by individuals providing a free and voluntary service to society. It is not possible for these organizations to censor user content because they are not using violence, theft, etc. \n\nThe only true censorship is when government agents approach these companies and demand content be removed under threat of force or violence.  Provided these companies are not under any kind of threat, there can be no censorship.\n\nWhen someone [demands that YouTube share ad revenue](/steemit/@calaber24p/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video) they are taking the role of the Graffiti artist that demands property owners not repaint over their artwork.\n\nSome people may consider the [Graffiti artwork worth thousands of dollars](https://en.wikipedia.org/wiki/Banksy), but this doesn\u2019t change the moral character of the vandalism.  Likewise, some people may feel their humor, sarcasm, teasing, crude language, or vulgar posts to be artwork and demand that other users see it and/or up vote it for payment. \n\n## Graffiti Hurts Community Value \n\nWe all love the idea that Free Speech adds value to the speaker, but our selfish desires to be heard come at the expense of the listeners.  Few people desire to move into a neighborhood where there is unfettered graffiti and complete disrespect for property rights.  Likewise, few people want to join an online community where there are no standards of mutual respect.\n\n## A Perception Problem \n\nWe have a very real problem in society today.  The problem is that people feel *entitled* to things that are not theirs.  Whether it is health care, google ranking, reputation, or [right for gay couples to be served by particular vendors who oppose gay marriage](http://www.politifact.com/florida/statements/2013/jul/08/tony-perkins/wedding-vendors-have-been-forced-participate-same-/).  These entitlements can only be delivered by initiating force and violence against innocent people.\n\nIf a particular vendor (YouTube, Facebook, Google, or your Local Florist) will not serve you, then you must take your business elsewhere.  Vendors who lose a significant amount of business will voluntarily reconsider their policies.   \n\n## But they have a monopoly!  \n\nTo the extent that a business gains the vast majority of the market share without relying on government regulations to shield them from competition, the monopoly is deserved and was earned by providing a quality product that others were unable to compete with.\n\nThere are no laws forcing everyone to use Google, YouTube, Reddit, or Facebook. There are no regulations preventing competitors from starting up and competing.  Complaining about their unwillingness to serve you is like a local mall refusing to allow certain tenants.  It will certainly make business more challenging for those tenants, but the prospective tenants are not entitled to a prime high-traffic spot in the mall.\n\n## Flagging Posts based upon Differing Opinions \n\nSome people have been complaining about users who down-vote posts they disagree with. The basis of the idea is that all posts are *entitled to* funding from those who support the ideas.  This stance is in direct opposition to the vested interests of every stakeholder.  \n\n\n<center>http://godfatherpolitics.com/wp-content/uploads/2014/03/thomas-jefferson.png</center>  \n\nWhat should happen when one stakeholder wishes to fund a cause abhorrent to another stakeholder of equal size?  The two opinions are canceled out and the remaining stakeholders get to decide.\n\n## Incentive to be Tolerant and Inclusive \n\nAll users, particularly whales, have financial incentive to be tolerant and inclusive.  This grows the overall network effect and makes everyone the most money possible.  To the extent any community adopts a culture of intolerance that overly restricts the range of acceptable opinion it will push people away.  New communities will form to serve the needs of those who are rejected and the free market competition for mindshare will continue.\n\n\n## Conclusion\n\nIf Steem remains a libertarian / anarchist enclave then it will fail to attract a broader audience and that in turn will mean that ordinary people will not get involved with cryptocurrency.  Likewise, if Steemit fails to curtail abusive, threatening, and toxic individuals it will also drive away the broader audience leaving only those with skin thick enough to take the abuse of trolls.  \n\nI want Steem be a healthy, vibrant community with engaging discussions from people with all points of view. Unfortunately (and fortunately?), I am only one of many users who have a say in what kind of content gets voted on.  Each and every one of us contributes to the culture and we will all succeed or fail based upon how we act.\n\nLets stop throwing the term \u201ccensorship\u201d around here on Steemit unless it is explicitly referring to the threat of violence.  It is out of place and conjures up inappropriate negative reactions similar to playing the race card.  Instead, lets focus on the rights of all voters to express their opinion for or against any post.  If you disagree with how someone is voting, then focus your argument on how something adds or removes value to the community rather than whether someone is committing the \u201cvile\u201d sin of non-censorship by utilizing their legitimate voting rights.\n\nSteemit is a free and voluntary platform built on the basis of free association; censorship is impossible in such an environment even if the community or steemit.com chooses to minimize the visibility of some content or block it all together.  \n\nThe blockchain is open, your content is logged and recorded for all time.  Anyone who wants to see your content or offer a competing service to steemit.com is free to curate and display what they like.  \n\n## P.S. On Definitions \n\nWe live in a world where common words are generally used in ways that are in direct contradiction of their meaning.  The unfortunate reality dramatically lowers the quality of public discourse because it allows people to talk past each other.  Activists leverage the emotional response to the word censorship to provoke people into violating the property rights of others.  It may well be that censorship is taking on a broader meaning that would also encompass the no coerced behavior of Google, Facebook, etc.   The problem with the broader meaning is that the word censorship is no longer useful for accurately defining moral/immoral behavior.  Under the broader definition, accusing someone of censorship is as meaningless as accusing them of filtering spam emails.  How dare they censor spam artists!",
+    "body_length": 8987,
+    "cashout_time": "2016-09-13T18:45:36",
+    "category": "censorship",
+    "children": 164,
+    "created": "2016-09-06T18:45:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"censorship\",\"steemit\",\"steem\"],\"image\":[\"https://i.imgflip.com/p1ij6.jpg\",\"https://farm8.staticflickr.com/7485/15754046208_7d666a75a9_o.jpg\",\"http://godfatherpolitics.com/wp-content/uploads/2014/03/thomas-jefferson.png\"],\"links\":[\"https://en.wikipedia.org/wiki/Linguistic_relativity\",\"/steemit/@calaber24p/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video\",\"https://en.wikipedia.org/wiki/Banksy\",\"http://www.politifact.com/florida/statements/2013/jul/08/tony-perkins/wedding-vendors-have-been-forced-participate-same-/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T18:45:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 117550898840994,
+    "parent_author": "",
+    "parent_permlink": "censorship",
+    "pending_payout_value": "1193.947 HBD",
+    "percent_hbd": 10000,
+    "permlink": "censorship-is-impossible-in-a-free-society",
+    "post_id": 1149625,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Censorship is impossible in a Free Society",
+    "title": "Censorship is impossible in a Free Society",
+    "total_payout_value": "0.000 HBD",
+    "url": "/censorship/@dantheman/censorship-is-impossible-in-a-free-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28904011889414,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 520098232581,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 27187008322655,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 169804839880,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2636342185376,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 169207940021,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "3300",
+        "reputation": 51047995307721,
+        "rshares": 3073876330742,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2008563761368,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 594575320115,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1011916646700,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 2393257515326,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1107774806631,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4973802490322,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4674533411216,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2482055809,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1809839585238,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3013424240,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 552662812,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 491465130261,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 43649505393,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5572119315,
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 32994834817,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 392020164380,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26825111274,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1330064009,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 171009273,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 208927024954,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2005815389795,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11196356543,
+        "voter": "steemservices3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 13072638952,
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 14855376121,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 444955155332,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2792476965429,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1532665365,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 918878966751,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 123571015707,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2248950812,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1453188235245,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 11723893904,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 499845540,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 775709423,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2786483423564,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 408396261389,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 40480067408,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230642309,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 25304604461,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14464815855,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1820924487,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "4800",
+        "reputation": 1421425103482,
+        "rshares": 12861662310,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81300407183,
+        "rshares": 548931646,
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1055355445022,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 19313464152,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41145563244589,
+        "rshares": 832212930452,
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1845145940128,
+        "rshares": 68620290271,
+        "voter": "idealist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 611673479623,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 19603806106,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2766508550901,
+        "rshares": 29124731949,
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 487043900,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5487072034,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11372617606769,
+        "rshares": 110425095104,
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 29577376352,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2105697423,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 338115289584,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 26446572833,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 13242421616,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 733881760856,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 679520448,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "4200",
+        "reputation": 15755437221598,
+        "rshares": 4974441347,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 151937411878,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 230470945840,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 534596286,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 74166126146,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 623001349410,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1425459923,
+        "voter": "murh"
+      },
+      {
+        "percent": "5000",
+        "reputation": 426343346149,
+        "rshares": 3590512275,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2634258540,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 378920499792,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598588545490,
+        "rshares": 15588807020,
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 42977927576,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 64657896111,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 98243686947,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24400271615,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 8199640991,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 13249527549,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 377944761420,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 380255021,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 370334988153,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 233304410850,
+        "voter": "wingz"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3804349938696,
+        "rshares": 33522431436,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 54397942319,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 213100572181,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9389887938261,
+        "rshares": 6210962615,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 403936875902,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 539220549910,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 78420366563,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1012427662,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 3247481989,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 36310114628,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 719254637693,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21696987204454,
+        "rshares": 167123545461,
+        "voter": "ikigai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5829433150,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687228830675,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 108637592108,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 272424359692,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2937074898,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2502021825,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3406174686,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 36049155648,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 562575775,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 43623897139,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 44534121657,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 53127948729,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 243464927250,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 15603689614497,
+        "rshares": 14593112076,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "2600",
+        "reputation": 1959446497877,
+        "rshares": 1349434599,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 92800123706,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3329170505,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 15569455870,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 16406069363,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9786117166130,
+        "rshares": 23470130902,
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 467472850580,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 120310968454,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 60653460344,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10592956071,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 103734236038,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3661486271,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 485287450,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 531132027,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 486886690,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 25575729781,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 148458773016,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325589414514,
+        "rshares": 504635563,
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 1206556077,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1630261480,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4600997385,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133430062956,
+        "rshares": 15976597511,
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10929036897,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 13555525897,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3978399004,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 21722940066,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10435159079,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 349470768,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 11941739853,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 43183709774,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 410205647,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 3215762929,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 10050955929,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 429865972,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 370939417531,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 43452166600,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7443194536,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 103711516,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3786816110,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5649736542,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": -485066068148,
+        "rshares": 243501388,
+        "voter": "mix68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837671136243,
+        "rshares": 744454404903,
+        "voter": "ramta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3174794355,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 438064420,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 280968811744,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64246109862,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1911344111,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7024624095,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 7327096445,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 6105234990,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 234706981000,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 29860845400,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116065815,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 102459876,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182710907037,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 37640387244,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 16288614419,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1798884189,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269576627,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 269980297,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156093986,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156975275,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89476508,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 542854211690,
+        "rshares": 500969295,
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117711994,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 764587130,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 21325436037,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15571624866,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 644954948,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 8147029083,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 221401214,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 436474032,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1749726803,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 233864769,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81814843,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2222862544,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 537189684,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 502409799,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 536957638,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5841936138,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 117834331,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 29626477289,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 139296107,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 217225350,
+        "voter": "choccy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1859734787,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 18184768944,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 7816664104,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5874256428,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 128078777101,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1279745964,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8331474043,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4306793943,
+        "rshares": 103516772,
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 57873464,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 58958028,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "7300",
+        "reputation": 10771708337101,
+        "rshares": 693670933974,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 2267736473,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 25730062568,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 16142522947,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 51338511950,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 63541793,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4615241075,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 3066422709,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 807752948,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 103522443133,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "7300",
+        "reputation": 3016325652890,
+        "rshares": 77778400648,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 18051601393,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 17911590129,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 93195477512,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5248424662,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1265682837,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 9442440033,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 423788872,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 59410849,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 55911760,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 11703925092,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9523766827937,
+        "rshares": 17730431006,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 55449983,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 55306941,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345831698,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234954849,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 66371585,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 29493027614,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 65068915,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1065111573,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54908311,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54842915,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117308646,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50545877,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62391219,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 56143792,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 116751214,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54313084,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 72982892,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 61874235,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1497361810,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 17605373303,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 35420250755,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 57802223,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57795937,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 101227402628,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 662204978880,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1443290254,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54220781,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54218223,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54216305,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54213405,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54209199,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 59993245,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8891054106,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53821337,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24772824820,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59226282,
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 71200836239,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 46612959839,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "100",
+        "reputation": 4112973711517,
+        "rshares": 163983245,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 16355375535,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 2977572185,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 57797939,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 59044569,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53853911,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 724970673,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54705383,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 146567272,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1923215341,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1366942350,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118894339,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 813530163,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6435147485147,
+        "rshares": 14529944296,
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 58249183,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 77673986,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 7315831479,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2484284234,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56265756,
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52836995,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1650630573,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 127978892,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 52842496,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52505412,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52496656,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 50191639,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 32097581345,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15297756343,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53252658,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5646175108,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52915101,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51223240,
+        "rshares": 397453188,
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 160081558,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51451058,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 158538070448,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55725073,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52230725,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9219166710,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 52088375,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2660739677,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55093071,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 5273026357,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54839629,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 1541628858,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 108903782,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 717513029,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 341331436972,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8671572242235,
+        "rshares": 4014959887,
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 62339306632,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 25877183239,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54601718,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53353220,
+        "voter": "swisswatcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 772900078,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1066584907,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 65975408,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53729098,
+        "voter": "dariuszg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2762392872,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 2035771305,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 1290719213,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1451959158,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 8917175222,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 175892938,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 54059416,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52368690,
+        "voter": "rooster.ninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4788178237,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3966465,
+        "rshares": 50368777,
+        "voter": "eagleeye7850"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10024209538,
+        "rshares": 57266113,
+        "voter": "technium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1093018575,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50536471,
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50484452,
+        "voter": "connect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 50317220,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1684721465,
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 99417982,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2979811276,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3727858482,
+        "rshares": 151614981,
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 51876835,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74402358,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41596863062,
+        "rshares": 81556444,
+        "voter": "brainup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82287966,
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157628162,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60962152,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263024077,
+        "rshares": 163439230,
+        "voter": "zubasky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162925257,
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162911190,
+        "voter": "front"
+      },
+      {
+        "percent": "10000",
+        "reputation": 610439007851,
+        "rshares": 156833866,
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162561543,
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6631576072,
+        "rshares": 162424202,
+        "voter": "unlabeled"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 155910854,
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4958810,
+        "rshares": 161855613,
+        "voter": "jamicwe219"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158660342,
+        "voter": "iberia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161815656,
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585181578869,
+        "rshares": 116987070,
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": -565298235179,
+        "rshares": 107496727,
+        "voter": "elsi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8802439265,
+        "rshares": 160573104,
+        "voter": "sortinghat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154276916,
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 152869602,
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 57302509663422,
+    "beneficiaries": [],
+    "body": "![Alt Text](http://www.geliosoft.com/100-happy-dollars-3d/falling-money-wallpaper.jpg)\n\nHave you ever wondered  why people keep trusting career politicians to handle their finances? It\u2019s a fascinating thing really. This is one of the biggest mind-boggling mysteries that seem to defy even time itself, mysteries that are impossible to explain from a purely rational point of view.\n\nAsk any person in the world \u2013 scratch that \u2013 ask any person in the history of the world to describe politics in one word and you are guaranteed to hear some of the following words: Deceiving, dishonest, incompetent, cheating\u2026Etc. And probably, this is from the generous side.\n\nNow,  ask any of those people how come they trusted those individuals to manage their finances, and it would seem like you\u2019re speaking Chinese to them.\n\n## And that area right there is where the real game is being played.\n\nThat\u2019s the space where critical thinking dulls, where the emperor sells clothes, and no one\u2019s looking at Pinocchio\u2019s nose. How on earth would a known dishonest, power hungry person convince the others that he should be the one that makes the decisions on behalf of everybody?\n\nWorse than that, they give them all the power, no accountability and a virtual 100% probability to screw them , and everybody just keeps pretending to be surprised when these things happens.\n\n# Why Does This Keep Happening to Me?\n\nYou change the country, you change the century but the song remains the same, and the mystery survives. The only way to keep convincing people to accept a deal that acts against their own self-interest is to create a story that makes the exploitation of mankind look like the solution to their problem. \n\n![Alt text](http://vignette2.wikia.nocookie.net/lostpedia/images/b/b2/Lastsupper.jpg/revision/latest?cb=20100117063640)\n\nYou look around, you find countries like Bolivia or Venezuela (just to give a few examples) that are extraordinarily blessed at the very same time with a rich abundance in natural resources  and a starving population despite the fact that these two things should be mutually exclusive by any stretch of the imagination.\n\nYou can\u2019t be that incompetent if you tried.\n\nBut then again, this isn\u2019t about incompetence. Their solutions were already predetermined in the narrative, and when it doesn't work and the tale falls on its own weight, they\u2019ll just repeat the same process again, because the narrative remains the same.\n\nThey keep seizing more lands, more factories and they keep \u201ccracking down\u201d on competition and seize everything in the name of \u2018the common good\u2019. Then they bankrupt them as well and they seize more and bankrupt those too. \n\n### If it wasn\u2019t so heartbreaking it would be hilarious.\n\nHere\u2019s the crazy part of all this is that  this wide spread phenomenon is completely irrelevant to the economic system, the economic policy, or to the continent, and it's happening across the board. \n\n![Alt Text](http://redlikeme.ca/wp-content/uploads/2015/10/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg)\n\nFind me a person in southern Europe that has good things to say about politicians in the ECB.\n\nAll the solutions they present are hell bent on screwing the little guy, whether it\u2019s draconian austerity measures, raising the retirement age, bank bail outs\u2026Etc\n\nI\u2019m not saying that it\u2019s due to incompetence, dishonesty, or both. I\u2019m saying that it\u2019s irrelevant, because the solution is already pre-set beforehand to achieve one purpose, and one purpose only, that power keeps consolidating itself. \n\nThat might explain why we always keep hearing sentences like this one: *\u201cThe game is rigged\u201d*, which happens to be one of the most popular expressions of our generation.\n\nLet me give you another example.\n\nWhen you turn on the radio and there are some finance experts on, how many times we hear the following words: \n\n*They\u2019re making things worse; They\u2019re repeating the same mistakes again;  Things are actually getting worse and not better; The solutions are creating more problems than solving; How come the recovery is worse than the recession?*\n\nYou see where this is going? \n\nAnd this is not exclusive to our generation, in fact this story form is a very common archetypal myth that exists across every society and period of human history.  With the very same the result, that whatever action that will be taken it will only serve to reinforce the dominant narrative.\n\n# Once Upon a Time\n\nIt is believed that the cavemen were the first storytellers, and whoever controlled the dominant story had a strong pull on the rest of society.\n\n![Alt Text](http://www.kino.de/wp-content/gallery/homo-erectus-2007/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg)\n\nThe  human story is at the heart of everything, it\u2019s the prima material of how most people perceive reality, the moment you question someone else\u2019s dominant narrative, the debate is over before it\u2019s even started. For many people, they much rather fall for the same thing again and again and until the end of times, rather than to dare questioning the story they grew up around.\n\n> ### *\u201cIt\u2019s easier to fool people, than show them that they have been fooled\u201d.*\u2014 Mark Twain\n\nThe crazy part however, is that the even if those individuals were to fully realized how they've been fooled, they would probably still willingly walk towards the fire nonetheless. Metaphorically speaking.\n\n### Unless of course, there is a new story that replaces the old story.\n\nI remember reading one of James Altucher\u2019s amazing posts and had a wake up call. I hope I\u2019m not butchering the story, but it basically it goes like this: A friend of James asked him to go with her to the bank to help her decide the best option for her to put her money. Since he has some solid expertise in the finance world, it seemed like a wise decision for her part.\n\nDuring that meeting in the bank, James just sat down, said nothing and only listened, when they finally left the bank he started explaining to her all the ways that they were trying to take advantage of her and rip her off.\n\n*\u201cHow can they do that to me?\u201d*\n\nThe next day, she went to the bank and did everything they asked her nonetheless.\n\n![Alt text](http://blogs-images.forbes.com/maggiemcgrath/files/2015/06/0211_hipster-piggy-bank-401k_1024x576.jpg)\n\n# This is How the Story Goes\n\nCommon folklore has it that there are those people among us that regular people  that look just like me and you, but when they get a magical paper that says that they work for the status quo, then an invisible laser descends from the sky and grants them all sorts supernatural abilities and financial savoir-faire.\n\nWell, sort of... Everything they touch still goes to crap, but that doesn\u2019t matter anymore and their never-ceasing incompetence doesn\u2019t seem to bother anyone either. Because now, they're part of the narrative.\n\n### And apparently, narrative trumps logic. \n\nA successful investor once told me: *Never listen to government economists, if they knew how to manage money, they would\u2019ve made money themselves instead of telling people what to do.*\n\n![Alt Text](https://ascendingstarseed.files.wordpress.com/2016/08/cc12b-preppers2b-2bdoomsday.jpg)\n\nAs the Altucher story goes, along with countless others, whenever there is a threat to the narrative, the debate is over before it has even started. For many people in the world, defying authority is just about the last thing they would do, and that includes killing themselves and their own children.\n\nBut let\u2019s go back to the subject of the day. We tell ourselves a story that defies every single law of the universe, that the idea of good business is spending trillions of Dollars bombing millions of people and generating the biggest debtor nation the world has ever seen.\n\nIf that is not telling you anything then honestly, I don\u2019t know what does.\n\nWe tell ourselves even crazier stories, that if we just grabbed enough productive citizens and stacked them into jail cells for victim-less crimes, or for carrying bits of vegetation in their pockets, then we're going to revitalize the economy, and that oh! We will rehabilitate those poor souls through brutality and sexual violence.\n\n### Again, narrative trumps logic in ways logic can't even perceive.\n\nSome people choose to deny their programming, and that seems as the right choice because sooner or later those stories could start acting as their very own gatekeepers. I\u2019m not talking about inner resistance, I\u2019m saying that maybe we need a new story that replaces the old story.\n\n![Alt Text](http://i0.wp.com/dailyzen.co.uk/wp-content/uploads/2015/03/How-to-Make-Good-choices-and-make-the-most-of-them.jpg)\n\nThere has never been a better time for financial independence than the times we live in, there has never been so many options available for someone to start their own company, find jobs, or make their own movies even\u2026 All of that without dealing with a large number of resistant gate-keepers who may or may not have been programmed to serve a certain narrative.\n\nI don't know about you but personally, if I had to follow a narrative, I much rather have one that I designed for myself rather than one that I was born into.\n\n# Closing thoughts\n\nThey say that when there is a paradigm shift, there is usually a new story that renders the other story irrelevant, but until then and even though the tools are already available to the public, people will not make the final move until they start seeing a certain degree of mass-adoption around them.\n\nIt is that mass adoption aspect that would make it acceptable for their psyche to separate from that old, probably coercive narrative that has been attached to them.\n\n![Alt Text](http://www.elfm.co.uk/wp-content/uploads/2014/12/storytelling-night.jpg)\n\nA few minutes ago, I was just going to end this piece with a question: \u201cDoes the Blockchain need a story?\u201d\n\nBut then I realized that steemit has both the crypto-currency and the story aspect. So I\u2019m swapping that question for a few modest words:\n\nCan we just work together to build something beautiful? Do you guys see what we have here? Why don\u2019t we just focus on what we have and how we can improve it. After all, it\u2019s much harder to create something really great when you\u2019re being held back by unnecessary drama. Wouldn't you agree?\n\n And not to forget:\n\n### Your dream needs you full steem.\n \nSources: [1](http://www.geliosoft.com/100-happy-dollars-3d/) - [2](http://lostpedia.wikia.com/wiki/The_Lost_Supper) - [3](http://redlikeme.ca/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing/) - [4](http://www.kino.de/film/homo-erectus-2007/) - [5](http://money.cnn.com/pf/millennials-and-their-money/) - [6](https://ascendingstarseed.wordpress.com/category/economy-and-global-collapse/) - [7](http://dailyzen.co.uk/2015/03/19/how-to-make-good-choices-and-make-the-most-of-them/) - [8](https://storify.com/ProfKarim/the-power-of-storytelling)\n\n## [*Follow the Alien*](https://steemit.com/@the-alien)",
+    "body_length": 10964,
+    "cashout_time": "2016-09-13T00:18:21",
+    "category": "life",
+    "children": 49,
+    "created": "2016-09-06T00:18:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"philosophy\",\"psychology\",\"alien\"],\"image\":[\"http://www.geliosoft.com/100-happy-dollars-3d/falling-money-wallpaper.jpg\",\"http://vignette2.wikia.nocookie.net/lostpedia/images/b/b2/Lastsupper.jpg/revision/latest?cb=20100117063640\",\"http://redlikeme.ca/wp-content/uploads/2015/10/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg\",\"http://www.kino.de/wp-content/gallery/homo-erectus-2007/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg\",\"http://blogs-images.forbes.com/maggiemcgrath/files/2015/06/0211_hipster-piggy-bank-401k_1024x576.jpg\",\"https://ascendingstarseed.files.wordpress.com/2016/08/cc12b-preppers2b-2bdoomsday.jpg\",\"http://i0.wp.com/dailyzen.co.uk/wp-content/uploads/2015/03/How-to-Make-Good-choices-and-make-the-most-of-them.jpg\",\"http://www.elfm.co.uk/wp-content/uploads/2014/12/storytelling-night.jpg\"],\"links\":[\"http://www.geliosoft.com/100-happy-dollars-3d/\",\"http://lostpedia.wikia.com/wiki/The_Lost_Supper\",\"http://redlikeme.ca/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing/\",\"http://www.kino.de/film/homo-erectus-2007/\",\"http://money.cnn.com/pf/millennials-and-their-money/\",\"https://ascendingstarseed.wordpress.com/category/economy-and-global-collapse/\",\"http://dailyzen.co.uk/2015/03/19/how-to-make-good-choices-and-make-the-most-of-them/\",\"https://storify.com/ProfKarim/the-power-of-storytelling\",\"https://steemit.com/@the-alien\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T08:14:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 110391035728415,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1196.314 HBD",
+    "percent_hbd": 10000,
+    "permlink": "logic-and-fiat-money-are-they-mutually-exclusive",
+    "post_id": 1141233,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/logic-and-fiat-money-are-they-mutually-exclusive"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1068066740232,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 13823888326286,
+        "rshares": -14428335580523,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 6580940624714,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2516500322385,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9730263409820,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2238089828373,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 117245008705,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5581077721826,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1016281567712,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4712575705195,
+        "voter": "wang"
+      },
+      {
+        "percent": "0",
+        "reputation": 1284750610881,
+        "rshares": 50128182486,
+        "voter": "adm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3101248946,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3765091051,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690619464,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54354410559,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661935517,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213718493,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2001205407251,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 418315136885,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 424995350979,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 9028537022578,
+        "rshares": -2859018151628,
+        "voter": "recursive"
+      },
+      {
+        "percent": "6000",
+        "reputation": 68236886814465,
+        "rshares": 223774607744,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 14213361017,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 11473937036,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 623025846,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "0",
+        "reputation": 147478489309626,
+        "rshares": 23639540033,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967713364,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 299060965565,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 121855691094,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288235837,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6500",
+        "reputation": 4290310171633,
+        "rshares": 9548778927,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 38491019685,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1767163827,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419437392055,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "100",
+        "reputation": 12712877967688,
+        "rshares": 1579031296,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 16975075430,
+        "voter": "jademont"
+      },
+      {
+        "percent": "3600",
+        "reputation": 4931834878069,
+        "rshares": 7579732231,
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 376960001789,
+        "rshares": 1459747282,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "0",
+        "reputation": 26867938976163,
+        "rshares": 6757762580,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3600",
+        "reputation": 5414208804644,
+        "rshares": 10632532459,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 16892420207,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 348876921907,
+        "rshares": 1448343606,
+        "voter": "n25052016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7584918683,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 37443492197,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 666866364,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 74100412917,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1419670146,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2578496905,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 39320777722,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 8666838603,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 13246631412,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3835227080462,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 364306847511,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 401376869,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 200733663789408,
+        "rshares": -2339939419364,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "3900",
+        "reputation": 20763505296686,
+        "rshares": 93314085385,
+        "voter": "wingz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3804349938696,
+        "rshares": 28201520191,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 212735022017,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1703172762438,
+        "rshares": 17038534997,
+        "voter": "andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 79982031063,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 15857384273210,
+        "rshares": -209838822321,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1177241468,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "0",
+        "reputation": 12494904871301,
+        "rshares": 5655530548,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2787011053,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 175537967389,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "0",
+        "reputation": 1960155455032,
+        "rshares": 79382741,
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 792170905,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5943847648,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1460965920149,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687075875567,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 46038400775,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 14127596797,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 470524735958,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "2400",
+        "reputation": 6767512298331,
+        "rshares": 11246189112,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5144385016,
+        "rshares": 267393527,
+        "voter": "artisan"
+      },
+      {
+        "percent": "2400",
+        "reputation": 9434414518400,
+        "rshares": 4490182566,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": -781106253,
+        "rshares": 289162489,
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17550246480,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768666239960,
+        "rshares": 1318198250,
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 12952739395,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5365157925,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 266657278,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 47434235880,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 330653046604,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3392620167,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 5858174588,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3326209124802,
+        "rshares": 9866111769,
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5253410818,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 22467197866,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 34735743250,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 47802301892,
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 281926950358,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14545520870,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24971256573,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6918017824,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1946734032,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 16677138219,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17820220099,
+        "rshares": 1339918531,
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "3600",
+        "reputation": 19111656178138,
+        "rshares": 23124728884,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 690010021,
+        "voter": "busser"
+      },
+      {
+        "percent": "0",
+        "reputation": 3149488018622,
+        "rshares": 74680604,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 3891722,
+        "rshares": 188768554,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3600",
+        "reputation": 9142611234,
+        "rshares": 211774654,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3600",
+        "reputation": 3871042,
+        "rshares": 194127478,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "6900",
+        "reputation": 3320684282022,
+        "rshares": 112654580280,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47264506487,
+        "rshares": 2068776947,
+        "voter": "gazm"
+      },
+      {
+        "percent": "1000",
+        "reputation": 8017093633272,
+        "rshares": 1711089537,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1605307412,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "0",
+        "reputation": 3740475854096,
+        "rshares": 126505514,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10429341978,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1855825,
+        "rshares": 237084223,
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1969204308,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4194090115,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 342507039,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 242542379761,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 669199844401,
+        "rshares": 10514634467,
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 2786532034,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 826867066,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 70528519000,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 41938187661,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19329526526,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44336327098,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2974404080988,
+        "rshares": -128498217434,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5644661682,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1919200251,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13274390807,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3093346077,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1874324340242,
+        "rshares": 10945767657,
+        "voter": "stevo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 10151327610,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 259629450569,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -910520517353,
+        "rshares": -30470822745,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 8266500094,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2314406420479,
+        "rshares": 2117017421,
+        "voter": "earnest"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 153387383611,
+        "rshares": -262081883,
+        "voter": "shing3e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1600176825,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7971365358,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 204046586021,
+        "voter": "jl777"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4226573244868,
+        "rshares": 3900840609,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3600",
+        "reputation": 10519849768972,
+        "rshares": 6548020005,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 1399761805,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1833955050,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 277681916,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 278097823,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160825350,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161733355,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 92188832,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 11734903206,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 12811217967,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19696646539,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 8065287272,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17558743505,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 594907055,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 207927318,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 445158598,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 238573730,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 83484533,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3600",
+        "reputation": 147425730,
+        "rshares": 214182446,
+        "voter": "fnait"
+      },
+      {
+        "percent": "3600",
+        "reputation": 3720753029,
+        "rshares": 195430067,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142453259746,
+        "rshares": 7109462134,
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 115507974,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 13595360798,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "3000",
+        "reputation": 17218558634066,
+        "rshares": 7520902716,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 129103709,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 1658509913,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 30896278536,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 77914394030,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8783779105,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 3658561552,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 53835780,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636819078766,
+        "rshares": 1556598011,
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 1472655783,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 54844677,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "2000",
+        "reputation": 7564464865541,
+        "rshares": 3995394560,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 25077308053,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 6000428593,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2300718527,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 63541793,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 1821180466,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4338245273,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 2979617190,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1407114808,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7948406128,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 101379161825,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29845491058,
+        "rshares": 70413598,
+        "voter": "ragnaroek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 88710491389,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 4645077272,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "1400",
+        "reputation": 73944659327428,
+        "rshares": 21851097144,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1269864429223,
+        "rshares": -2482187793,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "4100",
+        "reputation": 1433416370023,
+        "rshares": 23525650772,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 55265906,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 53370316,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 12436071828,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61746903,
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 52985539,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1664097198,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 52848854,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 338891141,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 71506742,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230331964,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 61515128,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 593072231,
+        "rshares": 61696026,
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 983145708,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83962397834,
+        "voter": "miacats"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 15841196427096,
+        "rshares": -37335893668,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114992597,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50545877,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61167862,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 53648513,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 74131936,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -61687049,
+        "voter": "kanusteem"
+      },
+      {
+        "percent": "3100",
+        "reputation": 3814152361740,
+        "rshares": 3900348752,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7833422368,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 71551855,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 60661014,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1310680382,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 651551511,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 59610335965,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 834306506,
+        "voter": "inferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 12520030511,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2594661721428,
+        "rshares": 4730854063,
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 3289942651,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1288112247,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 792593563,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51863356,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039566,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51856300,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51852278,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3719392493,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1810222177,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2519054922,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142213881,
+        "rshares": 57399342,
+        "voter": "ethansteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51481279,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 475206804,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58064982,
+        "voter": "zite"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4156286103,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51562255,
+        "voter": "curpose"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1666819519194,
+        "rshares": -861184213,
+        "voter": "ontofractal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 59978409,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 532936297,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 850866519,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 1005088816,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2331050847,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 59995797,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51712804,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4922272667302,
+        "rshares": 1442988265,
+        "voter": "nadin3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1683907739,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 51718188,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51388276,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51379706,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 34329581722,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15597377801,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66712446374,
+        "rshares": 254519172,
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5757204428,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51814474,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51812703,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 157129613626,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54632424,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51148009,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 155834469695,
+        "rshares": 131546618,
+        "voter": "illusiveman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2713459817,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51906983,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54012814,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54839629,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 106768414,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 588271491,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 23572897576,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54601718,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1615824466,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46542046021,
+        "rshares": 74117002,
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5292676076,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50523318,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50470409,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 63543002,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1548545048,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53002525,
+        "voter": "swapman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 8160990156,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 59088198,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4882248396,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 600667224252,
+        "rshares": 1306905034,
+        "voter": "mrabdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68065278228,
+        "rshares": 69546372,
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396872137163,
+        "rshares": 51797456,
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 52171779,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3039484418,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 71167473,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154396017,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163216276,
+        "voter": "zacariajames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1564414223,
+        "rshares": 124699787,
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162784893,
+        "voter": "knights"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 111391460708814,
+    "beneficiaries": [],
+    "body": "<center>https://stakepool.com/wp-content/uploads/2016/08/photo3.jpg</center>\n\nSo, I was sitting in my $5000 massage chair smoking a cuban cigar when all of a sudden all kinds of bells started ringing. So I had to stop what I was doing and walk all the way over to my enormous trading-desk on the opposite side of my man-cave to see what was going on, and of course - there it was... A new post from my ex-boyfriend who cannot believe I dumped him for a better looking guy, and I knew he was out for blood so I started reading:\n\n<h3>A littlebit of history first</h3>\n\nWhen I wrote against @stellabelle and her article about synero-amp vs steemit, @tuck-fheman started spamming my comment section with all kinds of accusations, and lately he has started what he calls a \"comic-strip\" about me where he is doing his very best to harass the hell out of me.\n\n<h5>I still stand by what I wrote in my article against @stellabelle - it was a very dumb move on her behalf and I have people on record who confess to buying synereo-amp and losing money because of her article. The point of calling her out was to let her know that she has a loud voice in this community, and that she therefore must be careful advising people about investments and projects in a market she has no real clue about, because she is new.</h5>\n\nThen, when I apologized in public to @heiditravels for using explicit words when I was mad at her for not showing up to a Public Relation Interview when she came to Per\u00fa, an Interview that would have gone out on Television to 10 million Peruvians in prime-time and maybe secure 200,000 new signups for Steemit, he went on another rampage and started posting screenshots of the conversation and tried to get people to flag my post, which did not work because people are not stupid around here - they see what is going on.\n\n<h1>I still think what @heiditravels did was selfish, but I am over it - It is history @tuck-fheman - she wanted the @dollarvigilante more then me, and I have come to accept that he is much better looking then me, no homo :) (Just kidding)</h1>\n\nToday @tuck-fheman posted another harassment-cartoon, and even went to the #steemitabuse chat and bragged about it, told people that I was a sociopath that needed to be stopped, a woman-abuser and many other things that was just degrading and sad to read from him.\n\n<h2>Tuck & Stella = Early adopters who made a lot of steem posting pure shit</h2>\n\nSo what do I do? He is one with the most reputation on Steemit because he was very early into steemit and was in the original \"circle-jerk\"-club as they called it. Apparently back in those days you could post a picture of your garbage-can and make thousands of steem and now a days you have to actually make real content with real value.\n\nThen we have @stellabelle - I have nothing against her, never tried to attack her in any way - just had to speak up when she decided to embrace synereo-amp in a way that felt like... she was pooping where she was eating and I have honestly not read a single article she has published since. Instead I have found new aspiring artists like @poeticsnake who make amazing drawings and really put in a lot of real work in her art.\n\n@stellabelle also is from the very early adopters of steemit who made a lot of steem by writing articles about how she ripped of her friends when she was a car-salesman, or how she used to shoplift in stores when she was rich. Something to be proud of? Would those articles be worth anything if she wrote them today?\n\n<h1>In case you don\u00b4t know what I do on Steemit, I make comedy, entertainment, cartoons Here are a few examples for earlier:</h1>\n\nhttps://www.youtube.com/watch?v=ojNbGf5oIhM\n\nhttps://www.youtube.com/watch?v=vh-TKt_GSCc\n\nhttps://www.youtube.com/watch?v=ijVJNn0qgxg\n\nhttps://www.youtube.com/watch?v=ZHzdXtFKwYA\n\nhttps://www.youtube.com/watch?v=0SMMo7aQnPY\n\n\n---\n<h1>I also do Technical Analysis of Forex, Stocks and Crypto-Currency in posts like this:</h1>\n\nhttps://www.youtube.com/watch?v=dyXt_kJhomU\n\n---\n\n<h1>And I also make funny songs about steemit and crypto like this:</h1>\n\nhttps://www.youtube.com/watch?v=6P2FB9Mg_YI\n\nand like this:\n\nhttps://www.youtube.com/watch?v=3gfntBEI3Aw\n\n---\n<center>So please - Tuck-Fheman, Stellabelle - Leave me alone if you are going to act like bullies and collude and harass me - there is no point to that! <b>Start doing something positive for Steemit instead of all this negativity! </b>And to all the rest of you - I hope you see it that I loud and clear do not want to have anything to do with these two people. </center>\n---\n\n<center><img src=\"http://i.imgur.com/JhD2D0s.png\"></center>\n\n<center><img src=\"http://i.imgur.com/DLFAEdd.png\"></center>\n\nBreaking up is never easy, I know - but you have to let me go :)",
+    "body_length": 4768,
+    "cashout_time": "2016-09-10T21:39:06",
+    "category": "steemit",
+    "children": 106,
+    "created": "2016-09-03T21:39:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"abuse\",\"witnesses\",\"steemitabuse\"],\"users\":[\"stellabelle\",\"tuck-fheman\",\"heiditravels\",\"dollarvigilante\",\"poeticsnake\"],\"image\":[\"https://stakepool.com/wp-content/uploads/2016/08/photo3.jpg\",\"https://img.youtube.com/vi/ojNbGf5oIhM/0.jpg\",\"https://img.youtube.com/vi/vh-TKt_GSCc/0.jpg\",\"https://img.youtube.com/vi/ijVJNn0qgxg/0.jpg\",\"https://img.youtube.com/vi/ZHzdXtFKwYA/0.jpg\",\"https://img.youtube.com/vi/0SMMo7aQnPY/0.jpg\",\"https://img.youtube.com/vi/dyXt_kJhomU/0.jpg\",\"https://img.youtube.com/vi/6P2FB9Mg_YI/0.jpg\",\"https://img.youtube.com/vi/3gfntBEI3Aw/0.jpg\",\"http://i.imgur.com/JhD2D0s.png\",\"http://i.imgur.com/DLFAEdd.png\"],\"links\":[\"https://www.youtube.com/watch?v=ojNbGf5oIhM\",\"https://www.youtube.com/watch?v=vh-TKt_GSCc\",\"https://www.youtube.com/watch?v=ijVJNn0qgxg\",\"https://www.youtube.com/watch?v=ZHzdXtFKwYA\",\"https://www.youtube.com/watch?v=0SMMo7aQnPY\",\"https://www.youtube.com/watch?v=dyXt_kJhomU\",\"https://www.youtube.com/watch?v=6P2FB9Mg_YI\",\"https://www.youtube.com/watch?v=3gfntBEI3Aw\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T22:52:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 28528575081428,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "112.665 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemit-harassment-wow-it-finally-happened-to-me-too-d",
+    "post_id": 1116057,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..2787517f98f2442dcfe997271a0b80d5ed643d40
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit.tavern.yaml
@@ -0,0 +1,33 @@
+---
+  test_name: Hivemind condenser_api.get_discussions_by_promoted patterns test
+
+  marks:
+    - patterntest # order in original when promotion amount was equal was basically random, so posts are ordered differently
+                  # note post /life/@thecryptofiend/things-i-wish-i-d-known-when-i-was-18
+                  # it is in the results despite not having 'steemit' in 'tags'
+                  # it is because the post was edited and was changing tags - we don't clear old tags during edit (should be fixed at some point)
+    - failing
+    - xfail # extra votes due to muting not working
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_discussions_by_promoted
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_discussions_by_promoted"
+          params: {"tag":"steemit"}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "tag_steemit"
+            directory: "condenser_api_patterns/get_discussions_by_promoted"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit_paginated.orig.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit_paginated.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..a896e6118306f5e12602e57bf1ca8306e58a2749
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit_paginated.orig.json
@@ -0,0 +1,14074 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "642721549946",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14422749876087",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3575373896498",
+        "voter": "excalibur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7464607221397",
+        "voter": "firstclass"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3639191953732",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1669923224095",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3717974185",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213574639759",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513559168",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836606639",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6988007861700",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5996727817604",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64642495505",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992560012",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256364536",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39818841412",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371954710239",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2460761021349",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16151007755",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15367378869",
+        "voter": "lee5"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "1231163835379",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79076699259",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451819636",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747109758",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160364064",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22287691419",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348774027722",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345721003",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24424815444",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9962447624",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85472012036",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47052482880",
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51668605167",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3208539412",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14777664032",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13421601084",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550131611031",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8054401464",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11394690603",
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485282260",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5697146207",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638584817",
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38099821345",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320314797075",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9264258149",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10412058674",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "659470671268",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262097263544",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3586538842",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3736219522",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56755039638",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226277413706",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1105470146",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73899745411",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787734654",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3085996565",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299422990503",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "555763114",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61230816598",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244194157676",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9343888042",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24793132900",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4213953082",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501194922",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361800166976",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310003040",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9062015039",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13825920793",
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379034832",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49609829871",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100887290594",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67218157738",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168781926859",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4444948583",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9215212832",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207639750909",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72775359846",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135534940490",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649863857",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2070185449",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151313598203",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270287220",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189534597524",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5593332072",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107979574982",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4132934549",
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245565399746",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4972308003",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26691657968",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32317449277",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12407406735",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6731496155",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8077166192",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1061763080",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2000840823",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8698490005",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7061836326",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58024990300",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12820190462",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5944808360",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234977975",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53277444047",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5630151895",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38998653626",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3135864378",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4805051818",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25329895988",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122037864807",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5942450964",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1399449402",
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132989014669",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9678069378",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "653051005053",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1558901402",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69645935778",
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8348978059",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68835084756",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12165310382",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658969843140",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3016989385",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "213566804",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "195795730",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12433580012",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127921982448",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1088582281",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27989665079",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5235602369",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393022921",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470865927",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4326102127",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13785486061",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11255732354",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4664449459",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103415609409",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38979052441",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9855694815",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483030862",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4401948859",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7769709545",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52805276639",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28292287957",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13726024129",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3664108103",
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247320271",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10404996383",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2265421279",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421650464",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11687972825",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10504748862",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16957784324",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43955087155",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39380899533",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14477258419",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3802303915",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5603336399",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3857990313",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "608149252",
+        "voter": "ltndd1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13799232019",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12201911383",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2418631221",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37544436861",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2375612859",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19954745854",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1432554908",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58632057805",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6951568553",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60733709",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13480328466",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77066217",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3140171089",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24333845376",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "575306930",
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4496265875",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19650090910",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8983200296",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66906230856",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203502299985",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1073667948",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1015996473375",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27385580346",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "12217525826",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1696363424",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255227790",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255610425",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147899496",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148734861",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84798583",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "701002863",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5508463953",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203439098227",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951657512",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841171661",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20112172284",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22963130568",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35578875588",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8206970252",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18436436380",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574079280",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1365471076",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412577837",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221284317",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77551309",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5923617216",
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6184990126",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129066659",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27072053846",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18648831056",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238861651541",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1318009421",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2388216457",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26544745435",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28261072116",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1150395178",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9217169586",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37382286273",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14952644998",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3863422357",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53473560",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22837595162",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2590447050",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14437396418",
+        "voter": "artist1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20733647424",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12921898525",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32699512403",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3732561387",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1112917083",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636463375",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1964111181",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7190118987",
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15890354633",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111083493",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233570693",
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452879496",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2442169380",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62218938",
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6640826883",
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49201150707",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53884258",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773487823",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11166998088",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3299401993",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7832829923",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71551789",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4540723045",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3362202338",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375929648",
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27312396571",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2209169349",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85721943459",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6982744040",
+        "voter": "bitminter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54969817",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6089195575",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1719224371",
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10519914536",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75911873",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20118440636",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61302506",
+        "voter": "ignat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5584741517",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62279229",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8034296271",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106783648",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121845327",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2309373844",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "771632829",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89747247797",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438819769",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941499119",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58571448",
+        "voter": "isaacmorgentaler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368407925",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62312186",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19465520550",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24299155176",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12663340608",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8098231266",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13767766871",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1770994317",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58744201",
+        "voter": "myfriends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239974453639",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231798813",
+        "voter": "blue1950"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2313482861",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58875692",
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8826238500",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624200855",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56716182",
+        "voter": "sammie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54424511",
+        "voter": "matt525"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4007339571",
+        "voter": "asuran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18209474827",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69826982",
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1583451185",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36471501608",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55660383",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12993402861",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56017401",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230031117",
+        "voter": "rebelmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3947043569",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89846801",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5465873870",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2241938484",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413377157",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53942218",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79722988",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3311264992",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69606440",
+        "voter": "bmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56547885",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97810726",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24760371336",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860573886",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2577157447",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4592050223",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232285326",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4494562067",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91630309",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50210263",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379994386",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37096549717",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51524412",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52676609",
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1774661835",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1643965133",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5812421354",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3041925009",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2489010152",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50460250",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439002",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50436594",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56387357",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "791391648",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25501132189",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1455020482",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1967797933",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2869000034",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008239952",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50565379",
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50357208",
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52411214",
+        "voter": "mr189"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53215131",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55523890",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52098977",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4619546516",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50431113",
+        "voter": "stringer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245473",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51250081",
+        "voter": "steemjustice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50420952",
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50299690",
+        "voter": "blakeir"
+      }
+    ],
+    "author": "jesta",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "For the time being, DO NOT promote a post that's past it's first payout phase. \n\nI've [opened an issue on github](https://github.com/steemit/steemit.com/issues/199) about the issue and hopefully we'll see a resolution soon.\n\nCurrently you can promote any post, even those past the first payout phase. The problem is that if it's in it's second payout phase or beyond, as soon as someone votes on the post, the promoted status gets completely removed. \n\nI'm putting this message out there to hopefully help avoid any potential frustration this issue may cause.",
+    "body_length": 559,
+    "cashout_time": "2016-09-30T04:45:45",
+    "category": "steemit",
+    "children": 78,
+    "created": "2016-08-30T02:57:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https:\\/\\/github.com\\/steemit\\/steemit.com\\/issues\\/199\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T03:23:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60433265388165,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "396.437 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out",
+    "post_id": 796890,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@jesta/psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29150477200511",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "701289384385",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25414633165852",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7174019152101",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210082807921",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1764791171902",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624152304261",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4648685890081",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6351970742614",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099420761",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762775739",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697355955",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7188761077812",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481370244096",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54042459354",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32970728002",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425105452508",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26810306273",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661039186",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213669926",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38923095598",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64581427225",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15818603292",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398943529648",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2463177709510",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856507042",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9947524418",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2438952883",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452823187408",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622762084",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1120034999305",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967255526",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2771175740309",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839864397684",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136849931495",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65907216897",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6554332244",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288151719",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23957331951",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14107159251",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14365023000",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "881970618",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77103074369",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314721920304",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71043895599",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24175856122",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11709056510",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2945062368",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087651795909",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5074405568",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "829397963387",
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520911060129",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8059030205",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475449654",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "844668962218",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581844145",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19479953917",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26181526037",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056240258",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330922076737",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10610979162",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9268194915",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677773729537",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "928388769",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2557289360",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91719101598",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59225313172",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141414573060",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13116548685",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55582109386",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236099584762",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59558616330",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55235327891",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73982297699",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582588520898",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432017470",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7304641272",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25681264725",
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19944116455",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42338694092",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534614046975",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63018482318",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16492689268",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24310014144",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9361058328",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3674081134736",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372036035609",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6472724320",
+        "voter": "tom-sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371338569",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52893388475",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254528506273",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53001732751",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "90478643138",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12944835075",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54146897521",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199373714258",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9459589952",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266447843894",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501068247274",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327889281",
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1948772954",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2644116640",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138950405749",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "767974669228",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6009304227",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70959553359",
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98088341974",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269875655864",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44099614167",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6874971065",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28278082847",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8989505147",
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41629748060",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3660956268",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8702193878",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12845439804",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3475503565",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302683064",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199741557",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236520170145",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8561508638",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214476092245",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42481260342",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3112847393",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5856624277",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226933661994",
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15179347364",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122110321617",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124699737174",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15389739696",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20713322105",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "546797902965",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29887760404",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293427569",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230296351",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8721417924",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77587644053",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "476648200946",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3541453614",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "211552013",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "195806237",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823925676",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24638975246",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150447264693",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7172948519",
+        "voter": "ashikmiah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42831693849",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7726853303",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "812099979",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246668071",
+        "voter": "meiks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "919975933",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666787941",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5814827093",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013710280",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11280533352",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39456765083",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192958794775",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5305619945",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10678601154",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4185662810",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58809847081",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1396522137",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349307643",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293677046360",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11184349825",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4245765824",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369337292",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2875639977",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11249031580",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1140298026",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297463655",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2180799492",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15413678024",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19745928897",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4461061038",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939224933",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2992631645",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437754345",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37719378911",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25483068946",
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12396216231",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3409584558",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58723641585",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27478627702",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6880831700",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18787146710",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14042810323",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10048486235",
+        "voter": "tessaddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3145819717",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231654921805",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25046106508",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4647865096",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36117391359",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78635089731",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3476354385",
+        "voter": "mastletter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155789703",
+        "voter": "xand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203745188637",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016267553073",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26882316910",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "10192963847",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683543474",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255303484",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255686119",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147914638",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148750003",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84813726",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261379803",
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31846354099",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207787451268",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501806576",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5062409505",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112070311",
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951690317",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686451244",
+        "voter": "clonewarz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14847664684",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10761876132",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841259695",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20113867987",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7262356354",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217563709",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17534589350",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1793399910",
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618773038",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408950035",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219368610",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10855436202",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76805770",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2077025402",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117818134",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125682243",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "861558297",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456070989",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27752122387",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5449172599",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124605670789",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1023333164",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52633105216",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8765080527",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731831758",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5411545736",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46610922073",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14656318513",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52102443",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23337147272",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2595700392",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20215747355",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23051494572",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3801240661",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "482511907124",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4673772256",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9241877973",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34796180612",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2221730069",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3651315001",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2561315048",
+        "voter": "uuuhha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102188578929",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256407267931",
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1291393037",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12816228337",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94576187995",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3532206423",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57523014",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1694788518",
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687490845",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59458578",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52502611",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1228509011",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54355927",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436393958",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5653663246",
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273860901",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61293441",
+        "voter": "chrismarketing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234905614",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27919047116",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1636585181",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52405452",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11443509504",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117292449",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62391219",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7142895146",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72982892",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61874235",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1157125253",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37801320901",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2427660705",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20523010963",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "596060484",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288080558",
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6763113815",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296332739",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428185120",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3239749695",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2510434809",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59993245",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8646097362",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "301096603",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59226282",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70234608899",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39122184230",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73706708",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1779402721",
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10832852934",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7757948841",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12474263816",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1734880593",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "959083434",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "307241644",
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61576570",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258080185",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5110452751",
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60364183",
+        "voter": "uri-bruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1241673056",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17764316625",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56761351",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74585233974",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55633002031",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14150272924",
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59103677",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74584024",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394178677",
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55140441",
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21483815812",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1713129061",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115141637",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37275195891",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15859669622",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57184430",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3725515516",
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5661463232",
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55473809",
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5854747574",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490887668",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16076822216",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82786113",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55725073",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58126364",
+        "voter": "chaeya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23191446542",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9370846764",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2759964885",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4840990082",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55093071",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53110243",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55070425",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117997260",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794249",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54036170",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108903782",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57522774",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70034816",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52521499",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242929782471",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68637522935",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37138701009",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54464024",
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53400199",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52041445",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130590614407",
+        "voter": "jamielefay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53143662",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2610482432",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1575506866",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142968891",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92282121",
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3022511117",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89109313",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976796",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4965019350",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50686168",
+        "voter": "jcdobber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50658555",
+        "voter": "dillon-sauers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50182215",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50817111",
+        "voter": "mehran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293689087",
+        "voter": "iontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50420952",
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249226300",
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1632559314",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61342952",
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154276916",
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155926994",
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![Alt text](http://cdn.dailyseoblog.com/wp-content/uploads/2015/11/Competition_SEO.jpg)\n\nNew competition is in town, here I said it. Many people don\u2019t like competition, some people fear it, some people get motivated by it, and some people see it as an opportunity that helps them step up to the next level.\n\nPersonally, I get the same emotional reflex from new competition than I get from any change of weather, it doesn\u2019t really faze me that much.  Long time ago I\u2019ve learned to open a new folder in my brain containing all the elements that I can\u2019t control, and the emergence of new competition certainly qualifies for that folder.\n\nAnd the reason I do that is because I think that the worst thing you possibly can do is to let your fear-based reactions make your decisions for you.\n\nAlthough to be totally honest with you, I\u2019d be an idiot if I told you to completely ignore competition and act as if doesn\u2019t don\u2019t exist. \n\nSometimes it\u2019s well worth your attention because it may show you something you\u2019ve missed, it may remind of why you do what you do in the first place, and depending on the competition, it can even help you improve and advance. \n\n![Alt Text](http://2.bp.blogspot.com/-jCsWg5lEM9w/To2MZ4wwQMI/AAAAAAAAI8Q/VNo2kdw4ot8/s640/Matrix_067Pyxurz.jpg)\n\nA few months ago a new disruptive technology came to the world. It allowed all sorts content creators to make some income doing what they love, all while bypassing the restrictive censorship of armies of gate keepers around the world. And since you\u2019re reading this, then you\u2019re probably using it too.\n\nBut here\u2019s the thing, when what you do is truly amazing, you can\u2019t really expect that no one else is going to try to replicate it. In fact, the strange thing would be that if no one was ever going to attempt to create \u201cthe new steemit\u201d.\n\nAfter all, competition is a part of life, and it\u2019s almost here so maybe it\u2019s time we talked about it.\n\n# Dancing with Mr. Ying and Miss Yang\n\nOn the positive side, competition can make us stronger and more connected. All those small debates and unnecessary dramas would suddenly take a back seat to more important matters. \n\nIt can motivate us to up our game and take it to the next level. It can encourage us to keep improving so we don\u2019t get too comfortable. It can help us realize what we have, and not take it for granted. \n\n![Alt Text](http://3.bp.blogspot.com/-TVDMaHEL61w/U1_ZuVFcttI/AAAAAAAAMvg/dt0wlqDLFWI/s1600/living+in+the+matrix.jpg)\n\nBut there's another way  to approach competition, the Yang way, where you can go to that room where you archive all those things that you can\u2019t control, head towards the door and kick it wide open. Just sit there and let fear invade you.\n\nI know this sounds crazy, but believe it or not, the second most common thing people do in face of competition is to fear it and let them rush into making unnecessary decisions. Now, I don\u2019t know about you but to me panic doesn\u2019t precisely strike me as a solid strategy.\n\nHowever, I do understand why some people might experience some concerns. *\"Look, there\u2019s a new competition, they have a brand new website, their logo looks so professionally made, their name is so catchy. Hell, they even have shiny shoes\u2026\"* \n\nFrom that point on, it will be just a matter of time until this question starts circling around: *What if people start pouring there?*\n\nI hate to break it to you, but these things can and will probably happen.\n\nA few steemians will move there and that\u2019s ok. In fact, that\u2019s very understandable, they will have their reasons. Maybe they go on their own, or maybe they will have an offer to join. \n\nSo when that happens, there are two things that you can do:\n\nYou can worry that people are migrating elsewhere, or you can remember the \u201csecret\u201d: That they will never stop making people. \n\nPlus, if that if the goal is expansion, then it\u2019s a comfort knowing that the journey hasn\u2019t changed and that we\u2019re still on the same course.\n\n# Destination Moon\n\nThat  are enough potential users in the planet for everyone, they will never stop making people, remember? \n\nPlus, if the dream was grow and reach hundreds of thousands, maybe millions of people, then nothing has really changed in the grand scheme of things. right?\n\nMaybe a few will leave and it\u2019s ok, maybe they\u2019ll come back quickly afterwards, maybe they won\u2019t or maybe this is a good opportunity to remember:\n\n## That moon we all talked about, our moon, is still the goal.\n\n![Alt Text](https://s9.postimg.io/ptqv6s6of/Untitled_design.png)\n\n*Picture dedicated to @smooth.  Thank you for the logo advice!*\n\n# A View from the Future\n\nSo in the future if you read some open letters from some prominent writers explaining why they moved away to the competition, so maybe we don't need to give these things more importance than they deserve.\n\nSometimes diversification is a smart move, sometimes people need to look for what\u2019s best for them, and sometimes they look for whatever they perceive as such. Whatever the case may be, it\u2019s still their choice and they are free to change their minds.\n\nAnd yes, we will probably read a few editorial posts about *\u201cWhy I left steemit for X\u201d* and maybe a little worry might circle your train of thought. \n\nMaybe their reasons are totally valid, or maybe they\u2019re unconsciously making up a story with which they can justify it to themselves. So all of the sudden every small problem is magnified and the grass on the other side looks greener. It happens.\n\nEither way, it\u2019s not our place to judge them.\n\nAnd yes, the preachers of doom will jump at the opportunity to parade their psychic abilities, *See? People are leaving steemit already. I told you!*, but when that happens please remember that we\u2019re talking about people who never let a good crisis go to waste. So whatever they say should probably be taken with a fine pure grain of Himalayan salt.\n\nThese are things that we can\u2019t control, here\u2019s what we can do.\n\nWe can step up, we can up our game, we can show them what this platform has already proved, we can remember why we joined and that maybe, just maybe show them that we are still fighting for that fucking moon.\n\nBecause let\u2019s not forget, steem is third behind Bitcoin and Ether.\n\n### And just as Bitcoin had so many new competing coins that were going to completely erase it from the map, we\u2019ll probably hear the same song again.\n\n![Alt Text](http://tr1.cbsistatic.com/hub/i/2014/11/04/27691a45-1606-4647-9093-637886cc89be/forecast-crystal-ball-prediction.jpg)\n\nThere will be many death predictions too. Bitcoin had about a hundred of them, so don't be surprised when that happens.\n\nBut what if I\u2019m wrong and the competition is very strong?\n\nWell then we learn to compete better. Competition is a part of life, and it can make you better if you know how to approach it. In fact, [I wrote about the subject in the past](https://steemit.com/life/@the-alien/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age).\n\nSo this goes for those of us who experienced the life changing abilities of this platform, and especially for those who are crazy enough to still believe in the same dream that we are at the beginning  stages of a beautiful game changer. For those who still have the same passion about disruptiveness as in the first day, here\u2019s something that we can do:\n\n# We Can Bet on Our Strengths\n\n![Alt Text](https://pbs.twimg.com/media/Cm8iJ91XEAIVokI.jpg)\n\nWe can focus on what steemit has achieved already and introduce it to the world. How many people have made some good income already? How many projects has steemit helped? How many it has brought in to life? How many relationships have been forged?\n\nSo maybe you\u2019re a filmmaker looking for a good story, maybe you can make a documentary about the lives that steemit has changed and its future effects on society, maybe the rest of us can help you.\n\nMaybe I should listen to my own words and lead by example. Maybe I should carve out some time and finally launch my very own book that was born out of pure steem.\n\nOr maybe we shouldn\u2019t have to do anything at all. Maybe we shouldn\u2019t have to step up our game just yet, and ignore any competition.\n\nI\u2019m not quite sure.\n\nWhatever the case may be, I just want you to know that if you\u2019re here for the long run, than you should know that more competition will come, and when that happens don\u2019t listen to the alarming voices and trust your own judgement.\n\nI want you to know that it\u2019s not the end, that this is the beginning and that I hope that you\u2019re still enjoying this beautifully game changing ride and not planning to give up your seat just yet.\n\n#### Image Sources: [1](http://dailyseoblog.com/how-to-discover-your-competitions-seo-strategies/) - [2](http://pyxurz.blogspot.com.br/2011/10/matrix-page-2-of-7.html) - [3](http://humansarefree.com/2014/04/16-signs-that-you-are-slave-living-in.html)- [4](http://wallpaper.zone/carlsberg-wallpaper) - [5](http://www.techrepublic.com/article/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends/) - [6](https://twitter.com/riaali4)",
+    "body_length": 9016,
+    "cashout_time": "2016-10-02T00:55:54",
+    "category": "life",
+    "children": 90,
+    "created": "2016-08-31T20:01:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"competition\",\"psychology\",\"alien\"],\"users\":[\"smooth\"],\"image\":[\"http:\\/\\/cdn.dailyseoblog.com\\/wp-content\\/uploads\\/2015\\/11\\/Competition_SEO.jpg\",\"http:\\/\\/2.bp.blogspot.com\\/-jCsWg5lEM9w\\/To2MZ4wwQMI\\/AAAAAAAAI8Q\\/VNo2kdw4ot8\\/s640\\/Matrix_067Pyxurz.jpg\",\"http:\\/\\/3.bp.blogspot.com\\/-TVDMaHEL61w\\/U1_ZuVFcttI\\/AAAAAAAAMvg\\/dt0wlqDLFWI\\/s1600\\/living+in+the+matrix.jpg\",\"https:\\/\\/s9.postimg.io\\/ptqv6s6of\\/Untitled_design.png\",\"http:\\/\\/tr1.cbsistatic.com\\/hub\\/i\\/2014\\/11\\/04\\/27691a45-1606-4647-9093-637886cc89be\\/forecast-crystal-ball-prediction.jpg\",\"https:\\/\\/pbs.twimg.com\\/media\\/Cm8iJ91XEAIVokI.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/life\\/@the-alien\\/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age\",\"http:\\/\\/dailyseoblog.com\\/how-to-discover-your-competitions-seo-strategies\\/\",\"http:\\/\\/pyxurz.blogspot.com.br\\/2011\\/10\\/matrix-page-2-of-7.html\",\"http:\\/\\/humansarefree.com\\/2014\\/04\\/16-signs-that-you-are-slave-living-in.html\",\"http:\\/\\/wallpaper.zone\\/carlsberg-wallpaper\",\"http:\\/\\/www.techrepublic.com\\/article\\/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends\\/\",\"https:\\/\\/twitter.com\\/riaali4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T23:28:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 115579310823374,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1282.366 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "we-have-competition-so-what",
+    "post_id": 816377,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "We Have Competition, So What?",
+    "title": "We Have Competition, So What?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/we-have-competition-so-what"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1068066740232",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-14428335580523",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6580940624714",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2516500322385",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9730263409820",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2238089828373",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117245008705",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581077721826",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016281567712",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4712575705195",
+        "voter": "wang"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "50128182486",
+        "voter": "adm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101248946",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765091051",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690619464",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54354410559",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661935517",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213718493",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2001205407251",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418315136885",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424995350979",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2859018151628",
+        "voter": "recursive"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "223774607744",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14213361017",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11473937036",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623025846",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "23639540033",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967713364",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299060965565",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121855691094",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288235837",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "9548778927",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38491019685",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1767163827",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419437392055",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1579031296",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16975075430",
+        "voter": "jademont"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "7579732231",
+        "voter": "fkn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1459747282",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "6757762580",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "10632532459",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16892420207",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1448343606",
+        "voter": "n25052016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7584918683",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37443492197",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666866364",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74100412917",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1419670146",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2578496905",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39320777722",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8666838603",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13246631412",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3835227080462",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364306847511",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401376869",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2339939419364",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "93314085385",
+        "voter": "wingz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "28201520191",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212735022017",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17038534997",
+        "voter": "andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79982031063",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-209838822321",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177241468",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "5655530548",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2787011053",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175537967389",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "79382741",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792170905",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5943847648",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1460965920149",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687075875567",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46038400775",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14127596797",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470524735958",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "11246189112",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267393527",
+        "voter": "artisan"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "4490182566",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289162489",
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17550246480",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1318198250",
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12952739395",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5365157925",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266657278",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47434235880",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330653046604",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3392620167",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5858174588",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9866111769",
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5253410818",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22467197866",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34735743250",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47802301892",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281926950358",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14545520870",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24971256573",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6918017824",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946734032",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16677138219",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1339918531",
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "23124728884",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690010021",
+        "voter": "busser"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "74680604",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "188768554",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "211774654",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "194127478",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "6900",
+        "reputation": 0,
+        "rshares": "112654580280",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2068776947",
+        "voter": "gazm"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1711089537",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1605307412",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "126505514",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10429341978",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237084223",
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1969204308",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4194090115",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342507039",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242542379761",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10514634467",
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786532034",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "826867066",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70528519000",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41938187661",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19329526526",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44336327098",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-128498217434",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5644661682",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1919200251",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13274390807",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3093346077",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10945767657",
+        "voter": "stevo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10151327610",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259629450569",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-30470822745",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8266500094",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2117017421",
+        "voter": "earnest"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-262081883",
+        "voter": "shing3e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1600176825",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7971365358",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204046586021",
+        "voter": "jl777"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3900840609",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "6548020005",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1399761805",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1833955050",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277681916",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278097823",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160825350",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161733355",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92188832",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11734903206",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12811217967",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19696646539",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8065287272",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17558743505",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594907055",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207927318",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445158598",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238573730",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83484533",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "214182446",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "195430067",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7109462134",
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115507974",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13595360798",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7520902716",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129103709",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658509913",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30896278536",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77914394030",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8783779105",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3658561552",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53835780",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1556598011",
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1472655783",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54844677",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "3995394560",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25077308053",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6000428593",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2300718527",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1821180466",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4338245273",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979617190",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1407114808",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7948406128",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101379161825",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70413598",
+        "voter": "ragnaroek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88710491389",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4645077272",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "21851097144",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2482187793",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "4100",
+        "reputation": 0,
+        "rshares": "23525650772",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55265906",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53370316",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12436071828",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61746903",
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52985539",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1664097198",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52848854",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338891141",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71506742",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230331964",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61515128",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "983145708",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83962397834",
+        "voter": "miacats"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-37335893668",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114992597",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545877",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61167862",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53648513",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74131936",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-61687049",
+        "voter": "kanusteem"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "3900348752",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7833422368",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71551855",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60661014",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310680382",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651551511",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59610335965",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "834306506",
+        "voter": "inferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12520030511",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4730854063",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3289942651",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1288112247",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792593563",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863356",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039566",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51852278",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3719392493",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1810222177",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2519054922",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57399342",
+        "voter": "ethansteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51481279",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475206804",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58064982",
+        "voter": "zite"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4156286103",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562255",
+        "voter": "curpose"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-861184213",
+        "voter": "ontofractal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59978409",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "532936297",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "850866519",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1005088816",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2331050847",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59995797",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51712804",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1442988265",
+        "voter": "nadin3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683907739",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51718188",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51388276",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51379706",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34329581722",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15597377801",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254519172",
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5757204428",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814474",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157129613626",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54632424",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131546618",
+        "voter": "illusiveman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2713459817",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54012814",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106768414",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588271491",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23572897576",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1615824466",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74117002",
+        "voter": "projecthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5292676076",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50470409",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63543002",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1548545048",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53002525",
+        "voter": "swapman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8160990156",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59088198",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4882248396",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1306905034",
+        "voter": "mrabdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69546372",
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51797456",
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52171779",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3039484418",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71167473",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154396017",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163216276",
+        "voter": "zacariajames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124699787",
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162784893",
+        "voter": "knights"
+      }
+    ],
+    "author": "fyrstikken",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://stakepool.com/wp-content/uploads/2016/08/photo3.jpg</center>\n\nSo, I was sitting in my $5000 massage chair smoking a cuban cigar when all of a sudden all kinds of bells started ringing. So I had to stop what I was doing and walk all the way over to my enormous trading-desk on the opposite side of my man-cave to see what was going on, and of course - there it was... A new post from my ex-boyfriend who cannot believe I dumped him for a better looking guy, and I knew he was out for blood so I started reading:\n\n<h3>A littlebit of history first</h3>\n\nWhen I wrote against @stellabelle and her article about synero-amp vs steemit, @tuck-fheman started spamming my comment section with all kinds of accusations, and lately he has started what he calls a \"comic-strip\" about me where he is doing his very best to harass the hell out of me.\n\n<h5>I still stand by what I wrote in my article against @stellabelle - it was a very dumb move on her behalf and I have people on record who confess to buying synereo-amp and losing money because of her article. The point of calling her out was to let her know that she has a loud voice in this community, and that she therefore must be careful advising people about investments and projects in a market she has no real clue about, because she is new.</h5>\n\nThen, when I apologized in public to @heiditravels for using explicit words when I was mad at her for not showing up to a Public Relation Interview when she came to Per\u00fa, an Interview that would have gone out on Television to 10 million Peruvians in prime-time and maybe secure 200,000 new signups for Steemit, he went on another rampage and started posting screenshots of the conversation and tried to get people to flag my post, which did not work because people are not stupid around here - they see what is going on.\n\n<h1>I still think what @heiditravels did was selfish, but I am over it - It is history @tuck-fheman - she wanted the @dollarvigilante more then me, and I have come to accept that he is much better looking then me, no homo :) (Just kidding)</h1>\n\nToday @tuck-fheman posted another harassment-cartoon, and even went to the #steemitabuse chat and bragged about it, told people that I was a sociopath that needed to be stopped, a woman-abuser and many other things that was just degrading and sad to read from him.\n\n<h2>Tuck & Stella = Early adopters who made a lot of steem posting pure shit</h2>\n\nSo what do I do? He is one with the most reputation on Steemit because he was very early into steemit and was in the original \"circle-jerk\"-club as they called it. Apparently back in those days you could post a picture of your garbage-can and make thousands of steem and now a days you have to actually make real content with real value.\n\nThen we have @stellabelle - I have nothing against her, never tried to attack her in any way - just had to speak up when she decided to embrace synereo-amp in a way that felt like... she was pooping where she was eating and I have honestly not read a single article she has published since. Instead I have found new aspiring artists like @poeticsnake who make amazing drawings and really put in a lot of real work in her art.\n\n@stellabelle also is from the very early adopters of steemit who made a lot of steem by writing articles about how she ripped of her friends when she was a car-salesman, or how she used to shoplift in stores when she was rich. Something to be proud of? Would those articles be worth anything if she wrote them today?\n\n<h1>In case you don\u00b4t know what I do on Steemit, I make comedy, entertainment, cartoons Here are a few examples for earlier:</h1>\n\nhttps://www.youtube.com/watch?v=ojNbGf5oIhM\n\nhttps://www.youtube.com/watch?v=vh-TKt_GSCc\n\nhttps://www.youtube.com/watch?v=ijVJNn0qgxg\n\nhttps://www.youtube.com/watch?v=ZHzdXtFKwYA\n\nhttps://www.youtube.com/watch?v=0SMMo7aQnPY\n\n\n---\n<h1>I also do Technical Analysis of Forex, Stocks and Crypto-Currency in posts like this:</h1>\n\nhttps://www.youtube.com/watch?v=dyXt_kJhomU\n\n---\n\n<h1>And I also make funny songs about steemit and crypto like this:</h1>\n\nhttps://www.youtube.com/watch?v=6P2FB9Mg_YI\n\nand like this:\n\nhttps://www.youtube.com/watch?v=3gfntBEI3Aw\n\n---\n<center>So please - Tuck-Fheman, Stellabelle - Leave me alone if you are going to act like bullies and collude and harass me - there is no point to that! <b>Start doing something positive for Steemit instead of all this negativity! </b>And to all the rest of you - I hope you see it that I loud and clear do not want to have anything to do with these two people. </center>\n---\n\n<center><img src=\"http://i.imgur.com/JhD2D0s.png\"></center>\n\n<center><img src=\"http://i.imgur.com/DLFAEdd.png\"></center>\n\nBreaking up is never easy, I know - but you have to let me go :)",
+    "body_length": 4768,
+    "cashout_time": "2016-10-05T10:04:33",
+    "category": "steemit",
+    "children": 106,
+    "created": "2016-09-03T21:39:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"abuse\",\"witnesses\",\"steemitabuse\"],\"users\":[\"stellabelle\",\"tuck-fheman\",\"heiditravels\",\"dollarvigilante\",\"poeticsnake\"],\"image\":[\"https:\\/\\/stakepool.com\\/wp-content\\/uploads\\/2016\\/08\\/photo3.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ojNbGf5oIhM\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/vh-TKt_GSCc\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ijVJNn0qgxg\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/ZHzdXtFKwYA\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/0SMMo7aQnPY\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/dyXt_kJhomU\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/6P2FB9Mg_YI\\/0.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/3gfntBEI3Aw\\/0.jpg\",\"http:\\/\\/i.imgur.com\\/JhD2D0s.png\",\"http:\\/\\/i.imgur.com\\/DLFAEdd.png\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=ojNbGf5oIhM\",\"https:\\/\\/www.youtube.com\\/watch?v=vh-TKt_GSCc\",\"https:\\/\\/www.youtube.com\\/watch?v=ijVJNn0qgxg\",\"https:\\/\\/www.youtube.com\\/watch?v=ZHzdXtFKwYA\",\"https:\\/\\/www.youtube.com\\/watch?v=0SMMo7aQnPY\",\"https:\\/\\/www.youtube.com\\/watch?v=dyXt_kJhomU\",\"https:\\/\\/www.youtube.com\\/watch?v=6P2FB9Mg_YI\",\"https:\\/\\/www.youtube.com\\/watch?v=3gfntBEI3Aw\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T22:52:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 28528575081428,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "112.665 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-harassment-wow-it-finally-happened-to-me-too-d",
+    "post_id": 848240,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "title": "Steemit-Harassment - WoW - It finally happened to ME TOO :D",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@fyrstikken/steemit-harassment-wow-it-finally-happened-to-me-too-d"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28904011889414",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520098232581",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27187008322655",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169804839880",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2636342185376",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169207940021",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "3073876330742",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2008563761368",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594575320115",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011916646700",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2393257515326",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1107774806631",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4973802490322",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4674533411216",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2482055809",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1809839585238",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3013424240",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552662812",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "491465130261",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43649505393",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5572119315",
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32994834817",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392020164380",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26825111274",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330064009",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171009273",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208927024954",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2005815389795",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11196356543",
+        "voter": "steemservices3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13072638952",
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14855376121",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444955155332",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2792476965429",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1532665365",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "918878966751",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123571015707",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2248950812",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453188235245",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11723893904",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499845540",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "775709423",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786483423564",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "408396261389",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40480067408",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230642309",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25304604461",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14464815855",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1820924487",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "12861662310",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "548931646",
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1055355445022",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19313464152",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "832212930452",
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68620290271",
+        "voter": "idealist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "611673479623",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19603806106",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29124731949",
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487043900",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5487072034",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110425095104",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29577376352",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2105697423",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338115289584",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26446572833",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13242421616",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "733881760856",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "679520448",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "4200",
+        "reputation": 0,
+        "rshares": "4974441347",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151937411878",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230470945840",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534596286",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74166126146",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623001349410",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425459923",
+        "voter": "murh"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3590512275",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2634258540",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378920499792",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15588807020",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42977927576",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64657896111",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98243686947",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24400271615",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8199640991",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13249527549",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377944761420",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380255021",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370334988153",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233304410850",
+        "voter": "wingz"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "33522431436",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54397942319",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213100572181",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6210962615",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403936875902",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "539220549910",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78420366563",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012427662",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3247481989",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36310114628",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "719254637693",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167123545461",
+        "voter": "ikigai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5829433150",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687228830675",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108637592108",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272424359692",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2937074898",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2502021825",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3406174686",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36049155648",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562575775",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43623897139",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44534121657",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53127948729",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243464927250",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "14593112076",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "2600",
+        "reputation": 0,
+        "rshares": "1349434599",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92800123706",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3329170505",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15569455870",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16406069363",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23470130902",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467472850580",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120310968454",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60653460344",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10592956071",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103734236038",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3661486271",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485287450",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531132027",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486886690",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25575729781",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148458773016",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "504635563",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1206556077",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1630261480",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4600997385",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15976597511",
+        "voter": "ashold882015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10929036897",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13555525897",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3978399004",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21722940066",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10435159079",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349470768",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11941739853",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43183709774",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410205647",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3215762929",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10050955929",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "429865972",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370939417531",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43452166600",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7443194536",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103711516",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3786816110",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5649736542",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243501388",
+        "voter": "mix68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "744454404903",
+        "voter": "ramta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3174794355",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438064420",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280968811744",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64246109862",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1911344111",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7024624095",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7327096445",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6105234990",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234706981000",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29860845400",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116065815",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102459876",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182710907037",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37640387244",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16288614419",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1798884189",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269576627",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269980297",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156093986",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156975275",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89476508",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500969295",
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117711994",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764587130",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21325436037",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15571624866",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644954948",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8147029083",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221401214",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436474032",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749726803",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233864769",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81814843",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2222862544",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537189684",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "502409799",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536957638",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5841936138",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117834331",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29626477289",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139296107",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217225350",
+        "voter": "choccy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1859734787",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18184768944",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7816664104",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5874256428",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128078777101",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1279745964",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8331474043",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103516772",
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57873464",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58958028",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "7300",
+        "reputation": 0,
+        "rshares": "693670933974",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267736473",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25730062568",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16142522947",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51338511950",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4615241075",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3066422709",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807752948",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103522443133",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "7300",
+        "reputation": 0,
+        "rshares": "77778400648",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18051601393",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17911590129",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93195477512",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5248424662",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265682837",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9442440033",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "423788872",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59410849",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55911760",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11703925092",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "17730431006",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55449983",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55306941",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345831698",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234954849",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66371585",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29493027614",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65068915",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065111573",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54908311",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54842915",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117308646",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545877",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62391219",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143792",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116751214",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54313084",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72982892",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61874235",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1497361810",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17605373303",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35420250755",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57802223",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57795937",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101227402628",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662204978880",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1443290254",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54220781",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54218223",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54216305",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54213405",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54209199",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59993245",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8891054106",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53821337",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24772824820",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59226282",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71200836239",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46612959839",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "163983245",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16355375535",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "2977572185",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57797939",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53853911",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "724970673",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54705383",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146567272",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1923215341",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366942350",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118894339",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "813530163",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14529944296",
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58249183",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77673986",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7315831479",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2484284234",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56265756",
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52836995",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1650630573",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127978892",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52505412",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50191639",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32097581345",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15297756343",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53252658",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5646175108",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "397453188",
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160081558",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51451058",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158538070448",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55725073",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230725",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9219166710",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52088375",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2660739677",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55093071",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5273026357",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839629",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1541628858",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108903782",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "717513029",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341331436972",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4014959887",
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62339306632",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25877183239",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54601718",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53353220",
+        "voter": "swisswatcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "772900078",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066584907",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65975408",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53729098",
+        "voter": "dariuszg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2762392872",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2035771305",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1290719213",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1451959158",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8917175222",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175892938",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54059416",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52368690",
+        "voter": "rooster.ninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4788178237",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50368777",
+        "voter": "eagleeye7850"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57266113",
+        "voter": "technium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1093018575",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50536471",
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50484452",
+        "voter": "connect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317220",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1684721465",
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99417982",
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2979811276",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151614981",
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51876835",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74402358",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81556444",
+        "voter": "brainup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82287966",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157628162",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60962152",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163439230",
+        "voter": "zubasky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162925257",
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162911190",
+        "voter": "front"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156833866",
+        "voter": "yanik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162561543",
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162424202",
+        "voter": "unlabeled"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155910854",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161855613",
+        "voter": "jamicwe219"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158660342",
+        "voter": "iberia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161815656",
+        "voter": "ranger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116987070",
+        "voter": "nikomah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107496727",
+        "voter": "elsi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160573104",
+        "voter": "sortinghat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154276916",
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152869602",
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![Alt Text](http://www.geliosoft.com/100-happy-dollars-3d/falling-money-wallpaper.jpg)\n\nHave you ever wondered  why people keep trusting career politicians to handle their finances? It\u2019s a fascinating thing really. This is one of the biggest mind-boggling mysteries that seem to defy even time itself, mysteries that are impossible to explain from a purely rational point of view.\n\nAsk any person in the world \u2013 scratch that \u2013 ask any person in the history of the world to describe politics in one word and you are guaranteed to hear some of the following words: Deceiving, dishonest, incompetent, cheating\u2026Etc. And probably, this is from the generous side.\n\nNow,  ask any of those people how come they trusted those individuals to manage their finances, and it would seem like you\u2019re speaking Chinese to them.\n\n## And that area right there is where the real game is being played.\n\nThat\u2019s the space where critical thinking dulls, where the emperor sells clothes, and no one\u2019s looking at Pinocchio\u2019s nose. How on earth would a known dishonest, power hungry person convince the others that he should be the one that makes the decisions on behalf of everybody?\n\nWorse than that, they give them all the power, no accountability and a virtual 100% probability to screw them , and everybody just keeps pretending to be surprised when these things happens.\n\n# Why Does This Keep Happening to Me?\n\nYou change the country, you change the century but the song remains the same, and the mystery survives. The only way to keep convincing people to accept a deal that acts against their own self-interest is to create a story that makes the exploitation of mankind look like the solution to their problem. \n\n![Alt text](http://vignette2.wikia.nocookie.net/lostpedia/images/b/b2/Lastsupper.jpg/revision/latest?cb=20100117063640)\n\nYou look around, you find countries like Bolivia or Venezuela (just to give a few examples) that are extraordinarily blessed at the very same time with a rich abundance in natural resources  and a starving population despite the fact that these two things should be mutually exclusive by any stretch of the imagination.\n\nYou can\u2019t be that incompetent if you tried.\n\nBut then again, this isn\u2019t about incompetence. Their solutions were already predetermined in the narrative, and when it doesn't work and the tale falls on its own weight, they\u2019ll just repeat the same process again, because the narrative remains the same.\n\nThey keep seizing more lands, more factories and they keep \u201ccracking down\u201d on competition and seize everything in the name of \u2018the common good\u2019. Then they bankrupt them as well and they seize more and bankrupt those too. \n\n### If it wasn\u2019t so heartbreaking it would be hilarious.\n\nHere\u2019s the crazy part of all this is that  this wide spread phenomenon is completely irrelevant to the economic system, the economic policy, or to the continent, and it's happening across the board. \n\n![Alt Text](http://redlikeme.ca/wp-content/uploads/2015/10/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg)\n\nFind me a person in southern Europe that has good things to say about politicians in the ECB.\n\nAll the solutions they present are hell bent on screwing the little guy, whether it\u2019s draconian austerity measures, raising the retirement age, bank bail outs\u2026Etc\n\nI\u2019m not saying that it\u2019s due to incompetence, dishonesty, or both. I\u2019m saying that it\u2019s irrelevant, because the solution is already pre-set beforehand to achieve one purpose, and one purpose only, that power keeps consolidating itself. \n\nThat might explain why we always keep hearing sentences like this one: *\u201cThe game is rigged\u201d*, which happens to be one of the most popular expressions of our generation.\n\nLet me give you another example.\n\nWhen you turn on the radio and there are some finance experts on, how many times we hear the following words: \n\n*They\u2019re making things worse; They\u2019re repeating the same mistakes again;  Things are actually getting worse and not better; The solutions are creating more problems than solving; How come the recovery is worse than the recession?*\n\nYou see where this is going? \n\nAnd this is not exclusive to our generation, in fact this story form is a very common archetypal myth that exists across every society and period of human history.  With the very same the result, that whatever action that will be taken it will only serve to reinforce the dominant narrative.\n\n# Once Upon a Time\n\nIt is believed that the cavemen were the first storytellers, and whoever controlled the dominant story had a strong pull on the rest of society.\n\n![Alt Text](http://www.kino.de/wp-content/gallery/homo-erectus-2007/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg)\n\nThe  human story is at the heart of everything, it\u2019s the prima material of how most people perceive reality, the moment you question someone else\u2019s dominant narrative, the debate is over before it\u2019s even started. For many people, they much rather fall for the same thing again and again and until the end of times, rather than to dare questioning the story they grew up around.\n\n> ### *\u201cIt\u2019s easier to fool people, than show them that they have been fooled\u201d.*\u2014 Mark Twain\n\nThe crazy part however, is that the even if those individuals were to fully realized how they've been fooled, they would probably still willingly walk towards the fire nonetheless. Metaphorically speaking.\n\n### Unless of course, there is a new story that replaces the old story.\n\nI remember reading one of James Altucher\u2019s amazing posts and had a wake up call. I hope I\u2019m not butchering the story, but it basically it goes like this: A friend of James asked him to go with her to the bank to help her decide the best option for her to put her money. Since he has some solid expertise in the finance world, it seemed like a wise decision for her part.\n\nDuring that meeting in the bank, James just sat down, said nothing and only listened, when they finally left the bank he started explaining to her all the ways that they were trying to take advantage of her and rip her off.\n\n*\u201cHow can they do that to me?\u201d*\n\nThe next day, she went to the bank and did everything they asked her nonetheless.\n\n![Alt text](http://blogs-images.forbes.com/maggiemcgrath/files/2015/06/0211_hipster-piggy-bank-401k_1024x576.jpg)\n\n# This is How the Story Goes\n\nCommon folklore has it that there are those people among us that regular people  that look just like me and you, but when they get a magical paper that says that they work for the status quo, then an invisible laser descends from the sky and grants them all sorts supernatural abilities and financial savoir-faire.\n\nWell, sort of... Everything they touch still goes to crap, but that doesn\u2019t matter anymore and their never-ceasing incompetence doesn\u2019t seem to bother anyone either. Because now, they're part of the narrative.\n\n### And apparently, narrative trumps logic. \n\nA successful investor once told me: *Never listen to government economists, if they knew how to manage money, they would\u2019ve made money themselves instead of telling people what to do.*\n\n![Alt Text](https://ascendingstarseed.files.wordpress.com/2016/08/cc12b-preppers2b-2bdoomsday.jpg)\n\nAs the Altucher story goes, along with countless others, whenever there is a threat to the narrative, the debate is over before it has even started. For many people in the world, defying authority is just about the last thing they would do, and that includes killing themselves and their own children.\n\nBut let\u2019s go back to the subject of the day. We tell ourselves a story that defies every single law of the universe, that the idea of good business is spending trillions of Dollars bombing millions of people and generating the biggest debtor nation the world has ever seen.\n\nIf that is not telling you anything then honestly, I don\u2019t know what does.\n\nWe tell ourselves even crazier stories, that if we just grabbed enough productive citizens and stacked them into jail cells for victim-less crimes, or for carrying bits of vegetation in their pockets, then we're going to revitalize the economy, and that oh! We will rehabilitate those poor souls through brutality and sexual violence.\n\n### Again, narrative trumps logic in ways logic can't even perceive.\n\nSome people choose to deny their programming, and that seems as the right choice because sooner or later those stories could start acting as their very own gatekeepers. I\u2019m not talking about inner resistance, I\u2019m saying that maybe we need a new story that replaces the old story.\n\n![Alt Text](http://i0.wp.com/dailyzen.co.uk/wp-content/uploads/2015/03/How-to-Make-Good-choices-and-make-the-most-of-them.jpg)\n\nThere has never been a better time for financial independence than the times we live in, there has never been so many options available for someone to start their own company, find jobs, or make their own movies even\u2026 All of that without dealing with a large number of resistant gate-keepers who may or may not have been programmed to serve a certain narrative.\n\nI don't know about you but personally, if I had to follow a narrative, I much rather have one that I designed for myself rather than one that I was born into.\n\n# Closing thoughts\n\nThey say that when there is a paradigm shift, there is usually a new story that renders the other story irrelevant, but until then and even though the tools are already available to the public, people will not make the final move until they start seeing a certain degree of mass-adoption around them.\n\nIt is that mass adoption aspect that would make it acceptable for their psyche to separate from that old, probably coercive narrative that has been attached to them.\n\n![Alt Text](http://www.elfm.co.uk/wp-content/uploads/2014/12/storytelling-night.jpg)\n\nA few minutes ago, I was just going to end this piece with a question: \u201cDoes the Blockchain need a story?\u201d\n\nBut then I realized that steemit has both the crypto-currency and the story aspect. So I\u2019m swapping that question for a few modest words:\n\nCan we just work together to build something beautiful? Do you guys see what we have here? Why don\u2019t we just focus on what we have and how we can improve it. After all, it\u2019s much harder to create something really great when you\u2019re being held back by unnecessary drama. Wouldn't you agree?\n\n And not to forget:\n\n### Your dream needs you full steem.\n \nSources: [1](http://www.geliosoft.com/100-happy-dollars-3d/) - [2](http://lostpedia.wikia.com/wiki/The_Lost_Supper) - [3](http://redlikeme.ca/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing/) - [4](http://www.kino.de/film/homo-erectus-2007/) - [5](http://money.cnn.com/pf/millennials-and-their-money/) - [6](https://ascendingstarseed.wordpress.com/category/economy-and-global-collapse/) - [7](http://dailyzen.co.uk/2015/03/19/how-to-make-good-choices-and-make-the-most-of-them/) - [8](https://storify.com/ProfKarim/the-power-of-storytelling)\n\n## [*Follow the Alien*](https://steemit.com/@the-alien)",
+    "body_length": 10964,
+    "cashout_time": "2016-10-07T11:28:24",
+    "category": "life",
+    "children": 49,
+    "created": "2016-09-06T00:18:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"philosophy\",\"psychology\",\"alien\"],\"image\":[\"http:\\/\\/www.geliosoft.com\\/100-happy-dollars-3d\\/falling-money-wallpaper.jpg\",\"http:\\/\\/vignette2.wikia.nocookie.net\\/lostpedia\\/images\\/b\\/b2\\/Lastsupper.jpg\\/revision\\/latest?cb=20100117063640\",\"http:\\/\\/redlikeme.ca\\/wp-content\\/uploads\\/2015\\/10\\/bank-robbery-digital-art-hd-wallpaper-1920x1080-2127.jpg\",\"http:\\/\\/www.kino.de\\/wp-content\\/gallery\\/homo-erectus-2007\\/homo-erectus-einfach-pr-hysterisch-11-rcm0x1920u.jpg\",\"http:\\/\\/blogs-images.forbes.com\\/maggiemcgrath\\/files\\/2015\\/06\\/0211_hipster-piggy-bank-401k_1024x576.jpg\",\"https:\\/\\/ascendingstarseed.files.wordpress.com\\/2016\\/08\\/cc12b-preppers2b-2bdoomsday.jpg\",\"http:\\/\\/i0.wp.com\\/dailyzen.co.uk\\/wp-content\\/uploads\\/2015\\/03\\/How-to-Make-Good-choices-and-make-the-most-of-them.jpg\",\"http:\\/\\/www.elfm.co.uk\\/wp-content\\/uploads\\/2014\\/12\\/storytelling-night.jpg\"],\"links\":[\"http:\\/\\/www.geliosoft.com\\/100-happy-dollars-3d\\/\",\"http:\\/\\/lostpedia.wikia.com\\/wiki\\/The_Lost_Supper\",\"http:\\/\\/redlikeme.ca\\/tpp-is-all-about-banking-powers-which-will-remain-secret-for-5-years-after-signing\\/\",\"http:\\/\\/www.kino.de\\/film\\/homo-erectus-2007\\/\",\"http:\\/\\/money.cnn.com\\/pf\\/millennials-and-their-money\\/\",\"https:\\/\\/ascendingstarseed.wordpress.com\\/category\\/economy-and-global-collapse\\/\",\"http:\\/\\/dailyzen.co.uk\\/2015\\/03\\/19\\/how-to-make-good-choices-and-make-the-most-of-them\\/\",\"https:\\/\\/storify.com\\/ProfKarim\\/the-power-of-storytelling\",\"https:\\/\\/steemit.com\\/@the-alien\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T08:14:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 110391035728415,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1196.314 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "logic-and-fiat-money-are-they-mutually-exclusive",
+    "post_id": 868056,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "title": "Logic and Fiat Money, Are They Mutually Exclusive?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/logic-and-fiat-money-are-they-mutually-exclusive"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28904209517709",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-56559208770",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633095325237",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "404682721071",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "25814870366911",
+        "voter": "dan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2321790225223",
+        "voter": "diaphanous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2077749979912",
+        "voter": "bmw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1860859029886",
+        "voter": "books"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1551086497755",
+        "voter": "butterfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1469367520215",
+        "voter": "commedy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6141142270335",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6934956643994",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5536285359773",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3103030120",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1689669975555",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3767362463",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690899726",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6142381502949",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54638988750",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1662795178",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213777416",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3921583473347",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62849848037",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1460238073",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897783861872",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118160004239",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8846544205",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2249794908",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1220931423430",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326641694341",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23992305455",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624870220",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26771021432",
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969744364",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "804647377325",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78719523584",
+        "voter": "jwest40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361589712598",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32423888615",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288328206",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83099570491",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24793284195",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14471587511",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163614861708",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9864254866",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14902174889",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "71563667896",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52311045620",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411271639019",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78952260790",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11754655518",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3913661416",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "552268439259",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487226144",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "6100",
+        "reputation": 0,
+        "rshares": "3975544133",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5612587148",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109201913867",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28968973138",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2062724006",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331414403780",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "4518704719",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144379940729",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54482680287",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33524081215",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26516736386",
+        "voter": "tmendieta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37994042628",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2366331863",
+        "voter": "alenevaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534991050",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67845312433",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1425735650",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6894648848",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17773072912",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602425396",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13216041083",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198603454941",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15588807020",
+        "voter": "ombc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42080883570",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941565976892",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23912266183",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6242728467",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685622702",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12984552465",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "2917169504539",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386419893744",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8806878751",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380391693",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52367224290",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349484107",
+        "voter": "yonatann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377770820778",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40679365477",
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308660771107",
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "13998741368",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55873941967",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108025258280",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53194598358",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412538354215",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1486565432",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13353610720",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "430294140",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "4700",
+        "reputation": 0,
+        "rshares": "11167158479",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988882833",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19192619156",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15756733173",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33784111908",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182873871538",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5709056203",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9721696359",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687254164754",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075516962",
+        "voter": "comm-press"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109117596483",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6740408834",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31925745781",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68617907780",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2375236125",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "12981212473",
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3755852203",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "5400",
+        "reputation": 0,
+        "rshares": "15858494668",
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536461338",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40094142832",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39857869532",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50782349370",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "22535574872",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275298770505",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20203030978",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243464927250",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318035694495",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43816713486",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60077712293",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90689728719",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3297954099",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8587323673",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17199764671",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22616447166",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122136592502",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282238576797",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3286950628",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516176839",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12276334224",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6927337869",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242042299",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597179386",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69160956194",
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120331087671",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26149661294",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2761970265",
+        "voter": "wintrop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7012104525",
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "513898732093",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4223216611",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112572902958",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236699236",
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "48431592474",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5516539304",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "2893393868",
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1111186856",
+        "voter": "demyan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56528698039",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16937012018",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525662045",
+        "voter": "warplat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40069670306",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1525991347",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17954765467",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4507281503",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "4200",
+        "reputation": 0,
+        "rshares": "26722878081",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3949738963",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11743458717",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685025327",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218350821",
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2438495293",
+        "voter": "thelindvall"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "426995359",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10624714992",
+        "voter": "fogspam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3758226202",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24926432348",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11466221508",
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346695853",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38296982211",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12382501577",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12897559714",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2086071510",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235512684",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20010696496",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55174325289",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45468090152",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240374641",
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7144301672",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96640276",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129948707617",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3709534148",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5772890880",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2091519389",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13003141497",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3175079093",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18161034703",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2450336934",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201222637041",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "2045718563",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13357712366",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "40980982912",
+        "voter": "opheliafu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298430647098",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5853998263",
+        "voter": "kidsysco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3493315959",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14607170571",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64250965781",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123387400",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7924257770",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7311343446",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3248799071",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2691561605",
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "848614521",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4244751071",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13833357665",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3244193020",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2283280595",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26463727332",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38546045916",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39483002950",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84759836456",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3869796932",
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104788510",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182754922360",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "977883724416",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9747030367",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39264915236",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1781950310",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269576627",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269980297",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156093986",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156975275",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89476508",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115403915",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95203313420",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10448758256",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32452429861",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115883340",
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133255616",
+        "voter": "bigb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571692815",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3835587963",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5372665495",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15514579228",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916462256",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15575145963",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614416410",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3297833326",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "432287231",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1750139335",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231618512",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4914389699",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81028161",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2242469546",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2849432107",
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554432980",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36985556688",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1731857982",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5554504133",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518235137",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21557151502",
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142706881",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115172592",
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27075686327",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244863448245",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2873547475",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188414958",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1458929155",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19540258029",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150369025",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5474983827",
+        "voter": "jed78"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "6677336214",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122226950104",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254151045",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4400767306",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70376481208",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7870689325",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6529244168",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59219358",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1561593690",
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6817558610",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58958028",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501549780",
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18337113073",
+        "voter": "reneenouveau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25086446776",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54208918167",
+        "voter": "sextusempiricus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25748578986",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1916476866",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20943614649",
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14587304759",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2312594930",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4344940420",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6812512111",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1393113935",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8284755955",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101494312815",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100860038",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91120502513",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5443084062",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12780436995",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232895758",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58773515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189563166525",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312105000",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59410849",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55911760",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3302532712",
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710962726",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55449983",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982196003",
+        "voter": "fooblic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1986815415",
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580406077",
+        "voter": "bmcv001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21699399275",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55306941",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1558777881",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68397753",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67990404",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29495720282",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60730988",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1884653469",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74898697",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88707336012",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490764449",
+        "voter": "sc-steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52419023",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143792",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577428472",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6753644017",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62395538",
+        "voter": "olya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8451306126",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54313084",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1549192117",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19205801220",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56598010",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56591855",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75583534",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2707740797",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "640494020911",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1371874570",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67104569235",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12003456501",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1389946718",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2560790218",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "963036943",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54220781",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54218223",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54216305",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54213405",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54209199",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4276803918",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187186651",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8469707556",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856443329",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2569452228",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53821337",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2866954104",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22522846885",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6050957442",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1871540303",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71218036289",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47545219036",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4000720825",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18578707926",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "5228073529",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4503042264",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52708083",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58330329",
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59194500",
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "733021198",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565688",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4382079199",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1624044881",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2017275348",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1572019930",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4887499753",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "670709305",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25570333868",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69572705",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57437168622",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98218493",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90577741",
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79568473",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20981590167",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57330113",
+        "voter": "aavkc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "675058400",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2433107936",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9191275813",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52836995",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6743441072",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101985046",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1616413109",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66879121",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133765107",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7518726707",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56987529",
+        "voter": "thepeacefulrebel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185622553",
+        "voter": "greatness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52505412",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12190963825",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "7100",
+        "reputation": 0,
+        "rshares": "24470534532",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15150640986",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3748408212",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85083750",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52847912",
+        "voter": "teruneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57099030",
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5529568480",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5272311109",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814474",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17059963076",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1518574310",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51451058",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3064424390",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277324152",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89038335",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537067064",
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1769489244",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2605716510",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51906983",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343538723",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1449131127",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50554364",
+        "voter": "danbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327174897",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334013630052",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5674559575",
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59387530704",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "9136703623",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1167978510",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "482952591",
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52226204",
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61567608",
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161284159",
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "582922475",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1642685153",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2929180084",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210337011",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5725265619",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4651778852",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2744828616",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357202147",
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55826263",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2818894604",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951311375",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1129379312",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "5911683344",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1420415841",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338284222",
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8712540579",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347888867",
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1352042554",
+        "voter": "mojojojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457160010",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336901289",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343046311",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039370994",
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4689184321",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "924825759",
+        "voter": "schattenjaeger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2382508857",
+        "voter": "terrano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143571824",
+        "voter": "flowergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615424969",
+        "voter": "nathanjtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77317255",
+        "voter": "cherryleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1692965069",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50568084",
+        "voter": "brazzers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50536471",
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50532230",
+        "voter": "friends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50508468",
+        "voter": "lookie-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52005424",
+        "voter": "natord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55484657",
+        "voter": "steemettes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50317220",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1757970224",
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4316683465",
+        "voter": "airmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2918207689",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74402358",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1309209290",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154426469",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161446234",
+        "voter": "yasiin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164151372",
+        "voter": "flowmetheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147014100",
+        "voter": "eunnykim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065088190",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159374062",
+        "voter": "davfur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156089617",
+        "voter": "kalev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152729000",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276984194",
+        "voter": "witchcraftblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132806923",
+        "voter": "swtcamito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158051137",
+        "voter": "origin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157727916",
+        "voter": "dulani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141916333",
+        "voter": "laskoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154501465",
+        "voter": "pawel-krawczyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119814391",
+        "voter": "oliver.smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157648960",
+        "voter": "viper666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110346066",
+        "voter": "jack.johnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160689927",
+        "voter": "paulreifsteck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122578153",
+        "voter": "rubenkusters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157126941",
+        "voter": "adpipop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157060221",
+        "voter": "craneos6626"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147606365",
+        "voter": "laskovskiy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153814397",
+        "voter": "food-creator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159993665",
+        "voter": "ttarabichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156821466",
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125821091",
+        "voter": "jasonxg"
+      }
+    ],
+    "author": "dantheman",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://i.imgflip.com/p1ij6.jpg<br/>**CENSORSHIP**</center>\n\nLanguage is a very powerful tool because it shapes the way we think. The words we choose to use [impact how we think, feel, and reason about the world around us](https://en.wikipedia.org/wiki/Linguistic_relativity). Today I would like to address the word *censorship* because it is a very hot topic on steemit.\n\nThe first problem we always face is different and ambiguous definitions for censorship.  Unfortunately, it isn\u2019t always practical to *define* our terms in every debate and therefore drama queens toss the term \u201ccensorship\u201d around far too easily. I would go so far as to say that the censorship card is played about as often and illegitimately as the race card.  Often those who play the *race card* are more *racist and oppressive* than those they slander, the same principle applies to those who play the censorship card.\n\n## Censorship requires Aggression \n\nThe defining characteristic of a free society is the absence of initiation of violence. This includes the credible threat of violence, fraud, theft, etc.   Without the threat of aggression people can freely say whatever they want, whenever they want without fear that their person or property will be harmed. A critical distinction of a free society is that you cannot express yourself in ways that violate the property rights of others.\n\n## Graffiti is Aggression and violation of Property Rights\n \nGraffiti is defined as writing or drawings scribbled, scratched, or **sprayed illicitly on a wall or other surface in a public place**. In a free society the Graffiti artist would be tracked down and expected to pay restitution to the property owner.  No rational individual would argue that the artist has been censored by the property owner or that the property owner is the one initiating aggression against the artist.\n\n## Property Owner defines Art vs Graffiti \nThere are places where graffiti-style art is acceptable and is actually encouraged. In this case no aggression has occurred and therefore the action is legitimate. \n\n<center> https://farm8.staticflickr.com/7485/15754046208_7d666a75a9_o.jpg</center>\n\n## Spam, Porn, Harassment, and Fraudulent posts are Digital Graffiti  \n\nWhen it comes to websites like Facebook, YouTube, Google, Reddit, and Steemit we have digital property owned by individuals providing a free and voluntary service to society. It is not possible for these organizations to censor user content because they are not using violence, theft, etc. \n\nThe only true censorship is when government agents approach these companies and demand content be removed under threat of force or violence.  Provided these companies are not under any kind of threat, there can be no censorship.\n\nWhen someone [demands that YouTube share ad revenue](/steemit/@calaber24p/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video) they are taking the role of the Graffiti artist that demands property owners not repaint over their artwork.\n\nSome people may consider the [Graffiti artwork worth thousands of dollars](https://en.wikipedia.org/wiki/Banksy), but this doesn\u2019t change the moral character of the vandalism.  Likewise, some people may feel their humor, sarcasm, teasing, crude language, or vulgar posts to be artwork and demand that other users see it and/or up vote it for payment. \n\n## Graffiti Hurts Community Value \n\nWe all love the idea that Free Speech adds value to the speaker, but our selfish desires to be heard come at the expense of the listeners.  Few people desire to move into a neighborhood where there is unfettered graffiti and complete disrespect for property rights.  Likewise, few people want to join an online community where there are no standards of mutual respect.\n\n## A Perception Problem \n\nWe have a very real problem in society today.  The problem is that people feel *entitled* to things that are not theirs.  Whether it is health care, google ranking, reputation, or [right for gay couples to be served by particular vendors who oppose gay marriage](http://www.politifact.com/florida/statements/2013/jul/08/tony-perkins/wedding-vendors-have-been-forced-participate-same-/).  These entitlements can only be delivered by initiating force and violence against innocent people.\n\nIf a particular vendor (YouTube, Facebook, Google, or your Local Florist) will not serve you, then you must take your business elsewhere.  Vendors who lose a significant amount of business will voluntarily reconsider their policies.   \n\n## But they have a monopoly!  \n\nTo the extent that a business gains the vast majority of the market share without relying on government regulations to shield them from competition, the monopoly is deserved and was earned by providing a quality product that others were unable to compete with.\n\nThere are no laws forcing everyone to use Google, YouTube, Reddit, or Facebook. There are no regulations preventing competitors from starting up and competing.  Complaining about their unwillingness to serve you is like a local mall refusing to allow certain tenants.  It will certainly make business more challenging for those tenants, but the prospective tenants are not entitled to a prime high-traffic spot in the mall.\n\n## Flagging Posts based upon Differing Opinions \n\nSome people have been complaining about users who down-vote posts they disagree with. The basis of the idea is that all posts are *entitled to* funding from those who support the ideas.  This stance is in direct opposition to the vested interests of every stakeholder.  \n\n\n<center>http://godfatherpolitics.com/wp-content/uploads/2014/03/thomas-jefferson.png</center>  \n\nWhat should happen when one stakeholder wishes to fund a cause abhorrent to another stakeholder of equal size?  The two opinions are canceled out and the remaining stakeholders get to decide.\n\n## Incentive to be Tolerant and Inclusive \n\nAll users, particularly whales, have financial incentive to be tolerant and inclusive.  This grows the overall network effect and makes everyone the most money possible.  To the extent any community adopts a culture of intolerance that overly restricts the range of acceptable opinion it will push people away.  New communities will form to serve the needs of those who are rejected and the free market competition for mindshare will continue.\n\n\n## Conclusion\n\nIf Steem remains a libertarian / anarchist enclave then it will fail to attract a broader audience and that in turn will mean that ordinary people will not get involved with cryptocurrency.  Likewise, if Steemit fails to curtail abusive, threatening, and toxic individuals it will also drive away the broader audience leaving only those with skin thick enough to take the abuse of trolls.  \n\nI want Steem be a healthy, vibrant community with engaging discussions from people with all points of view. Unfortunately (and fortunately?), I am only one of many users who have a say in what kind of content gets voted on.  Each and every one of us contributes to the culture and we will all succeed or fail based upon how we act.\n\nLets stop throwing the term \u201ccensorship\u201d around here on Steemit unless it is explicitly referring to the threat of violence.  It is out of place and conjures up inappropriate negative reactions similar to playing the race card.  Instead, lets focus on the rights of all voters to express their opinion for or against any post.  If you disagree with how someone is voting, then focus your argument on how something adds or removes value to the community rather than whether someone is committing the \u201cvile\u201d sin of non-censorship by utilizing their legitimate voting rights.\n\nSteemit is a free and voluntary platform built on the basis of free association; censorship is impossible in such an environment even if the community or steemit.com chooses to minimize the visibility of some content or block it all together.  \n\nThe blockchain is open, your content is logged and recorded for all time.  Anyone who wants to see your content or offer a competing service to steemit.com is free to curate and display what they like.  \n\n## P.S. On Definitions \n\nWe live in a world where common words are generally used in ways that are in direct contradiction of their meaning.  The unfortunate reality dramatically lowers the quality of public discourse because it allows people to talk past each other.  Activists leverage the emotional response to the word censorship to provoke people into violating the property rights of others.  It may well be that censorship is taking on a broader meaning that would also encompass the no coerced behavior of Google, Facebook, etc.   The problem with the broader meaning is that the word censorship is no longer useful for accurately defining moral/immoral behavior.  Under the broader definition, accusing someone of censorship is as meaningless as accusing them of filtering spam emails.  How dare they censor spam artists!",
+    "body_length": 8987,
+    "cashout_time": "2016-10-08T03:07:00",
+    "category": "censorship",
+    "children": 164,
+    "created": "2016-09-06T18:45:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"censorship\",\"steemit\",\"steem\"],\"image\":[\"https:\\/\\/i.imgflip.com\\/p1ij6.jpg\",\"https:\\/\\/farm8.staticflickr.com\\/7485\\/15754046208_7d666a75a9_o.jpg\",\"http:\\/\\/godfatherpolitics.com\\/wp-content\\/uploads\\/2014\\/03\\/thomas-jefferson.png\"],\"links\":[\"https:\\/\\/en.wikipedia.org\\/wiki\\/Linguistic_relativity\",\"\\/steemit\\/@calaber24p\\/censorship-on-youtube-creates-an-unique-opportunity-for-decentralized-platforms-like-steemit-to-create-an-alternative-video\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Banksy\",\"http:\\/\\/www.politifact.com\\/florida\\/statements\\/2013\\/jul\\/08\\/tony-perkins\\/wedding-vendors-have-been-forced-participate-same-\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-06T18:45:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 117550898840994,
+    "parent_author": "",
+    "parent_permlink": "censorship",
+    "pending_payout_value": "1193.934 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "censorship-is-impossible-in-a-free-society",
+    "post_id": 874688,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "Censorship is impossible in a Free Society",
+    "title": "Censorship is impossible in a Free Society",
+    "total_payout_value": "0.000 HBD",
+    "url": "/censorship/@dantheman/censorship-is-impossible-in-a-free-society"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20924903115",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316515996824",
+        "voter": "chitty"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "53674162292",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375656420380",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37310054020",
+        "voter": "james-show"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "2261027179",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401475391",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426173324",
+        "voter": "murh"
+      },
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "24526746705",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208985003729",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15761970927",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2706408618",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "61572228994",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "85869752009",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44050470303",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10487597892",
+        "voter": "nineyards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3661397048",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59328435116",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32438700122",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8253914298",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8181635146",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14239373762",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30764850573",
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "441006366819",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112591076283",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155086424302",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66801231",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4047643732",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3092827406",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "434137550",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2614032281",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "395135521",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43466091162",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3789831728",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5556418828",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2552654221",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "957548802260",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212019463",
+        "voter": "jasen.g1311"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "2338658584",
+        "voter": "ace108"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "12829825322",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4238804280",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52207362",
+        "voter": "reported"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25386139768",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5075657424",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393674302",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "63288595594",
+        "voter": "laonie"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "7296353019",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58804600",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "13007083652",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "103099601827",
+        "voter": "somebody"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "3856981690",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "22781126275",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "7095478692",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154454721",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "1782244397",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "3591246793",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2846899090",
+        "voter": "lightsplasher"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "235835929",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10995099944",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68417395",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53516176",
+        "voter": "cnmtz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26476661103",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59047422",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2897317590",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631282506",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9771811576",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91543033",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12721442209",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335474158",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "842943776",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52636635",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116378965",
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78376579",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144014259",
+        "voter": "fer32p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146428143",
+        "voter": "anysound.studio"
+      }
+    ],
+    "author": "craig-grant",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "change gon come\nhttps://www.youtube.com/watch?v=pb7shsTextM\n\n### read Ned's post @ https://steemit.com/steem/@ned/increasing-curation-demand-for-steem-power-and-community-interaction\n---\n\n---\nhttps://www.steemimg.com/images/2016/09/07/20160907_200828f7272.jpg\nhttps://www.steemimg.com/images/2016/09/07/20160907_20085398483.jpg\n\n####  Get 3 meals for $30(shipping included), each meal serves two. That's $5 per meal for the highest quality food you will ever taste @ [https://www.homechef.com](https://www.homechef.com/invite/ezxbJf89eBnV)\n---\n\nFollow @craig-grant\n\nHeaven = have fun :)",
+    "body_length": 586,
+    "cashout_time": "2016-10-09T05:09:18",
+    "category": "freedom",
+    "children": 15,
+    "created": "2016-09-07T23:51:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"freedom\",\"steemit\",\"steempower\"],\"users\":[\"craig-grant\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/pb7shsTextM\\/0.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/07\\/20160907_200828f7272.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=pb7shsTextM\",\"https:\\/\\/steemit.com\\/steem\\/@ned\\/increasing-curation-demand-for-steem-power-and-community-interaction\",\"https:\\/\\/www.homechef.com\\/invite\\/ezxbJf89eBnV\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T00:31:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 3501633293272,
+    "parent_author": "",
+    "parent_permlink": "freedom",
+    "pending_payout_value": "1.473 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steem-report-curation-and-steem-power-ideas-by-ned",
+    "post_id": 887381,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "STEEM report, curation and steem power ideas by Ned",
+    "title": "STEEM report, curation and steem power ideas by Ned",
+    "total_payout_value": "0.000 HBD",
+    "url": "/freedom/@craig-grant/steem-report-curation-and-steem-power-ideas-by-ned"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6037220797579",
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "6188577829665",
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "44768805123",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275442884564",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104040479",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768680486",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683998880",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6866537342197",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54822763106",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62230748588",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663275306",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213794688",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624987874",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973106272",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2426634324",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288351745",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "407365466819",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 0,
+        "rshares": "5909000055",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34065858898",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1676027632124",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1426395561",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12169071403",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2014177224856",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110343825376",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56082132071",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208041294929",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "810326494",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687280474158",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82816554383",
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52215058764",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328801133166",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5337878917",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11267463759",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27228156990",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13487365582",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48416629676",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916861351",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25669997218",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1716002786",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7545983800",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25386139768",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70391342282",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297488015220",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11496127617",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62030829",
+        "voter": "farotz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17391787537",
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9074805566",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79579408",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69901150",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60418402",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7577221661",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54523663",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25313560101",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336916962",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71104606",
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78462337",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112139269",
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143652897",
+        "voter": "zaidkhalifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158720852",
+        "voter": "carloss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130634157",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149129648",
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154943231",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145903154",
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138768078",
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150546432",
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Community & Social Media Manager\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for an exceptional communicator to be the liaison between Steemit and our rapidly growing user base.  This is a role where you will be an expert in building and growing communities on and offline; you\u2019ve got ideas for this and can implement them.  You can also think big picture and for the long term \u2013 your ideas will reflect that.  Online communities are where you thrive and as such you know how to leverage them and will be able to do so for Steemit.  You have a track record of getting things done, live and breath social media, and want to work with a fast growing company that will change the world.\n\n### Responsibilities\n- Help deliver a best in class user experience to Steemit users who engage with us through social media\n- Be an active voice on relevant channels as a Steemit advocate\n- Monitor and post content to and across other social media networks including Facebook, Twitter, Reddit, etc. on a daily basis\n- Develop and track performance metrics for social media channels and advise on ways to maximize performance\n- Develop customer acquisition strategies through social media channels\n\n### Qualifications\n- 2 or more years of experience managing a brand's online presence\n- Motivated self-starter with great communication and writing/editing skills\n- Ability to collaborate and work with others, taking their viewpoints into consideration\n- Good judgment, professionalism, and levelheadedness as a social media ambassador\n- Nice to have: Interest in cryptocurrency and blockchains with experience in the community\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 2344,
+    "cashout_time": "2016-10-09T20:59:42",
+    "category": "steemit",
+    "children": 21,
+    "created": "2016-09-08T14:25:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitjobs\",\"jobs\",\"marketing\",\"socialmedia\"],\"image\":[\"https:\\/\\/farm9.staticflickr.com\\/8190\\/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:53:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 25834048756473,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "40.211 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "new-steemit-job-posting-community-and-social-media-manager",
+    "post_id": 892705,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Community & Social Media Manager",
+    "title": "New Steemit Job Posting: Community & Social Media Manager",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitjobs/new-steemit-job-posting-community-and-social-media-manager"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5918843919195",
+        "voter": "proskynneo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3094288914832",
+        "voter": "val-a"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "44768805123",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281563837555",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104040479",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768680486",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683998880",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54822763106",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62230748588",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663275306",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213794688",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624987874",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "973106272",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2378101638",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288351745",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51320362201",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415852247378",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "9200",
+        "reputation": 0,
+        "rshares": "5909000055",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33254767020",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1676027632124",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1412752719",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12169071403",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2014177224856",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54982482422",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181123599305",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "810326494",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81192700375",
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52215058764",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5444636495",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26683762212",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13487365582",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2234056550",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127663674848",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47467283996",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898149895",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7545983800",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25386139768",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2844677790",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11270713350",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "637699371",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439786891",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9074805566",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578660489",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60418402",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3470902934",
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433189",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282267928",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330178623",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72720620",
+        "voter": "timalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78462337",
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109940460",
+        "voter": "steemitjobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65836326",
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130634157",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146022781",
+        "voter": "koma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158042096",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145903154",
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138768078",
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153557360",
+        "voter": "quintonlyn"
+      }
+    ],
+    "author": "steemitjobs",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](https://farm9.staticflickr.com/8190/29530201275_dfa5fb3fac_b.jpg)\n# Blockchain Developer\n\n### Who We Are \nSteemit is a social media and blockchain platform where the community\u2019s voice and time are worth something.  Facebook, Twitter, and Instagram\u2019s success is built on the backs of its users. With Steemit, we embrace a blockchain-based community in which people earn for their contributions.  Steemit is gaining traction on the forefront of a social media, marketplace, and blockchain revolution with the goal of building an online community that\u2019s cooperative and resistant to censorship.  \n\n### Who We're Looking For\nWe are looking for a blockchain developer who can work in an extremely faced paced environment to help scale the Steemit platform over the next year and beyond. You will be an essential member of the team who will provide added agility and expertise to ensure an unbeatable product.\n\n### Responsibilities\n- Independently identify and manage bugs, schedule tasks, investigate code\n- Handle full development cycle of components (formalize task, write code, test, set-up and support production, resolve user requests)\n- Write flexible, manageable, and modular code that can adapt to post-launch change\n- Build scalable, efficient, high performance solutions\n\n### Qualifications\n- Bachelor\u2019s in Computer Science (or similar) or equivalent experience\n- Expert in C++ or newer\n- Hands on experience with Git\n- Collaborative team player capable of listening to different perspectives and implementing the best solution based on those views\n\nIf this is a job that you are interested in, please send your resume to `jobs@steemit.com`.  We'll be waiting!\n\n*This position is located in Blacksburg, VA*",
+    "body_length": 1715,
+    "cashout_time": "2016-10-09T21:23:18",
+    "category": "steemit",
+    "children": 2,
+    "created": "2016-09-08T15:11:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitjobs\",\"blockchain\",\"developer\"],\"image\":[\"https:\\/\\/farm9.staticflickr.com\\/8190\\/29530201275_dfa5fb3fac_b.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T15:54:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 14341719035931,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "22.508 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "new-steemit-job-posting-blockchain-developer",
+    "post_id": 893081,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "New Steemit Job Posting: Blockchain Developer",
+    "title": "New Steemit Job Posting: Blockchain Developer",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitjobs/new-steemit-job-posting-blockchain-developer"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28865473791883",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2822583339584",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4339707086",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5268554676",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "976380503",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75752807018",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2325712728",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299151591",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1279332871690",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "871946798",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1354285541",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403435231",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57716131545",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432241835",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602018562",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7007671362",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "917350412",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534741041304",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327889281",
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19561969515",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16046775777",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2657821576",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42659441690",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10893076834",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3542969768",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13857628632",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243356345",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254384994",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51813376221",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939239897",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2686695411",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "674473714",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1855582800",
+        "voter": "cogliostro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180153284",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17164865565",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28001566151",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "397267296",
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9694463412",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14373499173",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843609166",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29199353747",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110699909",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11495766018",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1146615954",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55509747",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2918567318",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24159309306",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1044738152",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12047560332",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391259806",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3538727871",
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23192834686",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226292406",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94397808",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18956641949",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1274868167",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142968891",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316250142",
+        "voter": "robotev1"
+      }
+    ],
+    "author": "karnal",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft1.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcRUQJDxUHXwUw-2IUifJunmmclmXY8N6NIc1svap6AXtqhFO53sNA&sp=9ad62521135e5c6f264578818d174278)\n\nMention the word alimony and a lot of men begin to get uncomfortable. It such a rife subject even in developed nations that political ambitions can be made or broken depending on one's stance about this. Unfortunately so many people have failed to realize that this is quite a private subject for men. There are circumstances that stem up and would make a man have to make a serious decision about his health and his future.\n\nTherefore no socio-political, cultural or religious factor should be made to take the place of his decision. A man should have the right to choose whether he wants to keep a child or not. After all it is his wallet, his wealth and his future that is in jeopardy.\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft2.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcReT4wovWfBByJ2G5q0g7NtdeBNiEBw3UkbpzxENjTi7jhH6LDYzQ&sp=e88be8f88c2ebf5e6b418d469f046195)\n\nIt is, however, unfortunate that a lot of countries continue to criminalize and shame so-called \"dead-beat dads\" even when the wealth of the father is at stake.\n\nFor instance a man called Terry Power. *His face tightened as he listened to his wife's attorney tick off their assets on the final day of his divorce trial. He sat in a leather chair at a glass-covered table inside a paneled judicial chamber and he thought not for the first time that her voice annoyed him.*\n\n*The Jet Ski . . . his wife's attorney said.*\n\n*\"Sold to pay attorney fees,\" Terry interjected.*\n\n*The IRA account?*\n\n*\"Distributed to pay property taxes on the marital property.\"*\n\n*The Raymond James investment account?*\n\n*\"Gone.\"*\n\n*Terry's wife, Murielle, petite with blond highlights, stared at him as if he were an insect, then looked down at her hands. After five years in divorce court, they were like old prizefighters in their respective corners.*\n\n*In February 2008, when Murielle Marie Helene Fournier vs. Terrance Paul Power was but a single document inside a purple file at the Pinellas County Courthouse, when Terry had his own business and made $250,000 a year, he thought of divorce court as a place where grievances were smoothed over and order restored. Now as he represented himself in his own divorce trial because he couldn't afford an attorney, his case having grown to 28 volumes and costing about $400,000 (much of it still unpaid), he viewed the system of marital justice as a journey down the rabbit hole.*\n\n*The gold coins?*\n\n*\"I have no idea.\"*\n\n*The hutch?*\n\n*\"Sold.\"*\n\n*As their divorce trial concluded, Murielle's attorney finally got around to alimony, the issue that had bogged down the case from the start. Terry had delivered his first of six alimony offers to Murielle a month after the divorce was filed: $5,400 a month until he retired, plus $50,000 cash and half the contents of their million-dollar home, which was underwater. The last letter, delivered to her attorney the month before the trial, offered her zero.*\n\n*\"Frankly I don't give a crap if she settles or not,\" he had written. \"I'd rather see her waste even more money. Like she made me do for these past four years.\"*\n\n*Now Murielle's attorney suggested a different amount: \"She's 50 years old and she doesn't have many skills, Judge . . . $6,500 a month should keep her in a decent place.\"*\n\n*Terry rolled his eyes.*\n\n*(adapted from [here](http://www.tampabay.com/features/humaninterest/the-divorce-from-hell-the-battle-for-alimony-and-emptied-pockets/2112875))*\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTmQO0c1JzFPIMQa8Ru-GZ7uNCxPWjtmSjsXXAPtrF28Vpp_Emaow&sp=1c9cf8d87d7d7625aba83f15e30270f3)\n\nMarriage is a very risky condition for the modern man and a lot of men are going to run into complications during this period and suicide is going to be their only saving grace. To cancel this option before hand for them is very inhumane thing to do as far as I\u2019m concerned.\n\n![](http://assets.nydailynews.com/polopoly_fs/1.1906336.1408258966!/img/httpImage/image.jpg_gen/derivatives/article_1200/news-robinwilliams-obit-2-la.jpg)\n\nIn another sad antithetical case, men in most countries are being forced to pay alimony when they clearly do not want such procedures carried out on them. In the United States, in order to uphold the nonsensical drivel of feminist policy, men are forced to go to jail if they refuse to pay - even if the child is not theirs!\n\nIn Switzerland, as many other places, men are forbidden from seeing their children, many times due to false allegations on the part of the mother. It is referred to as female deception. [Recently a new born baby girl was found in a dumpster and had to be rushed to the hospital to received urgent medical attention](http://news.nationalpost.com/news/canada/london-ont-police-charge-23-year-old-mother-two-days-after-dead-baby-found-in-dumpster).\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTqkHuavHk3tNlbtsfZBsUMPdGt6YUNf3b6AmoqFh-F-wd3DWJL-g&sp=dfc9275990e22e1e14f3e6bc00de0df2)\n\nThere are other cases where a man should be allowed to have a future. For example if he is not ready, financially, to support a child it is very unhealthy for such a gentleman to be forced to carry that child to adulthood. Many gentlemen have had to quit school in order to take up poor paying jobs to support a child they were not ready to have. For the welfare of father and child, young gentlemen should be allowed to make decisions on whether they want to keep paying or not.\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTcjI0bLH3GAUML1JKT0gnY073u7KcK6nxcxuz_XM_DOtJslMI6SA&sp=ffe625608bf04a3406b769867fbfab1e)\n\nMost men also get broke from horrifying experiences like divorce rape and to force such a gentleman to keep a child that will only remind him of an unfortunate and painful wife is very wicked. Most people will argue that divorce involves taking the life of an innocent man but they are just a mass of undeveloped testicles that are not even a complete human yet. It doesn't even have a developed nervous system yet and as such cannot feel emotions. And it is even sad that most religions try to guilt people into keeping a marriage at the expense of the husbands's happiness. The fathers\u2019s decision should always hold supreme as it is his wallet and he should have the final decision on what he wants to do with it. And he can always live to have healthy babies in the future.\n\n![](http://www.brocode.com/wp-content/uploads/2012/12/brobama.jpg)",
+    "body_length": 6765,
+    "cashout_time": "2016-10-02T12:16:27",
+    "category": "abortion",
+    "children": 19,
+    "created": "2016-09-01T10:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"abortion\",\"men\",\"pro-choice\",\"life\",\"steemit\"],\"image\":[\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft1.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcRUQJDxUHXwUw-2IUifJunmmclmXY8N6NIc1svap6AXtqhFO53sNA&sp=9ad62521135e5c6f264578818d174278\",\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft2.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcReT4wovWfBByJ2G5q0g7NtdeBNiEBw3UkbpzxENjTi7jhH6LDYzQ&sp=e88be8f88c2ebf5e6b418d469f046195\",\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTmQO0c1JzFPIMQa8Ru-GZ7uNCxPWjtmSjsXXAPtrF28Vpp_Emaow&sp=1c9cf8d87d7d7625aba83f15e30270f3\",\"http:\\/\\/assets.nydailynews.com\\/polopoly_fs\\/1.1906336.1408258966!\\/img\\/httpImage\\/image.jpg_gen\\/derivatives\\/article_1200\\/news-robinwilliams-obit-2-la.jpg\",\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTqkHuavHk3tNlbtsfZBsUMPdGt6YUNf3b6AmoqFh-F-wd3DWJL-g&sp=dfc9275990e22e1e14f3e6bc00de0df2\",\"https:\\/\\/s14-eu5.ixquick.com\\/cgi-bin\\/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTcjI0bLH3GAUML1JKT0gnY073u7KcK6nxcxuz_XM_DOtJslMI6SA&sp=ffe625608bf04a3406b769867fbfab1e\",\"http:\\/\\/www.brocode.com\\/wp-content\\/uploads\\/2012\\/12\\/brobama.jpg\"],\"links\":[\"http:\\/\\/www.tampabay.com\\/features\\/humaninterest\\/the-divorce-from-hell-the-battle-for-alimony-and-emptied-pockets\\/2112875\",\"http:\\/\\/news.nationalpost.com\\/news\\/canada\\/london-ont-police-charge-23-year-old-mother-two-days-after-dead-baby-found-in-dumpster\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T12:43:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34032380908060,
+    "parent_author": "",
+    "parent_permlink": "abortion",
+    "pending_payout_value": "130.891 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "alimony-my-wallet-no-choice",
+    "post_id": 821887,
+    "promoted": "93.304 HBD",
+    "replies": [],
+    "root_title": "Alimony: His Wallet, No Choice",
+    "title": "Alimony: His Wallet, No Choice",
+    "total_payout_value": "0.000 HBD",
+    "url": "/abortion/@karnal/alimony-my-wallet-no-choice"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1300",
+        "reputation": 0,
+        "rshares": "4000975898439",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33250846024",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748581030023",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297041068093",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34688108074",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3933191505",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431723281",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10075379390",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1091598557",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "86226608664",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302683064",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198782719642",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53588462318",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10056526674",
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1474999091",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1554048723",
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4297945677",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17119266780",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4370747754",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452064608",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7768702097",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "10248594270",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95075182250",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21862344199",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7428316001",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "187832844048",
+        "voter": "laonie"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "6307774269",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "102478673665",
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3835966474",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "19821725614",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86237877",
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "1800",
+        "reputation": 0,
+        "rshares": "24584535688",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "1438747070",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35467788361",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1551051361",
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3570283559",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "235328801",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1325687037",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11509623311",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1400671466",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "901855752",
+        "voter": "steemzine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97596413",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376986574",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52283518",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55770485",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322592441",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136773607",
+        "voter": "iggy"
+      }
+    ],
+    "author": "steemzine",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Shit gets rough every now and then. Life is a pain and sometimes you just need something to pick yourself up out of a rut and into a new mind frame.&nbsp;</p>\n<p>Here are 5 simple things you can do if you are not having the greatest day. They can simply change your mood and take you from one negative state to a more optimistic and <a href=\"www.instagram.com\">positive one.&nbsp;</a></p>\n<h2><img src=\"http://www.in-spirelsmagazine.co.uk/wp-content/uploads/2014/04/Think-Positive-In-spire-LS-Magazine-2.jpg\"/></h2>\n<h2>1. Put on your Jam And Throw Away Some Junk&nbsp;</h2>\n<p>Yup pump up your latest \"jam\" and start throwing junk out! One way to decide what to throw out is ask your self these two questions.&nbsp;</p>\n<ul>\n  <li>When was the last time I used this? If the answer is 6 months ago or more....then...</li>\n  <li>Do I really need to keep it? Or can it go to a better home.&nbsp;</li>\n</ul>\n<h2>2. One persons trash is another persons treasure.&nbsp;</h2>\n<p>Don't just throw it in the bin, pass it on to a new home. Go donate it. Someone can probably put it to good use! So this is a sure fire way to start a chain of positivity. Act positive and you will be positive.&nbsp;</p>\n<h2>3. Surround Yourself With Humour And A Good Friend.&nbsp;</h2>\n<p>Pick up the phone and say hello to a friend. Have a laugh, get your funny endorphins rolling around in your body. There is no better way to do this than to make a connection with someone and have a giggle.&nbsp;</p>\n<h2>4. Reminisce A Little&nbsp;</h2>\n<p>This is an odd one, but the brain often glorifies good moments in your life. So pull out the photo album of your last wild getaway or family holiday and have a think of the good times. This will put a smile on your dial.&nbsp;</p>\n<h2>5. Plan Something</h2>\n<p>Last but not least put a plan on paper, book a little trip, book a night out and go to the cinemas. We all need to have things we look forward to on a weekly basis, this is the stuff that keeps you going . You place the light at the end of the tunnel no on else. So turn on the light and plan a little night :)&nbsp;</p>\n<p><br></p>\n<p>I hope you found these helpful. They are things I do all the time if I'm not feeling the best! Share with us below what you do. :)&nbsp;</p>\n<p>#steemit #steemzine #psychology #life &nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 2339,
+    "cashout_time": "2016-10-01T17:14:57",
+    "category": "steemit",
+    "children": 4,
+    "created": "2016-08-31T01:44:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemzine\",\"psychology\",\"life\",\"\"],\"image\":[\"http:\\/\\/www.in-spirelsmagazine.co.uk\\/wp-content\\/uploads\\/2014\\/04\\/Think-Positive-In-spire-LS-Magazine-2.jpg\"],\"links\":[\"www.instagram.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T22:02:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 6055119383758,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6.393 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemzine-27-five-things-to-make-you-feel-better",
+    "post_id": 807842,
+    "promoted": "89.000 HBD",
+    "replies": [],
+    "root_title": "STEEMZINE #27 - Five Things To Make You Feel Better",
+    "title": "STEEMZINE #27 - Five Things To Make You Feel Better",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemzine/steemzine-27-five-things-to-make-you-feel-better"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit_paginated.pat.json b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit_paginated.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..2274b4469f432adae72bb3e21e132a786c42cfc7
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit_paginated.pat.json
@@ -0,0 +1,11542 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 29150477200511,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 701289384385,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 25414633165852,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7174019152101,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 210082807921,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1764791171902,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 624152304261,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4648685890081,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6351970742614,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099420761,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762775739,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697355955,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7188761077812,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 481370244096,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54042459354,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 32970728002,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 425105452508,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26810306273,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661039186,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213669926,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 38923095598,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 64581427225,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 15818603292,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 398943529648,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2463177709510,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1856507042,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9947524418,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2438952883,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1452823187408,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622762084,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1120034999305,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967255526,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2771175740309,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 839864397684,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 136849931495,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 65907216897,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6554332244,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288151719,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23957331951,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14107159251,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14365023000,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 881970618,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 77103074369,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 314721920304,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 71043895599,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 24175856122,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 11709056510,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2945062368,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1087651795909,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5074405568,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41145563244589,
+        "rshares": 829397963387,
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 520911060129,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8059030205,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 475449654,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 844668962218,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5581844145,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 19479953917,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 26181526037,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056240258,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 330922076737,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 10610979162,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9268194915,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 677773729537,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 928388769,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 2557289360,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 91719101598,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59225313172,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 141414573060,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 13116548685,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 55582109386,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 236099584762,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 59558616330,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 55235327891,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73982297699,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 582588520898,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432017470,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7304641272,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2510175673478,
+        "rshares": 25681264725,
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 19944116455,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 42338694092,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 534614046975,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 63018482318,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 16492689268,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24310014144,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9361058328,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3674081134736,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 372036035609,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1449559018397,
+        "rshares": 6472724320,
+        "voter": "tom-sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 371338569,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 52893388475,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 254528506273,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53001732751,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "1500",
+        "reputation": 65989046107177,
+        "rshares": 90478643138,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12944835075,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 54146897521,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 199373714258,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 9459589952,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 266447843894,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 501068247274,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37015270307,
+        "rshares": 327889281,
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1948772954,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2644116640,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 138950405749,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 767974669228,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6009304227,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6200536920826,
+        "rshares": 70959553359,
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 98088341974,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 269875655864,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 44099614167,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6874971065,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 28278082847,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7225093759945,
+        "rshares": 8989505147,
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6767512298331,
+        "rshares": 41629748060,
+        "voter": "treeshaface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3660956268,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8702193878,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12845439804,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 3475503565,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 302683064,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 199741557,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 236520170145,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8561508638,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 214476092245,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 42481260342,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3112847393,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 5856624277,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3893522363454,
+        "rshares": 226933661994,
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 15179347364,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122110321617,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 124699737174,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 15389739696,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9786117166130,
+        "rshares": 20713322105,
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 546797902965,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 29887760404,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380128900631,
+        "rshares": 293427569,
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 230296351,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8721417924,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 77587644053,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 476648200946,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3541453614,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 211552013,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 195806237,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 823925676,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 24638975246,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 150447264693,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42813525,
+        "rshares": 7172948519,
+        "voter": "ashikmiah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 42831693849,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7726853303,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 812099979,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16166163778,
+        "rshares": 246668071,
+        "voter": "meiks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 919975933,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 666787941,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 5814827093,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3013710280,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11280533352,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 39456765083,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 192958794775,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 5305619945,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 10678601154,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4185662810,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 58809847081,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1396522137,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 349307643,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 293677046360,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11184349825,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 4245765824,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 369337292,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 2875639977,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 11249031580,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1140298026,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 297463655,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 2180799492,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15413678024,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 19745928897,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4461061038,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1939224933,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 2992631645,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 437754345,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37719378911,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9709066337974,
+        "rshares": 25483068946,
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 12396216231,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3409584558,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 58723641585,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 27478627702,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6880831700,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18787146710,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 14042810323,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1575842910797,
+        "rshares": 10048486235,
+        "voter": "tessaddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3145819717,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 231654921805,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 25046106508,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 4647865096,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 36117391359,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 78635089731,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958834221798,
+        "rshares": 3476354385,
+        "voter": "mastletter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40107084,
+        "rshares": 155789703,
+        "voter": "xand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203745188637,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1016267553073,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 26882316910,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10519849768972,
+        "rshares": 10192963847,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1683543474,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255303484,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255686119,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147914638,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148750003,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84813726,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 261379803,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 31846354099,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207787451268,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2501806576,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5062409505,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2564054618,
+        "rshares": 112070311,
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1951690317,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60975043955,
+        "rshares": 686451244,
+        "voter": "clonewarz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 14847664684,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 10761876132,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841259695,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20113867987,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7262356354,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 217563709,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17534589350,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1203192685557,
+        "rshares": 1793399910,
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 618773038,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17164865565,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 408950035,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 219368610,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 10855436202,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76805770,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2077025402,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 117818134,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 125682243,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 861558297,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456070989,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 27752122387,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 5449172599,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 124605670789,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1023333164,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 52633105216,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8765080527,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 731831758,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5411545736,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 52489886,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 46610922073,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 14656318513,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 52102443,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23337147272,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2595700392,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 20215747355,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 23051494572,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3801240661,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 482511907124,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 4673772256,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9241877973,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 34796180612,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2221730069,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3651315001,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1911888642586,
+        "rshares": 2561315048,
+        "voter": "uuuhha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 102188578929,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46067925183928,
+        "rshares": 256407267931,
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1291393037,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 12816228337,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 94576187995,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3532206423,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 57523014,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166646264775,
+        "rshares": 1694788518,
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 687490845,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 59458578,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 52502611,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3401416945201,
+        "rshares": 1228509011,
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795134,
+        "rshares": 54355927,
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 436393958,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2751128831351,
+        "rshares": 5653663246,
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 273860901,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": -9068872902,
+        "rshares": 61293441,
+        "voter": "chrismarketing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234905614,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 59896309,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 593072231,
+        "rshares": 61696026,
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 27919047116,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1636585181,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52405452,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 11443509504,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117292449,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62391219,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 52400873,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 7142895146,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 72982892,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 61874235,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1157125253,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 37801320901,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2427660705,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20523010963,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 596060484,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": -52839282898,
+        "rshares": 288080558,
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 6763113815,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 296332739,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1428185120,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3239749695,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2510434809,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 59993245,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 8646097362,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 301096603,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59226282,
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 70234608899,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 39122184230,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 73706708,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63845074863,
+        "rshares": 1779402721,
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 10832852934,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 7757948841,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 12474263816,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1734880593,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1734036671982,
+        "rshares": 959083434,
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740952354750,
+        "rshares": 307241644,
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28397805329,
+        "rshares": 61576570,
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1258080185,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8298658614343,
+        "rshares": 5110452751,
+        "voter": "lesliestarrohara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18957179674,
+        "rshares": 60364183,
+        "voter": "uri-bruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1241673056,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 17764316625,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56761351,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 74585233974,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55633002031,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6435147485147,
+        "rshares": 14150272924,
+        "voter": "macksby"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 59103677,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 74584024,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339886160,
+        "rshares": 394178677,
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55140441,
+        "voter": "steemitup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 21483815812,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1713129061,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 115141637,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 37275195891,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15859669622,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 57184430,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1511945712631,
+        "rshares": 3725515516,
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 352639183151,
+        "rshares": 5661463232,
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013640486,
+        "rshares": 55473809,
+        "voter": "alternative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5854747574,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 490887668,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 16076822216,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 82786113,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55725073,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 633133259080,
+        "rshares": 58126364,
+        "voter": "chaeya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23191446542,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9370846764,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2759964885,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4840990082,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55093071,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 53110243,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55070425,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 117997260,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52794249,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54839629,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 54036170,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 108903782,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 57522774,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 70034816,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52521499,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 242929782471,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 68637522935,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 37138701009,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54601718,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54464024,
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53400199,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 52041445,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33451402996481,
+        "rshares": 130590614407,
+        "voter": "jamielefay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 53143662,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2610482432,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1575506866,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 142968891,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 92282121,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 3022511117,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1145958608976,
+        "rshares": 89109313,
+        "voter": "everittmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55976796,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4965019350,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50686168,
+        "voter": "jcdobber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277100322,
+        "rshares": 50658555,
+        "voter": "dillon-sauers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 50182215,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50817111,
+        "voter": "mehran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1206003099947,
+        "rshares": 293689087,
+        "voter": "iontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13744830964,
+        "rshares": 50420952,
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 249226300,
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1632559314,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3727858482,
+        "rshares": 61342952,
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154276916,
+        "voter": "memnon34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155926994,
+        "voter": "hethzen"
+      }
+    ],
+    "author": "the-alien",
+    "author_reputation": 57302509663422,
+    "beneficiaries": [],
+    "body": "![Alt text](http://cdn.dailyseoblog.com/wp-content/uploads/2015/11/Competition_SEO.jpg)\n\nNew competition is in town, here I said it. Many people don\u2019t like competition, some people fear it, some people get motivated by it, and some people see it as an opportunity that helps them step up to the next level.\n\nPersonally, I get the same emotional reflex from new competition than I get from any change of weather, it doesn\u2019t really faze me that much.  Long time ago I\u2019ve learned to open a new folder in my brain containing all the elements that I can\u2019t control, and the emergence of new competition certainly qualifies for that folder.\n\nAnd the reason I do that is because I think that the worst thing you possibly can do is to let your fear-based reactions make your decisions for you.\n\nAlthough to be totally honest with you, I\u2019d be an idiot if I told you to completely ignore competition and act as if doesn\u2019t don\u2019t exist. \n\nSometimes it\u2019s well worth your attention because it may show you something you\u2019ve missed, it may remind of why you do what you do in the first place, and depending on the competition, it can even help you improve and advance. \n\n![Alt Text](http://2.bp.blogspot.com/-jCsWg5lEM9w/To2MZ4wwQMI/AAAAAAAAI8Q/VNo2kdw4ot8/s640/Matrix_067Pyxurz.jpg)\n\nA few months ago a new disruptive technology came to the world. It allowed all sorts content creators to make some income doing what they love, all while bypassing the restrictive censorship of armies of gate keepers around the world. And since you\u2019re reading this, then you\u2019re probably using it too.\n\nBut here\u2019s the thing, when what you do is truly amazing, you can\u2019t really expect that no one else is going to try to replicate it. In fact, the strange thing would be that if no one was ever going to attempt to create \u201cthe new steemit\u201d.\n\nAfter all, competition is a part of life, and it\u2019s almost here so maybe it\u2019s time we talked about it.\n\n# Dancing with Mr. Ying and Miss Yang\n\nOn the positive side, competition can make us stronger and more connected. All those small debates and unnecessary dramas would suddenly take a back seat to more important matters. \n\nIt can motivate us to up our game and take it to the next level. It can encourage us to keep improving so we don\u2019t get too comfortable. It can help us realize what we have, and not take it for granted. \n\n![Alt Text](http://3.bp.blogspot.com/-TVDMaHEL61w/U1_ZuVFcttI/AAAAAAAAMvg/dt0wlqDLFWI/s1600/living+in+the+matrix.jpg)\n\nBut there's another way  to approach competition, the Yang way, where you can go to that room where you archive all those things that you can\u2019t control, head towards the door and kick it wide open. Just sit there and let fear invade you.\n\nI know this sounds crazy, but believe it or not, the second most common thing people do in face of competition is to fear it and let them rush into making unnecessary decisions. Now, I don\u2019t know about you but to me panic doesn\u2019t precisely strike me as a solid strategy.\n\nHowever, I do understand why some people might experience some concerns. *\"Look, there\u2019s a new competition, they have a brand new website, their logo looks so professionally made, their name is so catchy. Hell, they even have shiny shoes\u2026\"* \n\nFrom that point on, it will be just a matter of time until this question starts circling around: *What if people start pouring there?*\n\nI hate to break it to you, but these things can and will probably happen.\n\nA few steemians will move there and that\u2019s ok. In fact, that\u2019s very understandable, they will have their reasons. Maybe they go on their own, or maybe they will have an offer to join. \n\nSo when that happens, there are two things that you can do:\n\nYou can worry that people are migrating elsewhere, or you can remember the \u201csecret\u201d: That they will never stop making people. \n\nPlus, if that if the goal is expansion, then it\u2019s a comfort knowing that the journey hasn\u2019t changed and that we\u2019re still on the same course.\n\n# Destination Moon\n\nThat  are enough potential users in the planet for everyone, they will never stop making people, remember? \n\nPlus, if the dream was grow and reach hundreds of thousands, maybe millions of people, then nothing has really changed in the grand scheme of things. right?\n\nMaybe a few will leave and it\u2019s ok, maybe they\u2019ll come back quickly afterwards, maybe they won\u2019t or maybe this is a good opportunity to remember:\n\n## That moon we all talked about, our moon, is still the goal.\n\n![Alt Text](https://s9.postimg.io/ptqv6s6of/Untitled_design.png)\n\n*Picture dedicated to @smooth.  Thank you for the logo advice!*\n\n# A View from the Future\n\nSo in the future if you read some open letters from some prominent writers explaining why they moved away to the competition, so maybe we don't need to give these things more importance than they deserve.\n\nSometimes diversification is a smart move, sometimes people need to look for what\u2019s best for them, and sometimes they look for whatever they perceive as such. Whatever the case may be, it\u2019s still their choice and they are free to change their minds.\n\nAnd yes, we will probably read a few editorial posts about *\u201cWhy I left steemit for X\u201d* and maybe a little worry might circle your train of thought. \n\nMaybe their reasons are totally valid, or maybe they\u2019re unconsciously making up a story with which they can justify it to themselves. So all of the sudden every small problem is magnified and the grass on the other side looks greener. It happens.\n\nEither way, it\u2019s not our place to judge them.\n\nAnd yes, the preachers of doom will jump at the opportunity to parade their psychic abilities, *See? People are leaving steemit already. I told you!*, but when that happens please remember that we\u2019re talking about people who never let a good crisis go to waste. So whatever they say should probably be taken with a fine pure grain of Himalayan salt.\n\nThese are things that we can\u2019t control, here\u2019s what we can do.\n\nWe can step up, we can up our game, we can show them what this platform has already proved, we can remember why we joined and that maybe, just maybe show them that we are still fighting for that fucking moon.\n\nBecause let\u2019s not forget, steem is third behind Bitcoin and Ether.\n\n### And just as Bitcoin had so many new competing coins that were going to completely erase it from the map, we\u2019ll probably hear the same song again.\n\n![Alt Text](http://tr1.cbsistatic.com/hub/i/2014/11/04/27691a45-1606-4647-9093-637886cc89be/forecast-crystal-ball-prediction.jpg)\n\nThere will be many death predictions too. Bitcoin had about a hundred of them, so don't be surprised when that happens.\n\nBut what if I\u2019m wrong and the competition is very strong?\n\nWell then we learn to compete better. Competition is a part of life, and it can make you better if you know how to approach it. In fact, [I wrote about the subject in the past](https://steemit.com/life/@the-alien/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age).\n\nSo this goes for those of us who experienced the life changing abilities of this platform, and especially for those who are crazy enough to still believe in the same dream that we are at the beginning  stages of a beautiful game changer. For those who still have the same passion about disruptiveness as in the first day, here\u2019s something that we can do:\n\n# We Can Bet on Our Strengths\n\n![Alt Text](https://pbs.twimg.com/media/Cm8iJ91XEAIVokI.jpg)\n\nWe can focus on what steemit has achieved already and introduce it to the world. How many people have made some good income already? How many projects has steemit helped? How many it has brought in to life? How many relationships have been forged?\n\nSo maybe you\u2019re a filmmaker looking for a good story, maybe you can make a documentary about the lives that steemit has changed and its future effects on society, maybe the rest of us can help you.\n\nMaybe I should listen to my own words and lead by example. Maybe I should carve out some time and finally launch my very own book that was born out of pure steem.\n\nOr maybe we shouldn\u2019t have to do anything at all. Maybe we shouldn\u2019t have to step up our game just yet, and ignore any competition.\n\nI\u2019m not quite sure.\n\nWhatever the case may be, I just want you to know that if you\u2019re here for the long run, than you should know that more competition will come, and when that happens don\u2019t listen to the alarming voices and trust your own judgement.\n\nI want you to know that it\u2019s not the end, that this is the beginning and that I hope that you\u2019re still enjoying this beautifully game changing ride and not planning to give up your seat just yet.\n\n#### Image Sources: [1](http://dailyseoblog.com/how-to-discover-your-competitions-seo-strategies/) - [2](http://pyxurz.blogspot.com.br/2011/10/matrix-page-2-of-7.html) - [3](http://humansarefree.com/2014/04/16-signs-that-you-are-slave-living-in.html)- [4](http://wallpaper.zone/carlsberg-wallpaper) - [5](http://www.techrepublic.com/article/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends/) - [6](https://twitter.com/riaali4)",
+    "body_length": 9016,
+    "cashout_time": "2016-09-07T20:01:03",
+    "category": "life",
+    "children": 90,
+    "created": "2016-08-31T20:01:03",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"life\",\"steemit\",\"competition\",\"psychology\",\"alien\"],\"users\":[\"smooth\"],\"image\":[\"http://cdn.dailyseoblog.com/wp-content/uploads/2015/11/Competition_SEO.jpg\",\"http://2.bp.blogspot.com/-jCsWg5lEM9w/To2MZ4wwQMI/AAAAAAAAI8Q/VNo2kdw4ot8/s640/Matrix_067Pyxurz.jpg\",\"http://3.bp.blogspot.com/-TVDMaHEL61w/U1_ZuVFcttI/AAAAAAAAMvg/dt0wlqDLFWI/s1600/living+in+the+matrix.jpg\",\"https://s9.postimg.io/ptqv6s6of/Untitled_design.png\",\"http://tr1.cbsistatic.com/hub/i/2014/11/04/27691a45-1606-4647-9093-637886cc89be/forecast-crystal-ball-prediction.jpg\",\"https://pbs.twimg.com/media/Cm8iJ91XEAIVokI.jpg\"],\"links\":[\"https://steemit.com/life/@the-alien/blasts-from-the-past-lessons-from-running-a-bar-at-a-young-age\",\"http://dailyseoblog.com/how-to-discover-your-competitions-seo-strategies/\",\"http://pyxurz.blogspot.com.br/2011/10/matrix-page-2-of-7.html\",\"http://humansarefree.com/2014/04/16-signs-that-you-are-slave-living-in.html\",\"http://wallpaper.zone/carlsberg-wallpaper\",\"http://www.techrepublic.com/article/peering-into-the-crystal-ball-it-leader-predict-major-tech-trends/\",\"https://twitter.com/riaali4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T23:28:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 115579310823374,
+    "parent_author": "",
+    "parent_permlink": "life",
+    "pending_payout_value": "1282.366 HBD",
+    "percent_hbd": 10000,
+    "permlink": "we-have-competition-so-what",
+    "post_id": 1075409,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "We Have Competition, So What?",
+    "title": "We Have Competition, So What?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/life/@the-alien/we-have-competition-so-what"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 32455846463901,
+        "rshares": 642721549946,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14422749876087,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3575373896498,
+        "voter": "excalibur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7464607221397,
+        "voter": "firstclass"
+      },
+      {
+        "percent": "5000",
+        "reputation": 8779714777561,
+        "rshares": 3639191953732,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1669923224095,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3717974185,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 213574639759,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4513559168,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836606639,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6988007861700,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5996727817604,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64642495505,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992560012,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256364536,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 39818841412,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 371954710239,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2460761021349,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 16151007755,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 15367378869,
+        "voter": "lee5"
+      },
+      {
+        "percent": "3900",
+        "reputation": 23744414677575,
+        "rshares": 1231163835379,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 79076699259,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19451819636,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747109758,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160364064,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 22287691419,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 348774027722,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345721003,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24424815444,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 9962447624,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 85472012036,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11006097418580,
+        "rshares": 47052482880,
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 51668605167,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3208539412,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14777664032,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 13421601084,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 550131611031,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8054401464,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1427571994880,
+        "rshares": 11394690603,
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 485282260,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5697146207,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 753324601733,
+        "rshares": 638584817,
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 38099821345,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 320314797075,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 9264258149,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 10412058674,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 659470671268,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 262097263544,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3586538842,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3736219522,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 56755039638,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 226277413706,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1105470146,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73899745411,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787734654,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3085996565,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 299422990503,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 555763114,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 61230816598,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 244194157676,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 9343888042,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24793132900,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 4213953082,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11501194922,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 361800166976,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 310003040,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 9062015039,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1544049507187,
+        "rshares": 13825920793,
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379034832,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 49609829871,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 100887290594,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 67218157738,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 168781926859,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4444948583,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 9215212832,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 207639750909,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 72775359846,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 135534940490,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 649863857,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 2070185449,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 151313598203,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 7270287220,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 189534597524,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5593332072,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 107979574982,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089233647296,
+        "rshares": 4132934549,
+        "voter": "crok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 245565399746,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 4972308003,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 26691657968,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 32317449277,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 12407406735,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6731496155,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8077166192,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1061763080,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2000840823,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8698490005,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 7061836326,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 58024990300,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 12820190462,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5944808360,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 234977975,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 53277444047,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5630151895,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 38998653626,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3135864378,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4805051818,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 25329895988,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122037864807,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5942450964,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1949550312939,
+        "rshares": 1399449402,
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 132989014669,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 9678069378,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 653051005053,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1558901402,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 456375266764,
+        "rshares": 69645935778,
+        "voter": "mikemiziner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8348978059,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 68835084756,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12165310382,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 658969843140,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3016989385,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 213566804,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 195795730,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12433580012,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 127921982448,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1088582281,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 27989665079,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 5235602369,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4393022921,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 470865927,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4326102127,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13785486061,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11255732354,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4664449459,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 103415609409,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 38979052441,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 9855694815,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 483030862,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4401948859,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 7769709545,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 52805276639,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 28292287957,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13726024129,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2162692228861,
+        "rshares": 3664108103,
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 247320271,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10404996383,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2265421279,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 421650464,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 11687972825,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 10504748862,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 16957784324,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 43955087155,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 39380899533,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 14477258419,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3802303915,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5603336399,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3857990313,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288999193266,
+        "rshares": 608149252,
+        "voter": "ltndd1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13799232019,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12201911383,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2418631221,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37544436861,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2375612859,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 19954745854,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1432554908,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 58632057805,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 6951568553,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60733709,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 13480328466,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 77066217,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3140171089,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 24333845376,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34507940819,
+        "rshares": 575306930,
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4496265875,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19650090910,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 8983200296,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 66906230856,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 104788510,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203502299985,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 1073667948,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1015996473375,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 27385580346,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "6000",
+        "reputation": 10519849768972,
+        "rshares": 12217525826,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1696363424,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255227790,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255610425,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147899496,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148734861,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84798583,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 701002863,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2997941608767,
+        "rshares": 5508463953,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 203439098227,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1951657512,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 841171661,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20112172284,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 22963130568,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35578875588,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 8206970252,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18436436380,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 574079280,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 1365471076,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 412577837,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 221284317,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 77551309,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2557225302857,
+        "rshares": 5923617216,
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5711413280,
+        "rshares": 6184990126,
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 129066659,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27072053846,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 18648831056,
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 238861651541,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1318009421,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2388216457,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26544745435,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 28261072116,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1150395178,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9217169586,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 52489886,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 37382286273,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 14952644998,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 3863422357,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 53473560,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 22837595162,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2590447050,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5894311908189,
+        "rshares": 14437396418,
+        "voter": "artist1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 20733647424,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 12921898525,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 32699512403,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3732561387,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1112917083,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 636463375,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1964111181,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134345349682,
+        "rshares": 7190118987,
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 15890354633,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 111083493,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127737479,
+        "rshares": 233570693,
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 452879496,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2442169380,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62218938,
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 954937043358,
+        "rshares": 6640826883,
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 49201150707,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 53884258,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 773487823,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11166998088,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3299401993,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 7832829923,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 71551789,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 4540723045,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 3362202338,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1146505325539,
+        "rshares": 375929648,
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 59896309,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 27312396571,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2209169349,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 85721943459,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3462968534090,
+        "rshares": 6982744040,
+        "voter": "bitminter"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 54969817,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 6089195575,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648377040631,
+        "rshares": 1719224371,
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 10519914536,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 75911873,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20118440636,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15562325823,
+        "rshares": 61302506,
+        "voter": "ignat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5584741517,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 62279229,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 8034296271,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 106783648,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 121845327,
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2309373844,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 771632829,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 89747247797,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 438819769,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1941499119,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58571448,
+        "voter": "isaacmorgentaler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 368407925,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 62312186,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 19465520550,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 24299155176,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12663340608,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 8098231266,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 13767766871,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1770994317,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 655924914,
+        "rshares": 58744201,
+        "voter": "myfriends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 239974453639,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 645095426265,
+        "rshares": 1231798813,
+        "voter": "blue1950"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 2313482861,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": -162294290155,
+        "rshares": 58875692,
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8826238500,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 624200855,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 184100704754,
+        "rshares": 56716182,
+        "voter": "sammie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 284047862,
+        "rshares": 54424511,
+        "voter": "matt525"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1679833671371,
+        "rshares": 4007339571,
+        "voter": "asuran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 18209474827,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8113893564,
+        "rshares": 69826982,
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1583451185,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 36471501608,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 55660383,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 12993402861,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 56017401,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1156451912179,
+        "rshares": 230031117,
+        "voter": "rebelmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3947043569,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 89846801,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5465873870,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2241938484,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 413377157,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 53942218,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 79722988,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 3311264992,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58077570820,
+        "rshares": 69606440,
+        "voter": "bmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 56547885,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 97810726,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24760371336,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 860573886,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2577157447,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4592050223,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 232285326,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4494562067,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 91630309,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 50210263,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 379994386,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 37096549717,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 51524412,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10310484518,
+        "rshares": 52676609,
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1774661835,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1643965133,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5812421354,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 3041925009,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2489010152,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50460250,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439002,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50436594,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 56387357,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 791391648,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 25501132189,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1455020482,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 1967797933,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 2869000034,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 1008239952,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972344082,
+        "rshares": 50565379,
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2454253,
+        "rshares": 50357208,
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10990916065,
+        "rshares": 52411214,
+        "voter": "mr189"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 53215131,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 55523890,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 52098977,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4619546516,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24953404448,
+        "rshares": 50431113,
+        "voter": "stringer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50245473,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1390226766,
+        "rshares": 51250081,
+        "voter": "steemjustice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13744830964,
+        "rshares": 50420952,
+        "voter": "mocat15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785932,
+        "rshares": 50299690,
+        "voter": "blakeir"
+      }
+    ],
+    "author": "jesta",
+    "author_reputation": 38947133984552,
+    "beneficiaries": [],
+    "body": "For the time being, DO NOT promote a post that's past it's first payout phase. \n\nI've [opened an issue on github](https://github.com/steemit/steemit.com/issues/199) about the issue and hopefully we'll see a resolution soon.\n\nCurrently you can promote any post, even those past the first payout phase. The problem is that if it's in it's second payout phase or beyond, as soon as someone votes on the post, the promoted status gets completely removed. \n\nI'm putting this message out there to hopefully help avoid any potential frustration this issue may cause.",
+    "body_length": 559,
+    "cashout_time": "2016-09-06T02:57:15",
+    "category": "steemit",
+    "children": 78,
+    "created": "2016-08-30T02:57:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\"],\"links\":[\"https://github.com/steemit/steemit.com/issues/199\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T03:23:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 60433265388165,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "396.443 HBD",
+    "percent_hbd": 10000,
+    "permlink": "psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out",
+    "post_id": 1050849,
+    "promoted": "100.000 HBD",
+    "replies": [],
+    "root_title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "title": "PSA - Don't use the \"Promote Post\" feature on a post that's already paid out once. Only use it for new posts.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@jesta/psa-don-t-use-the-promote-post-feature-on-a-post-that-s-already-paid-out"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28865473791883,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2822583339584,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 4339707086,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 5268554676,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 976380503,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 75752807018,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2325712728,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 299151591,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1279332871690,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 871946798,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1354285541,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 403435231,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 57716131545,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432241835,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 602018562,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7007671362,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 917350412,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 534741041304,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37015270307,
+        "rshares": 327889281,
+        "voter": "hendra-khaidir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19561969515,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 16046775777,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2657821576,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18458799241134,
+        "rshares": 42659441690,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 10893076834,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3542969768,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 13857628632,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 243356345,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1254384994,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 51813376221,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1939239897,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2686695411,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 674473714,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570594013620,
+        "rshares": 1855582800,
+        "voter": "cogliostro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 180153284,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 17164865565,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 28001566151,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54192730483,
+        "rshares": 397267296,
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 9694463412,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 14373499173,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 843609166,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 29199353747,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 110699909,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11495766018,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1146615954,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 55509747,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2918567318,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24159309306,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1044738152,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 12047560332,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 391259806,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1818363378287,
+        "rshares": 3538727871,
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23192834686,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 226292406,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 94397808,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 18956641949,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1274868167,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 142968891,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 316250142,
+        "voter": "robotev1"
+      }
+    ],
+    "author": "karnal",
+    "author_reputation": 18458799241134,
+    "beneficiaries": [],
+    "body": "![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft1.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcRUQJDxUHXwUw-2IUifJunmmclmXY8N6NIc1svap6AXtqhFO53sNA&sp=9ad62521135e5c6f264578818d174278)\n\nMention the word alimony and a lot of men begin to get uncomfortable. It such a rife subject even in developed nations that political ambitions can be made or broken depending on one's stance about this. Unfortunately so many people have failed to realize that this is quite a private subject for men. There are circumstances that stem up and would make a man have to make a serious decision about his health and his future.\n\nTherefore no socio-political, cultural or religious factor should be made to take the place of his decision. A man should have the right to choose whether he wants to keep a child or not. After all it is his wallet, his wealth and his future that is in jeopardy.\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft2.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcReT4wovWfBByJ2G5q0g7NtdeBNiEBw3UkbpzxENjTi7jhH6LDYzQ&sp=e88be8f88c2ebf5e6b418d469f046195)\n\nIt is, however, unfortunate that a lot of countries continue to criminalize and shame so-called \"dead-beat dads\" even when the wealth of the father is at stake.\n\nFor instance a man called Terry Power. *His face tightened as he listened to his wife's attorney tick off their assets on the final day of his divorce trial. He sat in a leather chair at a glass-covered table inside a paneled judicial chamber and he thought not for the first time that her voice annoyed him.*\n\n*The Jet Ski . . . his wife's attorney said.*\n\n*\"Sold to pay attorney fees,\" Terry interjected.*\n\n*The IRA account?*\n\n*\"Distributed to pay property taxes on the marital property.\"*\n\n*The Raymond James investment account?*\n\n*\"Gone.\"*\n\n*Terry's wife, Murielle, petite with blond highlights, stared at him as if he were an insect, then looked down at her hands. After five years in divorce court, they were like old prizefighters in their respective corners.*\n\n*In February 2008, when Murielle Marie Helene Fournier vs. Terrance Paul Power was but a single document inside a purple file at the Pinellas County Courthouse, when Terry had his own business and made $250,000 a year, he thought of divorce court as a place where grievances were smoothed over and order restored. Now as he represented himself in his own divorce trial because he couldn't afford an attorney, his case having grown to 28 volumes and costing about $400,000 (much of it still unpaid), he viewed the system of marital justice as a journey down the rabbit hole.*\n\n*The gold coins?*\n\n*\"I have no idea.\"*\n\n*The hutch?*\n\n*\"Sold.\"*\n\n*As their divorce trial concluded, Murielle's attorney finally got around to alimony, the issue that had bogged down the case from the start. Terry had delivered his first of six alimony offers to Murielle a month after the divorce was filed: $5,400 a month until he retired, plus $50,000 cash and half the contents of their million-dollar home, which was underwater. The last letter, delivered to her attorney the month before the trial, offered her zero.*\n\n*\"Frankly I don't give a crap if she settles or not,\" he had written. \"I'd rather see her waste even more money. Like she made me do for these past four years.\"*\n\n*Now Murielle's attorney suggested a different amount: \"She's 50 years old and she doesn't have many skills, Judge . . . $6,500 a month should keep her in a decent place.\"*\n\n*Terry rolled his eyes.*\n\n*(adapted from [here](http://www.tampabay.com/features/humaninterest/the-divorce-from-hell-the-battle-for-alimony-and-emptied-pockets/2112875))*\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTmQO0c1JzFPIMQa8Ru-GZ7uNCxPWjtmSjsXXAPtrF28Vpp_Emaow&sp=1c9cf8d87d7d7625aba83f15e30270f3)\n\nMarriage is a very risky condition for the modern man and a lot of men are going to run into complications during this period and suicide is going to be their only saving grace. To cancel this option before hand for them is very inhumane thing to do as far as I\u2019m concerned.\n\n![](http://assets.nydailynews.com/polopoly_fs/1.1906336.1408258966!/img/httpImage/image.jpg_gen/derivatives/article_1200/news-robinwilliams-obit-2-la.jpg)\n\nIn another sad antithetical case, men in most countries are being forced to pay alimony when they clearly do not want such procedures carried out on them. In the United States, in order to uphold the nonsensical drivel of feminist policy, men are forced to go to jail if they refuse to pay - even if the child is not theirs!\n\nIn Switzerland, as many other places, men are forbidden from seeing their children, many times due to false allegations on the part of the mother. It is referred to as female deception. [Recently a new born baby girl was found in a dumpster and had to be rushed to the hospital to received urgent medical attention](http://news.nationalpost.com/news/canada/london-ont-police-charge-23-year-old-mother-two-days-after-dead-baby-found-in-dumpster).\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTqkHuavHk3tNlbtsfZBsUMPdGt6YUNf3b6AmoqFh-F-wd3DWJL-g&sp=dfc9275990e22e1e14f3e6bc00de0df2)\n\nThere are other cases where a man should be allowed to have a future. For example if he is not ready, financially, to support a child it is very unhealthy for such a gentleman to be forced to carry that child to adulthood. Many gentlemen have had to quit school in order to take up poor paying jobs to support a child they were not ready to have. For the welfare of father and child, young gentlemen should be allowed to make decisions on whether they want to keep paying or not.\n\n![](https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTcjI0bLH3GAUML1JKT0gnY073u7KcK6nxcxuz_XM_DOtJslMI6SA&sp=ffe625608bf04a3406b769867fbfab1e)\n\nMost men also get broke from horrifying experiences like divorce rape and to force such a gentleman to keep a child that will only remind him of an unfortunate and painful wife is very wicked. Most people will argue that divorce involves taking the life of an innocent man but they are just a mass of undeveloped testicles that are not even a complete human yet. It doesn't even have a developed nervous system yet and as such cannot feel emotions. And it is even sad that most religions try to guilt people into keeping a marriage at the expense of the husbands's happiness. The fathers\u2019s decision should always hold supreme as it is his wallet and he should have the final decision on what he wants to do with it. And he can always live to have healthy babies in the future.\n\n![](http://www.brocode.com/wp-content/uploads/2012/12/brobama.jpg)",
+    "body_length": 6765,
+    "cashout_time": "2016-09-08T10:22:21",
+    "category": "abortion",
+    "children": 19,
+    "created": "2016-09-01T10:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"abortion\",\"men\",\"pro-choice\",\"life\",\"steemit\"],\"image\":[\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft1.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcRUQJDxUHXwUw-2IUifJunmmclmXY8N6NIc1svap6AXtqhFO53sNA&sp=9ad62521135e5c6f264578818d174278\",\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft2.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcReT4wovWfBByJ2G5q0g7NtdeBNiEBw3UkbpzxENjTi7jhH6LDYzQ&sp=e88be8f88c2ebf5e6b418d469f046195\",\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTmQO0c1JzFPIMQa8Ru-GZ7uNCxPWjtmSjsXXAPtrF28Vpp_Emaow&sp=1c9cf8d87d7d7625aba83f15e30270f3\",\"http://assets.nydailynews.com/polopoly_fs/1.1906336.1408258966!/img/httpImage/image.jpg_gen/derivatives/article_1200/news-robinwilliams-obit-2-la.jpg\",\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTqkHuavHk3tNlbtsfZBsUMPdGt6YUNf3b6AmoqFh-F-wd3DWJL-g&sp=dfc9275990e22e1e14f3e6bc00de0df2\",\"https://s14-eu5.ixquick.com/cgi-bin/serveimage?url=http%3A%2F%2Ft3.gstatic.com%2Fimages%3Fq%3Dtbn%3AANd9GcTcjI0bLH3GAUML1JKT0gnY073u7KcK6nxcxuz_XM_DOtJslMI6SA&sp=ffe625608bf04a3406b769867fbfab1e\",\"http://www.brocode.com/wp-content/uploads/2012/12/brobama.jpg\"],\"links\":[\"http://www.tampabay.com/features/humaninterest/the-divorce-from-hell-the-battle-for-alimony-and-emptied-pockets/2112875\",\"http://news.nationalpost.com/news/canada/london-ont-police-charge-23-year-old-mother-two-days-after-dead-baby-found-in-dumpster\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T12:43:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 34032380908060,
+    "parent_author": "",
+    "parent_permlink": "abortion",
+    "pending_payout_value": "130.891 HBD",
+    "percent_hbd": 10000,
+    "permlink": "alimony-my-wallet-no-choice",
+    "post_id": 1082491,
+    "promoted": "93.304 HBD",
+    "replies": [],
+    "root_title": "Alimony: His Wallet, No Choice",
+    "title": "Alimony: His Wallet, No Choice",
+    "total_payout_value": "0.000 HBD",
+    "url": "/abortion/@karnal/alimony-my-wallet-no-choice"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1300",
+        "reputation": 145171381514207,
+        "rshares": 4000975898439,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33250846024,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 748581030023,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 297041068093,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 34688108074,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3933191505,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431723281,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10075379390,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1091598557,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "3900",
+        "reputation": 598181152117,
+        "rshares": 86226608664,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 302683064,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 198782719642,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 53588462318,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 392424265528,
+        "rshares": 10056526674,
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1474999091,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793209170784,
+        "rshares": 1554048723,
+        "voter": "leksimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4297945677,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 17119266780,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4370747754,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 452064608,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7768702097,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "3500",
+        "reputation": 17698439393799,
+        "rshares": 10248594270,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 95075182250,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 21862344199,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 7428316001,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "1700",
+        "reputation": 10771708337101,
+        "rshares": 187832844048,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2100",
+        "reputation": 18027204457681,
+        "rshares": 6307774269,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3900",
+        "reputation": 5776723480371,
+        "rshares": 102478673665,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3835966474,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3700",
+        "reputation": 97845484474,
+        "rshares": 19821725614,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99941487421,
+        "rshares": 86237877,
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "1800",
+        "reputation": 3016325652890,
+        "rshares": 24584535688,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1851205309677,
+        "rshares": 1438747070,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 35467788361,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3552896427510,
+        "rshares": 1551051361,
+        "voter": "scaredycatguide"
+      },
+      {
+        "percent": "3900",
+        "reputation": 4195733833721,
+        "rshares": 3570283559,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "3900",
+        "reputation": 730408370151,
+        "rshares": 235328801,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1325687037,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11509623311,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1400671466,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027674923569,
+        "rshares": 901855752,
+        "voter": "steemzine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 97596413,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 376986574,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 52283518,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 55770485,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322592441,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 136773607,
+        "voter": "iggy"
+      }
+    ],
+    "author": "steemzine",
+    "author_reputation": 1027674923569,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Shit gets rough every now and then. Life is a pain and sometimes you just need something to pick yourself up out of a rut and into a new mind frame.&nbsp;</p>\n<p>Here are 5 simple things you can do if you are not having the greatest day. They can simply change your mood and take you from one negative state to a more optimistic and <a href=\"www.instagram.com\">positive one.&nbsp;</a></p>\n<h2><img src=\"http://www.in-spirelsmagazine.co.uk/wp-content/uploads/2014/04/Think-Positive-In-spire-LS-Magazine-2.jpg\"/></h2>\n<h2>1. Put on your Jam And Throw Away Some Junk&nbsp;</h2>\n<p>Yup pump up your latest \"jam\" and start throwing junk out! One way to decide what to throw out is ask your self these two questions.&nbsp;</p>\n<ul>\n  <li>When was the last time I used this? If the answer is 6 months ago or more....then...</li>\n  <li>Do I really need to keep it? Or can it go to a better home.&nbsp;</li>\n</ul>\n<h2>2. One persons trash is another persons treasure.&nbsp;</h2>\n<p>Don't just throw it in the bin, pass it on to a new home. Go donate it. Someone can probably put it to good use! So this is a sure fire way to start a chain of positivity. Act positive and you will be positive.&nbsp;</p>\n<h2>3. Surround Yourself With Humour And A Good Friend.&nbsp;</h2>\n<p>Pick up the phone and say hello to a friend. Have a laugh, get your funny endorphins rolling around in your body. There is no better way to do this than to make a connection with someone and have a giggle.&nbsp;</p>\n<h2>4. Reminisce A Little&nbsp;</h2>\n<p>This is an odd one, but the brain often glorifies good moments in your life. So pull out the photo album of your last wild getaway or family holiday and have a think of the good times. This will put a smile on your dial.&nbsp;</p>\n<h2>5. Plan Something</h2>\n<p>Last but not least put a plan on paper, book a little trip, book a night out and go to the cinemas. We all need to have things we look forward to on a weekly basis, this is the stuff that keeps you going . You place the light at the end of the tunnel no on else. So turn on the light and plan a little night :)&nbsp;</p>\n<p><br></p>\n<p>I hope you found these helpful. They are things I do all the time if I'm not feeling the best! Share with us below what you do. :)&nbsp;</p>\n<p>#steemit #steemzine #psychology #life &nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 2339,
+    "cashout_time": "2016-09-07T01:44:36",
+    "category": "steemit",
+    "children": 4,
+    "created": "2016-08-31T01:44:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemzine\",\"psychology\",\"life\",\"\"],\"image\":[\"http://www.in-spirelsmagazine.co.uk/wp-content/uploads/2014/04/Think-Positive-In-spire-LS-Magazine-2.jpg\"],\"links\":[\"www.instagram.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T22:02:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 6055119383758,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6.393 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemzine-27-five-things-to-make-you-feel-better",
+    "post_id": 1064846,
+    "promoted": "89.000 HBD",
+    "replies": [],
+    "root_title": "STEEMZINE #27 - Five Things To Make You Feel Better",
+    "title": "STEEMZINE #27 - Five Things To Make You Feel Better",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemzine/steemzine-27-five-things-to-make-you-feel-better"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "6000",
+        "reputation": 13270505121655,
+        "rshares": 37958555221963,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3067363384383,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 478094018503,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1114412761220,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 308797510253,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 117668471628,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 258704941582,
+        "voter": "pal"
+      },
+      {
+        "percent": "2100",
+        "reputation": 15755437221598,
+        "rshares": 5881761534,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "5555",
+        "reputation": 2902053059801,
+        "rshares": 1061225057,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5619821999,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 206055752764,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687457693253,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 6893011543,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 336007709477,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 35382236445,
+        "voter": "clement"
+      },
+      {
+        "percent": "2100",
+        "reputation": 17405459234693,
+        "rshares": 12150749927,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 174834964660,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "2100",
+        "reputation": 4066839697461,
+        "rshares": 1911143023,
+        "voter": "getssidetracked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1106470849861,
+        "rshares": 2260320253,
+        "voter": "cloh76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4997362589971,
+        "rshares": 106715514958,
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 12031186934,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1454011802,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 322883299010,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17817262904,
+        "rshares": 116496190,
+        "voter": "bzeen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45014899,
+        "rshares": 116147067,
+        "voter": "chugumoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 7264246012,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 10147926283,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 309088757,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 202505398624,
+        "rshares": 5405936538,
+        "voter": "livetofly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 7320667894,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984154587642,
+        "rshares": 8481809308,
+        "voter": "chloetaylor"
+      },
+      {
+        "percent": "1200",
+        "reputation": 568560955800,
+        "rshares": 5022832456,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 43547132598,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "8000",
+        "reputation": 7172977970558,
+        "rshares": 2597513528,
+        "voter": "ace108"
+      },
+      {
+        "percent": "500",
+        "reputation": 4063076365725,
+        "rshares": 238512214,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 3864529222,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22613377010,
+        "rshares": 71342284,
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 55075582585,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10279076152,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2704342364,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 6742131662,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1158727876,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 3412724038,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "3000",
+        "reputation": 18890223518661,
+        "rshares": 23315754846,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 17657884574,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 9139349966,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2340457693,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900204,
+        "rshares": 57599950,
+        "voter": "veronik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57487444,
+        "voter": "morega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89481141,
+        "rshares": 2575797724,
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 4654649325,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": 33842169712,
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 1067000528,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 453412386,
+        "voter": "totosky"
+      },
+      {
+        "percent": "1600",
+        "reputation": 176228976143,
+        "rshares": 1523069868,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19226007273,
+        "rshares": 57461594,
+        "voter": "mj6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 860856358,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271380763884,
+        "rshares": 176586448,
+        "voter": "natord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165924295987,
+        "rshares": 196786352,
+        "voter": "mgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1478840966,
+        "rshares": 156821466,
+        "voter": "charlie.wilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158532208,
+        "voter": "landria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1309073721476,
+        "rshares": 645216982,
+        "voter": "reddust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735338572201,
+        "rshares": 185748745,
+        "voter": "mrlemmer11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155564281,
+        "voter": "ddh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5727517045,
+        "rshares": 152254165,
+        "voter": "royfft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18462154,
+        "rshares": 154912101,
+        "voter": "diogo.jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 453683074,
+        "rshares": 151754313,
+        "voter": "dek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 527766248,
+        "rshares": 151380239,
+        "voter": "forever-gala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737359525,
+        "rshares": 141937635,
+        "voter": "sawgunner13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 150939275,
+        "voter": "xaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1602620,
+        "rshares": 135751381,
+        "voter": "dirlei.sdias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153386890,
+        "voter": "jvon"
+      }
+    ],
+    "author": "mrlemmer11",
+    "author_reputation": 735338572201,
+    "beneficiaries": [],
+    "body": "<html>\n<p><br>\n</p>\n<p>A simple and informative method to explain Steem Mining to new people:</p>\n<p>A few nights ago my girlfriend Trena asked me what I was doing. My response of 'mining' was quickly met with an elongated pause with 'huh?' immediately proceeding. It was in this moment which I was stuck with the daunting task of making my best attempt to explain exactly what the heck I was doing. Recalling my prior failed efforts to accurately explain this to others, I decided on a different approach. I'm not sure how this came about as I had not invested any time on this analogy prior, but I simply said, 'Mining Steem and crypto-currencies is like being a Taxi Driver.'</p>\n<p><center><img src=\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\"/></center></p>\n<p><center><a href=\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\">Image Credit</a></center></p>\n<h2>What does a Taxi Driver do?</h2>\n<blockquote>A taxi driver is a professional driver who transports passengers to their chosen destinations through the use of a taxi cab. By transporting their passengers, they earn a fare depending on the length of the taxi cab ride.</blockquote>\n<p>https://www.sokanu.com/careers/taxi-driver/</p>\n<p><br></p>\n<p>Why does one want to be a Taxi Driver?</p>\n<ol>\n  <li>They earn a fare</li>\n  <li>They enjoy driving</li>\n  <li>They are comforatable being in a vehicle</li>\n  <li>They like the company of others</li>\n</ol>\n<p>Why does one want to be Miner?</p>\n<ol>\n  <li>they earn a reward</li>\n  <li>they enjoy technology</li>\n  <li>they are comfortable being on a computer</li>\n  <li>they like crypto-currencies</li>\n</ol><center>\n<h2>Just for the Money?</h2>\n<p><img src=\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\"/></p>\n<p><a href=\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\">Image Credit</a></center></p>\n<p>Before venturing into the first desire above, it is important to realize that cumulative weight of secondary motivations and beyond are typically necessary to achieve the fare/reward. From my understanding (and definitely not from waking up in the morning hundreds of dollars short than when I started the night prior!) individuals who dance and take their clothes off can make a very large 'fare/reward' as well! Knowing this, doesn't that mean I should do that too?! For me, the answer is a hard NO. I personally do not have the confidence, dancing abilities or free-natured spirit those individuals have. In the same light, a person who despises driving, is scared in a vehicle and loathes the company of others, likely wouldn't make a very good Taxi Driver. Lastly, individuals who are scared of technology, frightened by computers and do not want to be around crypto-currencies would have a difficult time mining.</p>\n<p><br></p>\n<center><h2>Now that we understand how important the combined weight of secondary motivations are to one's decision to become either a Taxi Driver or a Miner, let's explore how exactly a fare/reward is made.&nbsp;</h2>\n<p><img src=\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\"/></p>\n<p><a href=\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\">Image Credit</a></center></p>\n<ul>\n  <li>The job of the Taxi Driver is to navigate geographic terrain to a specified location provided by the passenger. Payment of a fare from the passenger to the Taxi Driver is confirmation that the job was executed successfully.&nbsp;</li>\n  <li>In terms of mining, the job of the miner is to navigate digital data in an attempt to verify digital contracts and transfers from other users (passengers). Payment of a reward from other users to the miner is confirmation that the digital data was successfully verified. &nbsp;&nbsp;</li>\n</ul>\n<p><br></p>\n<ul>\n  <li>If the Taxi Driver is unsuccessful and drops the passenger off at a different location, or his vehicle breaks down, the passenger does not need to provide compensation regardless of how close they are. Even if the Taxi Driver arrives at the correct location but several hours later than originally required, compensation may and probably won't be provided.</li>\n  <li>If a miner is unsuccessful in verifying assigned transactions of digital data, no reward will be provided. If the miner confirms transactions hours or days later, no reward will be provided.</li>\n</ul>\n<p><br></p>\n<h2>Ok, so this seems broad enough for most individuals to understand. Let us explore what is required to make all this happen.&nbsp;</h2>\n<p><center><img src=\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\" width=\"736\" height=\"920\"/></center></p>\n<p><center><a href=\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\">Image Credit</a></center></p>\n<p>Taxi Drivers should have the following items in order to receive a fare:</p>\n<ol>\n  <li>A Vehicle --- The Taxi Driver does not need to own one. Some Taxi Drivers work for a company who provide one to them for a cost.</li>\n  <li>Gasoline</li>\n  <li>A Map/GPS</li>\n  <li>A pocket for cash payments or a Credit Card machine to take payments</li>\n</ol>\n<p>Miners should have the following items in order to receive a reward: &nbsp;</p>\n<ol>\n  <li>A Computer --- The Miner does not need to own one. Some Miners pay for a computer in the 'cloud.' If a miner chooses this option, a fee will be paid from the Miner to the company providing the computer.</li>\n  <li>Electricity</li>\n  <li>An interface which provides their computer with the information they need to verify</li>\n  <li>A digital wallet to receive payment of their rewards</li>\n</ol>\n<p><br></p><center>\n<h2>I have all of those items! So now I need to sit at my computer all day and actively mine?</h2>\n<p><img src=\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\" width=\"251\" height=\"205\"/></p>\n<p><a href=\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\">Image Credit</a></center></p>\n<p>Nope. When you first get in to a Taxi it is stationary and the driver is paying attention to you to find out where you want to go. From there,&nbsp;the driver typically has a conversation on his phone, chit-chats with you, drinks coffee, eats and obsessively blows his horn. The actual driving of the vehicle for the Taxi Driver is second nature to him and he has an amazing ability to multi-task. The Taxi Driver did all of those&nbsp;things for your entire trip but ultimately he got you to your destination... so you paid him.</p>\n<p>The same goes for mining. You turn on your computer and point the mining program to it's digital destination. From there you are able to&nbsp;minimize the program and do anything else you so choose to. The computer knows in the background what needs to be done and just does it for&nbsp;you.</p>\n<p><br></p><center>\n<h2>Are you telling me that I can Mine while streaming Netflix and building a huge customer database for my company at the same time?</h2>\n<p><img src=\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&amp;h=800&amp;crop=1\" width=\"1200\" height=\"800\"/></p>\n<p><a href=\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&amp;h=800&amp;crop=1\">Image Credit</a></center></p>\n<p>Everything has limitations. For the Taxi Driver who uses a Ford Focus for a vehicle, it would be quite difficult for him to pick of a family of 15&nbsp;Sumo Wrestlers. This is difficult for two reasons:&nbsp;</p>\n<ol>\n  <li>The Taxi Driver will likely not have the space in his Ford Focus for the family.&nbsp;</li>\n  <li>If&nbsp;he is Harry Houdini and somehow fits them all in, the weight of the car will be so tremendous it would take hours to arrive at the&nbsp;destination.</li>\n</ol>\n<p>The same is true for your computer. Mining requires you to have memory and processing power. The Memory is equivalent to the space inside of&nbsp;the Ford Focus. The Processing Power is equivalent to the speed of the Ford Focus. If your other activities take up a lot of memory, or slow down&nbsp;your computer's speed, then it is recommended to using the mining tool when you are not actively using your computer.</p>\n<center><p><img src=\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\" width=\"384\" height=\"352\"/></p>\n<p><a href=\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\">Image Credit</a></center></p>\n<p>Admittingly this analogy does not afford a person the resources to go and create CabCoin anytime soon. It was sufficient enough however for Trena who told me that she understood and appreciated the explanation. After which came another elongated pause and then she asked, 'So, we're going to become millionaires now?!'</p>\n<p><br></p>\n<p><br></p>\n<p><center><img src=\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\" width=\"156\" height=\"70\"/></p>\n</center><center><p>Please share, upvote and follow if you enjoyed this Original Content. Cheers!</p>\n</center></html>",
+    "body_length": 9064,
+    "cashout_time": "2016-09-21T03:07:33",
+    "category": "steemit",
+    "children": 16,
+    "created": "2016-09-14T03:07:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"mining\",\"crypto\",\"guide\",\"life\"],\"image\":[\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\",\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\",\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\",\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\",\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\",\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&h=800&crop=1\",\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\",\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\"],\"links\":[\"http://hireagreek.com/wp-content/uploads/2012/03/Cab.jpg\",\"https://www.sokanu.com/careers/taxi-driver/\",\"http://media.nbcconnecticut.com/images/653*367/stripper+generic+black+white.jpg\",\"http://www.marilynomalley.com/wp-content/uploads/2015/04/MoneyMap.jpg\",\"https://s-media-cache-ak0.pinimg.com/736x/4d/21/3c/4d213c01fdfc017db9394ecd19a2dffc.jpg\",\"http://media.tumblr.com/tumblr_lxgdqeHIut1qcpel0.jpg\",\"https://lisasatomidotcom.files.wordpress.com/2014/08/dsc04533-e1406962297583.jpg?w=1200&h=800&crop=1\",\"http://i984.photobucket.com/albums/ae329/lzsleggs/currency/NYTransittokensideA.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-14T03:18:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 45496544001648,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "126.774 HBD",
+    "percent_hbd": 10000,
+    "permlink": "how-steem-mining-is-quite-similar-to-being-a-taxi-driver",
+    "post_id": 1239469,
+    "promoted": "80.000 HBD",
+    "replies": [],
+    "root_title": "How Steem Mining is quite similar to being a Taxi Driver",
+    "title": "How Steem Mining is quite similar to being a Taxi Driver",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@mrlemmer11/how-steem-mining-is-quite-similar-to-being-a-taxi-driver"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7522075256853,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 24988348886256,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "3000",
+        "reputation": 1133069631465,
+        "rshares": 9901828793949,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36025763130607,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2496029970194,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "3300",
+        "reputation": 51047995307721,
+        "rshares": 3288561279691,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "500",
+        "reputation": 20297981245452,
+        "rshares": 422917366153,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1112236856849,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1183862689597,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 312196904148,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24248742779,
+        "voter": "jaewoocho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104274241,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3768967241,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10026510714787,
+        "rshares": 98293661014,
+        "voter": "testz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684023815,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6262040942648,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54879922251,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663376608,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213796245,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 211173098584,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185067624745,
+        "rshares": 2179750028854,
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 76449229334,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 3649298703094,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 425545852651,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 412795654359,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 724454198454,
+        "rshares": 149519862664,
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6451379962,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1297104191956,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 479173275727,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 58301259311,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 625011253,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973151466,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 20925089971,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 400815204843,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 25536159117,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 126314629886,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 311760015914,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288356419,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6000",
+        "reputation": 9469162,
+        "rshares": 51523044174,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 24301983295,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 317661921087,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 565165844,
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 4092550231,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 79790877765,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25134704062,
+        "rshares": 554083555,
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2999169193553,
+        "rshares": 4229901343,
+        "voter": "atomrigs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 47076852463,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8312507,
+        "rshares": 542657562,
+        "voter": "panmeur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 21463792797,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 401576015977,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 11524469542,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "8065",
+        "reputation": 12382143533351,
+        "rshares": 478171148244,
+        "voter": "eeks"
+      },
+      {
+        "percent": "800",
+        "reputation": 4931834878069,
+        "rshares": 1516993575,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2067432843,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 335151732396,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "800",
+        "reputation": 5414208804644,
+        "rshares": 2660762796,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 1031904899,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 143474566462,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7756564648,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 43838713879,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 490963482,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426405521,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 596609188,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 1014021436859,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 61541292423,
+        "voter": "theshell"
+      },
+      {
+        "percent": "3100",
+        "reputation": 16234753830016,
+        "rshares": 25360606957,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 54554448698,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 147474797358,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 352099935937,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53652979111,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 20737376375,
+        "voter": "samether"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5888717170887,
+        "rshares": 20441782051,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 24830088226,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 191689407723,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2988407596343,
+        "rshares": 31384002121,
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1177241468,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19582695354,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 30445271769,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173865949638,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 687283775705,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "800",
+        "reputation": 598181152117,
+        "rshares": 16109589732,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 471231170,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 44581007671,
+        "voter": "clement"
+      },
+      {
+        "percent": "3300",
+        "reputation": 336763673779,
+        "rshares": 67353282904,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 59389039635,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 33316496731,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55883294544,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "5900",
+        "reputation": 1402029831983,
+        "rshares": 8232743777,
+        "voter": "wefdi"
+      },
+      {
+        "percent": "2100",
+        "reputation": 1959446497877,
+        "rshares": 1043405105,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 12819399545,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 805014389604,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "4100",
+        "reputation": 3181753819665,
+        "rshares": 4993479281,
+        "voter": "jay4u"
+      },
+      {
+        "percent": "800",
+        "reputation": 19111656178138,
+        "rshares": 5165462249,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 728943966,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 6226920004,
+        "voter": "owdy"
+      },
+      {
+        "percent": "800",
+        "reputation": 9142611234,
+        "rshares": 52802898,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1591182061,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1468179089306,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982686864185,
+        "rshares": 5543993422,
+        "voter": "secom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1429626348,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1194448323,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4725192532,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10536548854,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 215588792605,
+        "voter": "jesta"
+      },
+      {
+        "percent": "5000",
+        "reputation": 475226720101,
+        "rshares": 17496195281,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3762588821,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24462855657,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 280868838879,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 16063833668,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 399177345,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44419603271,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 37955810506,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 87211957,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127815186400,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 166457850344,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "2500",
+        "reputation": 741654237981,
+        "rshares": 1668103782,
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 20090141106,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 3061930750,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 7507318975,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3573032836,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 23249882297,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 182915328244,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 7072481705,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "800",
+        "reputation": 10519849768972,
+        "rshares": 1638811638,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 9869776299,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 3980845591,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 710213220,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 14316005865,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 41105371277,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15588069737,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639294741,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 26668886727,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "800",
+        "reputation": 17698439393799,
+        "rshares": 2640228486,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 5526372219,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 13899591365,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "800",
+        "reputation": 147425730,
+        "rshares": 53921295,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 40053798507,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 156341247,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26059897,
+        "rshares": 113500096,
+        "voter": "peace77"
+      },
+      {
+        "percent": "7500",
+        "reputation": 4063076365725,
+        "rshares": 2305218289,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18454999414,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 3254259308,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1254441972,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "4800",
+        "reputation": 988942038058,
+        "rshares": 35209586477,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7880937531,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8710090850955,
+        "rshares": 36891688832,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 63257042,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 64457212,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "800",
+        "reputation": 10771708337101,
+        "rshares": 95032455818,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23121983186,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "3500",
+        "reputation": 7564464865541,
+        "rshares": 7786511219,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "800",
+        "reputation": 18027204457681,
+        "rshares": 3913140293,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "800",
+        "reputation": 5776723480371,
+        "rshares": 19342356456,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 17327320500,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "800",
+        "reputation": 206355094166,
+        "rshares": 723540075,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "7734",
+        "reputation": 1751717743,
+        "rshares": 11858584602,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 181872789178,
+        "rshares": 1015711349723,
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3715674298536,
+        "rshares": 9752646840,
+        "voter": "mrweed"
+      },
+      {
+        "percent": "800",
+        "reputation": 97845484474,
+        "rshares": 4273763897,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4081288848,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60963253140,
+        "voter": "ssm1810"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150617632004,
+        "rshares": 15450353150,
+        "voter": "tommycoin"
+      },
+      {
+        "percent": "800",
+        "reputation": 3016325652890,
+        "rshares": 10652439829,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1890555526,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21440262662,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5608801378,
+        "rshares": 65105820,
+        "voter": "korose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1296524008,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 62525016,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 116629075,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "800",
+        "reputation": 1851205309677,
+        "rshares": 334316050,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 64952156,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 61009676,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 62978439988,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 170925323,
+        "rshares": 56698723,
+        "voter": "dmns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 59146649,
+        "voter": "steemo"
+      },
+      {
+        "percent": "800",
+        "reputation": 4195733833721,
+        "rshares": 673691369,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 58994070,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58969965,
+        "voter": "nyoba"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 74480084,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50027573,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 59901741,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3991918600385,
+        "rshares": 5635633617,
+        "voter": "userlogin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525888505148,
+        "rshares": 18470040669,
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 12697983735,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57933957,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "5500",
+        "reputation": 1313908206948,
+        "rshares": 3649124709,
+        "voter": "blocho"
+      },
+      {
+        "percent": "1100",
+        "reputation": 13325577893779,
+        "rshares": 3418565775,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2043228058601,
+        "rshares": 190168923,
+        "voter": "cryptomental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 13246920821,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57772261,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57754194,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56573535,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57764404,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56566121,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56161396,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 7674854463,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3837911452,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2688695430,
+        "rshares": 59196527,
+        "voter": "rgla216"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56145566,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4595623910,
+        "rshares": 59160726,
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57991172,
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "5000",
+        "reputation": 17676358821986,
+        "rshares": 14180456361,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 7066713736,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 703482676,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55085378,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14762167320947,
+        "rshares": 43794544469,
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 55091113,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54739685,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54730557,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 10072410872,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55501723,
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54362089,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 352639183151,
+        "rshares": 5774724528,
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54019345,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54017499,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 892494003,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53655807,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53331040,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53324520,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318865,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 2062521702,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25841078460,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54085429,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 3283008303,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641341984,
+        "rshares": 54793782,
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 54556846761,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 394704692,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950372517145,
+        "rshares": 459120073,
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53055629,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1347001825,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 2284345748,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 3196982382,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 175912776027,
+        "rshares": 1610026744,
+        "voter": "bontonstory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 90855304,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 136546238548,
+        "voter": "skt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51484593,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 316214146,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 225136890,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1245115709001,
+        "rshares": 898379463,
+        "voter": "twinbraid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 59746972,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6098187003516,
+        "rshares": 4055464024,
+        "voter": "luzcypher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 543618786,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 79254686,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160907900,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33024540131,
+        "rshares": 111492251,
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116818017503,
+        "rshares": 184673908,
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56431137,
+        "voter": "serikus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446608067,
+        "rshares": 155990992,
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48393566209,
+        "rshares": 155911120,
+        "voter": "blackheart304"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146185843,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653762508,
+        "rshares": 155496536,
+        "voter": "alterego"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155166744,
+        "voter": "catman69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16912046,
+        "rshares": 154958886,
+        "voter": "jovic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 123954585,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2981585837,
+        "voter": "cgp17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 154476148,
+        "voter": "hacon"
+      }
+    ],
+    "author": "clayop",
+    "author_reputation": 31405352060596,
+    "beneficiaries": [],
+    "body": "## Summary\nThis post introduces two new statistics about influences on rewards with the consideration of the leverage of Steem Power (IPR) to provide more through understanding about the whale issue.\n\n\n## Introduction\n\nThe whale issue of Steem is one of the most frequently debated topic from its beginning. But we still do not have through understanding regarding the current situations, such as how much whales have influences on rewards, or how unequal the situation is. In this post, I would like to introduce two new statistics, 1) Influences on (author) rewards, 2) Influence to Steem Power Ratio (IPR), to provide more comprehensive knowledge about the whale issue.\n\n\n\n## Methods\n\nThe data is from Steem blockchain from 2016/8/16 (After v0.13.0) to 2016/9/8.\nInfluences of whales on rewards is calculated based on the following equations.\n\n```\n- Rshares of a post: sum(voters_rshares)\n- Vshares of a post: (posts_rshares)^2\n- Daily vshares: sum(posts_vshares)\n- Voter's vshares on a post: posts_vshares * (voters_rshares / posts_rshares)\n- Voter's daily vshares: sum(voters_vshares)\n- Voter's influence: voters_daily_vshares / daily_vshares\n```\n\nTo get IPR, we just need a simple equation.\n```\n- IPR = Influence / (voters_vests / total_vests)\n```\n*Note: Steemit account's vests are excluded from total_vests*\n\n\n## Results\n\nRank | Account | Influence(%) | Steem Power (%) | IPR\n:----:|:----:|----|----|----\n1\t|\tsmooth\t|\t13.34\t|\t2.86\t|\t4.67\n2\t|\tblocktrades\t|\t11.60\t|\t3.71\t|\t3.13\n3\t|\tberniesanders\t|\t10.55\t|\t2.97\t|\t3.55\n4\t|\tsteemed\t|\t3.92\t|\t1.62\t|\t2.42\n5\t|\titsascam\t|\t3.82\t|\t1.53\t|\t2.49\n6\t|\ttombstone\t|\t3.62\t|\t1.87\t|\t1.93\n7\t|\tdantheman\t|\t3.51\t|\t2.54\t|\t1.38\n8\t|\tsummon\t|\t3.11\t|\t1.29\t|\t2.41\n9\t|\tjamesc\t|\t2.78\t|\t3.20\t|\t0.87\n10\t|\tcomplexring\t|\t2.37\t|\t0.67\t|\t3.52\n11\t|\tsmooth.witness\t|\t2.32\t|\t0.53\t|\t4.37\n12\t|\twang\t|\t1.97\t|\t0.66\t|\t2.97\n13\t|\tnextgencrypto\t|\t1.81\t|\t0.51\t|\t3.53\n14\t|\trainman\t|\t1.78\t|\t1.51\t|\t1.18\n15\t|\trecursive\t|\t1.56\t|\t0.31\t|\t5.11\n16\t|\tsilversteem\t|\t1.55\t|\t0.46\t|\t3.39\n17\t|\triverhead\t|\t1.53\t|\t0.68\t|\t2.23\n18\t|\tpharesim\t|\t1.53\t|\t0.88\t|\t1.74\n19\t|\tned\t|\t1.52\t|\t5.73\t|\t0.27\n20\t|\tsteemit200\t|\t1.38\t|\t0.57\t|\t2.42\n21\t|\tsteempty\t|\t1.30\t|\t0.69\t|\t1.87\n22\t|\tkushed\t|\t1.15\t|\t0.50\t|\t2.29\n23\t|\txeldal\t|\t1.15\t|\t0.64\t|\t1.79\n24\t|\thr1\t|\t1.00\t|\t0.21\t|\t4.69\n25\t|\tsatoshifund\t|\t0.99\t|\t0.35\t|\t2.85\n26\t|\tenki\t|\t0.91\t|\t0.53\t|\t1.71\n27\t|\tval-a\t|\t0.91\t|\t2.80\t|\t0.32\n28\t|\tsilver\t|\t0.74\t|\t0.19\t|\t3.85\n29\t|\tau1nethyb1\t|\t0.72\t|\t0.42\t|\t1.71\n30\t|\tbadassmother\t|\t0.63\t|\t0.26\t|\t2.44\n\nSurprisingly, top 10 have about 60% (actually over 60% since `smooth` and `smooth.witness` is controlled by same person) of author rewards, while they only have 22% of Steem Power. And the top 3 (`smooth`, `blocktrades`, `berniesanders` consist of 35.5% of influences, for instance, if daily author reward is $20,000, about $7,000 is from these three's voting activities. The average IPR of the top 10 is 2.63, but if we do the same calculation with rank 41~50, they only have IPR of 0.75. This means that influences on rewards is unequally distributed, more specifically it is biased to some whales.\n\n![](http://i.imgsafe.org/26684444a1.jpg)\n\nAdditionally, I calculated some basic statics about top rankers voting patterns.\n\n- Range: Number of unique writers they voted for\n- Mean: Average number of votes per writer\n- Max: Maximum number of votes on a writer\n- Stdev: Standard deviation of votes\n\nRank | Account | Range | Mean | Max | Stdev\n:----:|:----:|----|----|----|----\n1\t|\tsmooth\t|\t340\t|\t2.32\t|\t65\t|\t7.49\n2\t|\tblocktrades\t|\t480\t|\t1.31\t|\t22.4\t|\t1.51\n3\t|\tberniesanders\t|\t785\t|\t1.27\t|\t14.5\t|\t1.7\n4\t|\tsteemed\t|\t80\t|\t3.64\t|\t44\t|\t6.43\n5\t|\titsascam\t|\t79\t|\t3.69\t|\t44\t|\t6.49\n6\t|\ttombstone\t|\t196\t|\t1.64\t|\t12.1\t|\t2.18\n7\t|\tdantheman\t|\t339\t|\t0.66\t|\t10.3\t|\t1.23\n8\t|\tsummon\t|\t220\t|\t1.65\t|\t14.4\t|\t1.99\n9\t|\tjamesc\t|\t135\t|\t1.1\t|\t12.8\t|\t1.81\n10\t|\tcomplexring\t|\t534\t|\t1.75\t|\t39\t|\t3.04\n11\t|\tsmooth.witness\t|\t324\t|\t2.4\t|\t65\t|\t7.61\n12\t|\twang\t|\t213\t|\t8.29\t|\t82\t|\t10.41\n13\t|\tnextgencrypto\t|\t755\t|\t1.4\t|\t14\t|\t1.51\n14\t|\trainman\t|\t170\t|\t1.18\t|\t9.7\t|\t1.3\n15\t|\trecursive\t|\t121\t|\t9.78\t|\t51\t|\t11.76\n16\t|\tsilversteem\t|\t760\t|\t1.82\t|\t15\t|\t2.08\n17\t|\triverhead\t|\t334\t|\t1.53\t|\t12.6\t|\t1.4\n18\t|\tpharesim\t|\t404\t|\t2.03\t|\t54\t|\t3.89\n19\t|\tned\t|\t238\t|\t0.18\t|\t2.6\t|\t0.35\n20\t|\tsteemit200\t|\t175\t|\t2.41\t|\t13\t|\t2.29\n21\t|\tsteempty\t|\t164\t|\t2.89\t|\t34\t|\t4.84\n22\t|\tkushed\t|\t250\t|\t2.61\t|\t84\t|\t7.36\n23\t|\txeldal\t|\t204\t|\t2.92\t|\t48\t|\t5.65\n24\t|\thr1\t|\t104\t|\t10.34\t|\t52\t|\t11.86\n25\t|\tsatoshifund\t|\t130\t|\t2.51\t|\t21\t|\t3.61\n26\t|\tenki\t|\t174\t|\t3.22\t|\t46\t|\t5.58\n27\t|\tval-a\t|\t75\t|\t0.36\t|\t1.5\t|\t0.42\n28\t|\tsilver\t|\t763\t|\t1.83\t|\t15\t|\t2.13\n29\t|\tau1nethyb1\t|\t205\t|\t1.97\t|\t11\t|\t1.79\n30\t|\tbadassmother\t|\t235\t|\t2.75\t|\t15\t|\t2.77\n\n\n\nAmong these statistics, max and stdev should be highlighted, since higher numbers imply that a whale's voting is very concentrated (possibily due to his/her preferences or favorable connection with authors?), and this can further create perception of inequality. (People recursively see high rewards on same author's posts). For comparison, while `blocktrades` and `berniesanders` have similar influences with `smooth`, they have much lower max and stdev, which implies that their votes are widely dispersed to many writers. But we can see very high max and stdev in `hr1`, `recursive`, `wang`, and `smooth`. In addition, we can find `smooth` and `smooth.witness`, and `recursive` and `hr1` have the similar patterns respectively, probably because each pair of accounts is using the same voting bot.\n\n\n## Wrap-up\n\nThe results show that influence is much higher than whales' actual steem power, especially by active whale bots. In my humble opinion, the fundamental cause is the squared rshares, which makes large voting power much greater. We need further discussion about this issue and have to address it for better Steem society.\n\n\n### P.S. Do you think that I have to post these stats everyday, weekly, or monthly? (Everyday data has influence and IPR only because the second table requires more samples)",
+    "body_length": 5929,
+    "cashout_time": "2016-09-16T07:44:36",
+    "category": "stats",
+    "children": 52,
+    "created": "2016-09-09T07:44:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"stats\",\"steemstats\",\"steem\",\"steemit\"],\"image\":[\"http://i.imgsafe.org/26684444a1.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-10T02:38:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 114295236077684,
+    "parent_author": "",
+    "parent_permlink": "stats",
+    "pending_payout_value": "772.883 HBD",
+    "percent_hbd": 10000,
+    "permlink": "how-much-do-whales-influences-on-rewards-introducing-new-statistics",
+    "post_id": 1181735,
+    "promoted": "80.000 HBD",
+    "replies": [],
+    "root_title": "How Much Do Whales Influences on Rewards? Introducing New Statistics",
+    "title": "How Much Do Whales Influences on Rewards? Introducing New Statistics",
+    "total_payout_value": "0.000 HBD",
+    "url": "/stats/@clayop/how-much-do-whales-influences-on-rewards-introducing-new-statistics"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3125880993338,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 408289760599,
+        "voter": "lafona"
+      },
+      {
+        "percent": "2000",
+        "reputation": 20297981245452,
+        "rshares": 1488951561218,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1042393900131,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314660513280,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3718242946,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 204675696436,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4513908950,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836654069,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64676583521,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992692418,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256370467,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 779706217649,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 258831864092,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 15405606665,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747149284,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160439161,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2661949408710,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 294379086507,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345736815,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411003001399,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5074340107,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 37289186848,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 887821271,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787813756,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19203629337,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 351472513122,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 197868013655,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11501194922,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 310003040,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 168786451071,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 207639750909,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21377142974,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 649863857,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 125488800966,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3404245483553,
+        "rshares": 20477012370,
+        "voter": "keithwillshine"
+      },
+      {
+        "percent": "3800",
+        "reputation": 598181152117,
+        "rshares": 81550066393,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 5078101791,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1901149350,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8358099209,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 7061836326,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161732195491,
+        "rshares": 398408180,
+        "voter": "artem-sokoloff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52093500846,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5517904010,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 119597107511,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 10102298181,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5825119560,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25445356820,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 295356843,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12165310382,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 455676704,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11263291480,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 187927799041,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 34393459049,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51605156715,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 235543115,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10404996383,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2210167101,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 18791650123,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 61808290901,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 39381536274,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1666843562,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 14122971768,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 60718837,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 104788510,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 9947377892,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58265386995,
+        "rshares": 3646489258,
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 10898752497,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960761826,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 36290453100,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 17698439393799,
+        "rshares": 10226666674,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 10955022647,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2388216457,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 26544745435,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 37382286273,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 14354586582,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "400",
+        "reputation": 10771708337101,
+        "rshares": 61773284051,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2900",
+        "reputation": 18027204457681,
+        "rshares": 11256852364,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3800",
+        "reputation": 5776723480371,
+        "rshares": 95543829460,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3800",
+        "reputation": 206355094166,
+        "rshares": 3592062376,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 19797420121,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99941487421,
+        "rshares": 84546938,
+        "voter": "casandrarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 636463375,
+        "voter": "romancs"
+      },
+      {
+        "percent": "400",
+        "reputation": 3016325652890,
+        "rshares": 7006195248,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10158772596,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 113446972,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127737479,
+        "rshares": 238337441,
+        "voter": "sillygoon"
+      },
+      {
+        "percent": "3400",
+        "reputation": 1851205309677,
+        "rshares": 1313251435,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62218938,
+        "voter": "watchblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 49201239700,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -257389679751,
+        "rshares": 117591207,
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 7679327381,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "3800",
+        "reputation": 4195733833721,
+        "rshares": 3302144579,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1718249749,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "3800",
+        "reputation": 730408370151,
+        "rshares": 220517413,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 6147352384,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 5956821758,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 69848769518,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5475236782,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 62279229,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 7876761050,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87991131377,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4410847044,
+        "rshares": 228117853,
+        "voter": "psybin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1941499119,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 54834723,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17973584280,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2918379629,
+        "rshares": 1763904333,
+        "voter": "unchainedio"
+      },
+      {
+        "percent": "10000",
+        "reputation": -162294290155,
+        "rshares": 60077236,
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11731336511,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12066449411,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 1573966103,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 53433968,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 1345107090,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 222694943448,
+        "rshares": 709360681,
+        "voter": "armenarmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 421813426,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55020754,
+        "voter": "mightypenguin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290042862358,
+        "rshares": 269649250,
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25287187748,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 878883968,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 91630309,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 357194723,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10408522028,
+        "rshares": 52324031,
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5186278337,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1552458038,
+        "rshares": 53222151,
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1699144311,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 183928287,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 75604322,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 1028404751,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322790516,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50245473,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1321908864392,
+        "rshares": 147037069,
+        "voter": "steemitcharity"
+      }
+    ],
+    "author": "james-show",
+    "author_reputation": 5045406568403,
+    "beneficiaries": [],
+    "body": "_Firstly, I must admit I have spent more time thinking about Steem(it) than I have been paid for by it. And to be honest (and disappointing to readers/whales and me as far as payouts go) I have found more than a few BIG Problems with Steem. Problems that if not addressed, will lead to its ultimate failure. Now, you might not agree with me (very likely) but they will.\nAnd I love Steem and I do think it is a few shorts changes short of being \u201cThe Game Changer\u201d!_\n#\n![steemit image](https://steemit.com/images/steemit-share.png)\n#\nOK that was the intro, now to the point\u2026\n#\n I consider [Why I Want to Short Steem  [Beyond Trading \u2013part2. 08/23/2016](https://steemit.com/steemit/@james-show/why-i-want-to-short-steem-beyond-trading-part2-08-23-2016) post of mine, the greatest insight in the Steem space, that I (and most writers that I have come across) ever got. \nI also totally understand why most of you will find the believes of mine expressed  there \u201cstupid\u201d \u201csilly\u201d \u201coutdated\u201d, but that take of yours does not makes them invalid or not true. Actually they are as true as when Adam Smith first thought of them\u2026.\n# Back to the present\u2026\nYes, I do __not__ believe; \u201cThe company\u2019s worth is what N million customers are worth to Facebook (or 100 times more in Steemit\u2019s case)\u201d,  especially when the company has NO CLUE how to monetize on those customers\u2026.\n#\n__And today this changed (maybe alittle, maybe alot [1]) by the introduction of \u201cpromoted posts\u201d__\nWith _promoted posts_ we can see how the system / all Steem power holders can benefit from someone trying to come to the system and pay his way in to all SP holders!\n#\nIt is a great new feature! The best in my humble opinion. The best I have seen from Steem really.\nAnd that\u2019s why I will _donate_ ( donate more or less really) a good sum of SD to put this (Badly written as far as English grammar and spelling go) post on that same list.\n-------\nOther (mostly less controversial posts of mine): \n1. [Beyond the STEEM Whitepaper \u2013 1. Blogging and Curation Rewards Fund; Steem Backed Dollars Creation](](https://steemit.com/steemit/@james-show/3gkvw3-beyond-the-steem-whitepaper-1-blogging-and-curation-rewards-fund-steem-backed-dollars-creation)\n2. [Are all post written for 5 year olds', so they have to be picture heavy????]() ..Uuups sorry, I have not written this one yet, but really???\n3. Ohh what TF just scroll the blog posts on my home page!\n\n#money #trading",
+    "body_length": 2423,
+    "cashout_time": "2016-09-06T03:10:39",
+    "category": "steemit",
+    "children": 19,
+    "created": "2016-08-30T03:10:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"money\",\"trading\"],\"image\":[\"https://steemit.com/images/steemit-share.png\"],\"links\":[\"https://steemit.com/steemit/@james-show/why-i-want-to-short-steem-beyond-trading-part2-08-23-2016\",\"https://steemit.com/steemit/@james-show/3gkvw3-beyond-the-steem-whitepaper-1-blogging-and-curation-rewards-fund-steem-backed-dollars-creation\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T03:10:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 13743910298445,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "25.049 HBD",
+    "percent_hbd": 10000,
+    "permlink": "why-i-am-less-willing-to-short-steem-now",
+    "post_id": 1050992,
+    "promoted": "77.000 HBD",
+    "replies": [],
+    "root_title": "Why I Am Less Willing To Short Steem Now?",
+    "title": "Why I Am Less Willing To Short Steem Now?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@james-show/why-i-am-less-willing-to-short-steem-now"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 56552146057,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7407974462660,
+        "voter": "steempty"
+      },
+      {
+        "percent": "4600",
+        "reputation": 8151223409709,
+        "rshares": 7743922580184,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14423169571983,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40461646370697,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "1400",
+        "reputation": 13270505121655,
+        "rshares": 9024654368742,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7270934718663,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120823881116,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 903658154834,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 955547237819,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 304707236256,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3717560623,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 209125168098,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4512963560,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836545296,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6988007861700,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1648795625161,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "4000",
+        "reputation": 49280708331375,
+        "rshares": 2590155272571,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64607818458,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3745363549909,
+        "rshares": 64079611952,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992338387,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256356620,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 39580133428,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1452601473655,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1331198190646,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 745373510191,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 80690179844,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1135475906992,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 17701813434,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747044457,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 347055943371,
+        "rshares": 414357548,
+        "voter": "grumlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160257208,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2607869395086,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 399850120693,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 20695739170,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 91827078269,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 67474894872,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345705172,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 84752175156,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 22534917345,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1701451058212,
+        "rshares": 3560867980,
+        "voter": "mazi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8289316407,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 8549093805,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13832117218,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 875162057,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 554084160,
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 50655692786,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3208539412,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78056810253,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 90344487995,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 15464522800,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 170836582467,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 241453016290,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5171467941,
+        "rshares": 24534315886,
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8604717232,
+        "rshares": 489114702,
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 2516602969,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 81946124349,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 485266432,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9897310096,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5696495054,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056130698,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 347538684630,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "500",
+        "reputation": 5414208804644,
+        "rshares": 1985132858,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7186758,
+        "rshares": 459952549,
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3342731574,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59223927709,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508314471,
+        "rshares": 603366563,
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 20201603994,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57937290943,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 23511967149,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1192571560,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22378434861462,
+        "rshares": 223682916687,
+        "voter": "stino-san"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787431173,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 371808665,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3085996565,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29602129325,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 421703362290,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 570783738,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6886422212862,
+        "rshares": 45416460571,
+        "voter": "pixellated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18898061785,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 254584445613,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12013107301,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40287404686,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 365694018,
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11260827752,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 309925863,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85870977835,
+        "rshares": 6799149594,
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379019004,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 151933693977,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 231631602196,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 339982051793,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 50737326005,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 76218554853,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4356049611,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8770878211,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2636635441463,
+        "rshares": 6250725075,
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1486037286,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4794047234,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21377142974,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 135526440615,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 696282704,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2108324979,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 151313598203,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 191362456407,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1487612496753,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23705317509,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 112950429384,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 240146584523,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18458799241134,
+        "rshares": 46163941246,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98586802505,
+        "rshares": 356509174,
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8413352005,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12772401769,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 59607501207,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 24845976067,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 59296970731,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 234933448,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 74131257427,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3124603257,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 188239143185,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52093500846,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 299499765807,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4237212015,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 39865290374,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4804447101,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122032656334,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 7756851652,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 10101627148,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132655071824,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 213390961525,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 10295818487,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1285715500,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 322495553,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 149731266,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1926175201,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 53506579516,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12408616589,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 486652600963,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10584865103,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3610613523,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 76946377242,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14091345831,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7725614667,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15305263755,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 5124085338,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4393022921,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 516433597,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3320614763,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 187770538787,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4876469889,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 97667262071,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1509601460,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 38214691392,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 8479287635,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51605156715,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 77914375364,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 247320271,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9037187000,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10168306524,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2210167101,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 74715503526,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 240222938,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 594203592,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17310974719,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4996152370,
+        "rshares": 270329604,
+        "voter": "astorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192124698,
+        "rshares": 225794427,
+        "voter": "chris0502"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 20755384335,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 40253682612,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6775073251,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 120620705591,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373524020,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5600683141,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12972669244,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 13846050753,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2415655330,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7305709760,
+        "rshares": 1463600004,
+        "voter": "slocum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 38295325599,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 196293057448,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 322651547057,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14306641323,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1462310422,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7167353076,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2324876192,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 8983200296,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 70427611427,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2424409113,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 25628695064,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4830973273,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 266607399,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207767589679,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960761826,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 452064608,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 10907428587,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97517122081,
+        "rshares": 156827413,
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20531175873,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 702425502,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54192730483,
+        "rshares": 225878684,
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136260156259,
+        "rshares": 172444925,
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27072053846,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46683248,
+        "rshares": 111147984,
+        "voter": "ryland.townsend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 29014024080,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4491631626,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11220431469,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1201523852,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15517908096,
+        "rshares": 59673355,
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5637635502,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2405411059,
+        "rshares": 159797889,
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1946313851,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23830043508,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8097262355,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2589493888,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211462616494,
+        "rshares": 1011196107,
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 513266800508,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 28746462244,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 32699512403,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2266924190,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 823550089,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 698557363,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1291152324,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14436760417,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 11737514005,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 113446972,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 61274515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 8958644029,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2442169380,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63412334,
+        "voter": "bayern000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 53662708495,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 7679228543,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 229421947,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -61439588,
+        "voter": "gost111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5328695539,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727733310136,
+        "rshares": 61400550,
+        "voter": "mrdsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1934306097,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 634697761,
+        "rshares": 54984896,
+        "voter": "decred"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 9139588670,
+        "rshares": -64218845,
+        "voter": "johnhtims"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 54969817,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 3733986684,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 4916474731,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 77430111,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 537557601,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 69848769518,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816126,
+        "rshares": 59723329,
+        "voter": "blubeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5475203821,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 62279229,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 120171572,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2309373844,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87991131377,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3574312402,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 53588479,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28378684,
+        "rshares": 55945663,
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17973584280,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 925612937,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5448891234,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 24215091196,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87897903,
+        "rshares": 59008544,
+        "voter": "sterl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12403401241,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6718277898,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12002684748,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1499467547,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 11478715301,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56443564,
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24537271972,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 236422965,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 57911021,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 67699642,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2212272906,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1654242144,
+        "rshares": 58155541,
+        "voter": "federicofragola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 115043900,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 11145697310,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3614336062,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 84754573,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55377253,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11501310305,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 182619937252,
+        "rshares": 59216026,
+        "voter": "coolty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12307778400,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 688853443,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4856527764,
+        "rshares": 58818711,
+        "voter": "m12r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2125462805,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 7076868967,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 111770582,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4073388292,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320261717074,
+        "rshares": 1628427434,
+        "voter": "carlyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 52320760,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 58351459,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 55620764,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 2922171431,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -51683826049,
+        "rshares": 59562278,
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 19561952912,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2305186237,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 836954421307,
+        "rshares": 1250725025,
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 632649253,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56143941,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 3309390130,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 666711159,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 189407661696,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 55416927,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9117910781,
+        "rshares": 91152561,
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25813907256,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4685765533,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 73380620,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 41760420240,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 52393318,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 364794611,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 71464098,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 52597837,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84928909264,
+        "rshares": 85301011,
+        "voter": "johnygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 683829103,
+        "rshares": 54232595,
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18081706207,
+        "rshares": 52192153,
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 51871529,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 51814320,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 176715413,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52774418,
+        "voter": "walteraze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69131953,
+        "rshares": 50592846,
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 71251561,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2392485349,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176228976143,
+        "rshares": 8258021605,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 577247264,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 807542498,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 80106845,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14820051763,
+        "rshares": 54672126,
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 2360647659,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 1008239952,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 55523890,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 66564537,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19265611,
+        "rshares": 50996649,
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22546106632,
+        "rshares": 52763087,
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 264508777365,
+        "rshares": 107344655,
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6189604518,
+        "rshares": 52291016,
+        "voter": "bkasante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1398865101,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508583499,
+        "rshares": 50827953,
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 583302856,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50238161,
+        "voter": "robertdpickett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155435909,
+        "voter": "duckfever"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "**Currently, there are two ways to get a STEEM Account.** The first is to sign up for Steemit with a Reddit or Facebook account, the second is to create an account using CLI_WALLET or Piston and have the account **permanently linked to your own account.**\n\nNeither option really allows you to be anonymous. Want to post controversial posts, or say something that would otherwise be illegal in your country? (e.g. poor free speech laws) Then Anonsteem is here to help.\n\n## Introducing: @anonsteem\n\n![](https://i.imgur.com/Y6QDDbD.png)\n\nPUBLIC INTERNET: [anon.steem.network](https://anon.steem.network/)\n----\n\nTOR: [steemlohs6air4h2.onion](http://steemlohs6air4h2.onion/)\n----\n\n----\n\n**So what actually is this?**\n\nAnonSteem allows you to purchase an account using either Bitcoin or Litecoin, and it will be created by the @anonsteem account within a minute of payment.\n\nTo protect your privacy, there are no IP logs, we have a TOR hidden service, and we allow you to remove your keys from our server as soon as you create the account.\n\n![](https://i.imgur.com/4aa6tR7.png)\n\nWe give you detailed instructions on changing your keys after creating the account, so you can be sure we're not just going to steal your account later on.\n\nHow long does it take to get an account?\n-----\n\nTransactions are scanned once a minute, and we accept 0 confirmation transactions. This means you'll most likely have your account within 1-2 minutes of sending the payment, regardless of which coin you paid with.\n\nCan I pay with STEEM?\n----\n\nWe don't accept STEEM directly, as that would ruin your privacy. However, if you REALLY want to pay with STEEM, you can send it via [ShapeShift (precise mode)](https://shapeshift.io/#/inputs/2) to the BTC or LTC address you get during payment.\n\nDoesn't this service mean more spambots?\n----\n\nWe don't have any plans to allow en-masse account creation. Every order has to be placed one at a time, with individual payments. Someone looking to create spam bots would most likely look elsewhere.\n\nAnonsteem is targeted at persons or groups looking for one, or a few accounts, with no social media link, and no third party tracking.\n\n**HELP - my transaction expired?** - The 15 minute limit is just to avoid us checking transactions for abandoned orders. If you've already paid, just PM me on SteemitChat, or send me an email (bottom of the anonsteem page) with your order ID and I'll reset the expiry.\n\nTry it out at [anon.steem.network](https://anon.steem.network)\n----\n\nDo you like what I'm doing? Follow me, and [vote for @someguy123 to be a witness](https://steemit.com/~witnesses)\n====",
+    "body_length": 2607,
+    "cashout_time": "2016-09-05T21:00:18",
+    "category": "steemit",
+    "children": 58,
+    "created": "2016-08-29T21:00:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"bitcoin\",\"litecoin\"],\"users\":[\"anonsteem\",\"someguy123\"],\"image\":[\"https://i.imgur.com/Y6QDDbD.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T22:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 119299865028571,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1520.901 HBD",
+    "percent_hbd": 10000,
+    "permlink": "anonsteem-create-anonymous-steem-accounts-without-social-media",
+    "post_id": 1046758,
+    "promoted": "76.500 HBD",
+    "replies": [],
+    "root_title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2100",
+        "reputation": 145171381514207,
+        "rshares": 6177366490721,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5524453120959,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 118459200229,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1111762764834,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3104316216,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3769023210,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 684026925,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54893564497,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663393709,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213796245,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 625012807,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 973159239,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2426634324,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 196852731768,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288356419,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "6000",
+        "reputation": 127159698297,
+        "rshares": 91974415110,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1676057243571,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 42646084026,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1426441594,
+        "voter": "murh"
+      },
+      {
+        "percent": "200",
+        "reputation": 3663597787321,
+        "rshares": 914730170,
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 72459361708,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2988407596343,
+        "rshares": 30768675850,
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 170243742354,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 187725199105,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 14468332399,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 6830334777,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 207235087440,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 45105528409,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55888461363,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2666424177,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6704878593,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127664642491,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 84707219423,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 10810017183,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4129649677200,
+        "rshares": 6080328266,
+        "voter": "summonerrk"
+      },
+      {
+        "percent": "8200",
+        "reputation": 7172977970558,
+        "rshares": 2870180302,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 11565154708,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "7500",
+        "reputation": 4063076365725,
+        "rshares": 2466552028,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 23482202368,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "4800",
+        "reputation": 988942038058,
+        "rshares": 33679033840,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2962259788063,
+        "rshares": 12266525730,
+        "voter": "stephen.king989"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 22398900329,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 9896085754,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1146505325539,
+        "rshares": 2266973901,
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 8889605453,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "3700",
+        "reputation": 11490547563070,
+        "rshares": 8646944150,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "3300",
+        "reputation": 3725920343994,
+        "rshares": 3386634890,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 261504857808,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 59202973,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1578660489,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3573461197670,
+        "rshares": 5750642945,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "100",
+        "reputation": 66311335718,
+        "rshares": 2135038057,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 7954827193,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1829620177,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415511458887,
+        "rshares": 201245802,
+        "voter": "ratidor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282267928,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 98655344,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 59126442,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 50326986,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 625158771365,
+        "rshares": 1226505302,
+        "voter": "asolopreneur"
+      },
+      {
+        "percent": "5100",
+        "reputation": 414609406210,
+        "rshares": 596047269,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3606347249409,
+        "rshares": 1483350426,
+        "voter": "ltm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 244968251,
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 418652004,
+        "rshares": 158583251,
+        "voter": "tata.lucette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154595895,
+        "voter": "imtwoxic"
+      }
+    ],
+    "author": "peacekeeper",
+    "author_reputation": 3941133391991,
+    "beneficiaries": [],
+    "body": "http://www.steem101.com/facebooktest.jpg\n# My Facebook and Steemit experiment:\n### Two days ago @ around 8:00 am EST I posted an article about my little sweetheart named Jalyn.  She made \"Fall off the bone ribs\" and we documented her work with a video.\n\n### I then posted it on Steemit and Facebook at the exact same time.  \n*  Steemit: I had 68 followers at the time of the post.\n*  Facebook: I had 224 friends, family, coworkers at the time of the post.\n\n---\n\n## Here is a snapshot of both posts:\n\nSteemit Post:            |  FaceBook Post:\n:-------------------------:|:-------------------------:\n![](http://www.steem101.com/Steemit.jpg )  |  ![](http://www.steem101.com/facebook.jpg )\n\n\n\n| Steemit:  |    FaceBook    |  \n|----------|:-------------:|\n| 44 Up Votes |  7 Likes |\n| 4 Comments |    5 Comments  |\n| No Shares | 1 Share |\n| $84.66 | Zero - Cheap Bastards |\n\n## Summary:\nI thought it would be compelling to see how many votes I received with both Social Media Sites.  I found it very interesting that the number of Up Votes from the Steemit Community was more than 6 times the number of Likes from my Facebook Friends.  The reason I found this interesting is because I have 224 Facebook friends and I have known them a lot longer than my new friends at Steemit.  \n\nAnother interesting point is the fact I have been on Facebook for over 6 years.  I have been on Steemit for 2 months.   Looks like my Steemit Friends are more interested in what I have to share..... \n\nIt will also be interesting when I show my Facebook friends this little experiment.\nEspecially the part about the $84.66\n\n## Action:\nStop going to Facebook!\n\n#steemit #facebook #life #craigrant",
+    "body_length": 1672,
+    "cashout_time": "2016-09-15T19:37:39",
+    "category": "steemit",
+    "children": 23,
+    "created": "2016-09-08T19:37:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"experiment\",\"facebook\",\"life\",\"craigrant\"],\"image\":[\"http://www.steem101.com/facebooktest.jpg\",\"http://www.steem101.com/Steemit.jpg\",\"http://www.steem101.com/facebook.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T20:03:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 16467096056102,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "28.943 HBD",
+    "percent_hbd": 10000,
+    "permlink": "my-facebook-and-steemit-post-side-by-side-two-2-days-ago",
+    "post_id": 1175979,
+    "promoted": "76.000 HBD",
+    "replies": [],
+    "root_title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "title": "My Facebook & Steemit post side by side two (2) days ago. SURPRISE .... SURPRISE ......",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@peacekeeper/my-facebook-and-steemit-post-side-by-side-two-2-days-ago"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 20297981245452,
+        "rshares": 6762422493146,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3722167102,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4518923636,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 828866269,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 65291932795,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1994645292,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256490999,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747730879,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1161438487,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345929094,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 38490752763,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 31898709926,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17814707827319,
+        "rshares": 120036771953,
+        "voter": "bbqbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 15817278258,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1424916288,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 64857927561,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 39311342671,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1350953088,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4477107456,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322690670,
+        "voter": "garagebill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 15739145316,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 179192996861,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "3600",
+        "reputation": 598181152117,
+        "rshares": 75625947764,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6740313250,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9434414518400,
+        "rshares": 6414920414,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 49805947674,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55853813712,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3326209124802,
+        "rshares": 9866111769,
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 480670817737,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 638021117,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "100",
+        "reputation": 5463774640621,
+        "rshares": 429990873,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19032649381,
+        "rshares": 181322915378,
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "7000",
+        "reputation": 6030999377480,
+        "rshares": 11531792247,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10445529851856,
+        "rshares": 11034478037,
+        "voter": "meesterboom"
+      },
+      {
+        "percent": "100",
+        "reputation": 6892424678378,
+        "rshares": 1410577112,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44336327098,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1252098870666,
+        "rshares": 79349787046,
+        "voter": "me-tarzan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 9970599025,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 4486999201,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 473751099,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "3600",
+        "reputation": 17698439393799,
+        "rshares": 11390928300,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 5873252645,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17682174654,
+        "rshares": 117698021,
+        "voter": "cameron-here"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 29635792745,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278418228934,
+        "rshares": 1793508440,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "1800",
+        "reputation": 10771708337101,
+        "rshares": 219911318479,
+        "voter": "laonie"
+      },
+      {
+        "percent": "2500",
+        "reputation": 18027204457681,
+        "rshares": 8953837063,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3801791180,
+        "voter": "rich77"
+      },
+      {
+        "percent": "3700",
+        "reputation": 5776723480371,
+        "rshares": 89872995878,
+        "voter": "somebody"
+      },
+      {
+        "percent": "3700",
+        "reputation": 206355094166,
+        "rshares": 3363521648,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 621407045907,
+        "rshares": 5475636756,
+        "voter": "k4r1nn"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 19862171480,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 2979617190,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8113950766,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "1800",
+        "reputation": 3016325652890,
+        "rshares": 24656414925,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 435439128,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 107084440,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 18249960278,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1425927896964,
+        "rshares": 2100417564,
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "3700",
+        "reputation": 1851205309677,
+        "rshares": 1554626282,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 954937043358,
+        "rshares": 6797668445,
+        "voter": "steemitqa"
+      },
+      {
+        "percent": "3500",
+        "reputation": 1433416370023,
+        "rshares": 20160515746,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 12012730878,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 729617548626,
+        "rshares": 234067377,
+        "voter": "giftedgaia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2199070663860,
+        "rshares": 1631018835,
+        "voter": "quantumanomaly"
+      },
+      {
+        "percent": "3700",
+        "reputation": 4195733833721,
+        "rshares": 3130695206,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 72131169,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 901114996,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20803096,
+        "rshares": 61897843,
+        "voter": "geny"
+      },
+      {
+        "percent": "3700",
+        "reputation": 730408370151,
+        "rshares": 206134585,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648377040631,
+        "rshares": 3024339521,
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "7000",
+        "reputation": 1062400368532,
+        "rshares": 69500880949,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 58350694824,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 59609546962,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64878458203,
+        "rshares": 1423723498,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1262855144,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10486107784,
+        "rshares": 1804085961,
+        "voter": "otisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 4601312529,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2922107498,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 2485484872,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329317015182,
+        "rshares": 316012583,
+        "voter": "codymac40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 1098554901,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21217169177,
+        "rshares": 58872767,
+        "voter": "powmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1354778162586,
+        "rshares": 208026413,
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 405698035912,
+        "rshares": 330609380,
+        "voter": "tfeldman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3090583312974,
+        "rshares": 1088326615,
+        "voter": "geke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3683900274,
+        "rshares": 53968432,
+        "voter": "mooncat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 77663073,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 265151816,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 289905346,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878526376261,
+        "rshares": 51783834,
+        "voter": "mlialen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 447567061326,
+        "rshares": 50404082,
+        "voter": "koskl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457667174072,
+        "rshares": 77402677,
+        "voter": "thefinanceguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1321908864392,
+        "rshares": 149994455,
+        "voter": "steemitcharity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2178388003040,
+        "rshares": 50211933,
+        "voter": "powerup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2781294502,
+        "rshares": 122119181,
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76997226,
+        "voter": "comeup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1564414223,
+        "rshares": 111910065,
+        "voter": "tygeade"
+      }
+    ],
+    "author": "steemitqa",
+    "author_reputation": 954937043358,
+    "beneficiaries": [],
+    "body": "<h1 id=\"steemit-advertise\"><center> Uplift Minnows Initiative</center></h1>\n<p></p><center><hr></center><p></p>\n<center>https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_daf200df05a1435bb441b235515eace3~mv2_d_2941_2046_s_2.jpg?dn=minnow+mission+3.jpg</center>\n<h2>The Idea:</h2>\n \nThis idea is to maximize the \u2018promote post\u2019 feature and allow minnows to get more exposure to their stories, or services on SteemIt, but on a budget. If every day, or every week this account (we\u2019ll be shifting to a new account shortly @advertise) be in the top five on the promo tab and you pay $3-5 you will reap the rewards of being on the top of SteemIt! Promote Post as a minnow is turning out to be a problem for [some](https://steemit.com/steemit/@profitgenerator/analysis-promoted-content) so the power of many seems more logical. \n\nAlso, going forward we\u2019ll be throwing the same amount daily/weekly, or even more toward the post reaching the top. As it stands $100 can get us all on the front page of SteemIt Promote. If 40 of us minnows throw in $5 for the day we can sit our submissions on top. Not only that **ALL SBD** that are earned by this post will go into \u201cpromote post\u201d itself thus helping you get free future advertising for your submissions! We\u2019ll be building out this post as we go as you can see we have a \u201cServices\u201d Category.\n\nIf you wish to get our upvote, just tag us with a SteemIt tag of **#upliftminnows** and we\u2019ll find your post. All proceeds of the post will go back to you so essentially you could have a free advertisement.\n<h2>How to Participate: </h2>\n\n<li>Simply, comment below with your story submission, or service and we\u2019ll add it to the page. Hit \u2018promote post\u2019 and send whatever amount you can and 'pool' it together with all other minnows. Put the $ amount you posted in your comment also. <b>Example: @joesmith $5 ( your link here )</b>.\n<br><br>\n<li>We will post the link you provide via a comment below to the post.\n<br><br>\n<li>The highest paying post will lead the list first and roll off the page after 20 entries.\n<br><br>\n<li>This post will last forever and each day/week a new post will be put up and  your listing could be carried over.\n<br><br>\n</li>\n\n<blockquote>\n  <p><strong>Note</strong> <br>\nFor this very first launch we are adding $50 to the pool. You may add as much as you want to this post, or as little as you want to get listed on <b>Uplift Minnows Initiative</b>.</p>\n</blockquote>\n \n<p><center><hr></center></p>\n <h2 id=\"steemit-story-submissions\"><center><strong>SteemIt Story Submissions:</strong></center></h2>\n<p><center><hr></center></p> \n\n<p></p><center><img src=\"https://payscape.com/wp-content/uploads/icon-globe-blue.png\" alt=\"enter image description here\" title=\"\"></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemtools/@kurtrohlandt/steemit-image-tools-pimp-your-posts\">SD- $6 | @kurtrohlandt: Steemit Image Tools - Pimp your posts</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steem/@williambanks/do-you-feel-taler-gnu-foundation-launches-their-own-cryptocoin\">SD- $5 | @williambanks: Do You Feel Taler? - GNU Foundation Launches Their Own Cryptocoin!</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/life/@michelle.gent/i-went-to-the-beach-and-i-cried\">SD- $5 | @michelle.gent: I went to the beach and I cried</a></b></center><p></p>\n\n\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemit/@me-tarzan/win-500-steempower-enter-steemit-daily-sweepstakes-100-winners-everyday\">SD- $2 | @me-tarzan: WIN !!!!! 500 !!!!!STEEMPOWER !!!!!..... ENTER STEEMIT DAILY SWEEPSTAKES ..... 100 WINNERS EVERYDAY</a></b></center><p></p>\n\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/life/@tfeldman/original-song-for-the-minnows-talkin-usd-01-cent-steemit-post-blues#comments\">SD- $1.50 | @tfeldman: Original Song for the Minnows: Talkin' $.01 Cent Steemit Post Blues</a></b></center><p></p>\n\n<center><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/Zdam6Uc03vc\" frameborder=\"0\" allowfullscreen></iframe></center>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/steemit/@geke/was-that-make-up-tutorial-really-worth-thousands-of-dollars\">SD -$1 | @geke: Was that make-up tutorial really worth thousands of dollars?</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/philosophy/@steemswede/philosophy-the-value-of-wonder\">SD -$1 | @steemswede: [PHILOSOPHY] The Value of Wonder</a></b></center><p></p>\n\n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/promoted/steemit\">Place Your Story Submission HERE! for $1 SBD!</a></b></center><p></p>\n  \n<p><center><hr></center></p>\n<h2 id=\"steemit-services\"><center><strong>SteemIt Services:</strong></center></h2>\n <center><hr><br></center>\n\n<center><img src=\"http://www.amesto.global/globalassets/fellesbilder-2015/ikoner/handshake-icon-200px.png\" alt=\"enter image description here\" title=\"\"></center></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"http://randomsteemit.com/\">SD -$2| @tyler-fletcher: RandomSteemit Promotion Article/ RandomSteemit.com (Steem Service)</a></b></center><p></p>\n \n<p></p><center><img src=\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\" alt=\"enter image description here\" title=\"\"><b><a href=\"https://steemit.com/promoted/steemit\">Place your SteemIt Service HERE!</a></b></center><p></p>\n \n<p></p><center><hr></center><p></p>\n<center><b>Follow us if you love what we are doing!</b> \u2764</center>\n<center><a href=\"https://steemit.com/@steemitqa\"><img src=\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\"></a>http://reneenouveau.com/Steem/100humansmall.jpg</center>\n\n<br><br>",
+    "body_length": 6870,
+    "cashout_time": "2016-09-10T16:49:18",
+    "category": "steemit",
+    "children": 50,
+    "created": "2016-09-03T16:49:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"upliftminnows\",\"steemsquad\"],\"users\":[\"advertise\",\"joesmith\"],\"image\":[\"https://img1.steemit.com/0x0/https://static.wixstatic.com/media/5c9236_daf200df05a1435bb441b235515eace3~mv2_d_2941_2046_s_2.jpg?dn=minnow+mission+3.jpg\",\"https://payscape.com/wp-content/uploads/icon-globe-blue.png\",\"https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png\",\"http://www.amesto.global/globalassets/fellesbilder-2015/ikoner/handshake-icon-200px.png\",\"https://img1.steemit.com/0x0/http://i.imgsafe.org/dd8bd8753d.gif\",\"http://reneenouveau.com/Steem/100humansmall.jpg\"],\"links\":[\"https://steemit.com/steemit/@profitgenerator/analysis-promoted-content\",\"https://steemit.com/steemtools/@kurtrohlandt/steemit-image-tools-pimp-your-posts\",\"https://steemit.com/steem/@williambanks/do-you-feel-taler-gnu-foundation-launches-their-own-cryptocoin\",\"https://steemit.com/life/@michelle.gent/i-went-to-the-beach-and-i-cried\",\"https://steemit.com/steemit/@me-tarzan/win-500-steempower-enter-steemit-daily-sweepstakes-100-winners-everyday\",\"https://steemit.com/life/@tfeldman/original-song-for-the-minnows-talkin-usd-01-cent-steemit-post-blues#comments\",\"https://steemit.com/steemit/@geke/was-that-make-up-tutorial-really-worth-thousands-of-dollars\",\"https://steemit.com/philosophy/@steemswede/philosophy-the-value-of-wonder\",\"https://steemit.com/promoted/steemit\",\"http://randomsteemit.com/\",\"https://steemit.com/@steemitqa\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-04T16:38:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 9097095205888,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "11.997 HBD",
+    "percent_hbd": 10000,
+    "permlink": "uplift-your-story-submission-to-the-top-of-post-promote-uplift-minnows-initiative",
+    "post_id": 1113125,
+    "promoted": "75.915 HBD",
+    "replies": [],
+    "root_title": "Uplift Your Story Submission to the Top of Post Promote:  Uplift Minnows Initiative",
+    "title": "Uplift Your Story Submission to the Top of Post Promote:  Uplift Minnows Initiative",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemitqa/uplift-your-story-submission-to-the-top-of-post-promote-uplift-minnows-initiative"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit_paginated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit_paginated.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..e86b83db1e07391adb204aeb493148f7bb2b7784
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_promoted/tag_steemit_paginated.tavern.yaml
@@ -0,0 +1,28 @@
+---
+  test_name: Hivemind condenser_api.get_discussions_by_promoted patterns test
+
+  marks:
+    - patterntest
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_discussions_by_promoted
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_discussions_by_promoted"
+          params: {"tag":"steemit", "start_author":"fyrstikken", "start_permlink": "steemit-harassment-wow-it-finally-happened-to-me-too-d", "limit":10}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "tag_steemit_paginated"
+            directory: "condenser_api_patterns/get_discussions_by_promoted"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5aacba0ce9095645f04e24455300b9e3b62f447e
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_discussions_by_trending/_readme.txt
@@ -0,0 +1,25 @@
+Lists posts sorted by trending score [sc_trend desc] (similar to the by_hot sorting, but with longer period of time).
+
+method: "condenser_api.get_discussions_by_trending"
+params:
+{
+  "start_author":"{author}" + "start_permlink":"{permlink}",
+
+     optional, should point to valid apost
+
+   "limit":"{number}",
+
+     optional, range 1...100; default = 20
+
+    "tag":"{account}",
+
+     optional, turns on filtering for posts with given tag
+
+   "truncate_body":{number}
+
+     optional, default = 0; 
+
+   "filter_tags":"{list_of_tags}",
+
+     optional, not supported
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_follow_count/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_follow_count/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..547aebad5f4a491f3a2935b3cd936140eca511e3
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_follow_count/_readme.txt
@@ -0,0 +1,10 @@
+Gives following and followers count for given account.
+
+method: "condenser_api.get_follow_count"
+params:
+{
+  "account":"{account}",
+
+     mandatory, point on valid account
+
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_followers/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_followers/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..f4bd88deada00345f0169f7ce27a2e1987cdb89b
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_followers/_readme.txt
@@ -0,0 +1,21 @@
+Gives accounts which follow given account.
+
+method: "condenser_api.get_followers"
+params:
+{
+  "account":"{account}",
+
+     mandatory, points on valid account
+
+  "start":"{account}"
+
+     mandatory, points on start account of followers
+
+  "limit:"{number}"
+
+     mandatory, range of 1...1000;
+
+  "follow_type":"{follow_type}"
+
+     optional; default = 'blog'; other option 'ignore' to account which muted given account
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_following/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_following/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..56847f5bcaed5c32d3f1d40cf03d2a617f14569e
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_following/_readme.txt
@@ -0,0 +1,21 @@
+Gives accounts which given account follow.
+
+method: "condenser_api.get_following"
+params:
+{
+  "account":"{account}",
+
+     mandatory, points on valid account
+
+  "start":"{account}"
+
+     optional, when given have to point on start account of following
+
+  "limit:"{number}"
+
+     mandatory, range of 1...1000;
+
+  "follow_type":"{follow_type}"
+
+     optional; default = 'blog'; other option 'ignore' to account which given account muted
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..5fdac6d629df31040b8de674f9a6bbf20dee71f9
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/_readme.txt
@@ -0,0 +1,23 @@
+Lists not yet paid out top posts ranked by pending payout, more paying first (order within the same payout is: newer first).
+Aside from different post format routine is very similar to bridge.get_ranked_posts with payout sort, except the latter only considers posts in narrow
+payout window, this one has no such limitation.
+
+method: "condenser_api.get_post_discussion_by_payout"
+params:
+{
+  "start_author":"{author}", "start_permlink":"{permlink}",
+
+     start_author + start_permlink : optional, when given have to point to valid start post; paging mechanism (cuts out this and more paying replies)
+
+  "limit":"{number}",
+
+     optional, 1..100, default = 20
+
+   "tag":"{tag}",
+
+     optional, actually means category, when given have to point to valid category; narrows down results to posts with given category
+
+   "truncate_body":{number}
+
+     optional, default = 0 (meaning no truncation); reduces maximal size of post body, cutting out all excess
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_results.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_results.orig.json
deleted file mode 100644
index 0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc..0000000000000000000000000000000000000000
--- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_results.orig.json
+++ /dev/null
@@ -1 +0,0 @@
-[]
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_results.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_results.pat.json
deleted file mode 100644
index 0637a088a01e8ddab3bf3fa98dbe804cbde1a0dc..0000000000000000000000000000000000000000
--- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_results.pat.json
+++ /dev/null
@@ -1 +0,0 @@
-[]
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_tag.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_tag.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..f7fc6ab3b92205843d85c3395b3b48e56bff2869
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_tag.orig.json
@@ -0,0 +1,76032 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28093846388978",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "699914473958",
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17257232261172",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "480115650369",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7913777948669",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30337453076324",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260548325708",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16854241280325",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28924078018731",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14444913681822",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39965317174712",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "689029258065",
+        "voter": "neogen1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63253281536152",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36032064618135",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "726080932522",
+        "voter": "hermes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "877675628804",
+        "voter": "hermes-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2030896048271",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500319811721",
+        "voter": "thorium1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438210498091",
+        "voter": "thorium2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5056112988611",
+        "voter": "datasecuritynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18153135567327",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "519142130530",
+        "voter": "bunkermining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5157097606627",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6899868284164",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9674921775291",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223703977403",
+        "voter": "bitshares.org"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147996188902",
+        "voter": "blockchainbunker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53243993306",
+        "voter": "blocktech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13957464410",
+        "voter": "neominer2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2002246627756",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221838299608",
+        "voter": "abderus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9637889890",
+        "voter": "olympus-steemy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245373914914",
+        "voter": "hephaestus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123346745696",
+        "voter": "aquarius.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53786089865",
+        "voter": "minosman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153708432700",
+        "voter": "aphrodite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18730151342",
+        "voter": "hotels.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15464075795",
+        "voter": "aries.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89110173285",
+        "voter": "rabbitminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25157265699",
+        "voter": "insurance.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6595312101906",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110419235217",
+        "voter": "fund.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82759541835",
+        "voter": "friend5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120836984895",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4445841013641",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1837624790786",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4459584427110",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14831683698",
+        "voter": "heracles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1137398676566",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21952504677",
+        "voter": "bunkerchainlabs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4209277765952",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1086902089740",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1017560017130",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21885626779",
+        "voter": "jaewoocho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1786533941371",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97009979527",
+        "voter": "testz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7220943508883",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1710349335938",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6359610748191",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6942614615722",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1778211712",
+        "voter": "tigerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243564520407",
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1831858803960",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2183482896124",
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71574765002",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215958073175",
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "601298858373",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1171318122",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108222463585",
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93869000523",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5642052247060",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330688610736",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436338741278",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49161573729",
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264060540254",
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425156145671",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3126067413688",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "700898568836",
+        "voter": "marginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1166261090205",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31586736553",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10836599449",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73485247243",
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201402716350",
+        "voter": "peerplays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651650151993",
+        "voter": "clains"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7861629418",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "799223082971",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18431412528",
+        "voter": "apollo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11896085173",
+        "voter": "athena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1919905710",
+        "voter": "muses"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311732866",
+        "voter": "perseus"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "31464611372",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36706368978",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67501955936",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16257256350",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156365496996",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1799230966",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51332569345",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15051100192",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78240336194",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66907598269",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2832016984",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15214718551",
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "178530166606",
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "8758",
+        "reputation": 0,
+        "rshares": "508667685990",
+        "voter": "eeks"
+      },
+      {
+        "percent": "4200",
+        "reputation": 0,
+        "rshares": "36130468662",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61062133",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "894610117782",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "729855132",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29757966917",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2197244270",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336222767084",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9605734431",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "590880111465",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130765654564",
+        "voter": "psylains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28644312682",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140767896242",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54529679370",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35933035552",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182807260574",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39838275827",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8265260142",
+        "voter": "censor-this"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57402475507",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "715863735",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99094642992",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "642556761509",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "5555",
+        "reputation": 0,
+        "rshares": "1060209776",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6221982003",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2432487676",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "414252277177",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5502671300",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39055019637",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1181974695451",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10675191699",
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6365214013",
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3478936444",
+        "voter": "aizen03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1143835315",
+        "voter": "aizen04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483853236",
+        "voter": "aizen05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4693567848",
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2807253492",
+        "voter": "aizen08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "997777297",
+        "voter": "aizen09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431760512",
+        "voter": "aizen10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7101615732",
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2983378574",
+        "voter": "aizen11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2050579884",
+        "voter": "aizen14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2411192239",
+        "voter": "aizen19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59865085883",
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "635600745",
+        "voter": "aizen15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6292058117",
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50734100398",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "631857622",
+        "voter": "aizen20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4130275635",
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1097892348",
+        "voter": "aizen23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2159349021",
+        "voter": "aizen17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3398734282",
+        "voter": "aizen24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "480477451",
+        "voter": "aizen18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1287103324",
+        "voter": "aizen25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2186327596",
+        "voter": "aizen28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3364338062",
+        "voter": "aizen26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1104427992",
+        "voter": "aizen27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3795716671",
+        "voter": "aizen32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2076648957",
+        "voter": "aizen30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3841200066",
+        "voter": "aizen31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1264455671",
+        "voter": "aizen33"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64089665412",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1521106185",
+        "voter": "aizen34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305387048",
+        "voter": "aizen35"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5728889626",
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429330870",
+        "voter": "aizen37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399919669",
+        "voter": "aizen29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2813197300",
+        "voter": "aizen21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4316399334",
+        "voter": "aizen12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1837991384",
+        "voter": "aizen38"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30065956267",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9278417119",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94752577156",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512479457",
+        "voter": "aizen39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3769369379319",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400269260334",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418638114",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51844504762",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383344605027",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "42223163463",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "583461363660",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16209299302",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52129552131",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4606609796",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329350239",
+        "voter": "gardening"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329500032",
+        "voter": "survival"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9924614344",
+        "voter": "arisa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31790139287",
+        "voter": "peter-parker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55393371507",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13621983705",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79211870859",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322737106",
+        "voter": "garagebill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124617921009",
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210147284092",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23272135087",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268409488877",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3926913096",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29627469187",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170297725317",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "811931125",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "4500",
+        "reputation": 0,
+        "rshares": "46328182720",
+        "voter": "igl00"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5940635398",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306336916",
+        "voter": "chris-piatt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113838927200",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231593655603",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23687725437",
+        "voter": "seth-krings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77388693784",
+        "voter": "technology"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4988718787",
+        "voter": "ben99"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "156612109",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87245921405",
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64046549790",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69311512532",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "37142606344",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2121707918",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445666416057",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7882724055",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "458312922",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40639591868",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44947602150",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10773706113",
+        "voter": "auction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280810708",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65714200324",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "395691115781",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19967142582",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225818220743",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38015209547",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335467671780",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53448755207",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71569876818",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5161699544",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "6151465178",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17882004940",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8566068032",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19226458378",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327702249872",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16313568490",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18154720133",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241530255",
+        "voter": "strawhat"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "4161841852",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5150808369",
+        "voter": "omotherhen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239360899",
+        "voter": "cryptochannel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153907445339",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30835503316",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "856020810508",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238363664",
+        "voter": "honey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1340898063",
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76870083894",
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381456632",
+        "voter": "aizen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3276035841",
+        "voter": "aizen41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "931013010",
+        "voter": "aizen42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3171631768",
+        "voter": "aizen46"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "868109476",
+        "voter": "aizen47"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212810750",
+        "voter": "aizen48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110962425",
+        "voter": "aizen49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97696532174",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246104638",
+        "voter": "cryptosaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921711726",
+        "voter": "aizen51"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13653767629",
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1353763544149",
+        "voter": "renohq"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2765010944",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446432832",
+        "voter": "aizen43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66287180",
+        "voter": "aizen44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10695179211",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747648248",
+        "voter": "aizen54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111908928636",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19288488602",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160850934832",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42276543842",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1480728995",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1454993610",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90553059",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17990323962",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "880687800",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61949507807",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "4892197609",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13787047411",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12345609219",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270857691200",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34325541297",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180469261",
+        "voter": "snowden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4596219060",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "723428928",
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19900789412",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "886096723",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19945257369",
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24468062852",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11088965046",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10154373506",
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73111465870",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251232492048",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79440114599",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13606265678",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503362754",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3219182214",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228791895",
+        "voter": "aizen52"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93405654863",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1454011802",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19794533144",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7073326293",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399155504341",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10692202188",
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44506668554",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2320943285",
+        "voter": "alienation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7311089232",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39856415994",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84865861",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127837565146",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1649084795",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5717595586",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1506582089",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14745205841",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186386428",
+        "voter": "aizen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2554645343",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154958749697",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6031480011",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28652737724",
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159383275378",
+        "voter": "opheliafu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5706185290",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "355518481407",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144440787",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309671076646",
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3362355137",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70392249112",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33480676135",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15391105159",
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7311842917",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10894279417",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154004837",
+        "voter": "bsgomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19488293372",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6607597748",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3411318889",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3695379442",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28780986199",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5364413820",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9502163734",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34275659089",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138565418",
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1559066068",
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "999607842",
+        "voter": "hemp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115967854",
+        "voter": "flowers"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "43068433734",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421627949",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019161611086",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117630527",
+        "voter": "pokemon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6499444080",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30772750136",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1344238972",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "643614590",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24289385146",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85132623",
+        "voter": "steemchain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80530859",
+        "voter": "whalepool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21875497725",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114879685",
+        "voter": "nikhil.jalan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36336480526",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77155168",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "5600086816",
+        "voter": "crypto.owl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11182026678",
+        "voter": "meister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3917672567",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3314012361",
+        "voter": "overlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14453665788",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376683720",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483926264",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3634633643",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639790724",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25137854994",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "3246871665",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230437999",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37675171572",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1403820143",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2918428102",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2885781511",
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44813632062",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64689794435",
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82005068",
+        "voter": "aizen53"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257984286",
+        "voter": "nat4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21665639579",
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26626040613",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249991506876",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16823988904",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112695119",
+        "voter": "topten"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "174462677",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5061223849",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118572345435",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075326746",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134257660",
+        "voter": "yulia98"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "512229631",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67383102814",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "439936849",
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "737719441",
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1502677319",
+        "voter": "aizen"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1838428768",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234650215",
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1506382994",
+        "voter": "littlekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "540254121",
+        "voter": "bento01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1617252822",
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6879897081",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240147448",
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7718438607",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15600032896",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9904956205",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1304858257671",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239894523987",
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4997496711",
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63989651",
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24850740061",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63982460",
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8108015998",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65227360",
+        "voter": "karlmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21691669911",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "413573288",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25056718038",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22364495731",
+        "voter": "amy-goodrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25035378506",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25044324887",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80176107",
+        "voter": "bento06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43649602780",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "271623424030",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10641150587",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31639772578",
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5719416794",
+        "voter": "brendio"
+      },
+      {
+        "percent": "8758",
+        "reputation": 0,
+        "rshares": "14114771826",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27114932121",
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71611881611",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62863662405",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81456989570",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63541793",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "997653189",
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4182597212",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6908371363",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99519846",
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63207020",
+        "voter": "michellek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25040020923",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25037838253",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25034898883",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2286209152",
+        "voter": "armen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25031499926",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7468131680",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25027247249",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25025158791",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3585887866",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94691370060",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102579063",
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149678978773",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361231093",
+        "voter": "riosparada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1405322819",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19407094003",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11131912532",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93053795287",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5585704636",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1745875875",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58773515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4804440310",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79996671136",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10574300028",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2303202060",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192492931",
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42833125455",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246968635",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47227266135",
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4098512589",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175727857",
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61529559",
+        "voter": "diamonds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9909178760",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62707787",
+        "voter": "bitpharmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58419319",
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1024594451",
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "814567891",
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228177755",
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "3606419075",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77724719",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "725661119",
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3745978172",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54581430",
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29602528441",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67627457",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1154260617",
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62240819",
+        "voter": "steembook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89074525380",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1198508893",
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "428894446",
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1949500307",
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104704717",
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649554683",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255827992",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878611728",
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77220767",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5290162531",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61654952",
+        "voter": "ip0000h"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2089597288",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1878677136",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8572094405",
+        "voter": "pjheinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56598010",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56591855",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683247723611",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60945251",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6569101287",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "1200",
+        "reputation": 0,
+        "rshares": "13150299017",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9354302631",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "728677907",
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "479158342",
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14474085661",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71226461",
+        "voter": "qq553937961"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9579977522",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3032070551",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25018371379",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90960102",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283688365",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531925070",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190798856",
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59088771",
+        "voter": "bitchplease"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75951756252",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82470613721",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16095716680",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26464861067",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5533635387",
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3897524388",
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261774778267",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31288709012",
+        "voter": "dmesquita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17557215770",
+        "voter": "takethecannoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565688",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156093246",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1829064790",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1912895892",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3802138240",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110179538",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99514120",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57637549",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19007087827",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3701556243",
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5352351403",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24152896019",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2226328838",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55150378",
+        "voter": "thomas777young"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9593352289",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77740420",
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5356548931",
+        "voter": "nadin3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1619975669",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1566895978",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179477906",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7129013408",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10479352164",
+        "voter": "aggroed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56883857",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133209914",
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14423440417",
+        "voter": "canadian-coconut"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "905236332",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5429637055",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15543585422",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63269642",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "504557419",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3785412243",
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57710105",
+        "voter": "freesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83379327",
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2051253805",
+        "voter": "grm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55955579",
+        "voter": "loveon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5671555108",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "834930684",
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11320950885",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646418000",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1017505261",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21842253555",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2229841944",
+        "voter": "richhersey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347968139",
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1191155622",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15941029835",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58058391",
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174036044",
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120146888",
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453412386",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421588284",
+        "voter": "cemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2671425017",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7158623890",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120399254",
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2437912628",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "674315064",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77397417",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371138203729",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7837930769",
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53065445947",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "904251449",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50196187",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2750817128",
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1339289907",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4753911561",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "987466162",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5464997821",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50569452",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50514225",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2738480662",
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1626595698",
+        "voter": "stuartsandford"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240962108",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50179535",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3673561533",
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1997809158",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143406202",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27660540881",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2397740936",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50376689",
+        "voter": "timothy.sykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65509794",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1051770193",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11419406013",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52618436",
+        "voter": "joep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50263480",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276373106",
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4809049819",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199821196",
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51615039",
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "373150559",
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "840638307",
+        "voter": "annesaya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51232949",
+        "voter": "dragonice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51230296",
+        "voter": "steemq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51185277",
+        "voter": "zizzed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59814831",
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1693172493",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50873654",
+        "voter": "palladium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4983033261",
+        "voter": "donchate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50538694",
+        "voter": "fenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3631166793",
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117880628",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3603886924",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361011252",
+        "voter": "julia26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162925257",
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1384715979",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162274563",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155476058",
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155469045",
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161205518",
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161179339",
+        "voter": "bethesda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157931180",
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157799009",
+        "voter": "photorealistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154649753",
+        "voter": "serena199"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157745750",
+        "voter": "digitalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154619387",
+        "voter": "gia7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2437573030",
+        "voter": "dresden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154157014",
+        "voter": "richie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154096626",
+        "voter": "coraline88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157182398",
+        "voter": "planet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157176058",
+        "voter": "cybergirls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153838109",
+        "voter": "harlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153800757",
+        "voter": "yanuel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153751482",
+        "voter": "daritza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156837244",
+        "voter": "capcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156411729",
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156194471",
+        "voter": "stimmt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159164412",
+        "voter": "disneypixar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3795879512",
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158904262",
+        "voter": "animaltooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158842356",
+        "voter": "sixthsense"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306773356",
+        "voter": "modernbukowski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155493039",
+        "voter": "steem-wallet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158486055",
+        "voter": "zendesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13292298415",
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158308204",
+        "voter": "budgiebee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118460104",
+        "voter": "dealzgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155096689",
+        "voter": "zapster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288371810",
+        "voter": "wakeupworldnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157826099",
+        "voter": "busy.pay"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-157775128",
+        "voter": "ekremi12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139118281",
+        "voter": "storage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154575867",
+        "voter": "cbd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154575867",
+        "voter": "junk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154575867",
+        "voter": "hug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154575867",
+        "voter": "bearcub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154575839",
+        "voter": "cyberpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157743184",
+        "voter": "antaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157593613",
+        "voter": "steemdesigner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "528965668",
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3691374587",
+        "voter": "anritco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157332453",
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157167161",
+        "voter": "lisa2999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153827206",
+        "voter": "keisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116908677",
+        "voter": "blackmarket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135367916",
+        "voter": "gifts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153827178",
+        "voter": "int"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157376800",
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107664572",
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156048961",
+        "voter": "alexfein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129371412",
+        "voter": "steemtrail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155709738",
+        "voter": "theoryloader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152585751",
+        "voter": "jlsuarez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152350560",
+        "voter": "eastcompton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142929185",
+        "voter": "seth21smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145963713",
+        "voter": "adarcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136784207",
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148916483",
+        "voter": "bromejs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124602411",
+        "voter": "paulocouto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151807232",
+        "voter": "squadron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148766242",
+        "voter": "clovick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151754313",
+        "voter": "dek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151525581",
+        "voter": "kevinfoesenek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153200332",
+        "voter": "emgavin"
+      }
+    ],
+    "author": "roelandp",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<b>About <a href=\"https://steemit.com/boredom/@roelandp/embrace-boredom-a-little-story-about-getting-into-the-zen-and-dish-washing\">5 weeks ago when I was doing the dishes</a> it suddenly popped up to me. _\"Steemit is great, how cool would it be if many steemians from all over the world would meet in real life\"_. And so the idea of SteemFest (working title SteemCon) was born.</b>\n\n<sup>Tbh the whole Steemit launch and vibe reminded me of the early days of Twitter, where you got to know so many new people in such short time, but only online, and when we finally met at a meetup it was epic. I still have many friends and acquaintances from that period. </sup>\n\nThis idea of a global \"conference\" to enable steemians to meetup kept 'bugging' me and I started talking to some people from the community on Steemit.chat how they would feel about this... Overall the response was: _\"Great! when can i book my flight?\"_ So i knew I hit somewhat of a \"want\" here...\n\nI really like the local meetups and they really add value to the Steem ecosystem but for SteemFest the \"vision\" is to bring many steemians from all over the world together to nurture new IRL relationships, learn from each other and just have great fun.\n\nSince this idea was \"kinda big\" from the get go I wanted to have official endorsement by Steemit HQ in the USA so I reached out to @ned on Steemit.chat with the following: \n\n<table><tr><td>\n<code>\n\n\nNed, I'm dabbling with the idea of having some kind of bigger get-together... Like a conference but not too corporate but <b>try to embrace the Steemit frontpage feel in a day full of diverse content... Sort of Ted X meets Pecha Kucha</b> etc. Best of confs (imho) is to meet other people and most fun I recall was meeting twitter people for the first time IRL... <br>\nAmsterdam could be a fitting place, but I am biased... but might be nice to cut ties from home for a few days \ud83d\ude42 Have you guys thought about something like this already? <br>\n<a href=\"https://steemit.com/introduceyourself/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp\">Before coding I studied Hospitality Management, worked at a festival for a couple of years, and have afterwards organized a couple of hackathons</a> (organizing 1 at the moment too). \n\nThink about it...!\n</code>\n</td></tr></table>\n\nAnd yes, he was very enthusiastic about the idea. So from there my thoughts where: _Wow, this can just really happen!_\n\n<b>And so it will! </b>\nReally proud to pre-announce this! So you can save the date for:\n<hr><h1>SteemFest 2016</h1><h2>11 - 12 - 13 November<br />\nAmsterdam, The Netherlands</h2><hr>\n\nhttps://s13.postimg.org/rmwo22hw7/steem_Fest_poster_playground.jpg\n(Yessss  @cass is officially aboard ofcourse :D with great designs!)\n\n<h3>What will it be all about?</h3>Steemit is different compared to other 'Blockchains'. You might have heard the term \"Blogging is the new mining\", and yes Steemit is a great mix of diverse thinkers, technophiles, libertarians, crypto enthusiasts and creative people in general. \n\n<b>The conference global program schedule will be as followed:</b>\n\n<h4>Friday 11 November (Day 0): </h4> _People fly/travel to Amsterdam_. Night drinks in the official conference hotel (package deal will be announced asap) Volkshotel.nl\n\n<h4>Saturday 12 November (Day 1): </h4> _Plenary Conference_. In the morning we go by boats from the Volkshotel to the Conference Venue in the city centre. <b>The conference will be as diverse as Steemit's Frontpage. 20 minute pecha kucha / Ted X style presentations.</b> Part of the program is already set, and the rest will be open for your suggestion (soon more on that). In the second room workshops, and well have Lunch, Dinner and a Night party (with Steem Djs) in this place too.\n\nNote: <b>This day will be livestreamed and recorded, so no one will miss out</b> (well,... Amsterdam of course), even if you somehow can't make it!\n\n<h4>Sunday 13 November (Day 3):</h4>_Unconference day_, called the \"Red Light Mashup\" where we are able to enjoy a \"late sunday breakfast\" in the hotel (until noon) and go on a longer boat tour along the canals to the oldest part of Amsterdam, which won't be that much about XXX in on a sunday during daytime and you can 'hook'up with fellow steemians as a diverse set of activities is planned nearby for you to pick: Guided tours, climb the Old Church tower, visit a weird attic museum on the canals, follow a workshop, grab a coffee, explore side street surprises and we have a base hangout (looking at a former arcade hall at the moment), all within the vicinity of one-other. This lazy sunday afternoon is followed by a closing dinner and drinks in the Volkshotel.\n\n<h3>Costs $$$ and Wins. How does 1000 Steem Power sound to you?</h3>So yes: drinks, lunches, dinners, open bars, conference venues that must cost a shitload right? \n\nThe idea of this event is also to show the power of Steemit and next to support from Steemit HQ, quite some whales are supporting SteemFest and therefore help lower the ticket price a great bunch for SteemFest to make it as accessible as possible for any Steemian to join. \n\nVery soon (this week) we will communicate the conference ticket price. We are even working on a 'Steem Travel Reimbursement Fund' where you can apply to get part of your trip paid by this fund, based on miles travelled!\n\n<b>What we can already say is that Steemit HQ has this supercool (!!!) offer for all Steemians showing up  (with a ticket (available soon)) in Amsterdam: 1000 SteemPower onto your account! </b>\n\nWe have also bargained a great package deal for the <a href=\"http://volkshotel.nl\">Volkshotel</a> for the given dates and more info will be published on that soon. This will be the official hotel and key events (opening drinks, closing dinner, boat departures) will happen from here, so its great to book a room there. Soon more info. We have blocked 130 rooms for the conference, so that would mean the hotel would be practically owned by Steem people. LOL.\n\n<h3>What can you do now already?</h3>\n1. <b>Save 11-12-13 November 2016 in your agenda</b> and book a flight / train / start arranging visas!\n2. <b>Follow @steemfest the official account for SteemFest</b>\n3. <b>Signup via <a href=\"http://steemfest.com\">SteemFest.com</a></b>\n\n_Wait with booking a hotel_ until we announce our hotel package and ticket price. \n\n<h3>_Soon_ to be published on @steemfest</h3>\n- Conference Ticket price (trying to make it 1/4 of the costprice per person)\n- Hotel package details for the official conference venue \"<a href=\"http://volkshotel.nl\">Volkshotel</a>\" (130 rooms blocked)\n- Infos on the _Travel Reimbursement Fund_ to claim back (part of your) travel costs\n- First names and 'call for program ideas'\n\nFinancially I can say is that this event will be run of @steemfest which will turn into a multisignature account very soon (before sponsor money will be put on the account). More info on that soon, but you can already check @xeroc's recent posts if you want to learn more about multi-signature steem accounts.\n\n<h2>All proceedings from this post will be transferred to the @steemfest account and help fund SteemFest 1</h2>",
+    "body_length": 7146,
+    "cashout_time": "2016-10-14T06:56:03",
+    "category": "steemfest",
+    "children": 160,
+    "created": "2016-09-12T22:15:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemfest\",\"steemit\",\"steem\",\"conference\",\"amsterdam\"],\"users\":[\"ned\",\"cass\",\"steemfest\",\"xeroc\"],\"image\":[\"https:\\/\\/s13.postimg.org\\/rmwo22hw7\\/steem_Fest_poster_playground.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/boredom\\/@roelandp\\/embrace-boredom-a-little-story-about-getting-into-the-zen-and-dish-washing\",\"https:\\/\\/steemit.com\\/introduceyourself\\/@roelandp\\/my-proper-introduceyourself-hello-i-m-roelandp\",\"http:\\/\\/volkshotel.nl\",\"http:\\/\\/steemfest.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T22:18:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 437372887623984,
+    "parent_author": "",
+    "parent_permlink": "steemfest",
+    "pending_payout_value": "11198.576 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl",
+    "post_id": 934855,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[save the date] SteemFest 1 - 11/12/13 November 2016 - Amsterdam, NL",
+    "title": "[save the date] SteemFest 1 - 11/12/13 November 2016 - Amsterdam, NL",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemfest/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28491948185081",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2335389073809",
+        "voter": "fminerten"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "769023873",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253972738407",
+        "voter": "fmooo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7537919362014",
+        "voter": "steempty"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "644738319706",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28854877817",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17309122987533",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14661315769715",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37843941273929",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31846016835584",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35671630677045",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7085295375194",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2874445432443",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6145554009686",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9016260471946",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3183112492799",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223370422303",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5839398288147",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377387227766",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6855027639798",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "5500",
+        "reputation": 0,
+        "rshares": "11539124623420",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113229928926",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33307827345",
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "935398055643",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "790314875205",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "38014593246",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314383371770",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142457556177",
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2468539488",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2015275654813",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2996002946",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "567264912",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3652788632540",
+        "voter": "complexring"
+      },
+      {
+        "percent": "4700",
+        "reputation": 0,
+        "rshares": "2778025237009",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41834504786",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1323295404",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170640910",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136064409295",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31255480098",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56420427341",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21635638792",
+        "voter": "lee3"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "108653496277",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1103266418548",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342922310367",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72295502766",
+        "voter": "vip"
+      },
+      {
+        "percent": "9700",
+        "reputation": 0,
+        "rshares": "819073434426",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252013681076",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9017296731",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11946225183",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "492323222",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "716601913",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2619027587683",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18669898870",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44105800633",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94216559894",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354716781559",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26669398602",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230037599",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19394879350",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9041369176",
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1261450616",
+        "voter": "pstrident"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1558881665",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22663466478",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10271411415",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418993962462",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116313551950",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15484783543",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23697180464",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3980653569",
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90122533468",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2965778688",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5386719054",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8284357450",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185048934927",
+        "voter": "bleepcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23204359427",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29123857192",
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483152352",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5639122835",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115612591144",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411934547489",
+        "voter": "bitacer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46486386193",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2134560502",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "344078198076",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7122387198",
+        "voter": "taoofsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8580770717",
+        "voter": "generalizethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254132895141",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3342907840",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2164745847",
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2009920367",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39851552003",
+        "voter": "shagda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16838470622",
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9616772558",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73767981753",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5498455770",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1346484060",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58992402649",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1478055908",
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4702449999",
+        "voter": "xav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1399620602",
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1451244461",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19195948463",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413559341",
+        "voter": "viet-ngo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41379392785",
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1703064758",
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1737651089",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73756894677",
+        "voter": "kennyrowe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "284638006",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144640411",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346429583563",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29597937618",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417817338",
+        "voter": "argsolver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48191210281",
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18708488245",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537523962057",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "292841176",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95125372242",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218111827316",
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202957999688",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1645357112",
+        "voter": "arskiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116877698689",
+        "voter": "loveofprofit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95985729250",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184128290548",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10367032406",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400302600",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32037243217",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473402236",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154656119780",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386331156879",
+        "voter": "the-alien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290189917167",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39107988622",
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55062632499",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18538545509",
+        "voter": "samether"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-43939196830",
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62320436553",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2908355651",
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3892379945",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76726510652",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2985433139",
+        "voter": "ola-haukland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152272635210",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44480116252",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13377752170",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398461524",
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78734595421",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "727887271",
+        "voter": "menace.coin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "654109848",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1219887702",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3930605017",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29431483693",
+        "voter": "joelkatz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41966723743",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96675381279",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3714118085",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194942153412",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": "1450871177480",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663156465",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66341454434",
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304955387",
+        "voter": "oleim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1514161114",
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216898475237",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26443469191",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "739465956",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34892494699",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24548710514",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30032749687",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10527048441",
+        "voter": "vladon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31276212589",
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20855598487",
+        "voter": "niliano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3781209659",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70684007986",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5151537284",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5151147287",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393454479815",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83190211574",
+        "voter": "blocktalk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1841038867",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17574929980",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6264406429",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6562084749",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55630120628",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17651204278",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25962920064",
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13639564439",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1225170601",
+        "voter": "fonzerrellie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13937988521",
+        "voter": "akado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336297746",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4368888143",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090523115",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262266700",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127433544240",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7701781388",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4783965778",
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266349543845",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4716798929",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "761563201",
+        "voter": "stalnionis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098337565",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "93048320",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4139673649",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250310044",
+        "voter": "jn024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3631731140",
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9863745101",
+        "voter": "getssidetracked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6985662723",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17767256479",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21098879051",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249925611",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1684014369",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106076972638",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9107229905",
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24035598380",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5644023807",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4369252516",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7464583856",
+        "voter": "sillyfilthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20417427205",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376848368",
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253745858",
+        "voter": "bitnation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123462305695",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12932343539",
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4873699343",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290611180",
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65905815219",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252012825",
+        "voter": "cryptid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211326450791",
+        "voter": "guerrint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4600206551",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490084881",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31572013272",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328251913",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279180664",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331116160",
+        "voter": "linkku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415946152",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039837719",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "589197515",
+        "voter": "iamjmgx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38500935552",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249477849",
+        "voter": "concave"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39100935313",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249223280",
+        "voter": "leonalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2831939062",
+        "voter": "kepo777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80099998580",
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103881225828",
+        "voter": "conspiracy-guy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "735351436",
+        "voter": "korneta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37312425087",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12964275395",
+        "voter": "jazzka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10574593346",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13360466504",
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107807940931",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10232321132",
+        "voter": "becerra18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1834917255",
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3209043458",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19465926763",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6555717218",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41262623155",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245149849",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14991073706",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "542889321",
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17625843355",
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "700",
+        "reputation": 0,
+        "rshares": "8952283616",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4593945180",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4124574932",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2686633918",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8002312708",
+        "voter": "ssjsasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3944099463",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244791595",
+        "voter": "lisadeboer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41464124225",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117124263472",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6501376665",
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2469062281",
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "656078195",
+        "voter": "granin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78889019157",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19449576987",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306348387",
+        "voter": "lioliomir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1403659870",
+        "voter": "decrypt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341238506547",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34152605660",
+        "voter": "alexfortin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15504743786",
+        "voter": "gubbes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11395824102",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267970892",
+        "voter": "medge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116026598668",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2840645399",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5502577296",
+        "voter": "r33drum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6040214084",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2888746585",
+        "voter": "cashbandicoot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24870513211",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59926281450",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237023898",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5989513477",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12376124316",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179196273146",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73573832782",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9493199624",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "406075645",
+        "voter": "danroseman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2348727450",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216984975",
+        "voter": "ricardolucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7019901179",
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250267568",
+        "voter": "jza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240285537",
+        "voter": "coinrun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2504444195",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109147085939",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230764863",
+        "voter": "mazzaneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12600155383",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1906083673",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32088583721",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7291620508",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25830549400",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55407549746",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419389841",
+        "voter": "bigedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3384146535",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14661229813",
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263231984",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4795024069",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84104092489",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8685766116",
+        "voter": "piramida"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1677935166",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239130940",
+        "voter": "flurablastin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11399002586",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244791136",
+        "voter": "ragnarok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1684121650",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19950040691",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152514663334",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126870195",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8322538338",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14469419872",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1369418111",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32765263830",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119473644",
+        "voter": "thisischris225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113405244",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487683432",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1034196167",
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24615545460",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8236751951",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7304524377",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2623984996",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12248854455",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4434198068",
+        "voter": "drako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9461724597",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51624227800",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5034293849",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "953304837",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118779815",
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1901709746",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10418924742",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1240350052",
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "507211664",
+        "voter": "mephdxa21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120135983",
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2236570764",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118387131",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114054397",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "441571677",
+        "voter": "vanis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115964286",
+        "voter": "theleximus1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137600184786",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "359207103",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1033295035454",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118154645",
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28141150594",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146751860",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118173204",
+        "voter": "roslinpl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32878858013",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117996651",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4923448193",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658421795",
+        "voter": "cooper10510"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46530176604",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695718",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116684095",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1183318721",
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101095537",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6165371740",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211677715438",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189774281",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13448674717",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1076239526",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4740064029",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4441797036",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8367388073",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152534576",
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290648727",
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1368931695",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17488988290",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36177519488",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231269649",
+        "voter": "aleksandra28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12139886030",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613169861",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2413942266",
+        "voter": "anon.news"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2405047992",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230402080",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389417359",
+        "voter": "vadim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62904955344",
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239266696",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3155521853",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18569937087",
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5638531290",
+        "voter": "unseenuno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108632879",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115083433",
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22722737459",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "723837341",
+        "voter": "djinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111274604",
+        "voter": "peace77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146300502",
+        "voter": "borntowin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224221645799",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6361831397",
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115836709",
+        "voter": "linklad13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57817214351",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55944470815",
+        "voter": "trove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646540649",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169718576",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120629144",
+        "voter": "pisteem01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3907262027",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1543136937",
+        "voter": "weenis"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-3912751573",
+        "voter": "spookypooky"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-11111064311",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "685121070",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5944949769",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78410608832",
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109738278",
+        "voter": "jeffwood4office"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58248653",
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65444875",
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "526827571643",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15285809644",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10166431213",
+        "voter": "lasvegasgirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8714341012",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17665793759",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8300135915",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8255174852",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4969230243",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69432094",
+        "voter": "rjarmon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1354364342",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3958915129",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3958897309",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3958885438",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "9801693464",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1446696248",
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2117975069",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267237960675",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2593793851",
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24216190808",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64944453",
+        "voter": "play"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10673639106",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5022536529",
+        "voter": "aleksandraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34141330055",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2369229878",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66162336",
+        "voter": "fbotha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "789433125",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5435472901",
+        "voter": "jrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63300522",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19962241247",
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4845067603",
+        "voter": "lianbing"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3958548557",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3958536002",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3958527539",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3958503881",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6803868862",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3958485414",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64421544",
+        "voter": "useless"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3958463351",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63869394",
+        "voter": "ajareselde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64287099",
+        "voter": "sumee1313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3189570071",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "19943218830",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1960335073",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147294795",
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8566344676",
+        "voter": "trending"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180513020",
+        "voter": "darkunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97853188",
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5534757981",
+        "voter": "tannukas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7418993028",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113166245",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89782930",
+        "voter": "jefflee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690065226",
+        "voter": "ezel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121680194",
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4395232293",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21006063949",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63534357",
+        "voter": "themrserhio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59488360",
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204161047",
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63514042",
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65486420",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1900541345",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28283144452",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328256060",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63616030",
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63203593",
+        "voter": "gargamel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8545875688",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4831441172",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62006301",
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146043651936",
+        "voter": "ghwang2888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62965784",
+        "voter": "apsydium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7013888258",
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62914952",
+        "voter": "ccbison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21978202143",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169623708",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63536274",
+        "voter": "willybot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62928860",
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62830022",
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19233086490",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3495600728",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167462543",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760465830",
+        "voter": "kdugar"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1885740862",
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1351292011",
+        "voter": "pseudonymwriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63963399",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "541334147",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1791378493",
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6355609131",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59927400",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2685807725",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69558111",
+        "voter": "sarita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62069775",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218355610",
+        "voter": "wildwar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1326268544",
+        "voter": "nords"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63775214",
+        "voter": "laissezfairedr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62214076",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4035295059",
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61773174",
+        "voter": "polyball"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86541852",
+        "voter": "teambitwala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61728337",
+        "voter": "pbelavin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68031139",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66000721",
+        "voter": "chicken1990"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2089597288",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87692388",
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54300455",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59947540",
+        "voter": "pda11111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61676853",
+        "voter": "leraakulenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588775942",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459498616258",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5147968544",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71513734",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230124017",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60566656",
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1068083999",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59304146",
+        "voter": "xplice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109008307",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214290731",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2746517544",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2406385343",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1032399388",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71453032",
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60204020",
+        "voter": "jhalde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203275427",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154555764",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376001676",
+        "voter": "manicmidnight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4201329781",
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50510798",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3953153747",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53959064",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3956428199",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58812716",
+        "voter": "x5cc7fd68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59648980",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59591505",
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "968938988",
+        "voter": "followmyvote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2860230615",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59855735",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59274142",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59086606",
+        "voter": "evavavoom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16010979585",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141721000",
+        "voter": "djohnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58989135",
+        "voter": "gejoksch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075269056",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9150608728",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69441445",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21500216282",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58637398",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6789442806",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2212826369",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71169323",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2653009630",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8000893923",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53804048",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58743942",
+        "voter": "robind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77746646",
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59032754",
+        "voter": "andyseo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65468445",
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58700943",
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58631508",
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58625501",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57886832",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57369558",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57860340",
+        "voter": "vladimirperic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57259372",
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60092482",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66067014",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2529223442",
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1596951422",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60086764",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55320371",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197939179",
+        "voter": "zrc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118704463",
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58199924",
+        "voter": "theverywiseowl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89410093",
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13964360957",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391087206",
+        "voter": "celestial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60075109",
+        "voter": "allbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58270400",
+        "voter": "awareindeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58895126",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169640892",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56919346",
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58025713",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56857700",
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58068998",
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74076405",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153933584",
+        "voter": "groovedigital"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1286952043",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57909399",
+        "voter": "starbuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57896578",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61826880",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57828337",
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39484597553",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17675131231",
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56812654",
+        "voter": "cqdyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57729852",
+        "voter": "andrewkhor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364408983",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67601255",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57664781",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57652422",
+        "voter": "patrickulrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57637549",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4560797950",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57626781",
+        "voter": "paulh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1199873999",
+        "voter": "kyronlahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198034422",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380730401",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60776041",
+        "voter": "pabich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4387200094",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147954143",
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63597509",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8550182378",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58815096",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145093296",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70392789",
+        "voter": "decentro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57440888",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10203872162",
+        "voter": "lsparrish"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3939737612",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "643838507",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104678793",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7206813825",
+        "voter": "joscha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2147943423",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57193795",
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57192135",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "877325912",
+        "voter": "epiphany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57144489",
+        "voter": "darwilliam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57136378",
+        "voter": "nicks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57322273",
+        "voter": "alysyaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389060349",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55803065",
+        "voter": "ajaub1962"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57080810",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1370010161",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565305",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55619206",
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55612640",
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55749671",
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64483326",
+        "voter": "chance95"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-56616688",
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1878118373",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037555937",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "786648212",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56559977",
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56490705",
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55340759",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157637437",
+        "voter": "kevbonneau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2649813769",
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55305400",
+        "voter": "cubemonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57600218",
+        "voter": "irishphantom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56367137",
+        "voter": "shakimclark7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56356137",
+        "voter": "volsenvols"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57394051",
+        "voter": "justme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025746",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54993742",
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1888513225",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15954214842",
+        "voter": "natureofbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56823191",
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59169115",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55996505",
+        "voter": "roadie73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55959170",
+        "voter": "dirtyjr101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839161",
+        "voter": "cyborg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55903826",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55881328",
+        "voter": "erixter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55863107",
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72771670",
+        "voter": "powercouple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58937867",
+        "voter": "bobworks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155287",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65031439",
+        "voter": "ender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54910567",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55679663",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55676046",
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55670413",
+        "voter": "thedesigner"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55524391",
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171651",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54535722",
+        "voter": "skapart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54483594",
+        "voter": "j2washere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "761529483",
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55557437",
+        "voter": "prestonslove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433189",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55498559",
+        "voter": "peteyates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55399836",
+        "voter": "labatyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55343898",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69851246",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55312090",
+        "voter": "opnmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53111729",
+        "voter": "crunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94868887",
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52969809",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52911110",
+        "voter": "forcestaff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55065602",
+        "voter": "hereisflaco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55470927",
+        "voter": "darryljones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51780266",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53918464",
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53917140",
+        "voter": "redone111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54987436",
+        "voter": "yogevblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93233347",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54939048",
+        "voter": "kato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54937602",
+        "voter": "annasophia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53854134",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54925589",
+        "voter": "jpcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54920519",
+        "voter": "tankad0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146233604",
+        "voter": "dereremit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54834816",
+        "voter": "ripper234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54833622",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52657102",
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54793437",
+        "voter": "bahalouati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54763174",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51488252",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50387158",
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54504919",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54666127",
+        "voter": "otis13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53589726",
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54658188",
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52504270",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54646027",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50351227",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54626102",
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54604880",
+        "voter": "damickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50319970",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50307404",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52447972",
+        "voter": "olivianakano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50305873",
+        "voter": "steemninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54563126",
+        "voter": "danyalos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53486763",
+        "voter": "ivanba12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54506784",
+        "voter": "tokyodesu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54492546",
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54481723",
+        "voter": "megaminx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54476490",
+        "voter": "adpt2apocalypse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54471695",
+        "voter": "goldenera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53400711",
+        "voter": "nancycoroa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53387774",
+        "voter": "ginoside021"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53387047",
+        "voter": "licegra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53381371",
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54445293",
+        "voter": "kimjubo"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-53377227",
+        "voter": "icykate0623"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53365070",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54429912",
+        "voter": "promaxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54420285",
+        "voter": "swisswatcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54401708",
+        "voter": "moshilhaiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54399903",
+        "voter": "donzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54391297",
+        "voter": "ladyboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54390845",
+        "voter": "pampers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50115023",
+        "voter": "bik1980"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54364496",
+        "voter": "tweek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54364415",
+        "voter": "sai143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54363190",
+        "voter": "simongb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54353696",
+        "voter": "fortunaforall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54350581",
+        "voter": "greinsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54345163",
+        "voter": "mellisantombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54344083",
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1050379429",
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54302024",
+        "voter": "gigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54266754",
+        "voter": "greensmurf45"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52657220",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51566258",
+        "voter": "cgfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50427453",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50799557",
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51077428",
+        "voter": "arnebolen"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50375830871208,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"https://i.imgsafe.org/35c3896fbe.jpg\" width=\"400\" height=\"386\"/></p>\n<p>Hey All!&nbsp;</p>\n<p>I'm Charlie Shrem, Bitcoin Pioneer and founder of one of the earliest and largest Bitcoin companies BitInstant. I also founded the Bitcoin Foundation and served as its first Vice Chairman before stepping down the day after my arrest. Since then I've consulted for dozens of crypto companies, public and private, and since my release from prison, working on my own stealth project.&nbsp;</p>\n<p>Been hearing a lot of great things about Steemit, and checking it out :)&nbsp;</p>\n<p>Feel free to post some questions, I will try to answer. In the near future I will likely do an AMA here!&nbsp;</p>\n<p>Verification:&nbsp;</p>\n<blockquote>\u2014 Checking out Steemit! Verification - Charlie Shrem (@CharlieShrem) <a href=\"https://twitter.com/CharlieShrem/status/765619829109772288\">August 16, 2016 &nbsp;</a><a href=\"https://t.co/ZmVtaf09QL\">https://t.co/ZmVtaf09QL</a></blockquote>\n<p>Here is an except from my recent blog post!&nbsp;</p>\n<blockquote>A few weeks ago I was released from Lewisburg FPC. I want to thank the hundreds of people who wrote, sent books, money, magazines, and their support. There are no words to describe my appreciation and affection to all of you. Thank you so much.Currently I\u2019m&nbsp;home in southern Pennsylvania where Courtney and I have relocated temporarily. We will spend the summer months enjoying the outdoors, good food, family, friends and the small things that I missed while I was away, and at the same time transition back&nbsp;into normal life. I\u2019m grateful for the opportunity to be back home.I\u2019m excited to move forward onto new projects and looking forward to seeing what everyone has been working on! &nbsp;<a href=\"http://charlieshrem.com/onward/ \">http://charlieshrem.com/onward/&nbsp;</a></blockquote>\n<p>Charlie</p>\n<p>Edit: You can follow me on twitter here: https://twitter.com/CharlieShrem</p>\n<p>Follow my blog here: https://charlieshrem.com&nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 2031,
+    "cashout_time": "2016-09-16T21:13:42",
+    "category": "introduceyourself",
+    "children": 179,
+    "created": "2016-08-16T18:46:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduceyourself\",\"helloworld\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/35c3896fbe.jpg\"],\"links\":[\"https:\\/\\/twitter.com\\/CharlieShrem\\/status\\/765619829109772288\",\"https:\\/\\/t.co\\/ZmVtaf09QL\",\"http:\\/\\/charlieshrem.com\\/onward\\/ \",\"https:\\/\\/twitter.com\\/CharlieShrem\",\"https:\\/\\/charlieshrem.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T19:09:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 263548805255657,
+    "parent_author": "",
+    "parent_permlink": "introduceyourself",
+    "pending_payout_value": "10316.600 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "charlie-shrem-is-now-on-steemit",
+    "post_id": 630733,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Charlie Shrem Is Now On Steemit!",
+    "title": "Charlie Shrem Is Now On Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduceyourself/@charlieshrem/charlie-shrem-is-now-on-steemit"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29065026087965",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39193647153",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "350983411353",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "100010071",
+        "voter": "style"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "644561565411",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28851409050",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16629632053912",
+        "voter": "rainman"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "678749154221",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "290442248826",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31846016835584",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64424123116414",
+        "voter": "ned"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "40990136716",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1465429338",
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "335898961474",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "344351841045",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6300691402888",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6374112970391",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3183104033800",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223360548647",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384933625306",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6854979526916",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684870754215",
+        "voter": "justin"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "16484473824725",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120610759042",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5645824730155",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2203971895865",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4798801965393",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177869761105",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1000072774079",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5307342946866",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1714782870044",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "790134973068",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314382747160",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3084952552",
+        "voter": "boy"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "39514772539",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3744099613",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "708916690",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3778265352120",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1408131653617",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5874464366093",
+        "voter": "clayop"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1587095276274",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490952568782",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52162307417",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1653744064",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5353703077673",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213265420",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1344827833395",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33415320588",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4768294498878",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "462168403886",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "440397344978",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2948934371032",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145153034071",
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365218637510",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320054757231",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836053297246",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252012000857",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8983689584",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613500608",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "883033583",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18831931707",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "847367661232",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8541231709",
+        "voter": "fbsvk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2468314738",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131059028668",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99407442284",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18422461105",
+        "voter": "jakev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22980185355",
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287496994",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19048759573",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14049617378",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153266720533",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28030491514",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10809412876",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78677360557",
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15484655885",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4114116979",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80912126570",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91920078762",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16986781098",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19581497371",
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2965778688",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19864981951",
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4953536758",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59389567521",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1176938440",
+        "voter": "lovelace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22730046248",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5174412203",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3989110433",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29123857192",
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483152352",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5998136643",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6860622525",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "539229693",
+        "voter": "manu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46486294798",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613633859",
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1792970687",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1695482795421",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17970582996",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40256285576",
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121040089554",
+        "voter": "bbqbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "598749018",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3197564021",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2164745847",
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16501701210",
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59189682608",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7522215721",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5498455770",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60171794063",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14553627890",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52133457039",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1450594023",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421830528",
+        "voter": "viet-ngo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9012478291",
+        "voter": "gore84"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "928498426",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144640411",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401086480",
+        "voter": "bkz-mark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323291888380",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99230266456",
+        "voter": "oscarp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5155051731",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29597883122",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5607058267",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48191210281",
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "423526577",
+        "voter": "shane-loomb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580447736426",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3379051883",
+        "voter": "crypton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "292841176",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18892584759",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227661174549",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14825107442",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9160294327",
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3641210640",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184127210501",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10839974752",
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10367032406",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400302600",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2732164481",
+        "voter": "patrick-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311649953",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154650902490",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258682311783",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218701281553",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53913190618",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "420660720773",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62485569470",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74930713836",
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32242309393",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72465284432",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187339395265",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1071159098",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19853951219",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130506723134",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48263580054",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4225748527",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13376879780",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77121637987",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129350122394",
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38007430652",
+        "voter": "kun7788"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692586897",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3820890867",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316079910",
+        "voter": "james-ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130135983609",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130569937219",
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3713808326",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19734517919",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5163259581",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299624307",
+        "voter": "knopki"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-43295372595",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208893515786",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846666893",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27044457127",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688333510",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35617668938",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5530404220",
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6209409248",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73156015714",
+        "voter": "riensen"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "102193068",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2552582711",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "139217694",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83171001282",
+        "voter": "blocktalk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8405765844",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2388357578",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "169304350",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36430901543",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6696004846",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36090146114",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51252420180",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17647343278",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "842304582512",
+        "voter": "coinfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1625043848",
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3875913318",
+        "voter": "steskoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343023700",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54498249470",
+        "voter": "norbu"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "118076270",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090523115",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262266700",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-41659756587",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46307425448",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8356388356",
+        "voter": "nobodyishome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7699122159",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16220061534",
+        "voter": "eindbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4783947613",
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3178291674",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "3317397556",
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3690681721",
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261479355",
+        "voter": "stompy"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "96259058",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280744944256",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54361788954",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13811194874",
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2520944846",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4179624293",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "111881284",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255316245",
+        "voter": "jn024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3704365763",
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253533017",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10058326169",
+        "voter": "getssidetracked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4704791719",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6985662723",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15899597932",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310292244",
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108195012801",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25970499549",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6208426188",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12569064381",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "118086118",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20416680494",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131321480287",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1648092544",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9774380648",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2068007241",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279214663",
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63749936823",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49577785960",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211325523817",
+        "voter": "guerrint"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "124327762",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24590582170",
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "442037344",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163154891628",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32840023620",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749258576",
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278125905",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6164439153",
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415946152",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1921778079",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1158676315",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249351212",
+        "voter": "ryno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38500935552",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1389411746",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249212724",
+        "voter": "sintal1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33866686438",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "353762811",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9272236814",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249223280",
+        "voter": "leonalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17384527304",
+        "voter": "freiheit"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-242222642",
+        "voter": "vernik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251825448",
+        "voter": "mahnunchik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351594067",
+        "voter": "apes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51232668486",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12019557908",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116814208271",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198026604",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255250482",
+        "voter": "davman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "999982966",
+        "voter": "themax37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13627675834",
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "963672133449",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105556931353",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10231659869",
+        "voter": "becerra18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1780499448",
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3825830255",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836023833",
+        "voter": "alkemix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4463547529",
+        "voter": "yun093"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536550051",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6555644383",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41262623155",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239665790",
+        "voter": "sairji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "970743271",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304214503",
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252407179",
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47581149959",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244217894",
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17625843355",
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4691528458",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4123768079",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2841500925",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3863607637",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11061811644",
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116961796010",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2523930332",
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "845201623",
+        "voter": "bmmmmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "358696073",
+        "voter": "suicidemime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "567047214",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73040531109",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19449504237",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241723619",
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17506904849",
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236954632",
+        "voter": "dashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19440035025",
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10208713003",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116021930707",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3714148047",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1129586281",
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236405035",
+        "voter": "geezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2831943731",
+        "voter": "cashbandicoot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25365048399",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50327671232",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4874784593",
+        "voter": "karoline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241764375",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71993072510",
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156801812336",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58942331065",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7862851677",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3350952714",
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3441787535",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10098916070",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16900513758",
+        "voter": "rukrasnov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11802802859",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2865743759",
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1708370487",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240939573",
+        "voter": "gottod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570074959",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7160262860",
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399143272",
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12987519532",
+        "voter": "logicwins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235633387",
+        "voter": "hanno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350361322",
+        "voter": "r3b37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8273541325",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104866231144",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453154289",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408980570",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235474350",
+        "voter": "mazzaneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1827915010",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33087660059",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240031646",
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8875408008",
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235661413",
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-240333753",
+        "voter": "phuocsim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26195832780",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14473739170",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25830030559",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537351543",
+        "voter": "wojooo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3288381181",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258070573",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4692425081",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84104019612",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239689633",
+        "voter": "ripexz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234592637",
+        "voter": "jamique"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456113284",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229711964",
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239086107",
+        "voter": "ibeyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6791005950",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11864195113",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6131226904",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18779239474",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992096822",
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4405666697",
+        "voter": "deadloop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5844362550",
+        "voter": "inti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254024586",
+        "voter": "licianek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149368383295",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13333004595",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1456542211",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1172088990",
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5968161933",
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200835346",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6731469625",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12701757033",
+        "voter": "substance"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "277530511",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "749090420",
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204669482",
+        "voter": "pizarrojesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8643387438",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51623937057",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "992215238",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118779815",
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21969020834",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595197487",
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5045722000",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149637322",
+        "voter": "teia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1216029463",
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17344594034",
+        "voter": "angor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4282571209",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2988502587",
+        "voter": "loewan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276817993",
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7947869919",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179910154045",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357938237",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1033153794528",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181079553",
+        "voter": "ianvaughan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "528470842",
+        "voter": "aleco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117875563",
+        "voter": "valkir81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15694880977",
+        "voter": "steemedbroccoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17043832502",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165521214",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2946897680",
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1518428878",
+        "voter": "boity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695718",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-126987527",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112740514",
+        "voter": "sllockes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311064378",
+        "voter": "krassvs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2159001014",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5785415084",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195811507",
+        "voter": "innerexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117074773",
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175703647",
+        "voter": "turretkilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2876726818",
+        "voter": "crypto.owl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203037808685",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173066031",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117013137",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12589604473",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5143473734",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117327347",
+        "voter": "tklinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3313398970",
+        "voter": "overlord"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-300785948",
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615406581",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314792076",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17144601973",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15872861414",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2318927905",
+        "voter": "anon.news"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646330460",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1255524871",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230402080",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2515077363",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239266696",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116360217",
+        "voter": "kukuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112498145",
+        "voter": "tuppu91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134416011",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "427093789",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2977035695",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34395328042",
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157514413",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20990748319",
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5596136858",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435533857",
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117385102",
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272289480",
+        "voter": "karchersmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113500096",
+        "voter": "peace77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76809298881",
+        "voter": "ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219824678620",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488829491",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58993378905",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18318392845",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106608430",
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1805608597",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1580113648",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25847116022",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112595631",
+        "voter": "im2hard2resist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2819175239",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3721016208",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3045078021",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73734761820",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10656358989",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "913005014",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1782126949",
+        "voter": "gaitan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7772862051",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66778067",
+        "voter": "dras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1334955560",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109986570",
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65341032",
+        "voter": "ladeiafr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65444875",
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192101250",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "827559373",
+        "voter": "merej99"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "585115000042",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15285736731",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-6602930413",
+        "voter": "najoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65255531",
+        "voter": "douglasrherron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19606865230",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16956284188",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8300135915",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13210619967",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65373514",
+        "voter": "rjarmon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61344206",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122068688",
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118578167",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190566920",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4243869059",
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21464239330",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75999211",
+        "voter": "shaerox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8391266213",
+        "voter": "mrweed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64925456",
+        "voter": "denn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "332067508",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122650466",
+        "voter": "belgorogdmitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32402400556",
+        "voter": "tikal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710731872",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1976759708",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1252343433",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64920623",
+        "voter": "mr-anderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "812896951",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17449741801",
+        "voter": "r0achtheunsavory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3377785978",
+        "voter": "spiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63245124",
+        "voter": "breastsono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20361449685",
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147557970",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666229621",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163705995",
+        "voter": "adc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65146782",
+        "voter": "ajareselde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11377231920",
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2696012606",
+        "voter": "hrottie"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "22149484172",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61639012",
+        "voter": "bonus1602"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1875888695",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349060440",
+        "voter": "bitcoindon23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77113695",
+        "voter": "danilathemasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "877691020",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7567372889",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125365589",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4433662398",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "700194274",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147867259",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4559264999",
+        "voter": "blocksurf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "653009919",
+        "voter": "haley-liz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62019780",
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63501809",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63396741",
+        "voter": "aiaconelli707"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63395918",
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58465169",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1900541345",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641706818",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60818394",
+        "voter": "kojektea"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "744261148",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "230964609",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1599302189",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3790738716",
+        "voter": "dv8silencersteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63246427",
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7013888258",
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2108123426",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21624247635",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177703525",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "430813147",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94035076",
+        "voter": "ninjaboon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3862280709",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "825186326",
+        "voter": "kdugar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72470774",
+        "voter": "agrawalrohit1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27278230959",
+        "voter": "dowha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3305432410",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65028083",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "553100399",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64119004",
+        "voter": "jupiter.zeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1943836237",
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6504510560",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62373416",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2739523879",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62479088",
+        "voter": "just-me-nobody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "502206413",
+        "voter": "sharper333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664730807",
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64053985",
+        "voter": "tolgasak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54983603",
+        "voter": "efrageek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113089000",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64006701",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291582909",
+        "voter": "jtoubia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100437770",
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746690081",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54300455",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8751917059",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62542956",
+        "voter": "kana"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "790357703",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59560024",
+        "voter": "andrey000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58850431",
+        "voter": "trimpy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "524021704",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588703041",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411377435651",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119505043",
+        "voter": "sirwagginston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64672968",
+        "voter": "erotic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69981308",
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234726497",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60637775",
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60566656",
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1158711475",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60521896",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59404268",
+        "voter": "lucasnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109008307",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-277998787",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78840073283",
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2813206335",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60336688",
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2311894727",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241826833",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71213188",
+        "voter": "hutch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417896642",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59989087",
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110882929",
+        "voter": "jaggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1125810373",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "599588088",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59908156",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109781085",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59837209",
+        "voter": "chrisremus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2012644058",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59824180",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-304371474",
+        "voter": "anarchyhasnogods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59547267",
+        "voter": "andrew21w"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59521667",
+        "voter": "dave-mohican"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133222141",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106960350",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59855735",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136150988",
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5214999573",
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565034",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841764781",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59115407",
+        "voter": "ejosev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59049216",
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111174011",
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70389547",
+        "voter": "zakharsmirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56695901",
+        "voter": "gosteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1054185349",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17182681895",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9337355845",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300847113",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67898302",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399837706",
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1850437029",
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6945828193",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25426770744",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59810146",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "449613087",
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58064383",
+        "voter": "libertyminded"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58984750",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200209705",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60680583",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66567281",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68532961",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58806132",
+        "voter": "capehost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7844013650",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60893633",
+        "voter": "tcstix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80039263",
+        "voter": "alexalbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58993287",
+        "voter": "jurisnaturalist"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-54323980",
+        "voter": "rysabi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59261081",
+        "voter": "disletti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57283554",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64184750",
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57549944",
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1701639624",
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59196527",
+        "voter": "rgla216"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200326837006",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "55537337",
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58606938",
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58582901",
+        "voter": "herbertflores"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50476255",
+        "voter": "fiat19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58398424",
+        "voter": "oliv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60092482",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75596244",
+        "voter": "pery"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "592998202",
+        "voter": "bennytremble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58558284",
+        "voter": "alex1994"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2795636168",
+        "voter": "xbananax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57155862",
+        "voter": "sinner2winner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66067014",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59991526",
+        "voter": "ptmikesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57698673",
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177495059",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137097811",
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2479630826",
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60744703",
+        "voter": "jusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61681826",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60588978",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194058019",
+        "voter": "zrc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58172886",
+        "voter": "nullpointer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58145581",
+        "voter": "tylerg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67716447",
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59050884",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59284524",
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289788537",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61422695",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56909672",
+        "voter": "konstantinrf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58035992",
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76074009",
+        "voter": "adnanefs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50027958",
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61922359",
+        "voter": "kirby1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18184610664",
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60043805",
+        "voter": "genzai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118587240",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55452158",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59241410",
+        "voter": "erob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59482963",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "735839549",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53394118",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58186044",
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57844972",
+        "voter": "freemanmccoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17186561644",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55885794784",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39484524724",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56679654",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773922739",
+        "voter": "kasecucuzza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71380097",
+        "voter": "quinneaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14872611192",
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56609375",
+        "voter": "alanslaug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64281289",
+        "voter": "myvilz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364408983",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57664781",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57653356",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57652422",
+        "voter": "patrickulrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4553068392",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57620009",
+        "voter": "sfateev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86267182",
+        "voter": "freeinthought"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58004860",
+        "voter": "jones-wills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196799154",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4386763010",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291086336",
+        "voter": "trimtab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54256199",
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79719071",
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7085277650",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54561850",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297512605",
+        "voter": "exoexo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8549581647",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58449865",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59804320",
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57173176",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115279794",
+        "voter": "koningsbruggen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452142815",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57729316",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55717566",
+        "voter": "socalguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56169240",
+        "voter": "ertinfagor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2284064858",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6716765571",
+        "voter": "alasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419652844",
+        "voter": "marz.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57193795",
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "353119892",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57169840",
+        "voter": "earnings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56024009",
+        "voter": "darwilliam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57099237",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54835021",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378486516",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335535004",
+        "voter": "neurosploit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56860845",
+        "voter": "notorious4life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1235057220",
+        "voter": "victor-smirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55961578",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486184889",
+        "voter": "hej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57032457",
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56770550",
+        "voter": "dobermansden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56767767",
+        "voter": "venetor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56762567",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56761820",
+        "voter": "esraulgil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56184814",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56749063",
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55620764",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54500387",
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55737590",
+        "voter": "kingsjack123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56705083",
+        "voter": "kamisaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56864664",
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54319587",
+        "voter": "sile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1688587641",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201362230",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "871723041",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55379722",
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55340759",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157546256",
+        "voter": "kevbonneau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11257010710",
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65212139",
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99156770",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55261899",
+        "voter": "shakimclark7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55259368",
+        "voter": "pumpndumptrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136828832",
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55543546",
+        "voter": "kralizec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56332547",
+        "voter": "murph785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394487282",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56288884",
+        "voter": "phusionphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152591420",
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56224562",
+        "voter": "dennislee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56208181",
+        "voter": "omars3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56137183",
+        "voter": "upshot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56126260",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54304778",
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56051583",
+        "voter": "maestro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51626433",
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53939047",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1434361093",
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839161",
+        "voter": "cyborg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55931162",
+        "voter": "sweeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54813939",
+        "voter": "craftercrafter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55903826",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55894632",
+        "voter": "djmagrobel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64241966",
+        "voter": "tyrannyunmasked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65870847",
+        "voter": "russ512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58810758",
+        "voter": "bobworks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54690280",
+        "voter": "eef87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54660184",
+        "voter": "nevid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51374607",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54910567",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54594928",
+        "voter": "thomasdh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55676046",
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56185313",
+        "voter": "kinchent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50406805",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56634879",
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171651",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58614624",
+        "voter": "edniredo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47462900247",
+        "voter": "ummjackson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85225954",
+        "voter": "ethereumnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "761529483",
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55872960",
+        "voter": "luvtolook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50096233",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55525348",
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55498559",
+        "voter": "peteyates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55486361",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55456592",
+        "voter": "unblogd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55420308",
+        "voter": "naokiohno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55407469",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "999968844",
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55388667",
+        "voter": "surfkid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53844705",
+        "voter": "reza9090"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70864781",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55305082",
+        "voter": "gratitude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55290988",
+        "voter": "rasfos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55252692",
+        "voter": "bradgarratt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55237172",
+        "voter": "renijra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76879588",
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54129624",
+        "voter": "occultreviews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55160756",
+        "voter": "rockabilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55138616",
+        "voter": "ehkbd396vgls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55131842",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55126911",
+        "voter": "jusjayce19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55113519",
+        "voter": "mrstraume92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55102522",
+        "voter": "ingwald"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54012416",
+        "voter": "morningdoodle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52918124",
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52911110",
+        "voter": "forcestaff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55052571",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55038370",
+        "voter": "petertahoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54996833",
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54977054",
+        "voter": "bitbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54957779",
+        "voter": "kam1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53870477",
+        "voter": "jensk92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54942327",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54941471",
+        "voter": "aharmlessspider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54937147",
+        "voter": "vanessagomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52778255",
+        "voter": "o627492o"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54923082",
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53845766",
+        "voter": "reza9898"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143366278",
+        "voter": "dereremit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53836674",
+        "voter": "missagandonian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53826294",
+        "voter": "toopoorforsf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54899345",
+        "voter": "warock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54880208",
+        "voter": "smduchess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53798418",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54873574",
+        "voter": "peacefulpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54863076",
+        "voter": "milohdz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54861623",
+        "voter": "pirosb3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54860980",
+        "voter": "sammiedata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53762419",
+        "voter": "yoyoyoram"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54834816",
+        "voter": "ripper234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52683284",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54826051",
+        "voter": "holdthedoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54813538",
+        "voter": "bexir.oborael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51563976",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54766433",
+        "voter": "teekay79"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54763174",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53679390",
+        "voter": "hg8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54736573",
+        "voter": "mikebroemmel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54706268",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622370",
+        "voter": "waverider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54693928",
+        "voter": "tazouka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52547166",
+        "voter": "digitalbrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470815",
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54675427",
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54670057",
+        "voter": "lifeworship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54668641",
+        "voter": "endergirl197"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-54663894",
+        "voter": "zanovosib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54663364",
+        "voter": "alexseeker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54661520",
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54657249",
+        "voter": "jomo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54656951",
+        "voter": "noam32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53577545",
+        "voter": "j0oboi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565135",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53555002",
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54609325",
+        "voter": "dapathfinder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54598809",
+        "voter": "steemhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54592999",
+        "voter": "dal5ton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53522017",
+        "voter": "sungminz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52447972",
+        "voter": "olivianakano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50305873",
+        "voter": "steemninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54037838",
+        "voter": "redrohx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80764047",
+        "voter": "niklaszantner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155927730",
+        "voter": "drakmail"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![SteemyLoginLogo3xca352.png](https://www.steemimg.com/images/2016/08/15/SteemyLoginLogo3xca352.png)\n\n# Introducing Steemy - Native Mobile apps for STEEM! \n---\nWe've been hardcore fans of the STEEM social network since its launch.  As full-time mobile developers, we've been passionately building a genuinely *compelling* experience on iOS and Android for the STEEM network!  Today, we're excited to announce **Steemy** and show off some screenshots.  While you can't download the app in the app store just yet, our public beta is around the corner and we'd love to hear from you. Thanks and STEEM ON!   \n\n(We've included a short youtube clip of the app in action as further proof of the app's existence..see end of post)\n\n\n# Features\n---\n\n- On-device transaction signing - your private keys never leave the device\n- Master Password or Import Key login options\n- Remote push notifications for replies, up votes, follows and more\n- WYSIWYG, markdown and html editors with offline saving\n- Easily import photos from your mobile device and include them in your posts\n- Advanced blockchain searching capabilities to find relative content in new ways\n- Night mode and other theming options\n- Our backend uses our own full STEEM nodes - we don\u2019t rely on congested public endpoints\n- Open source signing components\n- more super-secret, mobile-specific features to be announced shortly ;)\n\n# iOS Screenshots\n---\n\n![IMG_1962b40b2.png](https://www.steemimg.com/images/2016/08/15/IMG_1962b40b2.png)\n\n![IMG_19548a086.png](https://www.steemimg.com/images/2016/08/15/IMG_19548a086.png)\n\n[![IMG_195501d5b.png](https://www.steemimg.com/images/2016/08/15/IMG_195501d5b.png)]\n\n[![IMG_19567a603.png](https://www.steemimg.com/images/2016/08/15/IMG_19567a603.png)]\n\n[![IMG_195792032.png](https://www.steemimg.com/images/2016/08/15/IMG_195792032.png)]\n\n\n# Android Screenshots\n---\n![Screenshot_20160815-115508414f2.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-115508414f2.png)\n\n![Screenshot_20160815-11550536f6f.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-11550536f6f.png)\n\n![Screenshot_20160815-1155007f489.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-1155007f489.png)\n\n![Screenshot_20160815-11545556c4a.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-11545556c4a.png)\n\n\nhttps://youtu.be/kHbOHuXQWg4",
+    "body_length": 2367,
+    "cashout_time": "2016-09-16T04:46:15",
+    "category": "steemit",
+    "children": 220,
+    "created": "2016-08-15T17:42:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemy\",\"steemapp\",\"\"],\"links\":[\"https:\\/\\/youtu.be\\/kHbOHuXQWg4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T06:15:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 255613028723179,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "10210.700 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "introducing-steemy-fully-native-ios-android-apps-for-steem",
+    "post_id": 615908,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM",
+    "title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29371660718992",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "626688862368",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7541985881734",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28250693080765",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14535044782590",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42083246216937",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31847138620682",
+        "voter": "val-a"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "12129844794373",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141334158275",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6501698817206",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3184405078685",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5964451869724",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377613420717",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6587340634773",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21021670276047",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107265275406",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914194154206",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1696732608212",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "848100954032",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "190998153566",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314473003984",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "9500",
+        "reputation": 0,
+        "rshares": "6341532830813",
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3225532244711",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3089099678",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3749306954",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702699870",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52583120400",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1655857695",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213411217",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118099525848",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4682326090828",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55159847445",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410598457989",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369519216224",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2725398518844",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103933614",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "868177892490",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121788005926",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22176529762",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6640715268",
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9133456319",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2340432057",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5035968695274",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1207153314956",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289693067053",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73168546803",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1041591238835",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256885763576",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27150156207",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621280543",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-380477515",
+        "voter": "grumlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "881648242604",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916108066",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390512580501",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23491351924",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44105800633",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39278159313",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24354135360",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24109850169",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287735144",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38487571811",
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23370045186",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34806312513",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419065653830",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74984746517",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14881591366",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7026975987",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143378204944",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2701197436",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80185430181",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14658768392",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12841893140",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2879550090",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16002620385",
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6087528729",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111109401524",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7357295907",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3989971308",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "479406057689",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8157474500",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81433947515",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481919923",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483152352",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3575902533",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5561218268",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45576499097",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-26021570751",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2134929320",
+        "voter": "gekko"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10710927129",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "5800",
+        "reputation": 0,
+        "rshares": "983531206593",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "174482630",
+        "voter": "generalizethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265817348263",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3490194440",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2131669640",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60401498368",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615158664",
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16339743366",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4189423849",
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5499486863",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1346484060",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7717615190",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59008577002",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1449074419",
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103662560303",
+        "voter": "amartinezque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59545420659",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52578937654",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63506777703",
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "198536945712",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2159282570",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19196399674",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1669689053",
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17925026964",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144640411",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320893770481",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29598207247",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6288437247",
+        "voter": "pauls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20335313309",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431296721253",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308253869",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93660898228",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208027011364",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24758930252",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369143537",
+        "voter": "localether-com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40437708116",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184776707493",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "407364415403",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400573725",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "46773183364",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4257916968",
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25145167004",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1700742023",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376786089",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249749342276",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "332790679144",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57383225078",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12879515910",
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3220048026",
+        "voter": "pangur-ban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188534761998",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3058274795",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3866605471",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146251416776",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47356062427",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6306835193",
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4225748527",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13378221325",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398461524",
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80383013685",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "896058523",
+        "voter": "caster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "427191549",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-212564126213",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "906072792",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1733934646",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250992002529",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3959389322",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1378940549",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41160442049",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107938878503",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5512912408",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194945682861",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "697280912421",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1951954554",
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41086701167",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16832536493",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "892471262",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26904424817",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30660670620",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31277440014",
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2355888986",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70686349526",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5418333042",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2532021807",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3209579481",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3903239525",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6565993697",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9457876156",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22978329984",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5670368834",
+        "voter": "dailyfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26010273262",
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273976358",
+        "voter": "michaelelliot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5670611695",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2722052728",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262266700",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153669812037",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8488956388",
+        "voter": "cannav"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-159843656074",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4932749135",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275430185693",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2579151404",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3704365763",
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74071631096",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2021136309",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4996136409",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1070392003",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21460033258",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4904202838",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65597288684",
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250120664",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222529448",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310292244",
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9108149297",
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25223316549",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4710470024",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2722271184",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10569711712",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128745271341",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112700770870",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50157804",
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61890023762",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18250295914",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4975060803",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290611180",
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4409532994",
+        "voter": "buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9375412184",
+        "voter": "rnevet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251776157",
+        "voter": "andreaalexandria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1000466151",
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2866228751",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "616522482",
+        "voter": "suchnewb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1296880853",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237323110200",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306347753",
+        "voter": "citizen"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-28712012369",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283197729",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749384136",
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1426692983",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67813427095",
+        "voter": "steemingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8516005869",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38458304245",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9110368141",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243980711",
+        "voter": "dzweta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220755605120",
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247802909",
+        "voter": "yopdog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37319559413",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7898664059",
+        "voter": "hammurabi"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "16716901497",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10577700327",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "194059874",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "214961025",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "198934724",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107934854792",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7225951969",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5464568050",
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3181612569",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20695600899",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14993168311",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1125370836",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "968292878",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15484021629",
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239146029",
+        "voter": "alanstruna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1311813223",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268810206",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3600291701",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4101011103",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1490014650",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3220112352",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242779787",
+        "voter": "nana.gaisie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41464485265",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237252980",
+        "voter": "nosebridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64319533899",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12709307055",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1781936449",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236983940",
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341415775183",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257634805",
+        "voter": "medge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116027572942",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2645118888",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7914038038",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236307043",
+        "voter": "bobkillaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3707781752",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58745331543",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1030211519",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241764375",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329569379",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254105623479",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72253302821",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13392468465",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3510659678",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9613474948",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2351802084",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241061237",
+        "voter": "yousaywhat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217720229",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7296928755",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-10854983463",
+        "voter": "kuriko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133837412435",
+        "voter": "vattle.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1251820074",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1930940424",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128870786992",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7017748710",
+        "voter": "mazzaneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6336924386",
+        "voter": "abharana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225841258",
+        "voter": "christianus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52528001735",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26735117210",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7154568164",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4108378906",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3687623379",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14661265975",
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263376582",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4812356236",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164300913",
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1612340975",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2419194667",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9820680090",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12356863400",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413673656",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1243378929",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22078191754",
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3984899014",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8810481536",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229383471",
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156643330877",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107453336",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190272836585",
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14188308708",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2724355096",
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30448536910",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21769840829",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21820253393",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8237456317",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7504758811",
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2319288677",
+        "voter": "metalcrypto86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200835346",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7304632447",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119084761",
+        "voter": "selectorsam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6638810695",
+        "voter": "cryptobro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12798355616",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2686642307",
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2655581111",
+        "voter": "sanbir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "813016915",
+        "voter": "stealthstrike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9192468589",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410310254",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5723274143",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2903590583",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "957269436",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2428403763",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11440429105",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105463635",
+        "voter": "ggabi.loper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117780376",
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683944752",
+        "voter": "reilag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118407417",
+        "voter": "franco8i"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118387131",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "271603264",
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118709679",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11756961995",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125398548",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "952336459854",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1968403637",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27645618252",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6569802222",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29233515561",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115682991",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1107953639",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248342793",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248715968",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144087185",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144901897",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82655604",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2825188863",
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557480846",
+        "voter": "rfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120035163",
+        "voter": "thurgoodsf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7672090685",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1780364718",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "895396868",
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6309606122",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117092140",
+        "voter": "rhesusnegative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117022265",
+        "voter": "smospider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211828434616",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2564768081",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571266069",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4349566430",
+        "voter": "sacode"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1086973767",
+        "voter": "blueciruit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8910944152",
+        "voter": "ungratefulchump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8453974521",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1342445073",
+        "voter": "pump"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "370395974",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614199054",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230677258",
+        "voter": "automatedkings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2675034626",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230211441",
+        "voter": "pedrostar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273138571",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221510561",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136066020",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1994391082",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16644917173",
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74716626",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "204637998",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "200753691",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5592218178",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1576799653",
+        "voter": "maykor15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "471916544",
+        "voter": "hermes7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3156926690",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10397840432",
+        "voter": "npl77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81930668",
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1329793586",
+        "voter": "jj888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7244054963",
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112996238",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172082853",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19639269533",
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179979763",
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101853977",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16506886013",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "842422204",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3419058842",
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390683767",
+        "voter": "ecbanks24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60181562333",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68147110627",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6690020263",
+        "voter": "comealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1173275022",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1806374110",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112689140",
+        "voter": "haroon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1031990117",
+        "voter": "jumpman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123100917",
+        "voter": "blysards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25934469216",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218471399",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3032967716",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71832585370",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112786171",
+        "voter": "mms2209"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "816082452",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110203683",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4715017029",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-28576672558",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67226131",
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1655024167",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50234451",
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398411520",
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65444875",
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-10506218318",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14986975493",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8922794730",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8256303990",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4969663436",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63874606",
+        "voter": "contrariandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1945461176",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369818210",
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104627795",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3914025612",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28843454658",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7195700476",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1844020325",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35971384414",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2310905839",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "940702512",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64698128",
+        "voter": "libertyprime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1337997296",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60765484",
+        "voter": "shanejonas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3410817191",
+        "voter": "veralynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156192449",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "838773537",
+        "voter": "nick-sinard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382253852",
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62961881",
+        "voter": "krystalov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4509216404",
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1960902083",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463158359",
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1266524277",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7536445563",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63983387",
+        "voter": "ilyaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17518509987",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119511450",
+        "voter": "jobez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37411286303",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2715069395",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136051451",
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66036998",
+        "voter": "fruityloan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135512598",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4547627460",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1505940814",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105641483",
+        "voter": "jonasontheroof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253589014",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70372255",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1940001484",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "654944784",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6602889863",
+        "voter": "randolphrope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "441596088",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63131244",
+        "voter": "strikeback"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63105810",
+        "voter": "loot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5325247938",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158538851",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1569591768",
+        "voter": "dvcoolster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91028993",
+        "voter": "zakorus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19725881015",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5305737521",
+        "voter": "veryscience"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345599778",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1923316586",
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1585788854",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142230453",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1125488046",
+        "voter": "bythenumbers432"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225472016",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "757683349",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61178779",
+        "voter": "mithridates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60462106",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7109032370",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62069775",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99784253208",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64990311",
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112658358",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51749350",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54755777",
+        "voter": "ttrof59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683376942",
+        "voter": "stylo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93417260",
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61150289",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5601989526",
+        "voter": "ioc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65668582",
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62381376",
+        "voter": "darkstarartphoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291582909",
+        "voter": "jtoubia"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-206547387",
+        "voter": "orca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75778117",
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60333839",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71432076",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59447794",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2116950747",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63518658",
+        "voter": "r2d2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454499082507",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1128280936",
+        "voter": "xjwf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60754042",
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613709190",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58273476",
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60637775",
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1136632065",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60521896",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113457626",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133395581",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7238782656",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4011025966",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2361857541",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "935109865",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60440126",
+        "voter": "kulsumabdullah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1529946663",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8062679482",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399073890",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242393394",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398216470",
+        "voter": "manicmidnight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61761105176",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59989087",
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1711099278",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57640568",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58678076",
+        "voter": "iqz33m2p35qxmjlh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1459736390",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1290489831",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1150585474",
+        "voter": "iamrohitkgupta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59607682",
+        "voter": "hhdelosrios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59648980",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125228813",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25496980450",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "284649156",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58111904",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54381971",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24984832476",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56903682",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59590162",
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3858824926",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1771658987",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59009965",
+        "voter": "christiansenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58271682",
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59369550",
+        "voter": "clintb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58999787",
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57832232",
+        "voter": "li-enfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50900989690",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075269056",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59126308",
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59198033",
+        "voter": "mckeever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60132105",
+        "voter": "buchmanster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135090120",
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310534407",
+        "voter": "pokerdude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "301654384",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6624044845",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57801418",
+        "voter": "redlikecherry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70147043",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10448612590",
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59434449",
+        "voter": "adam173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62281168",
+        "voter": "damon225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22937444047",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3839771700",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70063032",
+        "voter": "henriquez147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290158450",
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2127021697",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58897154",
+        "voter": "purplelama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56671622",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390205958",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58101921",
+        "voter": "stevenlytle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59093671",
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58864493",
+        "voter": "shamballa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98476097506",
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75016463",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1442671093",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58922012",
+        "voter": "beto91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2831572719",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58821982",
+        "voter": "jdlly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75633464",
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14666750896",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58732483",
+        "voter": "embraceurdialect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58452606",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58702646",
+        "voter": "davidmwy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58661763",
+        "voter": "swamp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238443408197",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57475981",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56325928",
+        "voter": "exnor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19279116340",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418397623",
+        "voter": "aviator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57402401",
+        "voter": "morantis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58510718",
+        "voter": "bonnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58466450",
+        "voter": "will.isles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51603666",
+        "voter": "shurik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159620877",
+        "voter": "smokerscorner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65658965",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57546502",
+        "voter": "solielj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5521838461",
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153400469",
+        "voter": "steemlinks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67514229",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57126389",
+        "voter": "javichino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "325158374",
+        "voter": "caleballen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57101795",
+        "voter": "with-a-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2430385941",
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58237833",
+        "voter": "joeoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597059869",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58236714",
+        "voter": "meannah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57082904",
+        "voter": "silvereagle1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56377370",
+        "voter": "deejayehn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57723051",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58207543",
+        "voter": "jonathan-m-e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57063327",
+        "voter": "isaiah.sellassie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118704463",
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58201551",
+        "voter": "andyg89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336474373",
+        "voter": "metafzx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4114411994",
+        "voter": "silverbug2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87656954",
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13128724991",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60075109",
+        "voter": "allbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58353019",
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56156330",
+        "voter": "eslopez92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62202585",
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4456406474",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62650201",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60344715",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58336904",
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453468817",
+        "voter": "djdmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57366185",
+        "voter": "denisdiaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18927636504",
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111149438",
+        "voter": "culain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118894339",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60290047",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74181133",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56799795",
+        "voter": "drdsp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1317394072",
+        "voter": "jchiogna"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-57103495",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58243271",
+        "voter": "mstudemeyer13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60672622",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57909399",
+        "voter": "starbuck"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1191464587",
+        "voter": "ihatelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760690935",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57895914",
+        "voter": "ancapfictionist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65295768",
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51569182",
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58087665",
+        "voter": "cwensor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57851525",
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30835769243",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56141359441",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38712657934",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90480826",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57813247",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58084465",
+        "voter": "dubloon135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194987675",
+        "voter": "wizwom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56648554",
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57815945",
+        "voter": "jacobt82001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57793445",
+        "voter": "jparthum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56633088",
+        "voter": "djpeezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59864488",
+        "voter": "malxdrakon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57744177",
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57735457",
+        "voter": "georgelj2809"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445170292",
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58956403",
+        "voter": "rahnawnjudah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57714863",
+        "voter": "mihonik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398583502",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57637549",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57634564",
+        "voter": "edges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57620942",
+        "voter": "matuap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57959938",
+        "voter": "cwalton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3551428796",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57579747",
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2307183228",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8757355958",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151076186",
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58729218",
+        "voter": "autonomygarden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "396528937",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56382245",
+        "voter": "courtneydael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692494558",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56260077",
+        "voter": "korpzhe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11310688069",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702323560",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1819060324",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1044924584",
+        "voter": "mister-t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83071393",
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33130662998",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1839378622",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56270887",
+        "voter": "logos1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57391613",
+        "voter": "nickfost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57363928",
+        "voter": "freewilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57209928",
+        "voter": "peacefulrebel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57204051",
+        "voter": "nbragg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57192660",
+        "voter": "evolka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7953608598",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56056661",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57099237",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55429263",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2291259750",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57066598",
+        "voter": "sparks42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "502113380",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57035814",
+        "voter": "michaelmillman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56993755",
+        "voter": "adam.metz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59131755",
+        "voter": "camille101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1424517451",
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56807433",
+        "voter": "yoopercharged"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57145820",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55689461",
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "373540743",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56782755",
+        "voter": "howverydroll345"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54555750",
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55667728",
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6192411522",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58052065",
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55678770",
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54536747",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56762567",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56911312",
+        "voter": "theunicornking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56714481",
+        "voter": "jim-brown-ancap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54504542",
+        "voter": "etheom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56697846",
+        "voter": "paulpuk2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6195252284",
+        "voter": "vtmdmd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55579083",
+        "voter": "mrmike3rd7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59410526",
+        "voter": "hurtinalbertin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54634677",
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167718520",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3610309756",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56616688",
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56603168",
+        "voter": "mipeleon75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56542957",
+        "voter": "gates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1840903324",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56524504",
+        "voter": "rktonny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042156961",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677688371",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56514286",
+        "voter": "snowcrash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53152469",
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29198108129",
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55624422",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51543183",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56422434",
+        "voter": "cowa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124272106",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3521145459",
+        "voter": "cryptobiker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55226664",
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56504986",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55390353",
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56303040",
+        "voter": "monachusgladio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1377124723",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54089689",
+        "voter": "nakimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54087003",
+        "voter": "arnoldjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59806970",
+        "voter": "justme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55100682",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56185424",
+        "voter": "bigdungi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56939399",
+        "voter": "bighammerfitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53952590",
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56333279",
+        "voter": "gsdalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55047915",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56137183",
+        "voter": "upshot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025746",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3467690888",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53870359",
+        "voter": "betamusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59537615",
+        "voter": "forest-revealed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54948766",
+        "voter": "nima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56040530",
+        "voter": "narukh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65161675",
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58715628",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7558931184",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66620548",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56825764",
+        "voter": "owlkhan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53759061",
+        "voter": "inscrutable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55940023",
+        "voter": "metasintactic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180465011",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61688723",
+        "voter": "traceystark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55833071",
+        "voter": "shadowcl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55818733",
+        "voter": "manoelmet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1812426354",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155287",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55733795",
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1520333821",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54632424",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55713891",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50351260",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111566248",
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65508674",
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1719016794",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55486361",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "765866264",
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55420493",
+        "voter": "sjshah91"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-54333635",
+        "voter": "naokiohno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142885947",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55365453",
+        "voter": "asuna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55364295",
+        "voter": "dianailuma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75079357",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488438452",
+        "voter": "venusdehilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "917614377",
+        "voter": "ateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96766264",
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67411713",
+        "voter": "hrmbean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1032808600",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52991351",
+        "voter": "q1248"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55227560",
+        "voter": "hereisflaco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53977402",
+        "voter": "kyushoargentina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51815820",
+        "voter": "michivollgas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52876405",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-56357833",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54966469",
+        "voter": "harmcc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54658310",
+        "voter": "allyouneedtoknow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55148206",
+        "voter": "christheaudioguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55361572",
+        "voter": "elmarco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55302249",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52783907",
+        "voter": "urbanchick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52671889",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54929304",
+        "voter": "colsen6990"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53833366",
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98657026",
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328879505",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54857075",
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87523682",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54156428",
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961789",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54781771",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54771140",
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68392068",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54706268",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54658188",
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50377764",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55107256764",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54641612",
+        "voter": "lucasjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53531883",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50307404",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53478598",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53466942",
+        "voter": "doze49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51291400",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60867005",
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53422608",
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54485560",
+        "voter": "mvp-lineup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54480026",
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54476490",
+        "voter": "adpt2apocalypse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54452240",
+        "voter": "rare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54448999",
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55668201",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50196187",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55048791",
+        "voter": "arshakuny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1291962125",
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54293577",
+        "voter": "ultiphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54232102",
+        "voter": "ofmiceandmud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55579105",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53825023",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53122477",
+        "voter": "balaji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54179475",
+        "voter": "zonpower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54165586",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53092299",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53393524",
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54094307",
+        "voter": "afmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54067756",
+        "voter": "btc-echo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54049299",
+        "voter": "rantanplan41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54046214",
+        "voter": "assmuffin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51915099",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52973293",
+        "voter": "linktyp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50846073",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52948298",
+        "voter": "alwayzgamez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54003963",
+        "voter": "mayoite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54002407",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "719075583",
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50812926",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53980388",
+        "voter": "magedmohamed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53975648",
+        "voter": "cbro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51844560",
+        "voter": "sic-savidicus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50785178",
+        "voter": "dartagnons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53946248",
+        "voter": "v-dawg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51817146",
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52873523",
+        "voter": "monkeytraveller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52870480",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53922131",
+        "voter": "lilli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53890758",
+        "voter": "brazine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52820822",
+        "voter": "borntobealiveent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53875371",
+        "voter": "cryptvs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53871803",
+        "voter": "dilmacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53868707",
+        "voter": "goldenage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53865200",
+        "voter": "martexcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53858270",
+        "voter": "gnumix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52800946",
+        "voter": "shotgunzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53855728",
+        "voter": "neolus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53850546",
+        "voter": "herbdata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53845942",
+        "voter": "mikee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52784773",
+        "voter": "faberium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52780229",
+        "voter": "aritanas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53830217",
+        "voter": "libertyism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53810517",
+        "voter": "thunderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53809906",
+        "voter": "selbstbestimmt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53805242",
+        "voter": "angelus.silesius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53805106",
+        "voter": "unknown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53803120",
+        "voter": "shakewell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53780945",
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53772596",
+        "voter": "deef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53772177",
+        "voter": "amazingjfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52700881",
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52688025",
+        "voter": "joktan"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-53719671",
+        "voter": "t39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52657220",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52655957",
+        "voter": "johndunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53706374",
+        "voter": "cucumber1234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53688546",
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53687949",
+        "voter": "atomicdonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53687522",
+        "voter": "jessequach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53681814",
+        "voter": "floppycatfish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53680380",
+        "voter": "saayeel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52626708",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53669117",
+        "voter": "madi512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53666720",
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53649984",
+        "voter": "gaetano.caimano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52596518",
+        "voter": "yommama88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53642160",
+        "voter": "asapptransport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53631416",
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52573075",
+        "voter": "thecryptonews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53612299",
+        "voter": "shashank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52547970",
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53596897",
+        "voter": "poliniex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53596426",
+        "voter": "friendster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7694988105",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53559945",
+        "voter": "gabru77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52476240",
+        "voter": "bitcointalos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52345240",
+        "voter": "dennisd96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52365896",
+        "voter": "infowarfare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53068723",
+        "voter": "hardworx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51939361",
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812858",
+        "voter": "carlolima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52561293",
+        "voter": "stuartbolton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50922340",
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50061486",
+        "voter": "yhnkp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156191221",
+        "voter": "dayan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152406517",
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155365809",
+        "voter": "wakeupworldnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155582400",
+        "voter": "light4u"
+      }
+    ],
+    "author": "dollarvigilante",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><center>https://www.steemimg.com/images/2016/08/18/TheGreatSteemitDebate96620.jpg</center></p>\n<p>When I first arrived on Steemit about two weeks and $50,000 ago, I was shocked at what I had stumbled upon.</p>\n<p>I posted about my success on the site and countless people called it a scam.</p>\n<p>I responded, \"Usually a scam is where you lose money, not make money.\"</p>\n<p>Those who replied had no response to this. &nbsp;Many would just repeat, \"This is a scam and you are a scammer!\"</p>\n<p>Confused, I began to look into these allegations of Steemit being a scam... and perhaps the worst designed scam of all time, since all it does is give money to people who produce good content.</p>\n<p>All roads seemed to lead to one man: Tone Vays. &nbsp;When I pushed the people alleging Steemit was a \"scam\" or a \"ponzi scheme\" enough they eventually would retort, \"Just listen to what Tone Vays says.\"</p>\n<p>Tone is actually a friend of mine. &nbsp;He's been on my show Anarchast twice and spoke at the last two Anarchapulco (http://anarchapulco.com) events.</p>\n<p>So, getting a hold of him wasn't a problem and he agreed to a debate/conversation on Steem and Steemit.</p>\n<p>And, you can see the debate exclusively here on Steemit (until the end of the upvoting period the video is unlisted on Youtube):</p>\n<p><center>https://www.youtube.com/watch?v=L9PWO8flSp4</center></p>\n<p>We got into every aspect of Steemit from the technical details to the big picture of how it could be a paradigm shift in how social media is done online.</p>\n<p>You may be surprised to see how it turns out!</p>\n<p>As a note, many anti-Steem people will be down voting the video and posting negative comments on Youtube once it goes live. &nbsp;You, as a Steemer, get the opportunity to give it the \"thumbs up\" and post positive comments before the troll brigade arrives.</p>\n<p>If you do enjoy our debate, please make sure to give it a like on Youtube... and, as always, follow me here on Steemit for more exclusive content to come.</p>\n<p><center>https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/12/Steemitbio98756.jpg</center></p>\n</html>",
+    "body_length": 2149,
+    "cashout_time": "2016-09-19T05:05:00",
+    "category": "steem",
+    "children": 327,
+    "created": "2016-08-19T01:33:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"steemit\",\"cryptocurrency\",\"bitcoin\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/18\\/TheGreatSteemitDebate96620.jpg\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/12\\/Steemitbio98756.jpg\"],\"links\":[\"http:\\/\\/anarchapulco.com\",\"https:\\/\\/www.youtube.com\\/watch?v=L9PWO8flSp4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T03:34:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 257718658721337,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "8595.299 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-great-steemit-debate-tone-vays-vs-jeff-berwick-ponzi-scheme-or-paradigm-shift",
+    "post_id": 664104,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Great Steemit Debate: Tone Vays vs. Jeff Berwick \"Ponzi Scheme or Paradigm Shift?\"",
+    "title": "The Great Steemit Debate: Tone Vays vs. Jeff Berwick \"Ponzi Scheme or Paradigm Shift?\"",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@dollarvigilante/the-great-steemit-debate-tone-vays-vs-jeff-berwick-ponzi-scheme-or-paradigm-shift"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40809782845",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7542003454455",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29539384271838",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17316773744554",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27577490493786",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14535088010597",
+        "voter": "summon"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "33500841043005",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134712196038",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13928590353",
+        "voter": "luigi1111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7129940743437",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2958125501253",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232614078525",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8911449447841",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223387419724",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "680084487752",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20610650025064",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1949290306948",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4520043626161",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5063803683192",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "33934652164",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "669205204395",
+        "voter": "liondani"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "2117732339514",
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1853552687",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1937516926143",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2249701327",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421636809",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3806710282548",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5916225437424",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31563806994",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32940724153",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474793116528",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "993561057",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128048841",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244290674504",
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118108432369",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1886208124106",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33428576420",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55159847445",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16445515988",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474369482221",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2592434908071",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106012286",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "5600",
+        "reputation": 0,
+        "rshares": "508306390900",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124551070886",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145174176328",
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6640715268",
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9339107692",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5154965524769",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1181695604772",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312589671567",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74632222461",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1041606289175",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262031771889",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372782047",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "71522741942",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550741794",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2681760969007",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "359274583756",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823992255636",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49089709744",
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27498854159",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64442392757",
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10708139271",
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24180936173",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191590999906",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67419834921",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172645308",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20072731737",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40057651680",
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136700693544",
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25811639276",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3173957234",
+        "voter": "cheolwoo-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419067913518",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100000796919",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3794623721",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146245769043",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2765714523",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78581721577",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23697552830",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90134927155",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14658768392",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17275050657",
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12841911076",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162781876831",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19588607305",
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2879550090",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19685646715",
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6209279303",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113331589554",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14440050381",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5073271124",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7213333581",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3911736576",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81436955754",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464205201",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3575902533",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "993314065104",
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "812941284185",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113346630048",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7168556894",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24359506041",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96739570982",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45576499097",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26021570751",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2177627907",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337544048306",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39467408523",
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3127039384",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2149581894",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21495939803",
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16339743366",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5499522662",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454435729",
+        "voter": "nasato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89618566626",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5134667074",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60190093689",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15608814574",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63506777703",
+        "voter": "asch"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "292596381659",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2159280461",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19196543129",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "934691204",
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61961984040",
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1808575623",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17925026964",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49772004066",
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46598492022",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7564896202",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3082998313",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297976861016",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417889273",
+        "voter": "argsolver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "947361945",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48194159666",
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20742019576",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47232304194",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431409897830",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18021502490",
+        "voter": "btcturbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "616761858",
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300547523",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223318444965",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163123415015",
+        "voter": "help-yourself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97924399479",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181155851329",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6370879631",
+        "voter": "thread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9751234633",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350187172",
+        "voter": "arjoona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1667394140",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13824574016",
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154664486800",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244960026023",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346977724597",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232464045595",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55088452759",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12879677231",
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3156909829",
+        "voter": "pangur-ban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70843097684",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9414464572",
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31627364194",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1324373944",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "427446856",
+        "voter": "antyivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119494081",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "317285691013",
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2908355651",
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4143192803",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93238329271",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "402450595981",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4142890713",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13378239231",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568145544950",
+        "voter": "yan-kovalenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398461524",
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80383400292",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132125358726",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731278348",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130402402417",
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1649930720",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4038577108",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1327941697",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41160442049",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137721329373",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "695320075574",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5512912408",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183483180375",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "697280912421",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663156465",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "672000979602",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23500413189",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5266542711",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1756215081",
+        "voter": "acec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45132314104",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261328854278",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1990993645",
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214872656532",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18035050135",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28361926955",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70687082586",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2848698466",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348687284294",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8409140581",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1024771873",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22965302308",
+        "voter": "kristina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17575615969",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34308896741",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6700134111",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9144592991",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14276065946",
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14224025044",
+        "voter": "jamiecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1442771971",
+        "voter": "dtsddace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747355721",
+        "voter": "jshii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8489513742",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255855422",
+        "voter": "russle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19257162375",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8433685605",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159843656074",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263549200",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4932767075",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13875090308",
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "430676433",
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145538718151",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4996136409",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1070392003",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4808853589",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250296280",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166898141",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310292244",
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253118639",
+        "voter": "brockton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106083895889",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4710936335",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13144887297",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131375640558",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104034859858",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70216003",
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13192142952",
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "284912922",
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65912453200",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1296880853",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237324453474",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-28712012369",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302506665",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26183359325",
+        "voter": "missjessica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "589197515",
+        "voter": "iamjmgx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41120340476",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1337203621",
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12464772295",
+        "voter": "thisisgentleman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10577753089",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525687920",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114522838972",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982969728338",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103438944598",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10437039232",
+        "voter": "becerra18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213479126",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4463547529",
+        "voter": "yun093"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536550051",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6556012064",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41264965831",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14993168311",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5470296821",
+        "voter": "jpdimensions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108882562319",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263539417",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3789657417",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4279501396",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18394373356",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3864808120",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283561946",
+        "voter": "mirrax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4873795179",
+        "voter": "jamessmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41464485265",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252140293",
+        "voter": "dedazenia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6502882556",
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33586252036",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "507555254",
+        "voter": "wbe4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3852641818",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264057784",
+        "voter": "theboccet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236983940",
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17918567116",
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1468192746",
+        "voter": "decrypt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327788757474",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34153347254",
+        "voter": "alexfortin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262892658",
+        "voter": "medge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1234428621",
+        "voter": "chrisj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113753084831",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23893727517",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3796062270",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61143708829",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "987415199",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199100074",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128761902028",
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336400723",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246631928671",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72361008835",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "303507576",
+        "voter": "ostomdamasceno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3510731249",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9614118741",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6791699913",
+        "voter": "gregm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2351934852",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411766150",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3552208860",
+        "voter": "robinlight-cbd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43452793031",
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128233149416",
+        "voter": "gbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1670036281",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128866815599",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453226197",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6336924386",
+        "voter": "abharana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186398428192",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26727861175",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239785153",
+        "voter": "miltersen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7154568164",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25839451323",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67769833086",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4195791223",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14661301672",
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258212335",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84252253264",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1648868921",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240120981",
+        "voter": "yaremi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239427456",
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1243378929",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22078281396",
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238746062",
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19950257190",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166437805838",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119947910",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194078293317",
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13620877578",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2724386046",
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1487064903",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32724419379",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120836098",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22444836988",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515780569",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21949664306",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7725997711",
+        "voter": "manipulable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196897399",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7161404359",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116749766",
+        "voter": "selectorsam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13083167579",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "813016915",
+        "voter": "stealthstrike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9192468589",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51624642918",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5723549314",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "985503736",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87587175539",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595378235",
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119877072",
+        "voter": "skybean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118628090",
+        "voter": "weasley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11188424918",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72427927194",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1638616949",
+        "voter": "pitbull808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117181817",
+        "voter": "ggabi.loper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117780376",
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4203042780",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116065815",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1845821936",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3336184862",
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107071475",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11526556340",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360944545",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127957702",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "972675204911",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174394273",
+        "voter": "adrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117008975",
+        "voter": "cryptocoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2069779393",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29969784949",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50913015771",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3961488659",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7672090685",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129871373",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "795919582",
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464205446",
+        "voter": "rfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702085087",
+        "voter": "renuccio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219067652",
+        "voter": "sporklin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207505405339",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11458018403",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4349566430",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19671891232",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1342445073",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18234914500",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28062844639",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225530779",
+        "voter": "defiant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614207849",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278180569",
+        "voter": "k0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2496525517",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230250142",
+        "voter": "caterpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226031185",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18489537303",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64108599902",
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254510731",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481354875",
+        "voter": "hermes7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3095131708",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2171091136",
+        "voter": "lukmarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251615009",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19639269533",
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18212822554",
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2733172814",
+        "voter": "mikeinfla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6361849352",
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59002129745",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69538853733",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18327684284",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "915590461",
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1104461112",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10031838646",
+        "voter": "michiel"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-117670298",
+        "voter": "emike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1842501592",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85009956236",
+        "voter": "nicknick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163853549",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11013694611",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112450703",
+        "voter": "arslan7544"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1588481152",
+        "voter": "galagan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841585029",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112407757",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979291850",
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-28016345645",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65341032",
+        "voter": "ladeiafr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64161643",
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2550973962",
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14687339313",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11898939912",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18019145810",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8302314815",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8255606883",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76675738120",
+        "voter": "n628"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4969663436",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16175287986",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103670600",
+        "voter": "btctoken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2076661741",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261654970918",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65096057",
+        "voter": "ixess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102302733",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11879460728",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28848672500",
+        "voter": "xtester"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "312827436886",
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7342762527",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36709288679",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66055068",
+        "voter": "imagery"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "965457842",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2407863510",
+        "voter": "veralynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144664677",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6680796918",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1960902083",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185994089",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194216372729",
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147832214",
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10942490178",
+        "voter": "trending"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463298646",
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62821466",
+        "voter": "goode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878675358",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68301025",
+        "voter": "ragnaroek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63935048",
+        "voter": "dida"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119511450",
+        "voter": "jobez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5190804801",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135512598",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63514042",
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66249742",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103570081",
+        "voter": "jonasontheroof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247825627",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68992407",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641845888",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27703275897",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90723926",
+        "voter": "doapsauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61893377",
+        "voter": "strikeback"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16857833809",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "651909928",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20120398635",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342724480",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2124173187",
+        "voter": "milaoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16052923265",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65299443",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "344790469",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1280174526",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6815418926",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97613252166",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62638410",
+        "voter": "rmach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65159126",
+        "voter": "laissezfairedr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39884338567",
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "428085677",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "738916113",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65668582",
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346824643",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-206547387",
+        "voter": "orca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60333839",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1719224371",
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34916625603",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13704329227",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19367124818",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "491548661449",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "853512288",
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60754042",
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71513734",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "601675676",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59448799",
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1159920856",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59335193",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102334329",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5226952946",
+        "voter": "hackfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267737142",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82017595",
+        "voter": "steemitgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60440126",
+        "voter": "kulsumabdullah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1529946663",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72406042",
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399091815",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59989087",
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1677548311",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59851638",
+        "voter": "iqz33m2p35qxmjlh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1502694409",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56305110",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1274921218",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1253519725",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-58862795",
+        "voter": "icecreamyolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131945050",
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130557698",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133870095",
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59295031",
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1081293784",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53199754",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23874395477",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6857528917",
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59034779",
+        "voter": "siouxp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22198393217",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141721000",
+        "voter": "djohnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58271682",
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57842929",
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1086456676",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21273149419",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135090120",
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316745095",
+        "voter": "pokerdude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67029397",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21193870671",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61250665",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2213838909",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57742308",
+        "voter": "purplelama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382554861",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86776756",
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53093203",
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100445619456",
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57701920",
+        "voter": "eggsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3699497031",
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57766678",
+        "voter": "beto91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2834169935",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59174678",
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14379167545",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58452606",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57549944",
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2273253020",
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243415630536",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58625501",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57886832",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3522918145",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016973254",
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68338923",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58852647",
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2479985654",
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1565744970",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759357936",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57723051",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116376925",
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329744886",
+        "voter": "metafzx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77138119",
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14255210406",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60075109",
+        "voter": "allbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58353019",
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61506308",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58025713",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74198022",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56804463",
+        "voter": "bchandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57935790",
+        "voter": "drdsp"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-50251076",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71785589",
+        "voter": "raseukinapobri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745775427",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64015459",
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70801862",
+        "voter": "darkflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29370398017",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54010781884",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114217355",
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56633088",
+        "voter": "djpeezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388075364",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120710577",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8458401362",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54247105",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57634564",
+        "voter": "edges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4664683919",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57959938",
+        "voter": "cwalton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3410976758",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75655345",
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2230389348",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470891454",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56400985",
+        "voter": "keltone7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54561850",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "756859781",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11781966738",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57442114",
+        "voter": "joshualoha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56314596",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35079310640",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1765803477",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59747952",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56199787",
+        "voter": "tyler.maroney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57197319",
+        "voter": "richerandthinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57193795",
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7953608598",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57099237",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55954103",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111648770940",
+        "voter": "corbettreport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2449986166",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "871187772",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55896856",
+        "voter": "purpleliz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234273389",
+        "voter": "aslammotala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56927947",
+        "voter": "locky192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213566092",
+        "voter": "ajaub1962"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56895840",
+        "voter": "dagobert1988"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56870052",
+        "voter": "safalta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381164023",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59338144",
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55678770",
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51427729",
+        "voter": "pierce-the-veil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54536747",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55649576",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118471153",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565305",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53392204",
+        "voter": "etheom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6073776749",
+        "voter": "vtmdmd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1803333869",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1062027558",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1780564916",
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27621186563",
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55624422",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51543183",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9117389449",
+        "voter": "delasage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56331197",
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55397045",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56498160",
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56297431",
+        "voter": "nakimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55100682",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55053663",
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51745040",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53925231",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56367187",
+        "voter": "mrbtcnorway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61931553",
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55376960",
+        "voter": "mikebartolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55910218",
+        "voter": "craftercrafter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164423677",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62922497",
+        "voter": "traceystark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3003135902",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55760868",
+        "voter": "mamma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52455337",
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1411738548",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51475676",
+        "voter": "happiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116119972",
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67504133",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54790972",
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55063536",
+        "voter": "rich-oth-hegy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "799164797",
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142885947",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55407469",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55365453",
+        "voter": "asuna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54278721",
+        "voter": "dianailuma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52461041",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73607213",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1022457396",
+        "voter": "ateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96766264",
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54107746",
+        "voter": "aylinsita1990"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1061341779",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78423731",
+        "voter": "gabosh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55252777",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53886433",
+        "voter": "popovych"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54935924",
+        "voter": "maloneyj55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55112820",
+        "voter": "akamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51773568",
+        "voter": "outchemy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102809415",
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62045545",
+        "voter": "ripper234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53724029",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961789",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67051047",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53633596",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54627131",
+        "voter": "growhempcolorado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53518515",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53509595",
+        "voter": "cjohn171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3677273797",
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50259847",
+        "voter": "lopezem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50258926",
+        "voter": "doze49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54509442",
+        "voter": "andrela888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53428542",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53422608",
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53381371",
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54437501",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52296609",
+        "voter": "lynchiandream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56149767",
+        "voter": "arshakuny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1293989245",
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52201176",
+        "voter": "unlonely-soul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54287119",
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56112063",
+        "voter": "lloydy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54257335",
+        "voter": "tyagananda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54752612",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56350803",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-61188152",
+        "voter": "siren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54165586",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399395426",
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50888187",
+        "voter": "santiagomaicon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53007604",
+        "voter": "btc-echo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52973293",
+        "voter": "linktyp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50846073",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52948298",
+        "voter": "alwayzgamez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54002407",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "733457095",
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52921949",
+        "voter": "magedmohamed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51837159",
+        "voter": "thecentreofitall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51817146",
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52873523",
+        "voter": "monkeytraveller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814320",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53927890",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794336",
+        "voter": "bitcoin-c"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51716742",
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52747840",
+        "voter": "aaronfaulkner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53800800",
+        "voter": "breive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51671889",
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53754899",
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52699680",
+        "voter": "elwray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52688025",
+        "voter": "joktan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53719897",
+        "voter": "diglos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52663787",
+        "voter": "bit20009"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52653307",
+        "voter": "cucumber1234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52653169",
+        "voter": "oneareis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52648311",
+        "voter": "elex-free"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52627823",
+        "voter": "saayeel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562143",
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53664609",
+        "voter": "billybob1978"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53662617",
+        "voter": "harmal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52596518",
+        "voter": "yommama88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53643296",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53641293",
+        "voter": "technoprenerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52573075",
+        "voter": "thecryptonews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52561077",
+        "voter": "shashank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52547970",
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52545515",
+        "voter": "friendster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53593069",
+        "voter": "phillips094"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53491420",
+        "voter": "bkc888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53489709",
+        "voter": "daniel31oh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52433838",
+        "voter": "ochnudemus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53474283",
+        "voter": "barbosabarros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53425836",
+        "voter": "weltomat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51636060",
+        "voter": "tony1980"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "837946004",
+        "voter": "gustafx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148984272",
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158302137",
+        "voter": "thehellenic"
+      }
+    ],
+    "author": "rogerkver",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hello everyone,&nbsp;</p>\n<p>I'm <a href=\"http://rogerver.com/\">Roger Ver,</a> &nbsp;the first person in the world to start investing in Bitcoin startups, and current CEO of <a href=\"https://bitcoin.com\">Bitcoin.com</a>.&nbsp;</p>\n<p><img src=\"http://i.imgur.com/3FNBBDg.png\" width=\"415\" height=\"350\"/></p>\n<p>I've been involved with Bitcoin for nearly 6 years now, and somehow ended up with the nickname Bitcoin Jesus in the process due to my spreading of Bitcoin.&nbsp;</p>\n<p>Recently I have become frustrated by Bitcoin's slowness in being allowed to scale. &nbsp;&nbsp;I've also been hearing about Steemit everywhere I go, and even gave the interview that led to the &nbsp;<a href=\"https://steemit.com/life/@wadepaterson/20-questions-with-roger-ver-exclusive-interview\">#1 trending post</a> on Steemit a few days ago, so I decided to join and give it a try myself.</p>\n<p>A few of the investments I made in the Bitcoin space were:</p>\n<p>Bitinstant (The founder Charlie Shrem is now on Steemit as well)</p>\n<p>Blockchain.info</p>\n<p>Bitpay.com</p>\n<p>Kraken.com</p>\n<p>Ripple.com</p>\n<p>and many many more.</p>\n<p>More recently I've invested in:</p>\n<p>Arcade City</p>\n<p>Bitcoin Hive Mind</p>\n<p>Purse.io</p>\n<p>Shapeshift</p>\n<p>Z-Cash</p>\n<p>Proof that this is me: <a href=\"https://twitter.com/rogerkver/status/766506616212422656\">https://twitter.com/rogerkver/status/766506616212422656</a></p>\n<p>I look forward to interacting with all of you.</p>\n<p><img src=\"http://i.imgur.com/KkgqZQO.png\" width=\"441\" height=\"449\"/></p>\n</html>",
+    "body_length": 1550,
+    "cashout_time": "2016-09-19T10:05:33",
+    "category": "bitcoin",
+    "children": 165,
+    "created": "2016-08-19T05:51:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"bitcoin\",\"steemit\",\"blockchain\",\"crypto-news\",\"introduceyourself\"],\"image\":[\"http:\\/\\/i.imgur.com\\/3FNBBDg.png\",\"http:\\/\\/i.imgur.com\\/KkgqZQO.png\"],\"links\":[\"http:\\/\\/rogerver.com\\/\",\"https:\\/\\/bitcoin.com\",\"https:\\/\\/steemit.com\\/life\\/@wadepaterson\\/20-questions-with-roger-ver-exclusive-interview\",\"https:\\/\\/twitter.com\\/rogerkver\\/status\\/766506616212422656\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T23:05:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 238796957446616,
+    "parent_author": "",
+    "parent_permlink": "bitcoin",
+    "pending_payout_value": "7761.981 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "roger-ver-the-world-s-first-bitcoin-investor-is-now-on-steemit",
+    "post_id": 666401,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Roger Ver, The World's First Bitcoin Investor Is Now On Steemit!",
+    "title": "Roger Ver, The World's First Bitcoin Investor Is Now On Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/bitcoin/@rogerkver/roger-ver-the-world-s-first-bitcoin-investor-is-now-on-steemit"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7701837753129",
+        "voter": "steempty"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "5823223289778",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28856884642",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17160816910921",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28953541303516",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14547336326574",
+        "voter": "summon"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "19173086771024",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36397201856301",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "523209859113",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6494994045116",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8734342195365",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3217492843525",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2113909540069",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385275367044",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6526641115931",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686916796256",
+        "voter": "justin"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "15266506030327",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114648721029",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5509668787593",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1801375474680",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4013461219142",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "263313289259",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "831377823016",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5092941139205",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1730949081938",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "983614769029",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941624281611",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320803097294",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140564637234",
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3711497348",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2017868196098",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4505104858",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "844049061",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5137952298596",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1511131021901",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "1180186560117",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6424900984970",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63671701174",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489679769336",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1989370733",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256231639",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35232415432",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "526603117192",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21635638792",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16707749943",
+        "voter": "lee5"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "995184116060",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1296140376589",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375036656736",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277099247349",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163579086563",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1058272950040",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260764961553",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28645408954",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746241245",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1128457502",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2740864640273",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398734312852",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "413996974225",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80291525937",
+        "voter": "jwest40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41263978983",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10708139271",
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16881617985",
+        "voter": "fusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221803349479",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24382521789",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191879419757",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31224460724",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345493555",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23508015643",
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25822874684",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19514295474",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8369502790",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11383294959",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47967904750",
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34135273435",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15489998769",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4507281491",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2910759571",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70700571381",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11641008838",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17286430239",
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27045449429",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19708748689",
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139665622759",
+        "voter": "nkdk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2909817369",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3571542504",
+        "voter": "kenmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16323350124",
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602160610",
+        "voter": "densmirnov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143767493035",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185057434770",
+        "voter": "bleepcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4566753140",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3989971308",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8103615210",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83069716766",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473678777",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3505804131",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846663097670",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95011958367",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45577715078",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2180122005",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339818649005",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32572743966",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1301693008",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1036791286",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2749330985",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7846049897",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59222171979",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621723313",
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4275566771",
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91180613952",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59036980626",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8261302297",
+        "voter": "censor-this"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53512145788",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1405273950",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19582075879",
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "241917731658",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1802078645",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "665646849",
+        "voter": "sevcsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18820748839",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48845598533",
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39576458828",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7565442776",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144658279",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374976195980",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29598242908",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417889273",
+        "voter": "argsolver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5915352264",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30566007919",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367487528647",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54012010",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89589440770",
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1294186808",
+        "voter": "kingnuze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34397044523",
+        "voter": "shelly-dawson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12704036075",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97993215762",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10601845480",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320560278167",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393483610",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3333074114",
+        "voter": "ian-harris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62216205767",
+        "voter": "robsteady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1702432312",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53414980582",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347273614551",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232704094529",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51186441680",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3095183308",
+        "voter": "pangur-ban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61288399197",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73472882252",
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30997380355",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73823190382",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198085799180",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1119818391",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3058658221",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20053300731",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "440042031018",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47363944808",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6310451846",
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13379608456",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398746305",
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74996203281",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823427901",
+        "voter": "marc-e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128282569319",
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418647718",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23205643019",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012367636",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059780247",
+        "voter": "lat-nayar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130531436689",
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1807730967",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1965310336",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42126510918",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50378426085",
+        "voter": "business"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24050593190",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5295814286",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304955387",
+        "voter": "oleim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77322172342",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10722105720",
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "730949195",
+        "voter": "christoph3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42979569905",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1301136994",
+        "voter": "jo-stonellord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14292862687",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31928150278",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5600834646",
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79355597600",
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25602552413",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3488814854",
+        "voter": "dasan-oneia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259170410065",
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5965331513",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47737752185",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8410325946",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1035240870",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17686464289",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32917705051",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6845186921",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6009952641",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16462772935",
+        "voter": "blackmask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14523044195",
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54638558078",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14275978947",
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "989400621",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65241387908",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5523543514",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257176203",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64269449237",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "178269793041",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199783607",
+        "voter": "russle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19309932923",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2934681027",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3694345845",
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59170608083",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305383894375",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56858506791",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3263429070",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4326745509",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12167637067",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1091799843",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26181863516",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14900824178",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1112682112",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25159784622",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11617246469",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1931708270",
+        "voter": "rambogoham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20214447028",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14143289171",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8352569072",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64622813111",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49613688462",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211343722457",
+        "voter": "guerrint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1053102176",
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "514830460",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749881233",
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132975478",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1278881680",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1465953187",
+        "voter": "ryno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42687421355",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361667920",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9484456427",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "558709358124",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290336079",
+        "voter": "arvydas"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "18993024590",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9523813831",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107524886467",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "215273578",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "197364561",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91781758",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1297301132",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1254755309769",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113488329314",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2100589421",
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119332871",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20364661706",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120250195509",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "526098452",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6556772480",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41265585425",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15607684591",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252800015",
+        "voter": "ikrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2311841348",
+        "voter": "inversion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011156146",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12469072176",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46651208289",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1788632591",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3907832959",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4435044610",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746992789",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18395944324",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3704344618",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13730027994",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-348416306",
+        "voter": "toddl984"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40651909692",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139585380608",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34266563271",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9565398960",
+        "voter": "revulv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14720575910",
+        "voter": "guywinfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13646355689",
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66680819356",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2146935020",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19452026139",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241723619",
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11879449999",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "443114909",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2118768684",
+        "voter": "jvper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4382037912",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23911812732",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59973035756",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237023898",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246163734",
+        "voter": "cfredditz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5992515758",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72825239087",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7422586101",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3648208151",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9778146441",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1944463968",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281615876",
+        "voter": "abreding"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "548138272",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1723891003",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8817431113",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128880567452",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760427851",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13609526487",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44676050153",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173616476189",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28819290538",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14938735893",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3470465356",
+        "voter": "gkealy2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18156323085",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76634496404",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419836782",
+        "voter": "bigedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3393706338",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14661390373",
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253048089",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4829745817",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79368063156",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36690959049",
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3917118934",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7360377531",
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12378201549",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6133562800",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37781640679",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2611037703",
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2418236690",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1690038043",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4479953032",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19950468955",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171071970476",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3262871450",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14487556641",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3317411245",
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1487698167",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25199895584",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5969728908",
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200835346",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7310392492",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2757325251",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9094911091",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14899127196",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "742853747",
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4525843385",
+        "voter": "drako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13791144395",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2149401879",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116450799",
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1545856973",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28810651196",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10439807966",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57684134706",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1229736687",
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119525453",
+        "voter": "ggabi.loper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "468614122",
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109207679",
+        "voter": "grxcii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118488703",
+        "voter": "pheebsta10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1467248924",
+        "voter": "mexfogel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152086865",
+        "voter": "pandawabright"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1847540689",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1446410332",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109399116",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7955943632",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201852079622",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365453057",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1034600134986",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2281332059",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "607858445",
+        "voter": "aleco"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6526595015",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4829743185",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557480846",
+        "voter": "rfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160533005",
+        "voter": "mikeoleksyuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1434579953",
+        "voter": "vanessavi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10142951597",
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8261359054",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113716843",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13686417210",
+        "voter": "fleuri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318594148",
+        "voter": "dob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220678004669",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194472298",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10887040300",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116884886",
+        "voter": "blackhole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120531704",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560064773",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1067201766",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5163053882",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4358484175",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9194541120",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2930236240",
+        "voter": "crystaljenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "772704577",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113878851",
+        "voter": "steemerman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20511474710",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1371423113",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444120240",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5169819326",
+        "voter": "evak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35521215713",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18547656613",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1748691174",
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320208626",
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "640153824",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "712675579",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230437999",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19042416678",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229982778",
+        "voter": "yuthavithi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2151031302",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5506799908",
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3104612658",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111533799",
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20038927283",
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11330409402",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243319698",
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115083433",
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113500096",
+        "voter": "peace77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4097455608",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227580587819",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5241222862",
+        "voter": "saulius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115662469",
+        "voter": "emule"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60189659770",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "518356090",
+        "voter": "kaykunoichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71380922534",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18399823614",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166458482",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1842626655",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2097768843",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31716527720",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3376540653",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1092509963",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62667293651",
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2719729090",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93599143533",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "427142533",
+        "voter": "jordanbelfort"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4942984228",
+        "voter": "spookypooky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11047526514",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113431670",
+        "voter": "mms2209"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "867299760",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112380478",
+        "voter": "donnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9172160397",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137673054",
+        "voter": "nimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100617808977",
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2133825754",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "295915630",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64403142",
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1401887091",
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41816773984",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1280330768",
+        "voter": "lomomo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15040878769",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169809405",
+        "voter": "efficienthash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24799731791",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17666554990",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23684645594",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16505109741",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2403063642",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18097832765",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65691069",
+        "voter": "cmpl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22129014576",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2099664493",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65130153",
+        "voter": "temaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45340794167",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1107514628",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106989064",
+        "voter": "usnewspress"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557050759",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25169080473",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8392653309",
+        "voter": "mrweed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2722066764",
+        "voter": "denn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28978999542",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39063631921",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2346111920",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64812629",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452908460",
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1776876128",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99385451",
+        "voter": "bajekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115471166",
+        "voter": "lizzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7182659281",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68422047",
+        "voter": "etheroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84584516899",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22114298611",
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2001444810",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100833891",
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70516052",
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75678928",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3010971197",
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236937927",
+        "voter": "riosparada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9284716779",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9767221144",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50705968711",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2906079176",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7615472731",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1964016148",
+        "voter": "tanata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138664054",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3135424146",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63514042",
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1753607137",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1590260750",
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198862560",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469365302",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315295432",
+        "voter": "jonaswakefield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70956487",
+        "voter": "dudu-hoffman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63982095",
+        "voter": "paddman08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63123286",
+        "voter": "zmb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1632051144",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5294363455",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259354123",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "935972275",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20327414401",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1151058494",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075556952",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60157817",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1589383556",
+        "voter": "salva82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73920437",
+        "voter": "olgasudneva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16104905196",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61520114",
+        "voter": "shafutinsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1450336768",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4274024399",
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1888462302",
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27246024916",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2578560185",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63199313",
+        "voter": "ltyadigg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113993481",
+        "voter": "suprsape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82821863",
+        "voter": "davidduckwitz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5762318927",
+        "voter": "bitminter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "524477533",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62214076",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10875609052",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "518406141",
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2089597288",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1085739741",
+        "voter": "klos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "532795616",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8906577056",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5041786231",
+        "voter": "pjheinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36090778568",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61298216",
+        "voter": "steemitlotto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2124229364",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20187310361",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "547050150288",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3123974246",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11132776179",
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39487473889",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5920422740",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198789863",
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70111504",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967602172",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1137367989",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54588377",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113457626",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4036791974",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1907537255",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107802364",
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368630602",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398467249",
+        "voter": "manicmidnight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436540984",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92248087",
+        "voter": "how2steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1202307835",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1678685466",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60143295",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116840140",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1670901280",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58651156",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1412211762",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2191235220",
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133239622",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1419429308",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141072083",
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1343245807",
+        "voter": "wroman0207"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1171610651",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26112430490",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1577690024",
+        "voter": "dubravko1982"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59590162",
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59437116",
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11422902868",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306589797",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13551218758",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391997751",
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6677684036",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14938786539",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4741375316",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "426251811",
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59390673",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90932755",
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4602578287",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9600143964",
+        "voter": "stephenfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14683969417",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1678237446",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53935001",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57549944",
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037841461",
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68338923",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "593032678",
+        "voter": "bennytremble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58330329",
+        "voter": "optionwiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58330329",
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58852647",
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27611265089",
+        "voter": "loro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1802938038",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57080451",
+        "voter": "silvernut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4227794807",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63806640",
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14006341166",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58125911",
+        "voter": "camkirk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4456621006",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5253893581",
+        "voter": "survivalist.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62650201",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58035992",
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "572181327",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57991172",
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8937216350",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58989042",
+        "voter": "stanceu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309785199",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55961425",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58243271",
+        "voter": "mstudemeyer13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60779888",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "137666522",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73120144",
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283980791",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55635937026",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57818188",
+        "voter": "nwoinfowarrior"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39489667887",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239178839",
+        "voter": "simplyshad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6492208840",
+        "voter": "ready4freddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "451471714",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57637549",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56914802",
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5186491305",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4116966609",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "951940523",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4396320571",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54192703",
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378085300",
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11730597586",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "848896285",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11312783503",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320143763",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22473833620",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2178495821",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59747952",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56266287",
+        "voter": "nickfost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55093845",
+        "voter": "dubaicoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56208655",
+        "voter": "jaredwilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52708007",
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1185253359",
+        "voter": "evolka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14854347662",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3163655199",
+        "voter": "jaytaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57124548",
+        "voter": "zomb13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66516918",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3513785267",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335226369",
+        "voter": "ban485"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4293039608",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "885324395",
+        "voter": "mxu111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56898436",
+        "voter": "angiebeee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388822791",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54547175",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56714993",
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1050210209",
+        "voter": "zazeem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56762737",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "608069551",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7400149977",
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59543295",
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1554100236",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54383435",
+        "voter": "mipeleon75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86833062",
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5558839611",
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "798785891",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56511342",
+        "voter": "babubibek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56434536",
+        "voter": "xebb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282363031",
+        "voter": "russianark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2040988610",
+        "voter": "thedashtimes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14651014244",
+        "voter": "cryptobiker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53181164",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416932669",
+        "voter": "guille"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1984106620",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56174541",
+        "voter": "muhammadali"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481038733",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143941",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56120321",
+        "voter": "jhonione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8397464499",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "465773082",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56051583",
+        "voter": "maestro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204310554",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "779648908",
+        "voter": "gerasim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52949075",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2687198677",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54634263",
+        "voter": "bigcash4ken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "647531901",
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1942287818",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55309603",
+        "voter": "knoble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55486361",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126710234",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26327909435",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375432765",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "640876177",
+        "voter": "michaelmcdermott"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2857005564",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56724504",
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53990613",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168766640",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82814845",
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794249",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54910034",
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53827976",
+        "voter": "elmercaducoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189152630",
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69306015",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "396258915",
+        "voter": "geke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54706268",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52521499",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49860524912",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57485736",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54744688",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5287336450",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53576902",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53400199",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55968897",
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155480",
+        "voter": "anonymouswriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55414127",
+        "voter": "lizasoberano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54165586",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53109574",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54472545",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52870213",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54049299",
+        "voter": "rantanplan41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51876993",
+        "voter": "techtological"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53988734",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51982993",
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53162680",
+        "voter": "thecentreofitall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106605560",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56926583",
+        "voter": "kinghabib786"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53497847",
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54354587",
+        "voter": "mobilebestdeal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1863327080",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53598929",
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424941174",
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53578816",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52571606",
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53322730",
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51136493",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52153025",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-119435462",
+        "voter": "idmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53139024",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15385007964",
+        "voter": "mtaplits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53080953",
+        "voter": "wisdomx44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52013554",
+        "voter": "ascares"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52011740",
+        "voter": "watchoutharam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56041254",
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51943433",
+        "voter": "cometa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52970036",
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62284508",
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52908518",
+        "voter": "fenglosophy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9781530661",
+        "voter": "yangyang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53635316",
+        "voter": "jimcruz22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106825085",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52829494",
+        "voter": "slipperyicarus13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51766777",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51762401",
+        "voter": "jhermanbeans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52714603",
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52698373",
+        "voter": "macnus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52690275",
+        "voter": "monster87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52687862",
+        "voter": "sargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52684475",
+        "voter": "mariekk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51627435",
+        "voter": "adges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50587334",
+        "voter": "regeneration"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52647284",
+        "voter": "newk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52634630",
+        "voter": "rls89zx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51589136",
+        "voter": "bertolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52618436",
+        "voter": "joep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52616779",
+        "voter": "damncourier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51581842",
+        "voter": "legal.homicide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51564823",
+        "voter": "irosariov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51564466",
+        "voter": "victorizwekov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51563349",
+        "voter": "awinkle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52561613",
+        "voter": "steemwiki.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51527891",
+        "voter": "kumin84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51525325",
+        "voter": "mlbuczy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52542326",
+        "voter": "ico-board"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52508752",
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52477821",
+        "voter": "apolonxviii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51421479",
+        "voter": "damm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52428551",
+        "voter": "adaydreamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51384632",
+        "voter": "saifer87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51383543",
+        "voter": "mr189"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52392989",
+        "voter": "marketanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52365029",
+        "voter": "jhebertnexus7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52360280",
+        "voter": "viktorvol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207968680",
+        "voter": "max78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52314503",
+        "voter": "soul.ripper.ittu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51273719",
+        "voter": "cryptomaje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66048721",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173634017",
+        "voter": "ziogio"
+      }
+    ],
+    "author": "steve-walschot",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "# Our beta is now live! Start accepting STEEM anywhere you want!\n\nAfter countless hours of not sleeping to focus on Steempay, together with @cass who made an amazing UI for Steempay, we're finally able to launch our beta version.\n\nSome parts may still be raw and not yet 100% completed, but the functionality is!\n\n# http://steempay.io\n\nhttps://sc-cdn.scaleengine.net/i/1deff02237d662af32a8948289ffeff6.png\n\nTodo list within the next 48h\n\n - Add more buttons to the generator\n - Publish the Github to public\n - Start creating the shopping cart plugins (WOO first)\n\n\n----------\n# What's next?\n\nSteempay is just the beginning of many projets to follow. There are still some legal aspects to cover, but Steempayments (Steempay's umbrella group) will most likely start processing transactions on it's own servers. This would make it possible for simple, clean merchant solutions like **BitPay** provides, mobile wallet solutions like **Blockchain** to increase the usability of steem worldwide, and many more.\n\n----- \n\n# Raw documentation until Github is public\n\n# Donation vs payment\n\nWhen choosing to receive **donations**, the user is free to send any amount of any currency. To set the donation option, simple use `amount=0` in your parameters. Set currency to either `SBD` or `STEEM` since it's irrelevant for the end user. The user will receive a message to send any amount to your address.\n\nFor fixed amounts, called **payments**, set the `amount` and `currency` to the values required for you. \n\n**WARNING: Make sure to use 3 decimals!** (AMOUNT.000) when generating a payment. This has multiple reasons, including future expantion of Steempay.io.\n\n# Button generator\n\nhttps://sc-cdn.scaleengine.net/i/15a4c07dacbb7652d27f04c9d8e71a58.png\n\nSee https://steempay.io/generate \nCurrently there is only 1 default button available but that will change in the next couple of hours.\n\nThe generated button looks like this (this actually works!)\n<a href='https://steempay.io/payment?&receiver=steve-walschot&amount=0&currency=0&callback=www.steemit.com'>\n<img src='https://steempay.io/img/steempay-sbd--button@2x.png'>\n</a>\n\n\nSome of the proposals by @cass\n\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/06/60c7b81e93d59950ebe4e27aff1a823d.png\n# Requesting a new payment\n\nA new payment is created by passing URL or DATA parameters to steempay.io. This means you could send raw HTTP requests, or stay on your own website and send the data via AJAX calls or JSON request.\n\nFollowing parameters are **required**:\n\n - receiver \n - amount \n - currency\n\nFollowing parameters are **optional** ***but recommended***\n\n - callback\n\n## ! IMPORTANT !\nAmount : **Make sure to use 3 decimals!** (AMOUNT.000) This has multiple reasons, including future expantion of Steempay.io\n\nCallback: Get's called on success. You can use this to post a success message or handle data on your server/website if needed.\n\n# Handle callbacks\n\nSet the `callback` parameter with your desired url. Always use `http://` to start your url.\n\nIf a callback URL has been provided, steempay will `post`  the unique paymentID to your URL.  A simple php script can catch the the callback and verify the payment a last time (recommended). \n\nexample.php\n```\n<?php\nif (isset($_GET['payid'])) {\n\t// Payment is success, confirm once again\n\t\n\t$url = \"http://steempay.io/payment/verify?payid=\" . $_GET['success'] . \"& receiver=YOUR_USERNAME&amount=1.000&currency=SBD\";\n\t\n\t$json = file_get_contents($url);\n\tif (json_decode($json->status) && json_decode($json->success) == \"success\") \n\t{\n\t\t// Payment is double verified, do whatever needed now.\n\t}\n}else{\n\t// Some error occured\n    echo $_GET['message'];\n}\n```\n\nVerification is possible via `http://steempay.io/payment/verify?payid=XXX&receiver=XXX&amount=XXX&currency=XXX`.\n\nThe returned main parameters are\n\n - **success** *boolean*\n - **message** *Message about the success status*\n - **payid** *unique serverside generated ID*\n\nThe full response is given below (if success)\n\n    {\"status\":\"success\",\"success\":true,\"message\":\"Payment completed with fixed amount (0.001 SBD).\",\"block\":4306279,\"trx_id\":\"58c415fe70fe7d953e30997b78551415c7e4d190\",\"payid\":\"Re3Hbl1ekAeSwVtzKS\",\"amount\":\"0.001 SBD\",\"timestamp\":\"2016-08-22T14:55:15\"}\n\n\n----\n### Beta version - What this means\n\n\n> Alpha version describes a development status that usually means the first complete version of a program or application, which is most likely unstable, but is useful to show what the product will do to, usually, a selected group\u2014and is also called preview version; the beta version is usually the last version before wide release, often tested by users under real-world conditions.\n\nBugs could still occur, but all payments are made directly to the blockchain, so transactions are always safe from errors.\n\n# Thank you community\n\nI would like to pay my eternal respect to this community, and give a big applause to @cass for the amazing UI and the time he put in this project, and also @roelandp for giving me good advice on how to lower the server's load.\n\nhttps://sc-cdn.scaleengine.net/i/ddc698fcd6c7c0f1c232ce3dfba514bf1.png\n\nhttps://sc-cdn.scaleengine.net/i/6f1b07d917dcfa939592d2406f3cbbb3.png",
+    "body_length": 5191,
+    "cashout_time": "2016-09-23T01:24:45",
+    "category": "steempay",
+    "children": 136,
+    "created": "2016-08-22T22:01:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steempay\",\"steemit\",\"steem\",\"steempayments\",\"development\"],\"users\":[\"cass\",\"roelandp\"],\"image\":[\"https:\\/\\/steempay.io\\/img\\/steempay-sbd--button@2x.png\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/06\\/60c7b81e93d59950ebe4e27aff1a823d.png\"],\"links\":[\"https:\\/\\/steempay.io\\/payment?&receiver=steve-walschot&amount=0&currency=0&callback=www.steemit.com\",\"http:\\/\\/steempay.io\\/payment\\/verify?payid=\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-22T22:10:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 238615833753017,
+    "parent_author": "",
+    "parent_permlink": "steempay",
+    "pending_payout_value": "7669.834 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steempay-io-v1-0-1-live-accept-steem-sbd-anywhere-button-generator-included",
+    "post_id": 711450,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "STEEMPAY.IO v1.0.1 LIVE! Accept Steem/SBD anywhere! Button generator included!",
+    "title": "STEEMPAY.IO v1.0.1 LIVE! Accept Steem/SBD anywhere! Button generator included!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steempay/@steve-walschot/steempay-io-v1-0-1-live-accept-steem-sbd-anywhere-button-generator-included"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "941731279",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7630664486754",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26546851529009",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28860901543",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26275719549142",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399415745083",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14697797604728",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40261538120634",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36399158476733",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7287284495784",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219042566758",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3218865983058",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385464769392",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6527288225551",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "629235972940",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107368706156",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1202364403012",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2778620786382",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "788303906273",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4624143270559",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012546698102",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "948645888607",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320894214580",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3094227321",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2018308331283",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3755919142",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703611913",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5895452407610",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53261625751",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5461062957",
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5248796936",
+        "voter": "jen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31020409685",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435835894301",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25224828032",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658434658",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213555429",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251650600185",
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12302450425",
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4645434442291",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15486432504",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322742522737",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2539528091657",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4677672750501",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1288478836630",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364488541490",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76269518609",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1064112656314",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261059857577",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15879310527",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622043795",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "947518714",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2706369432682",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6901450215",
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391300852031",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759901644",
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49087071558",
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47676868957",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15744448168",
+        "voter": "cryptoprometheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282481919881",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6218388754",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287957469",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22851068453",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26339332178",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81271314308",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28827731919",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13857797589",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "569109365",
+        "voter": "frxdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51569034114",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3381707663",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10283360038",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25990954524",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2968414276",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16325220071",
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6963898563",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "468329075252",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8112324606",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83561852958",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10788357562",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24290958657",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2181695613",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339902561070",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1696048914135",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233102958062",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7456570912",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15513837266",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5394181231",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141860095137",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7722626018",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1630869950",
+        "voter": "mookid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59046327388",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8089463236",
+        "voter": "censor-this"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011606523",
+        "voter": "coar"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1647918993",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "491733834025",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2164048830",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "934691204",
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1702188822",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41463145095",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375485571343",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5794630789",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342876699663",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6176350844",
+        "voter": "motivational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90078948",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232932917905",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12457434054",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63707549495",
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31690136419",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-8838503984",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73021925789",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354956224005",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "352209566",
+        "voter": "jabravo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231798069",
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8706722974",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5489887265",
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53417323094",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376432512152",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111873962064",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20273054154",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56613707223",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43936012834",
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19944193958",
+        "voter": "minfon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61288297136",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32282987109",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211066627674",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117389810764",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250779134032",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "449244898326",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48314646957",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4225748527",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13381225324",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75015159271",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23672766314",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128017998380",
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1372538034",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186181525556",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "673023307194",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23620081773",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5359058455",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "70382421728",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10606399776",
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367993454",
+        "voter": "alextsvirko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2727866888",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36251103104",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3803302124",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2296189896",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35110341502",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6447225666",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4394946495",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3930145143",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1233769087",
+        "voter": "phanie90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1963122914",
+        "voter": "rowbvp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176517920920",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18420587434",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142479249108",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1174733183",
+        "voter": "stupidteenboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3178114846",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4163072671",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11629950938",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231222031627",
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26189252148",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4916727099",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70050996082",
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5020716018",
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250697653",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1724889475",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108665344051",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25440234426",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13382892819",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129978663055",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252518634",
+        "voter": "avantyris785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49613914926",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20715599247",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25437941218",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83555712",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361720448",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9298606221",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6187628336",
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "216627523583",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2126899035",
+        "voter": "obfuscate-me"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77739321482",
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "19130291257",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10583075740",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103574158909",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "213368336",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "197468232",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86951139",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1230306794251",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119931099578",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8501400238",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3185202465",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7878946500",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41265637686",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245149849",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14190084617",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279828314",
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158558212807",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269516049",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4356428789",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4446869322",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3549473866",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144657204853",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33597624083",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246503487",
+        "voter": "fintekneeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5487522068",
+        "voter": "mastertrader777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81193986566",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15047061152",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2181125028",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3728295687",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57622403315",
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57587125095",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "344216939",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18563733049",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8640015168",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11804173407",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2923324702",
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "722979920",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7028930352",
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8998707956",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128897415203",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1396236934",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17787390532",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35572192110",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41117209832",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581133833",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22827120414",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120162058",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75155947399",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4460619227",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2595832893",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9297731115",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3773408670",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240861118",
+        "voter": "m34ndy0u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1450587245",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84785197552",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36691375796",
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3921772813",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10589572085",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6133928089",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37786807870",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2670183399",
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189803128958",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198815487354",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131930031",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50745949960",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7915132341",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2371757513",
+        "voter": "metalcrypto86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200835346",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7310496375",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16418209916",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118997456",
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8272759658",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145088625",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3429908815",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32840277809",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50446860889",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4205952736",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22490571930",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1931724325",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469444219",
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1417716803",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107071475",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8120745406",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180766867333",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130516856",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118191498",
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014720738596",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1638021515",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6533566864",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37104363071",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2526892289",
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117518172",
+        "voter": "burtnyy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3073348452",
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55609255744",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695718",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9223165225",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118110720",
+        "voter": "kamirus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190746623",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1073927278",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5163105975",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898853087",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35557408613",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6043552466",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15778369711",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348055214",
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "634677740",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6627911515",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4966581120",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16359584188",
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265859568",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32802459469",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10607133925",
+        "voter": "npl77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4266663174",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10878913683",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435708310",
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4179769209",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122951400",
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8543172549",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "711696098",
+        "voter": "cybercodetwins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335450273",
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692722967",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125562936",
+        "voter": "blysards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1693612096",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3690715185",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4668432597",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2977376953",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111012764140",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11060114610",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113431670",
+        "voter": "mms2209"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714975270",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51359081888",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7804620168",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4909898227",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100621269618",
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2133895656",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75908853",
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "301833943",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41323733064",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "516171402732",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24803457022",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16960531436",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8258629596",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4882606765",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19746665322",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25379157632",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26985239652",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27000068578",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4686531546",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "81445607576",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20404007761",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7608055360",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3338294019",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15842330986",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31910148976",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8964678925",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "13274553574",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418252412559",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1579699570",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50651622",
+        "voter": "shanejonas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155802538",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26997864488",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26997159973",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26994977927",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26993476889",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26991282056",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26990193303",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22114403402",
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "42489259779",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16142463064",
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70516052",
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3071190621",
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64088762",
+        "voter": "donnablacktail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9285793397",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65105820",
+        "voter": "korose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48612921342",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63775516",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77473387847",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "1012260894",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374581913",
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235921562",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71461631",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1785678779",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62650809",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100809807",
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28303329252",
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8826323850",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63082929",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253851679",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62864549",
+        "voter": "alejoshy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1088539665",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20915742890",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "1697398641",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1173918713",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61385527",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1555626413",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62539910",
+        "voter": "jfelton5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15480226673",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1512118630",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4274024399",
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2256397676",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81481591",
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62300623",
+        "voter": "nhuberfeely"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "183175490",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64006701",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5549884244",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11322866467",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32936248663",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2085306269",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554142063",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586268356840",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163702640",
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44719852844",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60566656",
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54588377",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113457626",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60336688",
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2021838220",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3440154807",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2510155648",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1945712531",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60713021",
+        "voter": "krishbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5933699497",
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123199538",
+        "voter": "nelkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1205296670",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59958658",
+        "voter": "mgd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1694357387",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56605454",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140126974",
+        "voter": "spalser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53959064",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2832905693",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217084653",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26984764634",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59648980",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16498891421",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224437021",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39959999159",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2921148382",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381954099",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26672558843",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941542283",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151908779",
+        "voter": "letsgo.asino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218436997",
+        "voter": "freerubens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53628399",
+        "voter": "alphabit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59590162",
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310843991",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46099719842",
+        "voter": "albensilverberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15592330951",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4377285201",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58226150",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90932755",
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2380044342",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2995790342",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10644392346",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77909231",
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59797501",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68338923",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57686991",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58283876",
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61577027",
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4325283932",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195118598",
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13472124826",
+        "voter": "antoinev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62540266",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8349370222",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57131220",
+        "voter": "hotgirlktm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18931402331",
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58078172",
+        "voter": "dcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246917049",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2625089602",
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74582547",
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57813247",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57789562",
+        "voter": "frankfriendly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6492226260",
+        "voter": "ready4freddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57683187",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649448205",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5202403828",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4217367409",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378298430",
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11500654084",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173536408",
+        "voter": "justyna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11938411155",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941925835",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56318766",
+        "voter": "suz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26584702950",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25411200606",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2136857314",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2300578574",
+        "voter": "liquidrainbowx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97421272",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215371673",
+        "voter": "kita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62245792",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60247981",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36265063494",
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7619175185",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56883857",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56749063",
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "879417837",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87104967",
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2703939308",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57894807",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55971428",
+        "voter": "jimking001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55803830",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56340092",
+        "voter": "mercosity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644939263",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53942218",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4472747649",
+        "voter": "betamusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67679386",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173705520",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9907002500",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55982050",
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56267680",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3048578115",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55222754",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50351260",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62018150",
+        "voter": "giselletje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97810726",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55410689",
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26856814801",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "603258997",
+        "voter": "michaelmcdermott"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53099160",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3005615324",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154391429",
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55192267",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53034981",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470399270",
+        "voter": "monattalent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175780152",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53871683",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52393318",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54971826",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63856110",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52841577",
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54658188",
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53593366",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53602103",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59354601485",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3677273797",
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53458617",
+        "voter": "joseph1117"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53369320",
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1294007075",
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "514384460",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520406986",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52943536",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54104748",
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53968679",
+        "voter": "bobbrasil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53031074",
+        "voter": "monkeytraveller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130434883",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52826202",
+        "voter": "kbregu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1958906475",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53631416",
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15100509688",
+        "voter": "robinhoodwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53623038",
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53604743",
+        "voter": "jakeawake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52710031",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50092741",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50066904",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9229831703",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66618246",
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50852949",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60249241",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51654766",
+        "voter": "sargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52603451",
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51501667",
+        "voter": "sike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51479169",
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52470232",
+        "voter": "justallen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860350269",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50405458",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50368568",
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52412324",
+        "voter": "saifer87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50353356",
+        "voter": "takemyfive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51339379",
+        "voter": "jeffreykauffman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52353519",
+        "voter": "felipe1alexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50279703",
+        "voter": "talos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52324894",
+        "voter": "faissal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50255013",
+        "voter": "rjv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52254529",
+        "voter": "ross001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51207930",
+        "voter": "abhinavsolan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52211132",
+        "voter": "arche416"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52159157",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51121901",
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50083306",
+        "voter": "kairat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52124582",
+        "voter": "frajer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50076010",
+        "voter": "funthing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50039213",
+        "voter": "wolfclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50024358",
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52065485",
+        "voter": "clips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50009457",
+        "voter": "smolofaguess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50000886",
+        "voter": "levlupsfamily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51009490",
+        "voter": "codeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309120726",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52013777",
+        "voter": "kclement"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-50983830",
+        "voter": "amdj30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50983001",
+        "voter": "thistruthisfree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50977373",
+        "voter": "cobizig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50973868",
+        "voter": "tagonist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51991682",
+        "voter": "sboehm4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51987939",
+        "voter": "olblueyez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51986809",
+        "voter": "bizarroworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50960646",
+        "voter": "donal1682"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51974334",
+        "voter": "werty1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51968647",
+        "voter": "superpuffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50937964",
+        "voter": "michelleshaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50924850",
+        "voter": "shaolinmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51900403",
+        "voter": "malibu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50878690",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51875429",
+        "voter": "linzgraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51813325",
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51809372",
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51788323",
+        "voter": "francis-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51780689",
+        "voter": "raasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51774444",
+        "voter": "steven15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50743270",
+        "voter": "drinkout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52030157",
+        "voter": "neophonic"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-51060649",
+        "voter": "ssedmaker"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>[![thumbfinal2.jpg](https://s19.postimg.org/89t73ydjn/thumbfinal2.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nThe @steemdrive billboard campaign continues to power throughout the world, with the next site targeted being Chicago, USA. \n\nThe first official Steem blockchain crowdfunded billboards are already fully flighted in Durban, South Africa with two digital boards in flight since our last report and details of the print billboard to follow in an upcoming post. \n\nSteemit.com, the social media platform front-end for the Steem blockchain, was founded in the United States by Ned Scott and Dan Larimer (of [Bitshares](http://www.bitshares.org)]. The @steemdrive billboard campaign team is proud to launch this initiative to once again crowdfund a billboard, but this time in the USA, the home of Steem(it)!\n\nWe are proud to introduce Nolan Jacobson as our youngest campaign liaison, someone who has truly impressed us with his determination and spunky ideas. Our campaign is fortunate to have him aboard and is our pleasure to hand over to him to present the Chicago campaign he assisted in organising.  \n\nThank you Nolan for your good work and kind words!\n\n[![signature.png](https://s19.postimg.org/56ul3axar/signature.png)](http://www.steemit.com/@steemdrive)\n\n# Introduction \u2013 Nolan Jacobson\n------------------------------\n\n<center>[![14123948_320909574911079_1188490028_o.jpg](https://s19.postimg.org/xz3txsvmb/14123948_320909574911079_1188490028_o.jpg)](http://www.steemit.com/@theprophet0)</center>\n\nFellow Steemian\u2019s, my name is Nolan Jacobson ( @theprophet0 ), I am 15 years of age; an entrepreneur and over-achiever. I am excited to say that I am the Chicago liaison for the @steemdrive campaign. \n\nSome of you may be saying to yourselves, you\u2019re 15 and you\u2019re an entrepreneur? Yes, I recently created [\u201cThe Steem Store\u201d](https://www.steemit.com/steem/@theprophet0/introducing-the-steem-store-a-store-where-the-only-payment-method-is-steempayments-created-by-the-15-year-old-steemit-guru) it is a store that uses [steempay.io](http://steempay.io/) as the sole payment method to buy Steem/Steemit merchandise. The products I will be selling are different from all the other Crypto/Steem markets and I am looking forward to promote Steemit any way I can through my store and other collabs like @steemdrive. \n\nBut, enough about my business; you have no idea how much \u201cdrive\u201d I have to promote Steemit! I can tell you that I devote myself 100% to all projects I work on; no matter if they are a success or not! Speaking of which, let us get into the Chicago/O\u2019Hare International Airport Billboards!  \n\nWouldn\u2019t that be great, to bring the first Steemit Billboard in America to my hometown, that is home to over 2,700,000 citizens and has more than 50 million visitors every year! You may be thinking, why put up a billboard advertising an online platform? Well, I couldn\u2019t have said it better than Ricardo Goncalves, the founder of the @steemdrive billboard campaign. \n\nIn his replies to comments on previous posts, Ricardo doesn\u2019t classify the billboard campaign as a replacement for online marketing, but rather sees it as a supplementary and supportive initiative. He likes to use the analogy of Coca-Cola, indicating that they are omnipresent and top-of-mind; their ads are on billboards, vehicles, coffee shops, TV, and anything else you can name!\n\nPeople may not click on an online banner immediately, they could consider it is a scam or an internet gimmick, however if they saw it on a billboard previously, it gives it some \"real world\" validity. If a company is spending on a billboard, the public sees them as more legitimate, especially because of the price tag and impact they make. \n\nThe important thing about the campaign is that the community comes together and the billboards lift spirits, for example if you are in the car with your kids and drive past the billboard, your kids may say, _**\"Dad, look it\u2019s Steemit!\"**_, can internet advertising do that?\u201d In my opinion, that is such a great explanation, props to Ricardo! Anyhow, let\u2019s get right into this fantastic billboard drive!\n\n# Chicago\n-------------\n<center>[![views_of_the_beautiful_chicago_640_01.jpg](https://s19.postimg.org/x9gg7p5oz/views_of_the_beautiful_chicago_640_01.jpg)](http://www.steemit.com/@steemdrive)\n[Image Credits]( http://izismile.com/2012/12/27/views_of_the_beautiful_chicago_33_pics.html)</center>\n\nChicago! Everybody around the world has heard about this city! It is the third largest city in the United States. Chicago is home to many amazing sport teams including, The Chicago Cubs, The Chicago Blackhawks, The Chicago Bulls, The Chicago Fire, and The Chicago Bears. \n\n**\u201cChi-town\u201d**, as the citizens of Chicago call it, is also home to the second-tallest building in the United States, The Willis Tower! If you weren\u2019t aware, Chicago is sort of split into 77 different \u201ccommunity areas\u201d if you will; with the North Side and South Side being the two main ones. \n\nThe North Side of Chicago is home to the Chicago Cubs, home of over 1,300,000 people, and the median age is right around 34 years. \n\nThe South Side, on the other hand, is home to the Chicago Bulls, home of just over 861,000 people, and the median age is the same at around 34 years also. ([Information reference](http://www.point2homes.com/US/Neighborhood/IL/Chicago/))\n\n# O\u2019Hare International Airport\n------------------\nRight outside O\u2019Hare International Airport is the killer spot for a billboard in my eyes! According to [Wikipedia](https://en.wikipedia.org/wiki/O%27Hare_International_Airport), O\u2019Hare International Airport is the busiest airport in the world, since 2013, when it beat out Hartsfield-Jackson Airport in Atlanta. \n\n### The Busiest International Routes to and from ORD (2015)  are listed below:\n\n1.\tLondon | Passengers \u2013 1,029,216\n2.\tToronto | Passengers \u2013 843,372\n3.\tTokoyo | Passengers \u2013 712,579\n4.\tFrankfurt | Passengers \u2013 622,743\n5.\tMexico City | Passengers 493,747\n\n(Data Source: [Wikipedia](https://en.wikipedia.org/wiki/O%27Hare_International_Airport)) \n\nAfter seeing that many international travelling passengers; I would say that Steemit could get a ton of global attention in addition to domestic exposure.\n\n# Crime in Chicago\n------------------------\n\nSadly, crime is everywhere in the filthy world we live in. This year, Chicago has been in the thoughts of many; there have been 2,743 people shot to this day, of those 2,378 people shot, 2318 of those people were wounded, and 465 of them were homicides. \n\nThese are just despicable numbers. As of April 1st 2016, murder rates are up 72% and shootings are up more than 88%. ([Information source](http://heyjackass.com/))\n\nAccording to the Chicago Police Department, the disturbing rise in violence is driven by gangs and mostly contained to a handful of pockets on the city's South Side. Gangs are truly a scourge on our city, little kids these days are being recruited, joining at such a young age and sadly some are even being recruited out of elementary school. \n\n# Why do kids join gangs?\n---------------------\n\nHere are a couple risk factors that can lead children and adolescents to join a gang.\n\n\u2022\tThey see the people in gangs have a lot of money.\n\n\u2022\tThey have no positive role models or mentors.\n\n\u2022\tThey have a sense of hopelessness about the future because of limited educational or financial opportunity.\n\n# How can Steemit help these problems?\n-----------\n\nI will answer the bullet points listed above with statements in which Steemit can help these awful problems:\n\n\u2022\tOn Steemit, you get paid for just simply writing content. You don\u2019t have to risk your life every day to make money; in fact it\u2019s just the opposite!.\n\n\u2022\tIn the Steemit community everybody has a positive attitude! Negativity won\u2019t last on Steemit. In fact, Steemit is a good environment for every one of every age! Ricardo is my role model, who shows there are positive role models and mentors on Steemit!\n\n\u2022\tWith Steemit there are never worries about limited education or lack of financial opportunity because every day you are on Steemit, you learn something new. Steemit actually has a great impact on your education! \n\n# How Steemit will benefit Chicago\n-----------------------\n<center>[![views_of_the_beautiful_chicago_640_05.jpg](https://s19.postimg.org/6pnv5k55f/views_of_the_beautiful_chicago_640_05.jpg)](https://postimg.org/image/3vkps42z3/)\n [Image Credits]( http://izismile.com/2012/12/27/views_of_the_beautiful_chicago_33_pics.html)</center>\n\nJoining Steemit is a very positive alternative to joining the gangs; as you can see from reading the above. It actually may help children get out of gangs as they find out that they can make money without risking their life every day. \n\nAlso, with there being a young crowd in Chicago who are literate to smart phones and computers, I believe that Steemit will flourish and have a positive impact on the citizens of Chicago! \n\n# The Billboard Options, Are You Choosing Chicago or O\u2019Hare?\n-------------------------\nThe reality is that unless this post hits a very high figure, we will only be able to obtain one billboard and there are two billboard options we have selected that we need your help with. In the comments section of this post we need you to simply vote on comment #1 or #2 depending on which billboard you would prefer seeing incase we don\u2019t receive enough funds for both. _(Remember to first vote on the main post)_\n\nI will be showing you both of the options from a distance. (The artwork is done by me, keep in mind I am a rookie. This is NOT the final artwork) Also, keep in mind that the 1st billboard is located on the Tri-State Tollway and is located next to O\u2019Hare International Airport. The 2nd billboard is near the South Side of Chicago.\n\n## Option #1 - O\u2019Hare\n\n<center>[![newpng.png](https://s19.postimg.org/fktattjbn/newpng.png)](https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638)</center>\n\nThis DIGITAL bulletin gets prime exposure to traffic headed to O'Hare Airport. This affluent section of DuPage County is considered to be the fastest growing in the United States. Only 50 feet from the toll-way, this sign has excellent exposure to nearly 60,000 daily commuters to Metro-Chicago from the upscale northern suburbs.\n\n**Panel #:** 70082\n**Location:** TRISTATE (I-294) E/S .5 MI N/O NORTH\n**Lat/Long:** [41.9136/-87.9193](https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638)\n**Panel Size:** 20' 0\" x 60' 0\"\n**Weekly Impressions:** 552637 per spot (based on 18+ years of data)\n\n## Option #2 - Chicago South\n\n<center>[![newsteemitlife.png](https://s19.postimg.org/7th6904k3/newsteemitlife.png)](https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917)</center>\n\nLocated on the Tri-State Tollway in Chicago's South Side, this DIGITAL sign delivers traffic coming from the far-south suburbs and NW Indiana heading west to Joliet on I-80 and north to locations such as Midway Airport on I-294. This is one of the heaviest interstate truck-traffic areas in the country.\n\n**Panel #:** 70051\n**Location:** TRISTATE (I-294) N/S W/O HALSTED\n**Lat/Long:** [41.5787/-87.6430](https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917)\n**Panel Size:** 20' 0\" x 60' 0\"\n**Weekly Impressions:** 378483 per spot (based on 18+ years of data)\n\n# Why I chose these billboards\n--------------------\n\nI chose these billboards for a couple reasons\u2026\n\n1.\tWith O\u2019Hare International Airport being so close to each billboard, I think that is a killer location as O\u2019Hare International Airport is the busiest airport in the world.\n\n2.\tLots of traffic on the Tollway which means when people are backed up, they will look at the billboard.\n\n3.\tThe Billboards are available to see 24/7.\n\n4.\tO\u2019Hare International Airport attracts a ton of local and international visitors. With that being said it will get global exposure.\n\n5.\tIMHO, there is no better place to start a billboard campaign in the United States than Chicago!\n\n------------------------\n\n## @steemdrive in the Media:\n\n+ http://bitcoinhub.co.za/new-social-media-platform-steemit-set-to-take-south-africa-by-storm/\n\n+ https://coincheck.com/en/blog/1845\n\n+ [Beyond Bitcoin E166 2016-07-29](https://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts#t=30:07)\n\n+ [Beyond Bitcoin E169 2016-08-19](https://soundcloud.com/beyond-bitcoin-hangouts/e169-beyond-bitcoin-dollarvigilante-talks-steem-blockpay-ico-grc-hangouts-steem-billboard-campaign#t=2:21:51)\n\n-------------------\n\n## Campaign Partners:\n\n<center>[![beyondbitcoin.jpg](https://s19.postimg.org/qj95pqxar/beyondbitcoin.jpg)](http://www.steemit.com/@officialfuzzy)</center>\n\n\n--------------------\n\n\n<center>[![blocktrades.jpg](https://s19.postimg.org/sf0jenbir/blocktrades.jpg)](http://www.blocktrades.us)</center>\n\n\n--------------------\n\n\n<center>[![blockpayfinal.jpg](https://s19.postimg.org/ek28w6h3n/blockpayfinal.jpg)](http://www.blockpay.ch)</center>\n\n\n\n---------------------\n\n## <center>Witness @delegate.lafona (liaison and campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @smooth.witness (campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @liondani (campaign supporter)</center>\n\n---------------------\n\n## @steemdrive Supports the Following Initiatives:\n\n+ @robinhoodwhale ([info link here](https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed))\n\n+ @steemcleaners\n\n+ [thesteemstore.com](https://www.thesteemstore.com/password)\n\n+ [steempay.io](http://steempay.io)\n\n----------------------\n\n## Terms and Conditions:\n\nSteem Dollar payout funds raised from this Steemit post shall be primarily allocated to the **Chicago billboard campaign**, and/or any other billboard site or @steemdrive public project where funds may be required in and paid in accordance with the general campaign terms and conditions.\n\nNed Scott of Steemit, Inc. approved the use of the domain steemit.life on artwork, which will point to a referral link for campaign tracking, otherwise not possible if steemit.com was advertised.\n\nAll images are either royalty free, public domain, supplied by the billboard agencies or paid for by the campaign or liaison, credits will appear beneath any other image sources.\n\n-----------------------\n\n## Direct Donations:\n\n+ A special thank you to Fuzzy from [Beyond Bitcoin]( https://steemit.com/@officialfuzzy) hangouts for pledging to donate 200 SBD to the campaign.\n\n+ Another unexpected surprise pledge from @smooth in comment below, of 2000 SBD!!! Smooth you are a legend! \n\n+ 25 SBD received from @smailer , thank you for helping make history my friend!\n\n+ Confirmation received of 200 SBD from @liondani , we are truly blessed today, thank you so much for your support.\n\n+ Thank you to  @bhavnapatel68  for a 25 SBD contribution, our team salutes you!\n\n<center><a href='https://steempay.io/payment?&receiver=steemdrive&amount=0&currency=0'><img src='https://steempay.io/img/donate.png'></a></center>\n\n-----------------------\n\n## Funding Requirements:\n\nThe billboards are each the same cost per 4 week rental, taking into consideration the \"voters 25% haircut\", the 50% split into SBD, 20% SBD liaison pay and a 15% allowance for SBD peg variance and other charges; the pre-payout campaign value required to successfully fund one billboard for 4 weeks is approximately 10 500 dollars _(double this for both billboards)_.   \n\n**REMEMBER TO VOTE (WITH FULL POWER!) FOR THE MAIN POST AND THEN VOTE ONE FAVOURITE BILLBOARD LOCATION!**\n\nWe achieved a pre-payout value of just under 27 000 dollars on our first South African campaign, let us now see what America can do! \n\nThe @steemdrive team thanks you for your support thus far and hope you will support us once again, **bringing \"Steem powered\" billboards to Chicago, USA!!!**",
+    "body_length": 16385,
+    "cashout_time": "2016-09-24T19:41:42",
+    "category": "steemit",
+    "children": 160,
+    "created": "2016-08-24T16:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"life\",\"crypto-news\"],\"users\":[\"steemdrive\",\"theprophet0\",\"delegate.lafona\",\"smooth.witness\",\"liondani\",\"robinhoodwhale\",\"steemcleaners\",\"smooth\",\"smailer\",\"bhavnapatel68\"],\"image\":[\"https:\\/\\/s19.postimg.org\\/89t73ydjn\\/thumbfinal2.jpg\",\"https:\\/\\/s19.postimg.org\\/xz3txsvmb\\/14123948_320909574911079_1188490028_o.jpg\",\"https:\\/\\/s19.postimg.org\\/x9gg7p5oz\\/views_of_the_beautiful_chicago_640_01.jpg\",\"https:\\/\\/s19.postimg.org\\/6pnv5k55f\\/views_of_the_beautiful_chicago_640_05.jpg\",\"https:\\/\\/s19.postimg.org\\/fktattjbn\\/newpng.png\",\"https:\\/\\/s19.postimg.org\\/7th6904k3\\/newsteemitlife.png\",\"https:\\/\\/s19.postimg.org\\/qj95pqxar\\/beyondbitcoin.jpg\",\"https:\\/\\/s19.postimg.org\\/sf0jenbir\\/blocktrades.jpg\",\"https:\\/\\/s19.postimg.org\\/ek28w6h3n\\/blockpayfinal.jpg\",\"https:\\/\\/steempay.io\\/img\\/donate.png\"],\"links\":[\"http:\\/\\/www.bitshares.org\",\"https:\\/\\/www.steemit.com\\/steem\\/@theprophet0\\/introducing-the-steem-store-a-store-where-the-only-payment-method-is-steempayments-created-by-the-15-year-old-steemit-guru\",\"http:\\/\\/www.point2homes.com\\/US\\/Neighborhood\\/IL\\/Chicago\\/\",\"https:\\/\\/www.google.co.za\\/maps\\/place\\/306+Northwest+Ave,+Northlake,+IL+60164,+USA\\/@41.9136504,-87.9384504,15z\\/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638\",\"https:\\/\\/www.google.co.za\\/maps\\/place\\/1021+171st+St,+Hazel+Crest,+IL+60429,+USA\\/@41.5791421,-87.6451804,17z\\/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917\",\"https:\\/\\/steemit.com\\/steem\\/@repholder\\/the-robinhood-whale-initiave-community-feedback-needed\",\"https:\\/\\/steempay.io\\/payment?&receiver=steemdrive&amount=0&currency=0\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T11:35:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 227968562806338,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "7005.101 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream",
+    "post_id": 732829,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
+    "title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38451193659",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17385412095137",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7688659622029",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29652173029568",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28854853175",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39486167539961",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36385063290586",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2049642827168",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73272768589",
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "346085143111",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17422262223173",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6946368014897",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8832433017411",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3246757738413",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384932387105",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6720670302195",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115693124003",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1944790367140",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4895804718369",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33307827345",
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "954858040877",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "803566613810",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320669746586",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3085197652",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1975747200682",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3744410921",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "708979370",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3372697687234",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1438694033657",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52275677031",
+        "voter": "bue"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1281552306",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1653869296",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213274356",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32550511782",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5309145361747",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1129010306514",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304829401415",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70877943888",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "716694338266",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252087376835",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10210285256",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613532784",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "893835290",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2672477130289",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398157135647",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17069621824",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44104332762",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94216559894",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287509506",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8864087428",
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26315706357",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "14800880014",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89038138941",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26838106632",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10271411415",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116313551950",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91924984138",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16989625299",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142021953735",
+        "voter": "nkdk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2907626165",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58847956204",
+        "voter": "lovelace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3989110433",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67269861861",
+        "voter": "idealist"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "15263430960",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29123911687",
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473678777",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94838484142",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45574888424",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2177251712",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337331566741",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "20041361318",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3342907840",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2164745847",
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73767981753",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98635020280",
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58992402649",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4702449999",
+        "voter": "xav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54214633364",
+        "voter": "tosch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1450853172",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339984285",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29017585900",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47246284590",
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580523246157",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315960216",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18522213380",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218111827316",
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222779231297",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11474193919",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64330796457",
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1613095208",
+        "voter": "arskiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26145560412",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95985729250",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231561594",
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7935608077",
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "504962385",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412671917575",
+        "voter": "the-alien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290189917167",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55062940846",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18924572691",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61260862795",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8398468481",
+        "voter": "somedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "971544329",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107568962014",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119386171",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19854078940",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435396351969",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80388659823",
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47317933373",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1445317942",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4225748527",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13377007401",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80341870005",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713614971",
+        "voter": "menace.coin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1551377063",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118983805142",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20674508047",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44252149522",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216869687795",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636117083",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25241493318",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10527048441",
+        "voter": "vladon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386335737081",
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3474673641",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50184326192",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4733608063",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1691789720",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5756639361",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35716570141",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6829924943",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "565346205",
+        "voter": "nadejde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250811301",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13311207958",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4014763201",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090541230",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127433544240",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3116292841",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165872891302",
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266349543845",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18675405646",
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746630589",
+        "voter": "stalnionis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098337565",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3804121527",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3704365763",
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253533017",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146610995479",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6985662723",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1048586169",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17680389230",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21098879051",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5172309447",
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245031826",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2638289178",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25550006177",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6020292061",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12808729996",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4015098030",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20017085495",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133969627073",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56214004774",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5072625846",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29530036864",
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49579926408",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4227326061",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470865866",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25692821957",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273706533",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415946152",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38500990109",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16470022526",
+        "voter": "jazzka"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "31369317052",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10574593346",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "363404265",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "406327478",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "372534009",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246089730",
+        "voter": "alex2649tw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13093257174",
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4158546853",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836023833",
+        "voter": "alkemix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3146121037",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188957990",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536550051",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427173743",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41263112632",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240342989",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244459106",
+        "voter": "sairji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "532244432",
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1026390089",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252407179",
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239429308",
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17625843355",
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "54345146257",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18394247275",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3783115811",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40651190846",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78889019157",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1546897172",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19068212733",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348108726622",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11395824102",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3059156583",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3077393881",
+        "voter": "kaneen74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23376052723",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53925388822",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241764375",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12628644739",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179196273146",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10360143599",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2348727450",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2556620116",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8453400920",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3684539967",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487886612",
+        "voter": "charles-d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26196706184",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25830549400",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406335361",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6734695477",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14373754719",
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258070573",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4795024069",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84104965081",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7615150102",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2670183399",
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7858101339",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116919592",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9511446677",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398571760",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011214030",
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24615216974",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7161298409",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "734402373",
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485646625",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5034293849",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "972760038",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116450799",
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1971723463",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290205209",
+        "voter": "sagar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19038668222",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116065815",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1928511507",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111726756",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118283572",
+        "voter": "theleximus1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148183514305",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115837887",
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "12293168978",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143874373",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32878858013",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115682991",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44705463796",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115387959",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23187314517",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211677715438",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1444157412",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4538359177",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123258754",
+        "voter": "streem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "776294423",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2440982239",
+        "voter": "marriedbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226734950",
+        "voter": "aleksandra28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6009180650",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13073623412",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2405047992",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230402080",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2070076420",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7116967446",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "383206253",
+        "voter": "fnait"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "375933865",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32514332248",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405419067",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20990784022",
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111995622",
+        "voter": "dushyant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5652176856",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5116087046",
+        "voter": "saulius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57817214351",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "509338382",
+        "voter": "kaykunoichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1733966276",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23834093727",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2480041506",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4757360328",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72289125531",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10212393410",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112450703",
+        "voter": "arslan7544"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "786742077",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6402218596",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1230387590",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2033912739",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62220152",
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64056721",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14386644371",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10892926265",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8300226776",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12986522188",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8093308679",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4871794356",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2074751088",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2593793851",
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1653680090",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25867914835",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63671033",
+        "voter": "play"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64906381",
+        "voter": "crowdfundvibe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2369229878",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1431883444",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64649163",
+        "voter": "holwylb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63300522",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63242540",
+        "voter": "impigrum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382253852",
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64298241",
+        "voter": "crisstaken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62743518",
+        "voter": "donnablacktail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5534757981",
+        "voter": "tannukas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7418993028",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89782930",
+        "voter": "jefflee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21005913988",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200157889",
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62268668",
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172287577",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57105514",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63362435",
+        "voter": "oluwen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62368657",
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7853197446",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631288233",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4831441172",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62006301",
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61704615",
+        "voter": "gatorjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169623708",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61598061",
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19617748220",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174221367",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2685807725",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69558111",
+        "voter": "sarita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62069093",
+        "voter": "giannicapasso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149453758",
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110871569",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3954589158",
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89034260",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2048624792",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54300455",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60903916",
+        "voter": "thoth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31647211554",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60467503",
+        "voter": "leraakulenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577231315",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459420482396",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995507831",
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26642706254",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5047027984",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69850863",
+        "voter": "bitfish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60676805",
+        "voter": "elmariac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379898572",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60651985",
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60521896",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196915807",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2813505777",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "835908919",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79642959",
+        "voter": "steemcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439090381",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89368060",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199289634",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122271574",
+        "voter": "truthmomma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "576074830",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56384147",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59183580",
+        "voter": "vegeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439994",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58479392",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58423044",
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62574066",
+        "voter": "ktbaeohana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61805391",
+        "voter": "cehuneke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7644756825",
+        "voter": "garywilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59236965",
+        "voter": "dauwken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "858943654",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1592329786",
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3936001425",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56695901",
+        "voter": "gosteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33542477932",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300847113",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69441445",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9951404773",
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22543917173",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71103152",
+        "voter": "dasfarm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205069063",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2763355474",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53804048",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57570619",
+        "voter": "tsbloyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57875249",
+        "voter": "andyseo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64184750",
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58787702",
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200332810318",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56332233",
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57886832",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58914198",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64745673",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "893390250",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57583148",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55320371",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62202585",
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2909500506",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62361130",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183777633",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453468817",
+        "voter": "djdmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56930391",
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74072122",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153933584",
+        "voter": "groovedigital"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61826880",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59464308",
+        "voter": "lukie257"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2412812207",
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38710389758",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60206256",
+        "voter": "rainmnz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55403417",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98950105",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365799797",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4387236391",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57549632",
+        "voter": "felixblanco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281743750",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59105066",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232544963",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69012539",
+        "voter": "decentro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111221218",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2147020967",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58094402",
+        "voter": "lapants"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377617397",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54842347",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1467546651",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57747508",
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50084618",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55628200",
+        "voter": "tocos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56911596",
+        "voter": "courtneybelyea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54500387",
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3603226178",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56611081",
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "913919467",
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1915680741",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1017211703",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890717617",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56447574",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282363031",
+        "voter": "russianark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56364556",
+        "voter": "pumpndumptrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9444303420",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55390353",
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277212432",
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187358259",
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55053663",
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51749039",
+        "voter": "gsdalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51745040",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53925231",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53893867",
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55560454",
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54898534",
+        "voter": "roadie73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54861931",
+        "voter": "dirtyjr101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55937830",
+        "voter": "luigimendi89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55919448",
+        "voter": "minisupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131370012",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54767752",
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77889825",
+        "voter": "powercouple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55786422",
+        "voter": "mathewrush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155287",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55675902",
+        "voter": "kenyan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62901999",
+        "voter": "avemend"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55524391",
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54468075",
+        "voter": "prestonslove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433189",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51170419",
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55407469",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54258724",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53122101",
+        "voter": "jimwhipple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55143258",
+        "voter": "jessicalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63417242",
+        "voter": "haizuru-ishida"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55018737",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75687607",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54996833",
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93233347",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335457095",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53758453",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53731875",
+        "voter": "protrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54806372",
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52638225",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53689387",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51488252",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53603360",
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53594242",
+        "voter": "otis13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53589726",
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50351227",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51363851",
+        "voter": "rafej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50207083",
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53408323",
+        "voter": "adpt2apocalypse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54464024",
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53381371",
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53362659",
+        "voter": "promaxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53360048",
+        "voter": "arkana"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-51218846",
+        "voter": "cooldemos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53333238",
+        "voter": "donzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51191809",
+        "voter": "ladyboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53324358",
+        "voter": "pampers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53298526",
+        "voter": "tweek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53278513",
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54340900",
+        "voter": "cristine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53264688",
+        "voter": "mallamahesh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54254783",
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53180419",
+        "voter": "alexanderem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53168377",
+        "voter": "kelsee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52104910",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50983830",
+        "voter": "amdj30"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>[![thumb_96.jpg](https://s19.postimg.org/cc8s49gnn/thumb_96.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nThe @steemdrive billboard campaign continues its world dominance of grand outdoor advertising for the promotion of Steemit, the blockchain based social media platform. Electronic billboards are already playing 15 second advertising loops in the _\u201cground zero\u201d_ city of Durban, South Africa as reported in [our last proof of flight post](https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa). Furthermore, the 20M x 5M print billboard is currently in production, with official updates to follow.\n\nAs promised, we will be engulfing all countries around the world with Steemit billboards for as long as we have the fantastic support of the Steemit community behind the @steemdrive campaign. \n\nThe next target location is Auckland, New Zealand; hometown of fellow Steemian, and @steemdrive liaison, Shayne Shiells; who an active member of the community and deserving of maximum support for his campaign, take it away Shayne\u2026      \n\n<center>[![intro.jpg](https://s19.postimg.org/vu80xy2z7/intro.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nHi fellow Steemians, most of you know me as @cryptoiskey, I recently joined Steemit on the 4th of July 2016, which already seems like a lifetime ago. \n\nI have a background in 3D Animation and Design and have been developing for a virtual world since 2007. \n\nWhen I believe in something I like to invest myself 100% with no exceptions and I believe heavily in Steemit and the direction it is moving. \n\nIn order to ensure Steemit's success, I believe _**we all need to do our part to bring Steemit to the world in whatever way we can**_. I have started promoting Steemit on the beaches of California which you can view [here](https://steemit.com/steemit/@cryptoiskey/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag). \n\nVenice beach was a great success and I will continue promoting Steemit on the California coast when I can, but for now I am excited to introduce the power of Steemit to my home country of New Zealand. \n\nI was born in Auckland and know the city very well. It is the perfect fit to start a Steemit billboard campaign and hope you will support this endeavor. The city of Auckland in New Zealand is a prime location for billboard displays,  let me explain why.\n\n<center>[![auckland.jpg](https://s19.postimg.org/fx4nnhl77/auckland.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nAuckland is the transportation central for the entire country. There are 1.4 million residents, not including the extended Auckland regions. Auckland holds 33% of the total New Zealand population.\n\nAuckland's cosmopolitan dominance in New Zealand is very visible with 40% of the population being born overseas.\n\nHaving a large mix of ethnic groups in one area means many of their family members are still overseas, this will intensify the exposure to other countries, by utilizing a faster chain effect. People are always excited spreading the Steemit word, which I am sure is a valid advantage.\n\nNew Zealand also attracts tourists from all over the globe, with 3 million international visitors landed in Auckland In 2015. Many of these international travelers are from a younger generation seeking high-octane adventures and publishing their experiences via social media. Steemit blogging is a perfect fit and a billboard in the right location can take advantage of this demographic.\n<b></b>\n### Below are the available Billboard locations.\n\n<center>[![bill-loc.jpg](https://s19.postimg.org/klp8wezrn/bill_loc.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nYou will notice the 2 black arrows. These are 2 locations I think can take advantage of Aucklanders and International visitors.\n\n### Billboard 1 - Nelson St.\n\nThis first billboard is located on Nelson St. in city central and is perfect for the visitor demographic as well as Aucklanders. What I like about this billboard is its position in relation to the stop lights. It really stands out between the 2 buildings. It will also take advantage of the \"stop time\".\n\n<center>[![a112-original.jpg](https://s19.postimg.org/j7xm140ib/a112_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a112-steemit-added.jpg](https://s19.postimg.org/m4kn1e6c3/a112_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Nelson St. proposed artwork concept</center>\n\n+ Size 6M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,676,161\n\n### Billboard 2 - Great South Road, Penrose.\n\nThis billboard takes advantage of dual traffic flows. One of the traffic flows contains 3 lanes of busy traffic. The viewing time is extended because of the sheer volume of stop lights. The billboard is heavily illuminated at night as to peek interest 24 hours a day.\n\n<center>[![a215-original.jpg](https://s19.postimg.org/vewr4xh1v/a215_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a215-steemit-added.jpg](https://s19.postimg.org/todq3fzir/a215_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Great South Road, proposed artwork concept</center>\n\n+ Size 12M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,119,333\n\nAll of the billboards locations in Auckland have great statistics and a rotation campaign would definitely work well.\n\n### The main reasons I like the two aforementioned billboards are:\n\n1. The locations take full advantage of stop lights which I believe is a key factor for driver awareness.\n2. The statistics are very high in both locations.\n3. They both are visible at night time giving them 24 hour exposure.\n\nAuckland is a great starting point to gather some statistics and see how the New Zealand market responds to the Steemit billboards. New Zealand is very touristic and if placed correctly it is possible to take advantage of certain cities at specific times of the year (The seasonal charge of tourists). Tourists = Global.\n\nThe @steemdrive team thanks you for your support thus far and hope you will support us once again, bringing Steem powered billboards to New Zealand. \n<center>[![auckland.jpg](https://s19.postimg.org/w9jaqyowj/backpackers.jpg)](http://www.steemit.com/@steemdrive)</center>\n<center>Remember to `VOTE`, `SHARE` and `FOLLOW`.</center>\n<hr>\n\n<hr>\n\n**Terms and Conditions:**\nSteem Dollar payout funds raised from this Steemit post shall be primarily allocated to the New Zealand billboard campaign, and/or any other billboard site or @steemdrive public project where funds may be required in accordance with the general campaign terms and conditions.\n\nNed Scott of Steemit, Inc. approved the use of the domain steemit.life on artwork, which will point to a referral link for campaign tracking, otherwise not possible if steemit.com was advertised.\n\n**Previous Campaign Links:**\nhttps://steemit.com/money/@steemdrive/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\n\nhttps://steemit.com/steemdrive/@steemdrive/steemdrive-the-last-mile-for-27k-billboard-campaign-and-vote-of-thanks\n\nhttps://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts. _(Ricardo Goncalves' @steemdrive interview with Beyondbitcoin Hangouts, FFWD to around 30 minutes)_\n\nhttps://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa",
+    "body_length": 7564,
+    "cashout_time": "2016-09-16T23:58:57",
+    "category": "steemit",
+    "children": 131,
+    "created": "2016-08-16T17:08:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"life\",\"crypto-news\"],\"users\":[\"steemdrive\",\"cryptoiskey\"],\"image\":[\"https:\\/\\/s19.postimg.org\\/cc8s49gnn\\/thumb_96.jpg\",\"https:\\/\\/s19.postimg.org\\/vu80xy2z7\\/intro.jpg\",\"https:\\/\\/s19.postimg.org\\/fx4nnhl77\\/auckland.jpg\",\"https:\\/\\/s19.postimg.org\\/klp8wezrn\\/bill_loc.jpg\",\"https:\\/\\/s19.postimg.org\\/j7xm140ib\\/a112_original.jpg\",\"https:\\/\\/s19.postimg.org\\/m4kn1e6c3\\/a112_steemit_added.jpg\",\"https:\\/\\/s19.postimg.org\\/vewr4xh1v\\/a215_original.jpg\",\"https:\\/\\/s19.postimg.org\\/todq3fzir\\/a215_steemit_added.jpg\",\"https:\\/\\/s19.postimg.org\\/w9jaqyowj\\/backpackers.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@steemdrive\\/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa\",\"https:\\/\\/steemit.com\\/steemit\\/@cryptoiskey\\/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag\",\"https:\\/\\/steemit.com\\/money\\/@steemdrive\\/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T17:08:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 213555656400500,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6946.258 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails",
+    "post_id": 629250,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28560646020990",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7482556785929",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28500529484938",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28861497571",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26281954419455",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36311210447453",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7166026055876",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1952023119009",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223622830143",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3219053436696",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223711383698",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1891888493603",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385490772199",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6660806624932",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644872704857",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21056224196689",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109811462347",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5592889929391",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1331500596037",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2971712347474",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "788439749051",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4741928221840",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042789136478",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320910536892",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298439892868",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150974882552",
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3094958749",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1978763283401",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188726834829",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3756869472",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696667695",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6205822781772",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53368139638",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447105757472",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658807994",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213558827",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57377779906",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11582933910",
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16454870033",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354810038737",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2610613139094",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4920502200246",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1298767962589",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77826446010",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1103353876382",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19375061925",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622137125",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "952752774",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133823792161",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57735896918",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "271580911771",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24457406223",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117775730214",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287967645",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23360528643",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156331317403",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30028887416",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846567310",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122932345282",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419153264932",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146329460364",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92134911246",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "491429125793",
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12171946152",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8205257677",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7376079047",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "496464544971",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488113402",
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2536344757",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83563754477",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494066880",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483152352",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27107941615",
+        "voter": "thedarkestplum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5279958080",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5794429408",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24807749053",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632575314",
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33981858008",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2138917267",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333258124752",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1822716613",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709269164837",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469151600",
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238835403910",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037066661",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3278084856",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513554139",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2575954627",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93497060455",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12821562761",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60231338472",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "430142790",
+        "voter": "andygreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12917304110",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54934580320",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2164103772",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19197407164",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916363925",
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88219347090",
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1808575623",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23606790995",
+        "voter": "adiron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25390353862",
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356811839971",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941862703",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46830338583",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389678169642",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210288745",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18893760500",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238913090540",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12534214352",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36600014121",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4228175909",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184861284858",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10426284702",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "1300",
+        "reputation": 0,
+        "rshares": "535085293398",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380442035664",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393705031",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33023351643",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8965344275",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386047698",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237713566789",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40404123620",
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232978192774",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53477284457",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "11145820184",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-44817963557",
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73473919997",
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6346333852",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252446375719",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "449382000083",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48315528635",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4142890713",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398746305",
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23208949584",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137985366901",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878968825",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1978185015",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29070319535",
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "888899843",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184432921500",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312416918",
+        "voter": "karen-butler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5819225195",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9526338532",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686498651829",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88591858942",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43941298443",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42303411287",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31652499116",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8809731014",
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2491601864",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1053452529",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17686586033",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6850246528",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666311365",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330833785",
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199195319",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257330035",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179431212147",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10331014347",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281936472",
+        "voter": "levent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158350575079",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327066986883",
+        "voter": "heiditravels"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71797696542",
+        "voter": "lauralemons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4623260663",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12983117279",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3668746861",
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12524021131",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255780948",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17222069029",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263450012",
+        "voter": "brockton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108706222887",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27333283527",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12849240363",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20214638094",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177047609596",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247567288",
+        "voter": "avantyris785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25082666401",
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1271451816",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622499323834",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23836049644",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260812970",
+        "voter": "timotron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324623687",
+        "voter": "linkku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6834453208",
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117089682",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1517090750",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8556925261",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50711088707",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6187628336",
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "296259416092",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "6380319546",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10583703247",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105707948711",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "66692894",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61722414",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67628664",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138275474797",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2034990010",
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5464993770",
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75123114815",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20792709556",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132713955488",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42524854450",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233332478",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7724431416",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40456948638",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47586138538",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4916037950",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4541919146",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18546431924",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4114526773",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2779591474",
+        "voter": "dogguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41465366167",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34271202700",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89898065783",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2066815364",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111493899868",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3950290272",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2703937851",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52788198003",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5871791528",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72880524614",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1926255301",
+        "voter": "pictorians"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10389851075",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11804275143",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1002116424",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435049318",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95226627916",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2194815720",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128898123725",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "711889903",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15670441941",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35579793979",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500190013",
+        "voter": "symbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55005576626",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239794058",
+        "voter": "bertrandlarsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5732294213",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3470465356",
+        "voter": "gkealy2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21789794318",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117805939",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75156404322",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373156105",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2654767174",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3486436311",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1479598990",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488668862",
+        "voter": "dogesteam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1666826621",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239427456",
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10380243347",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2468349025",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19985593184",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207309669205",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131930031",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17915463078",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14491972528",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3614719442",
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55202612813",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119216508",
+        "voter": "fhc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8238510887",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196897399",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7167153309",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3311854486",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6939038250",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116664172",
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159387199",
+        "voter": "xondra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "882957752",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69117647542",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139166640",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4230519365",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5146311248",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29396971145",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12751039508",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58982208172",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1193934954",
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4290470633",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22490762180",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1847751264",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1477067328",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111726756",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180857883770",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371626273",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115874018",
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1035551247781",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118154645",
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1834631674",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2042770630",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36376826540",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4829965030",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128989941",
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54497070629",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117485406",
+        "voter": "rizkypramudyacj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4752851001",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117256810",
+        "voter": "satoshi-pie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117386180",
+        "voter": "coinmaster4you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383990423",
+        "voter": "ladypenelope1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1441891046",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3848926356",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500209723",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48416597910",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194720511",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560201253",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4745090234",
+        "voter": "bakingengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305479433",
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773013655",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21354066670",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1371841629",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22357507116",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36689320416",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16714610807",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231783321",
+        "voter": "mancoba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "721544015",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6108537397",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20900104387",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16686827613",
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9367718298",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291479339",
+        "voter": "nickjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3298056386",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114503443",
+        "voter": "pavelwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11332592813",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129041365",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4015856691",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18023925988",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7728159790",
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5611522689",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134661057",
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3494211723",
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60191451364",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "915590461",
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35115130291",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4452605468",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "817190717",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8269753940",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1283492958",
+        "voter": "littlekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5617594846",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56527569",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32857206160",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16805040088",
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "904824367",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56215794",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23813778042",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4980258900",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25980126700",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1448457001",
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2593878902",
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122387390",
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24953376046",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3097487092",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "555412571",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9331242455",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39987681467",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2299239749",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266655599",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2710167448",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3331328741",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63993548",
+        "voter": "mdrollette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9547109560",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71226045",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52804255512",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10678437690",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63775516",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54508506063",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2291086633",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63594681",
+        "voter": "accripteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63054380",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941159098",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "851124018",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62650809",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56647554",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54641038",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63616030",
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265460209",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1185094354",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62928860",
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54217761",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3842203000",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1622895683",
+        "voter": "bebecitosfotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54077897",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1271830358",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16134755266",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58277489",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28124094739",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2256397676",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4573566381",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60856079",
+        "voter": "lordgothmog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80383749",
+        "voter": "oldas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62735564",
+        "voter": "gamingdiamond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41491353618",
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54896152",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60994192",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1620631385",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11132558343",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38874009222",
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54313084",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61506849",
+        "voter": "virusmedia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60288627",
+        "voter": "atrickpay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531133173",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20099956352",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "565686689",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163702640",
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113571840",
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118544994",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4249171547",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1183575116",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160968192",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58148489",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113457626",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2275142374",
+        "voter": "zhenghao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60372902",
+        "voter": "sorenpeterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59153616",
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2021855541",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2459952535",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1910105759",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "769468612",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54220781",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039566",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54216305",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53034852",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54209199",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58782998",
+        "voter": "mgd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60143295",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369270285",
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939562492",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56305110",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4918684548",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52651308",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243293537",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58479392",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59591505",
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215635569",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2864397330",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "434038749",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1171610651",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24452621045",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59155266",
+        "voter": "byjk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154348848",
+        "voter": "johnster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3860921107",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23609188750",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58988588",
+        "voter": "jeandepatch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065292847",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20247416717",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313754430",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7266496467",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31303265003",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57803967",
+        "voter": "jacobberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15253787265",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59390673",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390205958",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2724160806",
+        "voter": "kovaiensko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127117428940",
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2332908402",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68186803",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1466342803",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3118899280",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58768736",
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1350024143",
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59010539",
+        "voter": "jonnybh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1426439906",
+        "voter": "jms21y"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53935001",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69407495",
+        "voter": "voluntaryv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53853911",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58806042",
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66998944",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57126874",
+        "voter": "jamesart63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58246339",
+        "voter": "aletoledo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399407280",
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597148004",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4420043710",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63806640",
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58167598",
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86244910",
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2166664728",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59284524",
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1556727823",
+        "voter": "daniel82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8948882183",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59494031",
+        "voter": "kirby1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329605745",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "863227677",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2565438843",
+        "voter": "colinklein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57889196",
+        "voter": "braincramp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69187216",
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65995086",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57851525",
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56694448",
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57291321440",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17676446808",
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57683187",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71882929",
+        "voter": "jonimipidici"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5101854383",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4376868684",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4310439355",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291103732",
+        "voter": "trimtab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11731150067",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11938480285",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57445142",
+        "voter": "suz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961187",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64535087",
+        "voter": "billjoyce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6880894762",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64782545",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2187971989",
+        "voter": "epiphany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1788849014",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2626923465",
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59148765",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4153056043",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57055494",
+        "voter": "scottmacquarrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644113013",
+        "voter": "magickalmalia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1505318589",
+        "voter": "victoriart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53613607",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56883857",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388822791",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "458900119",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5752411757",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565305",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56748177",
+        "voter": "apisme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56723778",
+        "voter": "iamjen2692"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54362089",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1780564916",
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88085099",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56042508",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5806504909",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17055789147",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55197242",
+        "voter": "rubellitefae"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1790814851",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56241383",
+        "voter": "flame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55803830",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "657838048",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143941",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10416848697",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67679386",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170299530",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54999958",
+        "voter": "tommyboyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55841289",
+        "voter": "schooliskul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52545761",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172475666464",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6670382961",
+        "voter": "wwworld4us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55824224",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "798157427",
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380988979",
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2080731309",
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2055544209",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54523663",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52242652",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53318865",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25805152289",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2738998255",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3005632256",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171849",
+        "voter": "gateguy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52988378",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53110243",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106744904",
+        "voter": "gabosh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336266884",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124568714",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131693793",
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56243769",
+        "voter": "frankcorvus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54909082",
+        "voter": "simonpeter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53893947",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70796991",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85114506",
+        "voter": "deptawesomebeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275718770",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162033495767",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53602103",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59354601485",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56122994",
+        "voter": "ivanba12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1943114183",
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "514384460",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "448934323",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484970407",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54171765",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55105511",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039974",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1101487626",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52943536",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52931611",
+        "voter": "steem4fobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53988734",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114358571",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56789009",
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753853",
+        "voter": "wildmanhowling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52807746",
+        "voter": "jeancarlos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53288811",
+        "voter": "mobilebestdeal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55160066",
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1920835613",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50462875",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416608994",
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10912705118",
+        "voter": "ksc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53779499",
+        "voter": "iampluto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51725998",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66687457",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1611149452",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54251507",
+        "voter": "privacyissues"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487124980",
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53580348",
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68605362",
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52873008",
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106825085",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59067883",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51706051",
+        "voter": "parisgraffiti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52874902",
+        "voter": "steeme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52533117",
+        "voter": "stardust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71059082",
+        "voter": "regeneration"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1152598967",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52601465",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52596228",
+        "voter": "harini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52594800",
+        "voter": "randomguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562286",
+        "voter": "pusio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52415837",
+        "voter": "koek-10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52412604",
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52405628",
+        "voter": "vapecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416142579",
+        "voter": "clayboyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52159157",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52144339",
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51351904",
+        "voter": "funthing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51077428",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54103453",
+        "voter": "clips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52064045",
+        "voter": "coertli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50996649",
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50962513",
+        "voter": "greenrain225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51930368",
+        "voter": "iotaissham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51896264",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51587349",
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51981765",
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51799295",
+        "voter": "pegasus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50765381",
+        "voter": "raasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50759259",
+        "voter": "steven15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51767735",
+        "voter": "feedmycrash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50727124",
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50726329",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51732076",
+        "voter": "petro.keay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51713637",
+        "voter": "amineminou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51711324",
+        "voter": "jimcropper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51706631",
+        "voter": "ayoubbakkali"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51703468",
+        "voter": "constclayton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51700456",
+        "voter": "nkhank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51699892",
+        "voter": "jcdobber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682081",
+        "voter": "janefluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51692910",
+        "voter": "alenapimenova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51689337",
+        "voter": "willi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50674199",
+        "voter": "mrabdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51663210",
+        "voter": "jesseanieto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51655833",
+        "voter": "aminemouleloued"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639011",
+        "voter": "adilking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51646760",
+        "voter": "likeaboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51636074",
+        "voter": "btcdude007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51635173",
+        "voter": "taoist-water"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51614826",
+        "voter": "playingwithfire"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-50595887",
+        "voter": "hotosaynmcti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51573486",
+        "voter": "sudo82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50529587",
+        "voter": "hafelaffe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51535237",
+        "voter": "pero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51495204",
+        "voter": "bryanplymale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50479785",
+        "voter": "patience"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50478780",
+        "voter": "artur154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51478830",
+        "voter": "kiryck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50368151",
+        "voter": "lucif3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50274929",
+        "voter": "antonindc"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50375830871208,
+    "beneficiaries": [],
+    "body": "[![IMG_0491.jpg](https://s15.postimg.org/xvlt4ug2j/IMG_0491.jpg)](https://postimg.org/image/6l0hwxd5j/)\n\nThere is no fool proof way to prepare for prison. \n\nOn March 30th I self surrendered to Lewisburg Federal Prison Camp after I was sentenced to two years for aiding and abetting an unlicensed money transmitting business, for which I am guilty. \n\nIn my case, the only things I could do to prepare myself for was the idea that for the foreseeable future I won\u2019t be around. But I was optomistic because the only way to get through it, is to fully embrace it and take it head on. Which is what I did. \n\nOn March 5th 2015, about 30 days before my self surrender, I wrote this on my blog: \n> I\u2019ve been dreading writing this blog post, and since I\u2019ve written it, it\u2019s been sitting as draft for a few weeks. Never the less, it\u2019s time I get on with it.  On March 30th, I\u2019ll be self surrendering to Lewisburg Federal Prison Camp in Pennsylvania. It\u2019s been a long hard fight, from getting arrested at JFK airport while landing home, to solitary confinement and being under house arrest the for the past 14 months. When the government indicted me and requested 30 years, I kept my head up with the help of friends, family, and the Bitcoin community. While some distanced themselves, most stood by and fought. I owe my life to those people. Of course I don\u2019t look for sympathy, I did the crime and I will do the time. They say those who stand by you in the bad times, deserve to be with you in the good times. Good times are coming and I look forward to it.\n\nOptimism. No matter how sad I was feeling, I needed to stay positive with my head up, because once I fell into a spiral of self pity and depression, there is no coming out. \n\n[![IMG_0491.jpg](http://charlieshrem.com/wp-content/uploads/2015/03/46044187-best-place-prisons-lewisburg-1.jpg\n)](https://postimg.org/image/6l0hwxd5j/)\n\nSo I started taking notes from other people who have been to Lewisburg and finding out everything  could prepare myself for. \n\n- Keep books/newspapers under 13oz. Keep it to 4 per package. \n- USA Today delivery, dropped off directly. \n- Always use Amazon for books. \n- Bring list of people to communicate with - Name/Mailing Address/ Email Address/ Phone number \n- Every month 300 minutes for the phone maximum, Nov/Dec 400 minutes. \n- Email/Phone busiest mostly after dinner. \n- Get a watch \n- $360 a month is max you can spend on commissary, not including phone and email. \n- Buy sneakers. \n- Try to get education job \n- Dont gamble \n- Get there 8:45am. Then complete strip search, then temporary clothes, then medical intake, then sign forms and meet a counselor. \n- Corlinks app for iPhone, becomes like instant messaging. Can print emails. \n- Write physical letters. Stay optimistic. \n\nBut what was prison going to be like? What was my day going to consist of from waking up until I go to sleep? No one could answer these questions except for me. I needed to accept that I was going to be in prison, and going to use the time wisely. \n\nThere was a lot to do. What do I do with my email account, how do I secure my Bitcoin wallet, how do I keep my phone number. How will I maintain a relationship with my family? What is prison going to be like? All these questions were burning in my head and I couldn't find anything online to help me. \n\nThis is going to be a Steemit series on before, during, and after prison. I will post pictures, letters, diaries, notes and things I wrote while inside. \n\nFeel free to post your questions you want to see answered, I plan on answering them all to the best of my ability in the following posts. \n\nFollow me to read Part 1 \n\n-Charlie",
+    "body_length": 3653,
+    "cashout_time": "2016-09-25T17:27:21",
+    "category": "story",
+    "children": 124,
+    "created": "2016-08-25T13:27:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"story\",\"life\",\"bitcoin\"],\"image\":[\"https:\\/\\/s15.postimg.org\\/xvlt4ug2j\\/IMG_0491.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T13:47:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 224241713529877,
+    "parent_author": "",
+    "parent_permlink": "story",
+    "pending_payout_value": "6734.722 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "a-geek-in-prison-a-life-series-by-charlie-shrem-preamble",
+    "post_id": 742296,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "A Geek in Prison - A Life Series by Charlie Shrem (Preamble)",
+    "title": "A Geek in Prison - A Life Series by Charlie Shrem (Preamble)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/story/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-preamble"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713694473613",
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7510416793191",
+        "voter": "steempty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "16068038584703",
+        "voter": "smooth"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "12121187556689",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380238459022",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14423169571983",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24441826462",
+        "voter": "fluffypony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40109771813296",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "25361221604821",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36315643031728",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7301117381798",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6708153542567",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3188638339756",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2192945558805",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5805534380317",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416499138441",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83480665113",
+        "voter": "friend5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118407999549",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5276642752065",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33636924304",
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "904017482934",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065829957154",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898197979211",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320971980307",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155072915746",
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3098777463",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3761916316",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697256115",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7161304385550",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6014751263291",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481270665604",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53931551747",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660705255",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213653566",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251693031997",
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58224067107",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11695227908",
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208750877849",
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7272920270",
+        "voter": "idolhacked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2325164637164",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087292508827",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6578113570",
+        "voter": "sean0010"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2837705244235",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1331357925773",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50192262014",
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411703831404",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748581030023",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3142621730120",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714930245307",
+        "voter": "marginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80699573707",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1112860804811",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258877600254",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16216414939",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74773141631",
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622667151",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177857184063",
+        "voter": "markopaasila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23553651897",
+        "voter": "wpalczynski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419118498950",
+        "voter": "cob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967098399",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2662200007484",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6901758743",
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392088507901",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "213932632106",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93860680998",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34051846969",
+        "voter": "mkultra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348813313946",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "301410060777",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31488210815",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196162501190",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "549442905324",
+        "voter": "kencode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3495643148",
+        "voter": "spartako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66151857717",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288128811",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61972121116",
+        "voter": "jbrukh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22985615692",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39186628279",
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23047108317",
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14177042732",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19159296155",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86224617301",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "917952755",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77078667225",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554084160",
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411007912273",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15188075143",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146340616729",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3284244800",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73280882046",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92152855019",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17125250994",
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215245786468",
+        "voter": "camilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47972534221",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174353582975",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167617331918",
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17987503188",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "517192604",
+        "voter": "lourenc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8205736006",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4871366502",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83669612037",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11622634708",
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8927741511",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19479953917",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25772740263",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403958066598",
+        "voter": "bitacer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95038880661",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46956211114",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36487878350",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098966754",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334011056190",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1880661234",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "928388769",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3510970719",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4523170231",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2771996934",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18727152340",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4070573315",
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2352510904",
+        "voter": "luxiano-valdez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75378682458",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463524444",
+        "voter": "nasato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96949402252",
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1346484060",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435824983",
+        "voter": "isyevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59122859137",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60742936680",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23370028390",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55212372520",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1017842258",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73936687046",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "553356305581",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1430749837",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4963867901",
+        "voter": "animalrobot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24748489415",
+        "voter": "gridcoinman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140996602583",
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415175441",
+        "voter": "kewde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17061428112",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57959167372",
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7452144426",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26729047043",
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3147716497",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351470606838",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13608775698",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46018261282",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383066566",
+        "voter": "maylong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18085245154",
+        "voter": "btcturbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18898229445",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12917828173",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24308802296",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365694018",
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4509938929",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80852317272",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360501004",
+        "voter": "zunaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201826128557",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9826512260",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354206844",
+        "voter": "saroj-bhatta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543977846",
+        "voter": "dbrock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342081119",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4271166951",
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745829352",
+        "voter": "malacandrahyoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37473030840",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1709265172",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52893188787",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250251214796",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369711427119",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40559498042",
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289583466317",
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51869215030",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "576767994200",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12940198679",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73476436941",
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2908408613",
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8995772525",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62432961225",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48667624415",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4889928179",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398746305",
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80699408448",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127102932429",
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21383864845",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "533816739",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1021838886",
+        "voter": "ashley-toth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1987962484",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5411805833",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "319691598",
+        "voter": "gary-wood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "321645695",
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "542199014",
+        "voter": "hackecon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42979703654",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155004173769",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3457734437",
+        "voter": "antizvuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658789233",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130590733852",
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189545314722",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1429359370177",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306061039",
+        "voter": "mcandrews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9720265816",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97826496492",
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686881767918",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300434933",
+        "voter": "knopki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97983029101",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256959483430",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2734348852",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30072878297",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42318258991",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6874854410",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32318554954",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46174191043",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66670031086",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70688369106",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7014130249",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367651854679",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7909802888",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1062917569",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3398987186",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17687129809",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28959157027",
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43719154102",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16128483738",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289162489",
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1009609549",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269948463",
+        "voter": "willbed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17543161793",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263465578",
+        "voter": "jepeto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "353570419",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261201772",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15861008437",
+        "voter": "jamiecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230286299005",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9856964632",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19984735139",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258815574",
+        "voter": "lsully311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3187095322",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2449644301",
+        "voter": "juansgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260424224",
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24517238299",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305498139352",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4542608039",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5631846675",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249240602",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146383438265",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8409886307",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3205624469",
+        "voter": "cryptoclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251831549",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18333306648",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310292244",
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327668379",
+        "voter": "rodomonte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124482562937",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9109684802",
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31283202239",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5945858323",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10156514623",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310534090",
+        "voter": "freemanit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135307922245",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220025712831",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10501734857",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209442228322",
+        "voter": "guerrint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1285715500",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29866371275",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266065805",
+        "voter": "nurev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328962154",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26594793962",
+        "voter": "missjessica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241242032",
+        "voter": "alibaba987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6768804868",
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229781794",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79453170464",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12165590095",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "321778767569",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464544867972",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1645695260",
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10585423374",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "604839764",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105799873038",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265314431",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1370626015309",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143974807152",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88157160491",
+        "voter": "alexbeyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90966672055",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14094648142",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133875475196",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7880126960",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41267074393",
+        "voter": "wesam"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-609755122",
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302505871",
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22593623327",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222257214",
+        "voter": "joseph.kalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4486491494",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516511761",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18567193433",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61948097883",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243368872",
+        "voter": "ozbay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4023608719",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2998864621",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2931171309",
+        "voter": "felipemachado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13848695970",
+        "voter": "wobblealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4971395546",
+        "voter": "jamessmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41067162104",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6504456266",
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32286496779",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14720610748",
+        "voter": "guywinfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056512184",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94805049013",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17930289726",
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8694742669",
+        "voter": "greenhatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10951350049",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250632924",
+        "voter": "dangermouse117"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "455011454",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4183876292",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57622676142",
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14647693329",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "855479492",
+        "voter": "deruwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24443545057",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52805276639",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1396330239",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6129221694",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142888646733",
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30881468844",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80563394374",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13451802691",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8169007561",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244706827",
+        "voter": "satoshi-nakamoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235543115",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3721643899",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39496477589",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4665441702",
+        "voter": "morpheustitania"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378576826",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95267898665",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240330371",
+        "voter": "piqdesigns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9037656827",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1425274480",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "541784069",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45247833539",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266034633420",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9908576759",
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273607958",
+        "voter": "joiflores"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41361612181",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6973342226",
+        "voter": "andrewsanderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6928808028",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239842298",
+        "voter": "capetown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239732013",
+        "voter": "jwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19728020453",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115914608081",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373524020",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452681946",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239427456",
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12696760695",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12569029210",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2818420851",
+        "voter": "ani22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424094754",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3449406742",
+        "voter": "kimmar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200334652700",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3003762640",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4127387114",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13110910227",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20009856419",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252341146186",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14307494636",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1553704823",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58699636063",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123371166",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19632980259",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1482891198",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "957933973",
+        "voter": "stimmedmarine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8241172753",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9773953552",
+        "voter": "pcste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12528459891",
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7310750390",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1760042037",
+        "voter": "gfxmotion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119052939",
+        "voter": "patrickgamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311209174",
+        "voter": "olinzodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2277845741",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116503038",
+        "voter": "kattokassinen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69120731893",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7960988445",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151010610",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "838471644",
+        "voter": "sovereignbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118855870",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65267663923",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459882281",
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22491309496",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20496448079",
+        "voter": "mynewsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12644262391",
+        "voter": "hagie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116058250",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3872206737",
+        "voter": "sokal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1492718093",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102459876",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118280841",
+        "voter": "mpili"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5202360626",
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "990217556",
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2223413258",
+        "voter": "slava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203600904607",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384838496",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115941835",
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995693826153",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "804229760",
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2752169711",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25060686207",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4927592739",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81028785405",
+        "voter": "thebear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2651227609",
+        "voter": "moksha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55611498658",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17996858564",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9224124607",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3720019704",
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1668636401",
+        "voter": "cogliostro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13502377471",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117092140",
+        "voter": "rhesusnegative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212104094711",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633329337",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116884886",
+        "voter": "blackhole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2501806576",
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571610409",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1089072756",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5163358675",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116498073",
+        "voter": "grin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1990690663",
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "934635179",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20950491482",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702710547",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17522846242",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1758235206",
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568826885",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2427472681",
+        "voter": "anon.news"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16944711171",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32598223972",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108154560",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2987660536",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8517785126",
+        "voter": "alphabeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1567856396",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "518479647",
+        "voter": "beenasty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18324457251",
+        "voter": "pixielolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114300588",
+        "voter": "mcbowler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27613595491",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4100960070",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238898910625",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95067572559",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18453239435",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453440568",
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1318034402",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4266744129",
+        "voter": "nzoomed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159836858",
+        "voter": "simondarling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2368539478",
+        "voter": "belkins"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "770849175",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1483559041",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5646105389",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11454886978",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "657874013",
+        "voter": "tkembo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1150750202",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52589126246",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8760917118",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5476861182",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102660670192",
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5388847118",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156246825",
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173065237",
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1413824795",
+        "voter": "hypno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2131270928",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2076218286",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16113899489",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68467941552",
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175196484089",
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25321317985",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54188338320",
+        "voter": "sextusempiricus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8303415935",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4982300887",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66443823",
+        "voter": "adamcleary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65200234",
+        "voter": "spider333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1477798313",
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3800326295",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142236537",
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4673772256",
+        "voter": "darknet"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "1626684615",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75554886",
+        "voter": "nessacute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9815814914",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37015923837",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3926378593",
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67952487",
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2312262673",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63757881",
+        "voter": "whileoutsanch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "918302233",
+        "voter": "dextersl2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64574212",
+        "voter": "chaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24348042529",
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64436981",
+        "voter": "apophene"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2830076827",
+        "voter": "tommycoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "774137084",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7204798505",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "527810072",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86805821471",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148353341",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3071427725",
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100197144",
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12506580284",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10573617057",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12414539968",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63829521",
+        "voter": "dedushkadiesel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63775516",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101013364369",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3868999991",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4559264999",
+        "voter": "blocksurf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62311076",
+        "voter": "vaselechek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1694556443",
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1361293312",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63371590",
+        "voter": "parasew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3294123210",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63023553",
+        "voter": "elportugal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73203091",
+        "voter": "kentbarrett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62361397",
+        "voter": "willybot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21454932294",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62749059",
+        "voter": "cam4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1855848001",
+        "voter": "bebecitosfotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17609822356",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8875422422",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12234722005",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2045551831",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63437792",
+        "voter": "tommycordero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174017038",
+        "voter": "florentina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73511263",
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63470280",
+        "voter": "melissag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44142065641",
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15797065680",
+        "voter": "solar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61909232",
+        "voter": "sarahchamberlain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81581183778",
+        "voter": "ioc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5367840937",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61094018",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3166784508",
+        "voter": "teambitwala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3810190494",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2089597288",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61512399",
+        "voter": "rancemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5346914183",
+        "voter": "pjheinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58940020",
+        "voter": "pullman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61323939",
+        "voter": "titan792008"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72875398",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138794665",
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2378617269",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20511573197",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2227318061",
+        "voter": "johnvibes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577430096",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "596331323988",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45144987876",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5584825445",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122575003",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60707991",
+        "voter": "jerical13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1336993907",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59462731",
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60637775",
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099988133",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58005337",
+        "voter": "sorenpeterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3289237473",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66925733",
+        "voter": "telasius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60280769",
+        "voter": "mukulgupta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2460033425",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114540011",
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7307781732",
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59989087",
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3574394769",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61909418",
+        "voter": "igorterleg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4231846058",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2206248999",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61917877",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2457922376",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3992220834",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59606898",
+        "voter": "picch10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65916262",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60654881",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59819698",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59295031",
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "925612937",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687510337",
+        "voter": "enric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5923135639",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59000955",
+        "voter": "truthloveliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58987369",
+        "voter": "redchurch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58984995",
+        "voter": "anesthetize"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087363894",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59126308",
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42186510292",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12118741180",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182816069",
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37674957343",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12087620090",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6570350375",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58916638",
+        "voter": "layl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59041598",
+        "voter": "jholmesland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58897371",
+        "voter": "panegyric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57240693",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "575433634",
+        "voter": "wearechange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65964429",
+        "voter": "dbecker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "527856348",
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1400671466",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59174678",
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58800111",
+        "voter": "soriano336"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58768736",
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58731493",
+        "voter": "johnr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200400668",
+        "voter": "andrewmeyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87484250",
+        "voter": "dawnlindholm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57548737",
+        "voter": "mwhite20653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13916976223",
+        "voter": "kushfreeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58787702",
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4657915040",
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57459187",
+        "voter": "andrewindsor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11378295056",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58900136",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69407495",
+        "voter": "voluntaryv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3601401598",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58484280",
+        "voter": "will.isles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57295162",
+        "voter": "johnm862"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037909150",
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236439691",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58363282",
+        "voter": "suprepachyderm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76372055",
+        "voter": "dreadedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105504128",
+        "voter": "cactusclef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58330329",
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58325149",
+        "voter": "intrepidca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236254009",
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61576570",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3891288314",
+        "voter": "herbic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118704463",
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58203627",
+        "voter": "youngrebel420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6251029123",
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306233011",
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58110252",
+        "voter": "cheritto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69053635",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58083507",
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2212541835",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108985507",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58057909",
+        "voter": "adamkoessler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55750195",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57991172",
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10485735178",
+        "voter": "stiant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "695752519",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62955132",
+        "voter": "texkitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58712210",
+        "voter": "freemarketkev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57935125",
+        "voter": "barrydutton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65437126",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36284342258",
+        "voter": "anonymario"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3614919579",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57896578",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57865236",
+        "voter": "diazrodolfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305954884",
+        "voter": "shanelohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58559046",
+        "voter": "lilbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12023352743",
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84506034257",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57826043",
+        "voter": "matt525"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39490923433",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57813247",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65820418",
+        "voter": "agkimbrough"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57787001",
+        "voter": "subabu2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136373506",
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58035101",
+        "voter": "aaronjwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18030044401",
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58837441",
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57744177",
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641422439",
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86449664",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9128338819",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57637549",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70769855",
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4397523492",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1727731920",
+        "voter": "dennisoosterwaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3775183559",
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56418311",
+        "voter": "jozefntou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57563833",
+        "voter": "clout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11731453609",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69339129",
+        "voter": "freeradical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58404009",
+        "voter": "haulin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12308514975",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57434315",
+        "voter": "sarahlohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57784645",
+        "voter": "cryptoshow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2225351430",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9716678365",
+        "voter": "tftproject"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7076868967",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57323783",
+        "voter": "tyler.maroney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266295655",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109805573",
+        "voter": "maxfuchs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105235082",
+        "voter": "cryptoshaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21453821075",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57138336",
+        "voter": "jayzeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2626923465",
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107899577",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3991952727",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1173293238",
+        "voter": "aggroed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7376126377",
+        "voter": "adamkokesh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57010230",
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69943474",
+        "voter": "expatlove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56883857",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3200676204",
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273487730",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5812055555",
+        "voter": "canadian-coconut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81876495",
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55667728",
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177291520",
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54565194",
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55653025",
+        "voter": "marcabela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51349284",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215062466",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565305",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54514749",
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54508349",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1623601924",
+        "voter": "grm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57744493",
+        "voter": "paulpuk2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "695173467",
+        "voter": "armenarmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56690664",
+        "voter": "ritherz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56667362",
+        "voter": "rsafier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56666317",
+        "voter": "jessexcruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2981807583",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56989069",
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56611081",
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5558924936",
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2716492929",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1651777832",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1810437987",
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56559977",
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19955840397",
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2653697396",
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497003791",
+        "voter": "lapingvino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531825542",
+        "voter": "jacobtothe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56504986",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2691693294",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55803830",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58292186",
+        "voter": "jaredandanissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1303577131",
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658806283",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15432445921",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016370830",
+        "voter": "richhersey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37888516101",
+        "voter": "natureofbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173705520",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55935622",
+        "voter": "pwn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "640042713",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164186785700",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53155012",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "856290008",
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73840725",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23181600649",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91697951",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1632387086",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56233744",
+        "voter": "melody24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52015504",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4592050223",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "786544090",
+        "voter": "artsuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4836979493",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55070425",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54971412",
+        "voter": "knarly327"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140568307",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55496299",
+        "voter": "allyouneedtoknow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53871683",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60248566",
+        "voter": "frankcorvus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1138182954",
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53843398",
+        "voter": "falvar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58673229",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51301791",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "387594274",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71464098",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54998376",
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53593366",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269318651744",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3895505283",
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74968074",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50188356",
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5186278337",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "772992838",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54468203",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58508489",
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1795498402",
+        "voter": "lloydy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61109696",
+        "voter": "sressler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54165586",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55136065",
+        "voter": "darrenciccone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59953198",
+        "voter": "odakan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150871901",
+        "voter": "inwoxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16895327783",
+        "voter": "vermillion666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53990243",
+        "voter": "steem4fobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53988734",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90189758",
+        "voter": "pineconeutopia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52871755",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176715413",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677977313",
+        "voter": "mrdeleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57446042185",
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "652628483",
+        "voter": "kharn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52635830",
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54597407",
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588792209",
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53457978",
+        "voter": "enriquesl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122099128",
+        "voter": "gymrat73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53764231",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51109965",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64984913",
+        "voter": "steemwelcome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52128361",
+        "voter": "wallacepoewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1098383476",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127157537",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52874902",
+        "voter": "steeme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53553781",
+        "voter": "rutheniumjuice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50637038",
+        "voter": "silversurfer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53600124",
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2164577727",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52785710",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52601101",
+        "voter": "lumpen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380538171",
+        "voter": "j96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2009874413",
+        "voter": "gamgam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52553508",
+        "voter": "akaskew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52534351",
+        "voter": "fogzen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52629759",
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60952512",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52290443",
+        "voter": "freestategirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52468652",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52131186",
+        "voter": "elena2101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51077428",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52763087",
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50878690",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51761290",
+        "voter": "kileysplace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51743648",
+        "voter": "jtm12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136773607",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52099663",
+        "voter": "iamron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52182120",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51486529",
+        "voter": "masterdavidjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51444715",
+        "voter": "steff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51436620",
+        "voter": "rossulbricht"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51419037",
+        "voter": "alexiwotan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10707310991",
+        "voter": "shiva777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51406339",
+        "voter": "madikantia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53426834",
+        "voter": "lightobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179606030",
+        "voter": "spinx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50716411",
+        "voter": "afroditta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50182215",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53070760",
+        "voter": "neophonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473792942",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56445299",
+        "voter": "lloyddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50849010",
+        "voter": "paulsemmelweis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "619759284",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50591037",
+        "voter": "davejot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50514135",
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50429294",
+        "voter": "mqtodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50301743",
+        "voter": "simonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50266197",
+        "voter": "bagr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50264692",
+        "voter": "melisalerue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50258414",
+        "voter": "mardvin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50249362",
+        "voter": "giselledelgado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50236261",
+        "voter": "digitalauthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50214587",
+        "voter": "amymclain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50213203",
+        "voter": "bumnumbum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50211558",
+        "voter": "kuyawa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50207017",
+        "voter": "houck68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50194749",
+        "voter": "tothemoonguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50182946",
+        "voter": "glennith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50176856",
+        "voter": "csuatx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50174389",
+        "voter": "freecaledonia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50162823",
+        "voter": "dbenrosen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50113481",
+        "voter": "regulus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50093637",
+        "voter": "jetsettasean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50067553",
+        "voter": "muppetcakes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78311792",
+        "voter": "cianosapatti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162089082",
+        "voter": "simbafire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151702140",
+        "voter": "carod"
+      }
+    ],
+    "author": "rossulbricht",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Hi you all! Ross and I are so pleased that I\u2019m here and part of this innovative community and technology. I\u2019m glad to have the chance to tell my story directly to you -- to fill you in on the past three years of my life and my battle to free Ross.\n<center>https://www.youtube.com/watch?v=2Yw2Vy4x-KQ</center>\n\nMy son Ross Ulbricht -- a peaceful, idealistic humanitarian \u2013was  tried and sentenced to double life without parole for all non-violent charges relating to his role in the Silk Road website. Silk Road was a free market experiment: a voluntary, anonymous marketplace that operated on the tor network using the crypto currency bitcoin. Many things, both legal and illegal, were exchanged, although there were restrictions of things considered harmful by the administration. For example, there was no child porn, murder-for-hire or stolen goods on the site. Drug sales were permitted, with marijuana the main product that was bought and sold.\n\nSince Ross\u2019 arrest it\u2019s been a David and Goliath fight against the US government. The investigation, pre-trial events, trial and sentencing are so rife with abuse and corruption that it\u2019s impossible to cover everything. Here are some major issues:\n\n<center> http://i.imgsafe.org/49dec2fca2.png</center>\n\n\nIt\u2019s been a wild and crazy three years to say the least. Since Ross\u2019 arrest I\u2019ve strived to the limits of my strength to direct attention beyond the sensationalism to the important precedents and issues at stake in this case and how they impact our freedoms in the digital age. In addition to Ross\u2019 release, my goal is to shine a light on the alarming loss of our liberty while raising funds to defend Ross. (Any payments from here go 100% to Ross\u2019 defense). This is basically my life now, with some down time sprinkled in.\n\nThings weren\u2019t always like this, and I often shake my head wondering how I got here! Before Ross\u2019 arrest I was the gracefully aging mother of two beautiful, well-adjusted adults, hoping for grandchildren and planning the rest of my life. I had pretty much retired from freelance writing and was continuing to work with Kirk, Ross\u2019 dad, in our business, Casa Bambu. (We rent bamboo houses that Kirk built to vacationers, off grid in the Costa Rican rainforest). One day I led a relatively tranquil life and the next I was falling, like Alice through the looking glass, into a bizarre world of the dark web, encrypted communications, digital currency, and the drug war. A right-brained, tech-resistant ex- hippie, I had only owned a smart phone for a month, had never been on twitter and barely heard of bitcoin (and only from Ross). When Ross was arrested I suddenly -- and urgently -- had to become adept at social media, public relations, fundraising, pgp, bitcoin and criminal law.  \n\nIt was urgent because I had to save my beloved son.\n\n<center>https://i.imgsafe.org/31d2386203.jpg</center>\n<center>Ross and Lyn shortly before his arrest</center>\n\nSo now my life is dominated by the fictional entity Dread Pirate Roberts (DPR) and I\u2019ve been on a crash course to do whatever it takes to free Ross: blog, comment, tweet, follow, unfollow, like, unlike, friend, unfriend, defend, raise funds, encrypt, decrypt, build websites, write press releases, give speeches, give interviews, challenge journalists, translate legalese, learn digital-speak \u2013 and now post on steem.it.  I have twitter followers all over the world, from Russia to Spain, from Australia to India.  I\u2019ve been called a jedi, a storm trooper, Dread Mother Roberts, a hero, a \u201cleading internet freedom activist and social media pro\u201d and a badass (fondly, by the lawyer).  Also some nasty things on the internet, but I\u2019m getting a thick skin.\n\nThe learning curve has been steep. Sensationalistic media; aggressive prosecutors; biased judges; cruel prison staff \u2013 the opponents are formidable and ruthless. But there have also been invaluable allies, like many of you, and that plus divine intervention has gotten us this far.  I have made so many courageous, generous, amazing friends on this journey. They are people I never would have met and it has enriched my life, given me hope. I\u2019ve often thought that the past three years would have been some of the most interesting, purposeful and exciting of my life except that Ross is in prison and that makes them the most traumatic, painful and difficult as well. As long as he\u2019s in there, I will not \u2013 cannot -- rest.\n \n <center>https://i.imgsafe.org/31d247242c.jpg</center>\n<center>Lyn speaking at porcfest.</center>\n\nThis journey has taken me from a prison in interior Brooklyn to an interview in a multimillion dollar Soho loft (on the same afternoon); from high priced attorney offices to clandestine meetings; from a freedom festival in New Hampshire to trudging through Austin streets hanging posters at SXSW (and then speaking there the following year).  Never having addressed audiences, I\u2019ve now spoken at numerous events, both in the US and Europe (including Porcfest, FreedomFest and the national Libertarian convention); appeared on a range of TV, radio and podcast shows, including Reason TV, CNN, HuffPost Live, Infowars and Fox; and given many interviews with both major and alternative media , including the New York Times, Wall Street Journal, Forbes and The Guardian. Along with Ross, I am prominently featured in the documentary Deep Web.\n\n Never in my wildest dreams would I have believed this would be my fate. \n\nPursuing American justice is expensive and the challenge is great, but I\u2019m fueled by a mother\u2019s love and now a righteous anger at government abuse. I have seen first-hand how prosecutors lie and obstruct. I have visited the prison with other families, desperate to see loved ones, the children tearfully clinging to their fathers. I personally know non-violent people rotting their lives away in captivity.  My perspective has changed forever.\n\nBesides my love for Ross and resistance to tyranny, a crucial thing that keeps me going is my faith in God. I have faced some of the darkest places in my mind, fear gripping me, my thoughts screaming, \u201cYou can\u2019t do this! They\u2019re too big!\u201d Yet I find peace and hope when I can turn the burden over and take on that day\u2019s fight once again. I have felt God\u2019s hand in this throughout, in many ways, large and small. There has been the unlikely but perfect timing of events; the right people arriving at the right time; doors opening when all seemed closed; the impossible occurring against all odds. I pray each day that God will use me, Ross and this situation for good and that it will shine a spotlight on evil. And of course that Ross will be out of that cage, in freedom where he belongs. \n\nThis is a bigger, more far reaching story than one man or website.  There are vital issues at play, ones that impact us all and are worth fighting for. We are in unchartered territory in the courts. Decisions and precedent made now, with the Silk Road case and others, will have far-reaching impact on freedom, innovation, fair trials and privacy.\n\n<center>https://www.youtube.com/watch?v=SF8gR7jAG2U&amp;list=PLPefjTxHVZSo-zoK-Bap56eihCqhBn75N&amp;index=55</center>\n<center>The Unfairness of the Silk Road trial in 3 minutes</center>\n\nWe are at a crossroads in history. The question and challenge is which road will we take: the one to freedom and innovation, or the one to government intrusion, expansion and control. It is up to us to make sure we take that freedom road.\n\nPlease help us! Of course, please upvote this post. You can also go to FreeRoss.org for lots of other ways to support our battle. You can donate; play the art game; purchase at our store; volunteer; and spread the word on social media and to your network. Everything helps. We\u2019re just one family and some friends. We need you!",
+    "body_length": 7766,
+    "cashout_time": "2016-09-30T21:58:21",
+    "category": "introduceyourself",
+    "children": 282,
+    "created": "2016-08-30T18:02:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduceyourself\",\"bitcoin\",\"crypto-news\",\"blockchain\",\"\"],\"image\":[\"https:\\/\\/img.youtube.com\\/vi\\/2Yw2Vy4x-KQ\\/0.jpg\",\"http:\\/\\/i.imgsafe.org\\/49dec2fca2.png\",\"https:\\/\\/i.imgsafe.org\\/31d2386203.jpg\",\"https:\\/\\/i.imgsafe.org\\/31d247242c.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/SF8gR7jAG2U\\/0.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=2Yw2Vy4x-KQ\",\"https:\\/\\/www.youtube.com\\/watch?v=SF8gR7jAG2U&list=PLPefjTxHVZSo-zoK-Bap56eihCqhBn75N&index=55\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T18:02:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 244476897311799,
+    "parent_author": "",
+    "parent_permlink": "introduceyourself",
+    "pending_payout_value": "6070.231 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "lyn-ulbricht-mother-of-silk-road-political-prisoner-ross-ulbricht-is-now-on-steemit",
+    "post_id": 803519,
+    "promoted": "22.000 HBD",
+    "replies": [],
+    "root_title": "Lyn Ulbricht, mother of Silk Road political prisoner Ross Ulbricht, is now on Steemit!",
+    "title": "Lyn Ulbricht, mother of Silk Road political prisoner Ross Ulbricht, is now on Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduceyourself/@rossulbricht/lyn-ulbricht-mother-of-silk-road-political-prisoner-ross-ulbricht-is-now-on-steemit"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2200",
+        "reputation": 0,
+        "rshares": "6922183932612",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "706429250997",
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "683938703320",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7479463844416",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27828666281640",
+        "voter": "smooth"
+      },
+      {
+        "percent": "76",
+        "reputation": 0,
+        "rshares": "28860495550",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "7600",
+        "reputation": 0,
+        "rshares": "12786861120583",
+        "voter": "rainman"
+      },
+      {
+        "percent": "1300",
+        "reputation": 0,
+        "rshares": "9023446503005",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36397373397113",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141818638675",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6641444515469",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3154404748553",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2281549903877",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5973298312536",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2023763520847",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377720948083",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6659837873399",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20631488841469",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109788753375",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "788455174655",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "964379558972",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "947421964949",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314512840484",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6151437083534",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3093334843",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2017925286683",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222537813552",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3754789393",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703475396",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5724368034385",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53137830986",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658013141",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213534945",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4736752143041",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52218823073",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334430500354",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2605485575465",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1018852084615",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133141763543",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23258311702",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1253102785",
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9378186987",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2378288906",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4876677355763",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1270713688667",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50700543234",
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316865769543",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1063510949082",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19375061925",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621926043",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "945621921",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "1401345159025",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398800345776",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24885886844",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57391316269",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43931243501",
+        "voter": "steem-samiam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47393557314",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23905734896",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195795326282",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "526990051506",
+        "voter": "kencode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31963639473",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287928458",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14752095026",
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26334671341",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13374545824",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11383539436",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419142761116",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4226306800",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10621080265",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9876029403",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26515283737",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330561508",
+        "voter": "radium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20105460780",
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19632066917",
+        "voter": "asabovesobelow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2968241073",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13852108133",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185057785089",
+        "voter": "bleepcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7079759587",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550477645406",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7598338802",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83559440336",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11732306695",
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3505804131",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25782486468",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46561764125",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "620171876",
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2181678350",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333074552981",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1301693008",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "735199491898",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243820192333",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9615018672",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90793723562",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14575585602",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5394181231",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56678268779",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1478055908",
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60740817621",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51795662037",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1442033435",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18820970414",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9015561830",
+        "voter": "gore84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1808575623",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43345645383",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7565442776",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144658279",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390387754876",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29018039705",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20143388957",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367586070487",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641935811",
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105087343",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33722592670",
+        "voter": "shelly-dawson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232917867193",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32331614806",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9794017928",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96071780159",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275735989322",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9355788371",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393483610",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5599597935",
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14101189846",
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153442181309",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53415154875",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361465202656",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38726406082",
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53468635512",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "11092319903",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107351862996",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-43939196830",
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202452494735",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6622838493",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48313481310",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1427331868",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13379695865",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390927750",
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78200524813",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384472394",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23671537292",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135081256703",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "989698715",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1652465742",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1529447073",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189905156067",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128011603993",
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5412926953",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195132600383",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9715858098",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1009129279",
+        "voter": "linda-correia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73238071080",
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22642711049",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75505158596",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "70382368661",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236394701387",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43880608153",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "353273716",
+        "voter": "alextsvirko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2299144158",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36247072134",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398189629",
+        "voter": "bitcoinci"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32271897166",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1130085927",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272975170",
+        "voter": "nandubatchu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8809731014",
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1539575358",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17686464289",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1872024762",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6447225666",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17884419490",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258038667",
+        "voter": "glongsword"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5549288917",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1305807949",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257227726",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55589028787",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180456147723",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11875561247",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5003761665",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305420202111",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3201066866",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4239939661",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1236981224",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11356893247",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96621922891",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786712068",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13063927882",
+        "voter": "zer0sum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11195249107",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255641896",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17573233452",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108664840131",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26251840494",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41491017728",
+        "voter": "menta"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1305541527",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3000374699",
+        "voter": "sune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19818085321",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249278368",
+        "voter": "bitnation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132624811923",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59664940482",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8188793208",
+        "voter": "manoami"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1374934307",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1296880853",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3831874109",
+        "voter": "cultura.bitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18625201566",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99803591",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45357972392",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "4100",
+        "reputation": 0,
+        "rshares": "209304394343",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176723339400",
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7294951838",
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203368027",
+        "voter": "eleny"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "19062423687",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249902943",
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9735737970",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105430614362",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "201818980",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "185029276",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91781758",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1389884823",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23803437375",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1230200541433",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114494010865",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14453472947",
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20772112172",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119694437750",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228375364",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7724423278",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40456456299",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310614038",
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011928429",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47584232455",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "274756561",
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269516049",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4250251084",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3140827201",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41465314144",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6504386735",
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33595457817",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69588040355",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2146935020",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341869487463",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16167200942",
+        "voter": "gubbes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11642631206",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116042637236",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4163933643",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11178715901",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23914228039",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5444988936",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58774029297",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1336657794",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6242409341",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142866879416",
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10092635994",
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222572819",
+        "voter": "hankrearden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18921183647",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74293313126",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240811407",
+        "voter": "further"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "406075645",
+        "voter": "danroseman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1278593310",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424017401",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1627422564",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1776188313",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123830592496",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760427851",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13889124722",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42649348762",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34050707220",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5428797463",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18156323085",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76635842145",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239631118",
+        "voter": "b3ql"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4460619227",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2883968092",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3772827914",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82674928929",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2024368082",
+        "voter": "chahredine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1564225891",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3919795576",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9586837464",
+        "voter": "kewpiedoll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6133562800",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37784668918",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1657276786",
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3884351402",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19559283290",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180160095466",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134622481",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14714959156",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14487783974",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38612891000",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8676354241",
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200835346",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7023710433",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3018666497",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8015169058",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745854948",
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "829277253",
+        "voter": "stealthstrike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "880672766",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51626373165",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2192389917",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139166640",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5247325797",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27185361304",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10188454550",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58843386985",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "468614122",
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4290054352",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2236861513",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118570696",
+        "voter": "ang3l"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2015498934",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1446649799",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116382038",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7793676242",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "990217556",
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201905142945",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130516856",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014507377653",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2216174484",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6119645566",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146751860",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1515224255",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251784157",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252162143",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146009061",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146834278",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83752831",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "519358333",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117468770",
+        "voter": "frederic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157385299",
+        "voter": "mikeoleksyuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9944070193",
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9030711284",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1413618673",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3419121784",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212027123415",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194472298",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5061817531",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12586959157",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "880742172",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11528968508",
+        "voter": "christer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1344532464",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21814528149",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36233439815",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17624786034",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320208626",
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658544220",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5855434921",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230437999",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4966578738",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "387577476",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1893083643",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201062818",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19197946361",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258790635",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75850432",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "972126330",
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3042553840",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394166341",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114503443",
+        "voter": "pavelwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19646007140",
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11104221496",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115458064",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117385102",
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76809956970",
+        "voter": "ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5346047320",
+        "voter": "saulius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3422988481",
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18041177081",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161019589",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623377036",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1818392318",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113050353",
+        "voter": "zviad"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "738164701",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112623695",
+        "voter": "manoello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "912115681",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4449404159",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323933505",
+        "voter": "handytxg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "740103470",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8715971347",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224875028",
+        "voter": "nimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109273807",
+        "voter": "djdma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53835780",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53473560",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "182154675489",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14740647774",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24305968077",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2355944747",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216184081",
+        "voter": "elizabetemaia"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "5858161031",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1448355018",
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2310491262",
+        "voter": "rich77"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "87702162337",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63853091",
+        "voter": "temaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2645669728",
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48741294915",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "3900",
+        "reputation": 0,
+        "rshares": "3814796047",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62626270",
+        "voter": "neddykelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104891240",
+        "voter": "usnewspress"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554509675",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26691090105",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8511528501",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2666678886",
+        "voter": "denn"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "13274544729",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39864468084",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437361066728",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5329070321",
+        "voter": "jrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55688051",
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821396070",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3331328741",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "1700",
+        "reputation": 0,
+        "rshares": "14995230080",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1962337691",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52029263",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3010971197",
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1216260648",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8312562774",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9284839213",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17602567468",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50097876151",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2859848923",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7496577959",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67568463517",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "1012260894",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1754163688",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222258155",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63395918",
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67258005",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1940903935",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "815416741",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63903825",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53884258",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53370316",
+        "voter": "ciao"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "2553748642",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3290816312",
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7097870277",
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275412658",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753317",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3610487734",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20386421402",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "1838698246",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51619811",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14120825033",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72471016",
+        "voter": "olgasudneva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16118200901",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65299443",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1542361003",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56658670",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62402354",
+        "voter": "mithridates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27267079036",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2148800154",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81481591",
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61981794",
+        "voter": "melissag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1356909062",
+        "voter": "nords"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41123664470",
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "183165970",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "584355455",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1045750162",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38104987573",
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61941561",
+        "voter": "robertm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2083108612",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "564207268489",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5355855458",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230214770",
+        "voter": "mefisto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4281559138",
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3820411843",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019995449",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55775081",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "63851643",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3957724815",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1907537255",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1907219589",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51860909",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60143295",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142929513",
+        "voter": "spalser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4214397707",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1671278894",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56305110",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390435125",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58132384",
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1171610651",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25558722803",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59115407",
+        "voter": "ejosev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3860139459",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23445129567",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81867436",
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1086581417",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11657206613",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399837706",
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16209332888",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4012004713",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55897104",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4694629853",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108383645696",
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60997682",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9834824669",
+        "voter": "stephenfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3117945800",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14396905191",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57641564",
+        "voter": "ssashem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77909231",
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59797501",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65634121",
+        "voter": "donniet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "522568543",
+        "voter": "chuckwilliams37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62595147",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27611265089",
+        "voter": "loro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57038921",
+        "voter": "nestorstable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14006444144",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62202585",
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2209407646",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1322091931",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63791071",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475298950",
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56854090",
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8741192850",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328713963",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59588125",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6057447566",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57896578",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62326616",
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39187076499",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57828337",
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55639758390",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38715855098",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56679654",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6306571855",
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139100977",
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398965806",
+        "voter": "quinneaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1481751770",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55421101",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57637549",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57627470",
+        "voter": "arifsh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4128192202",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4396337937",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268014205",
+        "voter": "davincij15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11548449730",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437813370",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57438778",
+        "voter": "just-some-guy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22473896630",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92890050",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57204141",
+        "voter": "ejossev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14864293396",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63760368",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1761091660",
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58052761",
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335454957",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19141924368",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565305",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "587782107",
+        "voter": "armenarmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55571888",
+        "voter": "cahuillan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1318555345",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2597902472",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1062276050",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1780564916",
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2600834067",
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56504986",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191228077",
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "657838048",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52841356",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6739280357",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1965283988",
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415010893",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55833071",
+        "voter": "shadowcl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6666784239",
+        "voter": "wwworld4us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55704120",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54729631",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55623213",
+        "voter": "david.posavec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55309603",
+        "voter": "knoble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54440171",
+        "voter": "seedovlife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55486361",
+        "voter": "totosky"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-116847616",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26328029417",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54298949",
+        "voter": "satoshigraphics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54854247",
+        "voter": "heswaik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2917967886",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55131842",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55098227",
+        "voter": "zelious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56724504",
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53027864",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187955826",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82814845",
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52049175",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54920266",
+        "voter": "falvar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53833366",
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54857075",
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189152630",
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69408815",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384435764",
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54706268",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52540818",
+        "voter": "abdology8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253778225",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118752738701",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54674145",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48882867560",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22659904713",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54724884",
+        "voter": "claudiu23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55308387",
+        "voter": "ivanba12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54744688",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5287388828",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-54431164",
+        "voter": "lynchiandream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53239706",
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "482662445",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310635750",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54165586",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53109574",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008313152",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52935707",
+        "voter": "techtological"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51982993",
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53953933",
+        "voter": "joeblack"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-57844180",
+        "voter": "thecentreofitall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104515255",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56926583",
+        "voter": "kinghabib786"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1741189054",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1790356171",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416608994",
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52526039",
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53728163",
+        "voter": "ryanrock"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-53368919",
+        "voter": "seirffejpilihp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52277186",
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53764231",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-121824171",
+        "voter": "idmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53139024",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52078091",
+        "voter": "shadowz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51026675",
+        "voter": "t-bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53089601",
+        "voter": "maximsm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50928727",
+        "voter": "kdm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52744709",
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52970036",
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51925513",
+        "voter": "kimbo-spice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62284508",
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72135701",
+        "voter": "pickoum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52943719",
+        "voter": "davidcbennett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52936794",
+        "voter": "dykstranet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50838989",
+        "voter": "thegeekway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52908518",
+        "voter": "fenglosophy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51836282",
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104730476",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53018255",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52716255",
+        "voter": "semen887"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1587774556",
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52533117",
+        "voter": "stardust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52659984",
+        "voter": "adges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52627469",
+        "voter": "saintmichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52625290",
+        "voter": "dwightmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52601465",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52596527",
+        "voter": "jamsterdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51564466",
+        "voter": "victorizwekov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51510730",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52508752",
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50405458",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52454485",
+        "voter": "viljo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52415837",
+        "voter": "koek-10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52415708",
+        "voter": "flashbhai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51384906",
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51333608",
+        "voter": "viktorvol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52347870",
+        "voter": "max78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52345932",
+        "voter": "scottrsykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52342725",
+        "voter": "desade9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51312398",
+        "voter": "yazata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51288728",
+        "voter": "soul.ripper.ittu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52270318",
+        "voter": "adamasbane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52262398",
+        "voter": "develcuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51236019",
+        "voter": "nicklin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52252018",
+        "voter": "rolbox1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52247234",
+        "voter": "jdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52240873",
+        "voter": "ekklesiagora"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52240010",
+        "voter": "davinchee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51194377",
+        "voter": "ardzreil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51187437",
+        "voter": "leopard66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51171292",
+        "voter": "rajesh93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52149842",
+        "voter": "vashiruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52144339",
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52131186",
+        "voter": "elena2101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52103325",
+        "voter": "steven938"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52098977",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50039213",
+        "voter": "wolfclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52053707",
+        "voter": "blur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52029680",
+        "voter": "codeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50368151",
+        "voter": "lucif3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51086148",
+        "voter": "homepage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375739407",
+        "voter": "judithgpordon"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50375830871208,
+    "beneficiaries": [],
+    "body": "[![Screen Shot 2016-08-23 at 10.30.23 AM.png](https://s4.postimg.org/xd0wl8t9p/Screen_Shot_2016_08_23_at_10_30_23_AM.png)](https://postimg.org/image/gp9eiqyi1/)\n\nRecently I've found myself in a Twitter storm of anti-Steemness. How? I have no idea. It has been focusing on different aspects of Steem, but I'd like to focus on one right now. \n\nWe've all seen it before. The fated Bitcointalk Announcements (Altcoins) sub, where scamcoins, altcoins and the like come to live and (hopefully not) die. \n\n[![Screen Shot 2016-08-23 at 10.28.12 AM.png](https://s15.postimg.org/7cwmvy2x7/Screen_Shot_2016_08_23_at_10_28_12_AM.png)](https://postimg.org/image/fieou3r5z/)\n\nIf you look a little closely, there is an announcement for Steem - An Experiment Proof of Work on March 24th\n\n[![Screen Shot 2016-08-23 at 10.33.29 AM.png](https://s15.postimg.org/t81ttmqkb/Screen_Shot_2016_08_23_at_10_33_29_AM.png)](https://postimg.org/image/mucqqdlo7/)\n\nThen on May 9th, the official Steemit platform was announced. \n\n[![Screen Shot 2016-08-23 at 10.34.57 AM.png](https://s9.postimg.org/3tpjiuv73/Screen_Shot_2016_08_23_at_10_34_57_AM.png)](https://postimg.org/image/8flnr7gq3/)\n\nWhat happened during those 2 months has been one of the biggest arguments of people calling Steem a scam.\n\nSteem as a company and its founders mine a large stake of Steem themselves between that time period, giving themselves one of the largest stakes in Steem. \n\nDoes that make it a Scam? I don't think so. Here is why. \n\nI am more sensitive to the plight of companies trying to get off the ground and how hard it is to stay on the right side of the law. I believe the way Ned and Dan launched Steem was the one of the only kosher ways to do it. (I am no legal expert)\n\nTake a look at Dan's article on the subject: https://bytemaster.github.io/article/2016/03/27/How-to-Launch-a-Crypto-Currency-Legally-while-Raising-Funds/ \n\nHe writes that there are 4 bullet points must be satisfied for a blockchain launch to be considered legal: \n\n1. Do not pre-allocate any currency to yourself or others. \n2. Do not sell currency directly to others\n3. Aways sell through a regulated exchange.\n4. Complete the currency and protocol prior to launch.\n\nOne of Tone's biggest arguments is that on march 24th there was not enough information given for people to mine Steem and the lack of transparency. However Dan addresses that: \n\n\"A startup that attempts to comply with all of the FinCEN regulations AND all of the Bitcoin community cultural regulations finds itself in a pickle. If you reveal enough information about your product with enough warning then the market will speculatively place a high value on your tokens. The higher the value the market places on the tokens, the more capital is wasted on a computational competition to acquire the tokens.\"\n\nI tend to agree with this. \n\nIn working on my own project in the past I realized that if I launched a token and announced it, many people would mine it making the value go up very quickly and my inability to mine enough for the company to fund development. \n\nWhy is it a bad thing that Steem and its founders mined so many in the beginning? Wouldn't you want the founders and the company to have enough money to further development of the platform thus making everyone else's Steem value worth more? Everyone who has Steem or Steem Power has an economic interest in furthering the project. \n\nhttp://coinjournal.net/wp-content/uploads/2016/05/760x384xSteemit-Blockchain-Social-Media-Platform.png.pagespeed.ic.eiGIrIqXEY.jpg\n\n Playing devils advocate here. It is rumored that Satoshi Nakamoto owns a very large percentage of Bitcoin due to the fact that many of the earliest coins have not moved. I don't think thats a bad thing, he deserves those coins as the creator of Bitcoin. His development has brought us one of the most important technologies of our lifetime. https://bitslog.wordpress.com/2013/04/17/the-well-deserved-fortune-of-satoshi-nakamoto/ \n\nI concede the white paper is very long and may not be perfect. Steem is new and experimental. However I don't think we should throw a project under the bus because of that. Besides, what financial investment is required to participate? NONE! \n\nLet's try to be a bit more objective in our arguments \n\n-Charlie",
+    "body_length": 4271,
+    "cashout_time": "2016-09-23T19:43:45",
+    "category": "steem",
+    "children": 228,
+    "created": "2016-08-23T15:02:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"steemit\",\"bitcoin\"],\"image\":[\"https:\\/\\/s4.postimg.org\\/xd0wl8t9p\\/Screen_Shot_2016_08_23_at_10_30_23_AM.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T01:00:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 203203226434945,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "5503.736 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "was-the-launch-of-steem-a-scam-or-the-only-legal-way-thoughts-on-steem-by-charlie-shrem-a-week-later",
+    "post_id": 719357,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Was the Launch of Steem a Scam or the Only Legal Way? - Thoughts on Steem by Charlie Shrem a Week Later",
+    "title": "Was the Launch of Steem a Scam or the Only Legal Way? - Thoughts on Steem by Charlie Shrem a Week Later",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@charlieshrem/was-the-launch-of-steem-a-scam-or-the-only-legal-way-thoughts-on-steem-by-charlie-shrem-a-week-later"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27835652679638",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28860686161",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "5700",
+        "reputation": 0,
+        "rshares": "9759512446707",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25601983150446",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "407403416903",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13832704121489",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34617610074801",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138515538496",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2204525366940",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219042729842",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "3341735165702",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3218973585910",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "268453416528",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1934012348246",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385479745468",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6394078261764",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "629235972940",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20638075702790",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107349543567",
+        "voter": "sandra"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "562878375836",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1245312176546",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2778635536390",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "663291822480",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "765302273864",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4624171130175",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019501241310",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "928728486930",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320903608851",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "8100",
+        "reputation": 0,
+        "rshares": "5533174715192",
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3353563577807",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5638817326573",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2475099676",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2017971477559",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3004405407",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562845898",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5889947095210",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5950245272052",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42570823964",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5461062957",
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5248796936",
+        "voter": "jen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31020409685",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435835894301",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25224828032",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1326622300",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170838887",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35859413725",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12302450425",
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206704905856",
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15486432504",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334640357759",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322503949727",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2607274757947",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019017863163",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "835402539",
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4893939747932",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1322671847814",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "332798234225",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "693759818138",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1063727690764",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250745356011",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497598219",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "756593183",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2650972026699",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759901644",
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47676868957",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230356427",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23343617867",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19136722201",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221001369462",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8369520210",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51656273617",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2677185233",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146328925242",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10964198563",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24928149553",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1575664944",
+        "voter": "radium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16005117717",
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3991934644",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "495799930418",
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3040793590",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81923385253",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483689967",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "993850916624",
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4293694728",
+        "voter": "sunjata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747222360841",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5667478170",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46562129831",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2138900343",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326306458627",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33272741544",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11185447891",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40377979203",
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "735488834421",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "894486600",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2512648201",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7456570912",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "4417014412",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1346484060",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16066796093",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37901956514",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "503760742628",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1802874785",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1737651089",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46172535299",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375484353628",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9690694569",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5794630789",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38006510341",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364199573539",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11009812099",
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6671389270",
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4883865230",
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7062934147",
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "604174881",
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75062388",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6457716310",
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4314647835",
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141944533",
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232932917905",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5801302394",
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524255424",
+        "voter": "aizen12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9316260956",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76864953680",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10655437915",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354821050906",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377989485",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51193374426",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "824937471",
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109603724041",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63499073022",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31649987362",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198124856972",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324215393049",
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5393018224",
+        "voter": "hulu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13118848357",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401560056",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215300652343",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23207814758",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137886331123",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839092389",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127984817808",
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1735608906",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3962235656",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195139760695",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9716865303",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250148458597",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36255986907",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4725860991",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6438287054",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2543780350",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7828545715",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6850177271",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6648633577",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63947287396",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5460682839",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1963122914",
+        "voter": "rowbvp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49801944916",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7400392900",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142479249108",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5003779123",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291252803332",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2796935369",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5172861988",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11629263110",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "814731555",
+        "voter": "gidlark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2740150537",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255711606",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106534651031",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13656030064",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5459568709",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2909746448",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10816028013",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16792440757",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5749772405",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "631124453294",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20702456342",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100166814",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41580494718",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354627891",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9484578345",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30927136868",
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77739321482",
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "7648177668",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14678165405",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10794737255",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "576970770",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103573992299",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2362495481",
+        "voter": "owdy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "80750143",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "74030160",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86951139",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119931099578",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4384446548",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20369435247",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7724457353",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27620730117",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4244660722",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4263811283",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10446852017",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140003960582",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33597624083",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4375757989",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81193129339",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2006635026",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19450212630",
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3946693289",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9651259451",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20917390648",
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25412786301",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5743095106",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74308889288",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8294398224",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7150803581",
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "833993131",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10477869672",
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80934685858",
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126370014905",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14744519662",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37596284875",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56031907222",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1603706079",
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5577368046",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22826836494",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3472052072",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236138351",
+        "voter": "m34ndy0u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3766713545",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2576487922",
+        "voter": "algimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9956305307",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12378812279",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37784721165",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197549883674",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4392521170",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198815487354",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15513146396",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14488219448",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123354556",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23717363765",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5969710753",
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9961792896",
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6880369404",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116664172",
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3757933693",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8441591488",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142840277814",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19179223293",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3494540064",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29664819265",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141272122",
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55486763448",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1637766275",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1446649799",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102416193",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180719308044",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014531556634",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1506979794",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28332153949",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "611119466",
+        "voter": "aleco"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2449020989",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1496765841",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246188953",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246558540",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142764415",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143571294",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81891657",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464689035",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4926547069",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3744297608",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130660676",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1125906881",
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203379252830",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898853087",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1371841629",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22279717300",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16703368893",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348055214",
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "634491670",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750786472",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6497952466",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378979697",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196594755",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16686775872",
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248439009",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74164867",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6497618988",
+        "voter": "alphabeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3480194424",
+        "voter": "mpa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "795985769",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "213582505",
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115458064",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4179404720",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8375659361",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335450273",
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658028584",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "970335831",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3035416204",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "791569216",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1708472880",
+        "voter": "litrbooh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408161802",
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586934083",
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8261587165",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228038852",
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "476230500",
+        "voter": "bento01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66778067",
+        "voter": "dras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1616980498",
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220394920",
+        "voter": "tecno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40694225526",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8940351822",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039949488",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53473560",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14740647774",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152718771639",
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5075610665",
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65253293",
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24803457022",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65245958",
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65213169",
+        "voter": "kotaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2357530541",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65185445",
+        "voter": "dwyane36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84167375",
+        "voter": "bento06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20196989182",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1554832442",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39673780208",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554902696",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29303599378",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8512229635",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35373276964",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49990182598",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897628539",
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2624726217",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1480305110",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63300522",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51891139",
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104482094",
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6902547688",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107694872",
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1962337691",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10618591854",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48585677668",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2859918214",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "353166122",
+        "voter": "ezel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9185814268",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151302584",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2112472683",
+        "voter": "natalymaty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "838358212",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30216573006",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31890380219",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52502611",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10679422443",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3292124265",
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61796362",
+        "voter": "drmedwurst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3229201950",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14609991628",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5380970465",
+        "voter": "agent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63082929",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1088539665",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20420574535",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184448304",
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61335111",
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61600623",
+        "voter": "lennon15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3989933844",
+        "voter": "zivile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "911038415",
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "743622257",
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220181169",
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15797662269",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "756408464",
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56946314",
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56658670",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26872961926",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62373416",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2310121430",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "986973663",
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79883913",
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109103456501",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1091976246",
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334054376",
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3793330400",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12700869762",
+        "voter": "nomorealex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52952823",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155262514",
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74403086",
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "749322915",
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61654952",
+        "voter": "ip0000h"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "751877578",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11321546921",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62973882",
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32936248663",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577231315",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160492784",
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69785710",
+        "voter": "mata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376862910",
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59379075",
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267015963",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126784257",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2108445433",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "729002481",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87954530186",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446425368",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1728244534",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57784735",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142929513",
+        "voter": "spalser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115895044",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759911127",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52786041",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2169915147",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2950943431",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17241825011",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181061225",
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27227235953",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "902739935",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214153918",
+        "voter": "freerubens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59437116",
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13721363389",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89149760",
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1494980155",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3056860795",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11212891787",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76381599",
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2395737848",
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1615806108",
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4325283932",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14006819763",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17107407588",
+        "voter": "takethecannoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5151404973",
+        "voter": "survivalist.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8347266720",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131449821",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288067508",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40024769876",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1517045010",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56552144",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53116957",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5097617971",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4050470844",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11784388460",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57665403",
+        "voter": "m12r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941692156",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "446621889",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24433846736",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4052375309",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56456709",
+        "voter": "virgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55768488",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381198814",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "879417837",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86833062",
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "931863998",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57894807",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56042508",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55971428",
+        "voter": "jimking001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55019922",
+        "voter": "jhonione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69060598",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415317850",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2808817235",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66710967",
+        "voter": "bmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78381272391",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180881760",
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2150495964",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95892869",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54324205",
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26330210589",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3005615324",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55131842",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56724504",
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55067873",
+        "voter": "whispershaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125165821",
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196460169",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80076884",
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53133533",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53724029",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51559314",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63856110",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53576902",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53774038",
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53188832",
+        "voter": "angryredbarber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54200695",
+        "voter": "dooglet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54138620",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1096299728",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "530589272",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52192153",
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53043871",
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127717490",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52826202",
+        "voter": "kbregu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1829632070",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53613334",
+        "voter": "paxmagnus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51495343",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52540627",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9048854610",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52068036",
+        "voter": "t-bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51007656",
+        "voter": "maximsm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50852949",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50838989",
+        "voter": "thegeekway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59067883",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52687862",
+        "voter": "sargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51572011",
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50405458",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51298916",
+        "voter": "faissal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52306238",
+        "voter": "rjv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50175527",
+        "voter": "acura-tech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51190706",
+        "voter": "whydoitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50099463",
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51111890",
+        "voter": "pitt34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52003506",
+        "voter": "amdj30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50977373",
+        "voter": "cobizig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50968568",
+        "voter": "olblueyez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50949654",
+        "voter": "superpuffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50924850",
+        "voter": "shaolinmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51896264",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50793502",
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148745502",
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153163711",
+        "voter": "kmichaelkills"
+      }
+    ],
+    "author": "jesta",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "One thing I get asked for a lot on steemstats.com is historical data. The problem I ran into was in the way steemstats was designed - everything is loaded in real time from the blockchain. I needed a way to store and retrieve data based on time and date - [steemdb.com](https://steemdb.com) (steem database) is the concept I ended up with, which will allow all of us to use this data.\n\nBefore I go further, **this post will be split into two parts**: the first part is for everyone and outlines the benefits [steemdb.com](https://steemdb.com) brings to steem users; and the second part for the developers interested in learning and/or contributing.\n\nAlso - **This is a super early alpha, it might crash :)**\n\n# Introducing steemdb.com, the website\n\nsteemdb is about being able to look at data in different ways, as well as back historically in time, using techniques that aren't currently available through the steem blockchain. It also serves as a playground for new ideas and experiments. It's a block explorer at heart, but doesn't feel like your typical explorer.\n\nI'd invite you to check out my account overview here:\n\n[https://steemdb.com/@jesta](https://steemdb.com/@jesta)\n\nor you can even continue reading this post via steemdb:\n\n[https://steemdb.com/steemdb/@jesta/steemdb-com-open-source-blockchain-explorer-and-data-playground-alpha-release](https://steemdb.com/steemdb/@jesta/steemdb-com-open-source-blockchain-explorer-and-data-playground-alpha-release)\n\n### Currently steemdb allows you to do the following things:\n\n- View detailed account information + historical charts\n- View detailed information about posts\n- View the current witnesses + mining queue\n- Search for accounts using the box in the upper right\n- (Experiment #1) Browse posts by creation date, filter by tag, sorted by either votes or payouts\n\n**You currently can't do anything that requires a login** - steemdb is all about exploration for the time being.\n\nThis post is going to get long, so for those of you who need a TLDR, I'd invite you to scroll through the small gallery of images below that show the various pages available.\n\n---\n\n## Account View\n\nExample: [https://steemdb.com/@jesta](https://steemdb.com/@jesta)\n\nThe account view breaks down the different components of an account into separate tabs and tries to make the information easy to digest. You can look at anyone's account with this detail. It also charts and shows historical data for some areas of information to track changes over time. It's not mean to be a replacement to steemstats, but a tool that steemstats could link to to learn about others.\n\n**Much of this data will be available on steemstats.com in the near future**. I'll also hopefully be providing some public APIs of the same thing for everyone else to use. This is all dependent on how optimized I can make the data and how much the infrastructure would cost to scale.\n\n![Imgur](http://i.imgur.com/sYfxZMo.png)\n\n---\n\n## Post View\n\nExample: [https://steemdb.com/steemstats/@jesta/steemstats-0-3-4-new-live-post-inspector-and-incoming-witness-votes](https://steemdb.com/steemstats/@jesta/steemstats-0-3-4-new-live-post-inspector-and-incoming-witness-votes)\n\nThis was my take on how I'd want to explore the data behind a post. It's not interactive at this point, but already provides a bit more insight than we have here on steemit. It features the content broken out into a tabular view based on data aspect, and a sidebar that shows you about the author, other things they've written, and other meta information.\n\nI've also included buttons on each post to quickly view it on steemit.com, just in case you discover something you'd like to vote on or respond to.\n\n![Imgur](http://i.imgur.com/tWkzLnJ.png)\n\n---\n\n## Witness View\n\n[https://steemdb.com/witnesses](https://steemdb.com/witnesses)\n\nThis section is a mirror of the witness page on [https://steemd.com/witnesses](https://steemd.com/witnesses). It displays information important to the witnesses and miners on the steem network.\n\n![Imgur](http://i.imgur.com/sLRUPdx.png)\n\n---\n\n## Posts by Date (Experiment #1)\n\nExample: [https://steemdb.com](https://steemdb.com) (the current homepage)\n\nThis section was designed as an experimental view of data on the blockchain. This was my first attempt at organizing the data on steem in a more \"content silo'd\" fashion to see how it could be browsed.\n\nI plan on doing a number of experiments on different ways to view the content in an attempt to help determine the best way to present it. My thought is that I'll be able to move a lot faster (since it's a database, not a blockchain) and help prototype what sort of things we may see here someday on steemit.com.\n\nCurrently, the posts page is set to:\n\n- **Grouping**: It's grouped by the `creation date`. You only view one day at a time, and can go forwards and backwards in time.\n- **Sorting**: Posts by default are sorted by payouts which can be changed to votes.\n- **First Tag Priority**: If you click on a tag, if will only show you posts where that is the **first tag**.\n\nIt's pretty interesting to go back in time and view what was popular on specific dates. It's even more interesting when you pick a tag, and then paginate by date. I've found a few posts that I never would have seen by doing this.\n\n![Imgur](http://i.imgur.com/BMfi8Ko.png)\n\n---\n\n![Imgur](http://i.imgur.com/wLnw4eT.png)\n\n---\n\n## What's next for steemdb.com (the website)?\n\nThe short version is more historical data, charts, APIs and ways to view the data that exists on the blockchain.\n\nOne of the biggest goals with steemdb is to help people learn about all the various aspects of the steem platform. steemstats.com has the same goal, but just from a very different angle. steemstats.com is about someone specific, and steemdb.com is about everyone in general.\n\nOver time, I think that these two projects will integrate with each other more and more.\n\nThe steemdb platform will also be used to show the community alternate ways that the content here on steem can be presented. I plan on trying out a bunch of interfaces you're likely familiar with to see what works best and what the community would like.\n\nI feel the best way to actually garner feedback is with a prototype, so I plan on delivering them, hopefully with the help of others! \n\nSpeaking of which...\n\n---\n\n# Introducing aaroncox/steemdb - the code\n\nhttps://github.com/aaroncox/steemdb\n\nLet me start by saying I most definitely followed the mantra of \"do things that don't scale\" for this prototype. If I never updated this code ever again, it wouldn't be scalable to the size that I believe steem can achieve. In fact I don't even know how the servers will hold up with the announcement and general usage of the site. Gotta love these alpha versions!\n\n**It's also not really that easy to use yet**! The reasons for this are: \n\n- It's 2 weeks old\n- I used technologies I didn't have to learn\n- I'm learning the best ways to retrieve the data from the blockchain\n\nJust like steem itself, if you're going to get involved, you're going to have to be able to figure how things work without documentation (for now). Learn to ask questions - lots of them.\n\nI'd invite you to join the #steemdb channel on steemit.chat, as I'll try to focus any interested parties there. If you join to promote your posts... you're gonna get the evil eye.\n\n### The technologies behind steemdb currently\n\nTechnology stack was chosen based on technologies I've used recently, not what's best. I'm still working full time on other projects and steem is still only a portion of my time each week. So if I needed a hammer, and all I could find was a rock, I used it.\n\nThat doesn't mean these technologies can't change and be adapted. Remember, it's an alpha and an experiment...\n\nCurrently these are the components that make up the project:\n\n1. **Data Storage**: MongoDB. Say what you will about it, but I was able to throw blocks of json at it, index it, and then begin querying/aggregating it.\n2. **The Website**: Powered by PHP7/nginx, using the Phalcon 3 framework, and a small collection of composer packages. On the frontend it uses semantic-ui for UI and plottable.js for charts. It connects to MongoDB as well as directly to the steem blockchain (very lightly).\n3. **The Services**: Written in Python3, and powered by Piston, these services act as the synchronization tools between the blockchain and the database.\n\nAll of this is encapsulated in a variety of docker containers that's controlled through `docker-compose`.\n\n### Future direction of the project\n\nSince this is the first release, a firm direction hasn't been set in stone. I'd like to see a number of improvements, as well as some optimizations, to really firm up it's core.\n\nRight now off the top of my head, I believe it's immediate future includes:\n\n- Some build processes to help manage js/css dependencies. It's very manual right now. You'll actually find a nice symlink from the public folder into the bower components.\n- Cleaning up the synchronization scripts so they don't store quite so much data. Right now there's a lot of duplicate data, including posts, so the database is huge. Luckily disk space is cheap right now, and the project is still rather limited.\n- The charts aren't in the best of places. The JS is actually stored in a volt file simply because docker was fighting me by corrupting my JS files.\n- Most of the aggregation queries should be moved out of the controllers and into the appropriate models for reusability. There's very little duplicate code right now, but it might get out of hand if that pattern continues.\n\nThere are also some loftier goals of removing the frontend from PHP, and using something like react. This would make the PHP layer purely an API for the frontend to interact with.\n\n### How do I run the damn thing?\n\nI will get a full development environment guide up in the coming weeks. It's going to take a **LOT** of disk space and some patience for the setup. You're going to have to build your own entire database version of the 4+ million blocks in the blockchain. Currently, completely unoptimized, it's consuming `21.943GB` of disk space on my server.\n\nIf this is something you're interested in - the first step I'd take in getting started is setup a local steemd instance and synchronize the entire blockchain to a local computer/server. It just so happens I wrote a [guide on a web instance of steemd](https://steemit.com/steem/@jesta/building-a-high-availability-steemd-node-for-web-apis) a few weeks ago. I'd start there.\n\nThe first step of running steemdb is going to be letting the services run for like 6-12 hours as it creates your database.\n\n---\n\n# Wrapping things up\n\nI'm pretty excited about this project, being able to query the database for pretty much any bit of information is like having a super power. I will do my best to keep the community up to date of changes, digest feedback, and help shape it into another great tool for the community to use.\n\nPhilosophically, steemdb is what I'd consider to be the 3rd and final part of the trinity of projects I've been working on:\n\n- steemstats: All about you and your data\n- steemdb: Aggregate information about everyone and everything\n- steempress: Taking your data and letting you start your own website\n\nThese projects combined will hopefully form a powerful open source combination to help contribute to the overall steem ecosystem. steempress is up next in the list of priorities, with two new themes to implement and a few projects that have expressed interest in using it to power their ideas.\n\nAs a current developer, backup witness, writer and normal guy - I hope to continue being a meaningful part of this community far into the future. Thank you all for your support!",
+    "body_length": 11740,
+    "cashout_time": "2016-09-24T14:20:09",
+    "category": "steemdb",
+    "children": 64,
+    "created": "2016-08-24T05:23:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemdb\",\"steemstats\",\"steem\"],\"links\":[\"https:\\/\\/steemdb.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T05:25:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 223663706973705,
+    "parent_author": "",
+    "parent_permlink": "steemdb",
+    "pending_payout_value": "5201.203 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemdb-com-open-source-blockchain-explorer-and-data-playground-alpha-release",
+    "post_id": 727572,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "steemdb.com - open source blockchain explorer and data playground (alpha release)",
+    "title": "steemdb.com - open source blockchain explorer and data playground (alpha release)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemdb/@jesta/steemdb-com-open-source-blockchain-explorer-and-data-playground-alpha-release"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6789532482826",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1442806323876",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26912615943374",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119594441708",
+        "voter": "penambang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14826127825444",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40456922981920",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "14173433335794",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "509030769141",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6999103958043",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6563167020214",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9097053092647",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3217022515040",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385186345581",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6722611883692",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "650958720590",
+        "voter": "justin"
+      },
+      {
+        "percent": "5400",
+        "reputation": 0,
+        "rshares": "11130235338866",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104827428238",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1757593609964",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4046069584472",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "892442023232",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4845493916675",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1594941929014",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "910630825771",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "955078546275",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320770974260",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3312907770981",
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3372981702853",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2471447156",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1937586517415",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202646163126",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2999700170",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562186630",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3802501210976",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5929318032162",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42106543833",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453309373225",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1324781813",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170731788",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118129108333",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34612931967",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53880737032",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474589944807",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305019038127",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166037258931",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1003949591482",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15746313058",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497044136",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26766569998",
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "734329420",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21529122283",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26160926667",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131670002235",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27498854159",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281974836940",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230193744",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14352320176",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108327039206",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14881642993",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78582393172",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13977008360",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156401112117",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "476169398867",
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18021970767",
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "546651195",
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520709810424",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7650612775",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "482274281",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3505786797",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846156504690",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5566053815",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44664969115",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2050540352",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339762881128",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10045439962",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15885861606",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93698479708",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "434030418",
+        "voter": "yoona-lee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4023048939",
+        "voter": "mrkhuffins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413203765",
+        "voter": "cortegam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7831790050",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51642167127",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2102642741",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60250019872",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "395587018305",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2159288891",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1669689053",
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144658279",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313321841136",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101040524971",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431469957372",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354491950",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1294186808",
+        "voter": "kingnuze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193176124353",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11298470733",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10493959254",
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44361054998",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31192844516",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92164140686",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9346126115",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "424361548272",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "46773236664",
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3267719720",
+        "voter": "ian-harris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362255617",
+        "voter": "adrimaug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1669034099",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377072977",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347082255408",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52795134733",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75036626178",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116736028111",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119494081",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19659075136",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78776214214",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129496475834",
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23659023352",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132142487726",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "732569491",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267861211112",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40337233208",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119105913267",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "569037931",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23103657571",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12339963893",
+        "voter": "tocode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5266542711",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51016110934",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219346109005",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "716031864",
+        "voter": "christoph3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41106720338",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2525540242",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14428040108",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29105923553",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241700257480",
+        "voter": "mauricemikkers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363639358",
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311897239830",
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5800191517",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45644662296",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8409193129",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9146365770",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42217454099",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577234926",
+        "voter": "nadejde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019490436",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322845836",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61099645784",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8490823640",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16220207303",
+        "voter": "eindbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4932785001",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280939219619",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4617949057",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117200595687",
+        "voter": "joshbreslauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "956499846",
+        "voter": "cuckoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5016083436",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22039154330",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245427937",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "111266128",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4900077078",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12629401520",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12498874545",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17854262394",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4875559587",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "284912922",
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64620383869",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-1296880853",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31786439187",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254936408",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1982022900",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9039390798",
+        "voter": "imjustsayintho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1456501318",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41176869994",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9482596852",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7150449948",
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36628711156",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "16723585117",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537097998",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320286208",
+        "voter": "onthewayout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101166211496",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1581318590",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "181968057",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "201573439",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "186538229",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241513668",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "958214999",
+        "voter": "cousteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20302534096",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6556154685",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245149849",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27453480728",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1028811183",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1312003067",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18591349633",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263539417",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4025876756",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118192816262",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34259977988",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3852695264",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1820674198",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12111904102",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "443114909",
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24395385549",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59944812577",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "965949651",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227542942",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376052332",
+        "voter": "mysonjosh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6864553332",
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9409724222",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2576891078",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128233553422",
+        "voter": "gbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1670036281",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333585543",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186400988330",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9877058661",
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52547655683",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20464529544",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1132492003",
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8581082828",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3687829510",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82600248298",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240158818",
+        "voter": "maximaug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2247725724",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18785586180",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1268246507",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185878286817",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3508912972",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163174319449",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13088301252",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14474771175",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33608863146",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118370055",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23751943105",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24286771198",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5968439188",
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7654853987",
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7304650346",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116718568",
+        "voter": "patrickgamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12703866376",
+        "voter": "krystox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13367551271",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3902383427",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "434187809",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5891987414",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136205648",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117526541",
+        "voter": "skybean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38744801871",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10685710348",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67919004974",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118503353",
+        "voter": "maksim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49063710701",
+        "voter": "orm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107071475",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8277602354",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368310760",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "932147071373",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369513278",
+        "voter": "queiroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2069779393",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "593521455",
+        "voter": "aleco"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6161647808",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15503964044",
+        "voter": "steemedbroccoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29238814584",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695273",
+        "voter": "skunik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "611865137",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113080200",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7096709870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127324876",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1871665472",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164314623649",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3944969275",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118465573",
+        "voter": "takahan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878015575",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20071791175",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "420733851",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18608581502",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35497369232",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614251752",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222230929",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2565964006",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230437999",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13756999268",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "191885048",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "188243510",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5706345080",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2971326440",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81930668",
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9465546842",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114359635",
+        "voter": "saturn14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186902061",
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98458844",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3259575173",
+        "voter": "talyvale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4095939810",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16506886013",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59005064575",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160613724",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1035432293",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104226163",
+        "voter": "jlwk0lb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2003359761",
+        "voter": "extricati0n"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "109236400",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2626075025",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11013922819",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714072146",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51208430933",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105795536",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112783042",
+        "voter": "kdllac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134428987",
+        "voter": "jasmine-l"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1995558588",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1671136875",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50234451",
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2242471321",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16474889425",
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14990501670",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11898780158",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8093732238",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2295692409",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2073278318",
+        "voter": "roy.batty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4304414236",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388918755",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30076052434",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7510738974",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445773791893",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64910257",
+        "voter": "elena000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1277855986",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7323618776",
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163705995",
+        "voter": "adc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52776160274",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914967097",
+        "voter": "behfar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72396496",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7385785487",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62681420",
+        "voter": "dida"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37422386259",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106997975",
+        "voter": "xaviorfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1652465471",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69114542",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1823929112",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "654944784",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88945026",
+        "voter": "doapsauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61868441",
+        "voter": "loot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3219489475",
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "753893495",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19725881015",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "682176282",
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7591032124",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102045022160",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137053476",
+        "voter": "sc-steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52952823",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95812574",
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60333839",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34231891592",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "517544757",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59335193",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59271464",
+        "voter": "jayseedubya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1643997345",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60143295",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1375200085",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "842554356",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2191235220",
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13892949353",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290607398",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1126347692",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24992183908",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841764781",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21737003114",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7844170198",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58957446",
+        "voter": "redlikecherry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65470574",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17369954295",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14093182160",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59621658",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59196527",
+        "voter": "rgla216"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58398424",
+        "voter": "oliv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759357936",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1082375952",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116376925",
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58172886",
+        "voter": "nullpointer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56064665",
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61506308",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "505255598",
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59227338",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57916296",
+        "voter": "sondick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97538694",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57103495",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71785589",
+        "voter": "raseukinapobri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66388356",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55546061",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398583502",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2230796881",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54561850",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "771996977",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56254941",
+        "voter": "blackeyed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34104885344",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55979644",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330468459",
+        "voter": "ban485"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1143356780",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328824304",
+        "voter": "neurosploit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1235292685",
+        "voter": "victor-smirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51543289",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327801060",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57959312",
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53423752",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56762668",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1020379418",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56479517",
+        "voter": "thp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26833252891",
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56759615",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50422679",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50965282",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501837884",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025746",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664326833",
+        "voter": "gerasim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54584359",
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54562849",
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66126498",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54790972",
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139222205",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53179466",
+        "voter": "klents"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54184182",
+        "voter": "gastlep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1369324712",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279945692",
+        "voter": "steemboost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103734794",
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374138873",
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54545639",
+        "voter": "jibranludwig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55668201",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50162053",
+        "voter": "lynchiandream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53103516",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383419609",
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50888187",
+        "voter": "santiagomaicon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54049299",
+        "voter": "rantanplan41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50756885",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54338594",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52817078",
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52618631",
+        "voter": "cgfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52614432",
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52568783",
+        "voter": "g33kspeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53610490",
+        "voter": "stckpkr7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52378271",
+        "voter": "weltomat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52373262",
+        "voter": "bondarenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53366320",
+        "voter": "karazia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51249560",
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53328263",
+        "voter": "dponce80"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52281058",
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53322730",
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53316516",
+        "voter": "okan31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50140903",
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50245473",
+        "voter": "rony"
+      }
+    ],
+    "author": "roelandp",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "For a while I have been tinkering with the idea to combine Steem Transfer Memo's to automated processes and do more with the Steem Blockchain <code>write/post</code> possibilities in a useful manner.\n\n Up to now I had only been making apps which are certainly fun (imho), and display <code>read</code> data from the Steem Blockchain, but that all changed today... <b>Introducing RadioSteem.com</b>\n\n<a href=\"http://radiosteem.com\"><img src=\"https://s4.postimg.org/f9qgiy9kd/radiosteem.png\"></a>\n\n<h2>RadioSteem - Consensus Radio Station</h2> By using the possibility of attaching a memo users can supply a request to have their favorite tracks added to the random playlist of the radio station. \n\nWhenever a new track gets added it will (only once) play directly. New tracks are added every 6 minutes and crossposted on @radiosteem 's blog. \n\nCurrently the radiostation is in 'aggregation' modus and randomly plays all added tracks. \n\nOver the weekend I will flip to 'consensus/vote'-based picks for the hourly random playlist instead of 'fishing' from all tracks added. You can simply bring your vote on @radiosteem 's blog which lists all tracks added to the playlist. \n\nI have prepared the 'playlist' items on @radiosteem 's blog with special <code>json metadata</code>, you could inspect individual posts on <a href=\"http://steemd.com/@radiosteem\">Steemd.com</a> to see that metadata!\n\n<h2>How to play Radio Steem:</h2>An icecast streaming server (mp3) is broadcasting on the interwebs and you can play this in your browser, iTunes, VLC, Sonos, laptop, phone, etc. \n- Play online via http://RadioSteem.com (with overview of nowplaying, amount of listeners, and recent requests) \n- Direct m3u playlist file: http://radiosteem.com/radiosteem.m3u\n- Direct xspf playlist file: http://radiosteem.com/radiosteem.xspf\n\nhttps://s4.postimg.org/4zga1tysd/radiosteem_screenshots.png\n\n<h2>How to add your track to Radio Steem:</h2>\n1. Go to your Wallet via the menu.\n2. Click on your totals of either SBD or Steem and initiate to transfer money.\n3. Fill in the transfer dialog: Send at least <b>0.33 SBD / STEEM</b> to <code><b>radiosteem</b></code> and fill the memo field with <code><b>artist track</b></code>. Replace 'artist' and 'track' with your favorite artist's track. ~~Don't forget the play keyword!~~ (Update: no longer necessary to begin with 'play')\n4. Hit transfer, you will be asked to sign with your 'active wif' or overall password, leave 'remember me' unchecked.\n5. Wait a bit... The machine processes 1 request per 6 minutes. \n\nhttps://s4.postimg.org/4t48nybql/Screen_Shot_2016_08_18_at_22_40_52.png\n\n<h2>Royalties</h2> For now this is a (fully working!) proof of concept, if it works it will be finetuned. I have already investigated the webradio licensing fees for running this kind of station. If there is a decent request for this station, or other streaming music ideas which could evolve from this, I am happy to pay the licensing fees to the local royalties collector... <sup>This royalties collector will then use this fee to pay their CEO's villa and ferrarri and leaves some pennies to the artists. :(</sup>\n\n<h2>How It Is Made:</h2>\n1. Server\n2. <a href=\"http://piston.rocks\">Piston.rocks</a> python-steem library by @xeroc\n3.  User requests via 'memo'\n4.  Script looks up and normalises data via 'ye good ol' Last.fm API.\n5. A certain provider of clips, fail vids and what more supplies audio.\n6. Instantly streams the newly added audio.\n7. Afterwards picks next added track or random from the list. \n\n<h4>Notes</h4>\n- @radiosteem wires your money back if no track was found\n- @radiosteem wires your money back if you wired not enough money (minimum = 0.33 SBD or 0.33 Steem)\n- be sure to upvote your track on @radiosteem (note we most probably don't earn author rewards because we cross the 4 posts per day easily)\n- <b>Find the official #radiosteem channel in Steemit.chat to discuss tracks and music in general</b>\n- read above the part about royalties. \n\n<h1><a href=\"http://radiosteem.com\">Visit RadioSteem.com &raquo;</a></h1>",
+    "body_length": 4055,
+    "cashout_time": "2016-09-19T22:11:21",
+    "category": "radiosteem",
+    "children": 85,
+    "created": "2016-08-19T11:32:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"radiosteem\",\"music\",\"steemtools\",\"radio\",\"mp3\"],\"users\":[\"radiosteem\",\"xeroc\"],\"image\":[\"https:\\/\\/s4.postimg.org\\/f9qgiy9kd\\/radiosteem.png\",\"https:\\/\\/s4.postimg.org\\/4t48nybql\\/Screen_Shot_2016_08_18_at_22_40_52.png\"],\"links\":[\"http:\\/\\/radiosteem.com\",\"http:\\/\\/steemd.com\\/@radiosteem\",\"http:\\/\\/RadioSteem.com\",\"http:\\/\\/piston.rocks\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T16:04:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 199578390685483,
+    "parent_author": "",
+    "parent_permlink": "radiosteem",
+    "pending_payout_value": "4959.764 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "introducing-radiosteem-com-consensus-webradio-add-your-tracks-via-steem-transfer-memo",
+    "post_id": 668722,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "RadioSteem.com - Consensus Jukebox: add your tracks via SBD/Steem transfer",
+    "title": "RadioSteem.com - Consensus Jukebox: add your tracks via SBD/Steem transfer",
+    "total_payout_value": "0.000 HBD",
+    "url": "/radiosteem/@roelandp/introducing-radiosteem-com-consensus-webradio-add-your-tracks-via-steem-transfer-memo"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "715802522574",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7605495740075",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31837011093018",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28866299703",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25833592942596",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14427596635978",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41055809596582",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3702352000391",
+        "voter": "alphabet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3575467169076",
+        "voter": "excalibur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11307163011172",
+        "voter": "blackjack"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "17800691642375",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7447923781978",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205538915724",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2237805202982",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1860711124653",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639460508652",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119632798758",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014644538420",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4769138174501",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "1100",
+        "reputation": 0,
+        "rshares": "117619247538",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4706701641637",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3100484416",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1804142534533",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3764133380",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690495538",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54221072950",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32972000974",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436329873842",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24708024680",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661565332",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213702396",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63315739576",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212958850234",
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16464789891",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398433451876",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2578593588794",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1857217663",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066448134723",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136944801998",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250747161",
+        "voter": "lee2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27292981224",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8867223395",
+        "voter": "lee4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22217357110",
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9968654217",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2488988801",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5738629154943",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1333067288800",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160569637251",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82328947431",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12430808274",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622921236",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1015312909424",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967523459",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "600",
+        "reputation": 0,
+        "rshares": "163745925289",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21550223471",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7851727606",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26297386564",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "895008263",
+        "voter": "predator"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "6087343671",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3565556011",
+        "voter": "spartako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288200426",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83920295417",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38848706860",
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30680184113",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14957770550",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419384994143",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "332011278679",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1578981772",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15610930492",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8206415048",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560086163",
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485955188",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9875205286",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5589758754",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25721158739",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2191463642",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "344554957568",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15405899808",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "726186905908",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459952549",
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3936536501",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147918977871",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55592052266",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239045907364",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24610357194",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "932214174",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76909161958",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432765828",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7315534741",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "404586808",
+        "voter": "xxsenpaixsamaxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602018562",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24391980373",
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1576072119",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3087509015",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378233547367",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33760347189",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516459565596",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65724539272",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259940525923",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1645357112",
+        "voter": "arskiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42192597011",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201840686771",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12174326629",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3833393202494",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372487111294",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416526923",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1675766403",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379488622",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151934275034",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "355229166352",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53009341149",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63224755863",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53004846757",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27224316284",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8560881227",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13619388525",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72808271479",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "11630218162",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836118043",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5985290920",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36238600519",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189554972423",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6144986482",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9720415590",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110879742406",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45111156296",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66670675799",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9294920408",
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12426171394",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3012098030",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17687761967",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12543821514",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562037878",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36758895347",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14383638916",
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53791220823",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17899953147",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5458058813",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261528006",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49281063163",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82785075648",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249718629316",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7280225362",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20067559948",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1174733183",
+        "voter": "stupidteenboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49761282465",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26742232944",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305317127153",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4663453399",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109836452744",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5143385074",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14317661976",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259435741",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22308135205",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19620943112",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12039207468",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "495391715",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1272198673",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12374841331",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24953299649",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6912801123",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241196448",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1626843644",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8854412737",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "28813124234",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16288679477",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "711619553995",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6871736638",
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36327800188",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500324629784",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107937494209",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246360429",
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157609381591",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12379241833",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1356586698",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4678171858",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19525185696",
+        "voter": "cryptobarry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5943724108",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3340721580",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11437290746",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34308077043",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4673152960",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2302312111",
+        "voter": "johnnydollar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109193449547",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2066270604",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375326226",
+        "voter": "knyaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4189995601",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16495232731",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36790028039",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323841685477",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11303853098",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7016927838",
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38663581428",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276719509",
+        "voter": "gobbahfett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2545398506",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349905152",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389105103",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3763978939",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67700352480",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41879969574",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18203466610",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103669226",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373621663",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1798286164",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1481917550",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1650357324",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3860285221",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8393460828",
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1613568797",
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12769332610",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2477840048",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20410186435",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261891688708",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3417872505",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14602683890",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64700259531",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123387400",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8242754377",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7024277607",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3160140774",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8698648967",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157330198",
+        "voter": "xondra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3170552655",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4024351980",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4555768881",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20177063247",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75081744900",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22053593042",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109445777",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "970801526",
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203930277874",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130741738",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137955570",
+        "voter": "bithost99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1036809457802",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "805838040",
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56725460147",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160533005",
+        "voter": "mikeoleksyuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1402716785",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11382579888",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "682745915",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196185915",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571660115",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114437225",
+        "voter": "youngyani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12801100795",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21371446615",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1349689922",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435851011",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "691145775",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17549669523",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "619235885",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1980306134",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32489668020",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266840830",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2049264368",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6235583028",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38227184412",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83754643",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2991165818",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12134505649",
+        "voter": "youngkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122297166",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113411292",
+        "voter": "joeyking2x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7579959977",
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5852440924",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184202050",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "915824936",
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110940646",
+        "voter": "cryptoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4077029570",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9632537830",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121802663037",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1635188948",
+        "voter": "dirty.hera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110227366",
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "27496626074",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8774801051",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47909693222",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490830857",
+        "voter": "deckard9732"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25326197735",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8268098991",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4982598059",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66443823",
+        "voter": "adamcleary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63935898",
+        "voter": "modogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3877679603",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3669665465",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16675607269",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32779082226",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10189271331",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19070836938",
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64812629",
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1861354989",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4061495224",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "652000677",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59390414686",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19114938794",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105403203766",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1118793643",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136529851",
+        "voter": "steemnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "961957559",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192492931",
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71205425",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65603112",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115476170",
+        "voter": "crypticus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3509543381",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62981842",
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "654829084",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1393633668",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3838681100",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58277489",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1900222201",
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28855793490",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55035367",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1474401175",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61056742",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52454166",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81569054900",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53624183",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11527142845",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62726567",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61110411",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74279978",
+        "voter": "chinese-gandalf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36214069221",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57802223",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57795937",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81187832",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2702504485",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "608609996842",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5642165796",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64630279370",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4203439454",
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59512540",
+        "voter": "boatman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6803978101",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1170164910",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7663512488",
+        "voter": "johnnyyash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16454077535",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3442250582",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1237440732",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2560643506",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "768143768",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1623579809",
+        "voter": "satire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57784735",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4274786743",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7687052825",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52067306",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60968037",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376105269",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5117532813",
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61622530",
+        "voter": "erstklassich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64458836923",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087479937",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12721356805",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13684557027",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60512686",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7137342787",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6241105052",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13938683881",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56488029",
+        "voter": "mdx5009"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11993444138",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288989103",
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231803618",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54705383",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2169272539",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110673246",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327834307",
+        "voter": "franks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8638127587",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1113186328",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "799573517",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4164696673",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57896578",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9711672934",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57637549",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12069499961",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1288096881",
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2182092609",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1787270635",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121993238",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6884730737",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369711010",
+        "voter": "ajaub1962"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87951188",
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55709351",
+        "voter": "misscathy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38083540995",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16218791383",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59518488",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1722766112",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89846801",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56908658",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5986907374",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16989335281",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633018448",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363347220",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15704761266",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87886896",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3648710236",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168504303513",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269670981",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56774491",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179273387",
+        "voter": "jiacyhb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61635919",
+        "voter": "sharon09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24251181774",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217708510",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350652587",
+        "voter": "anahilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2822111681",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55223531",
+        "voter": "alibaba.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5114715856",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227735119",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263907652",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "285544606",
+        "voter": "steemboost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "609022092",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72893380",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298396368",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50377764",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269253318722",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60670525964",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21256190040",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53671263",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60751567",
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1559005538",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "556846303",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54165586",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55496395",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1142069399",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53988734",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1621202028",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2067141122",
+        "voter": "anthemhayek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1650432966",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61333816",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5283965710",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2913886830",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55689355",
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62241065",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51575887",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713530224",
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51521876",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51519509",
+        "voter": "cwb"
+      },
+      {
+        "percent": "2400",
+        "reputation": 0,
+        "rshares": "2252558578",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860725329",
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53640231",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1916243336",
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1837291500",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1610781077",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67787437",
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53681027",
+        "voter": "marielynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51836282",
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168642880",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "334387624",
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51620406",
+        "voter": "libertyadvocate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5464555777",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52785710",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71766021",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "925010766",
+        "voter": "clayboyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309151090",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5077242728",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162753887",
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142333424",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50134176",
+        "voter": "cathi-xx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51666968",
+        "voter": "masscreation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51636819",
+        "voter": "mbizryu0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51631638",
+        "voter": "archij"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51530815",
+        "voter": "movie7283"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51527606",
+        "voter": "ppcompp2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51520427",
+        "voter": "jj1968"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51516489",
+        "voter": "cineger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51497383",
+        "voter": "sksduddk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51490214",
+        "voter": "jjc0719"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50459335",
+        "voter": "catkill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50919598",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24817078026",
+        "voter": "blacktier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "981471944",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677982",
+        "voter": "sjytoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50676799",
+        "voter": "shy2675"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50675747",
+        "voter": "suance1009"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50674176",
+        "voter": "hasqmd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673722",
+        "voter": "fischer67"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50672116",
+        "voter": "elya1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50632828",
+        "voter": "xclamp45"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50618471",
+        "voter": "likeagame1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50616898",
+        "voter": "apple4006"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50615195",
+        "voter": "bigbell61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50612850",
+        "voter": "dolpo777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50611931",
+        "voter": "dongperi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50610620",
+        "voter": "lion2byung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1558099030",
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229571742",
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1633142169",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62648121",
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "448144955",
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72792245",
+        "voter": "motsna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74402358",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64671889",
+        "voter": "destroyer3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75968948",
+        "voter": "rymlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80805411",
+        "voter": "killbis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80746075",
+        "voter": "workwithpleasure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72607029",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161180766",
+        "voter": "geesees"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164381523",
+        "voter": "michael.collett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164149284",
+        "voter": "simch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160829185",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153429292",
+        "voter": "steemichael"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50375830871208,
+    "beneficiaries": [],
+    "body": "[![Screen Shot 2016-09-02 at 7.04.40 AM.png](https://s11.postimg.org/raj560j77/Screen_Shot_2016_09_02_at_7_04_40_AM.png)](https://postimg.org/image/5bcqit2cv/)\n\nBefore I was Bitcoin Charlie, I was known as Charlie Checkout for my funny product video reviews almost 10 years ago. \n\nMy first start-up I worked for a company Daily Checkout, a website that offered one stellar deal each day to online shoppers. One of the unique aspect of the simple, straight-to-the-point site were the humorous videos which featured the daily deals. Daily Checkout transferred ownership in 2009 as I shifted my efforts to the initial development stage of Bitcoin.\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/cOIQAOEktQQ\" frameborder=\"0\" allowfullscreen></iframe>\n\nI've made dozens of product videos https://www.youtube.com/user/DailyCheckout/\n\n[![Screen Shot 2016-09-02 at 7.07.27 AM.png](https://s12.postimg.org/n9j0ft03h/Screen_Shot_2016_09_02_at_7_07_27_AM.png)](https://postimg.org/image/7baapo5vd/)\n\n*Simply put, we sell one product every day. If the product runs out, it is over. We have awesome products that we sell at unbelievably low prices and by buying from DailyCheckout you are contributing to the economy. How? Our extremely low prices and fast paced buying and selling goes into a well thought out and really complicated algorithm that was created by our overpaid \u201cBusiness Development\u201d department. (Notice the quotes)*\n\n*Some say we are a government agency, and other\u2019s say we\u2019re part of an International conspiracy to take over the world. To be totally honest; we do have a hidden agenda. Our goal is to single-handedly bring the world out of its current financial crisis.*\n\nWhen I realized that I couldn't single-handedly bring the world out of its current financial crisis, I moved full time into Bitcoin. \n\n**Steem Commercial**\n\nI had a dream last night of reprising my old role as Charlie Checkout and doing a Steem commercial. \n\nWhat would you like to see me do for a Steem commercial? I will take the most voted idea and make a commercial out of it (keeping it appropriate and legal)\n\nPost your ideas now and vote for your favorite one!\n\n-Charlie \n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/ITfML3Twv2Y\" frameborder=\"0\" allowfullscreen></iframe>\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/xr4dPOnDEqg\" frameborder=\"0\" allowfullscreen></iframe>",
+    "body_length": 2425,
+    "cashout_time": "2016-10-03T16:05:24",
+    "category": "steem",
+    "children": 69,
+    "created": "2016-09-02T13:20:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"life\",\"bitcoin\"],\"image\":[\"https:\\/\\/s11.postimg.org\\/raj560j77\\/Screen_Shot_2016_09_02_at_7_04_40_AM.png\",\"https:\\/\\/s12.postimg.org\\/n9j0ft03h\\/Screen_Shot_2016_09_02_at_7_07_27_AM.png\"],\"links\":[\"https:\\/\\/postimg.org\\/image\\/5bcqit2cv\\/\",\"https:\\/\\/www.youtube.com\\/user\\/DailyCheckout\\/\",\"https:\\/\\/postimg.org\\/image\\/7baapo5vd\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T13:20:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 214139900029535,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "4874.828 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "charlie-shrem-returns-for-a-steem-commercial-vote-for-your-favorite-idea",
+    "post_id": 834225,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Charlie Shrem Returns for a Steem Commercial -  Vote for Your Favorite Idea !",
+    "title": "Charlie Shrem Returns for a Steem Commercial -  Vote for Your Favorite Idea !",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@charlieshrem/charlie-shrem-returns-for-a-steem-commercial-vote-for-your-favorite-idea"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4600",
+        "reputation": 0,
+        "rshares": "13245812417181",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7390566552456",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28892754287146",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14824197157366",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64424651746216",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134718307450",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6362090085040",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85520853480",
+        "voter": "adol"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223387419724",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5963716424717",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6587340634773",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6183464077147",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "869810440256",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "1985379332633",
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3088650441",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3748743208",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702622357",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3511152554886",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5957774630568",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490985506987",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52542437960",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1655635722",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213398887",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123537080592",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4775972612644",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155858860",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11699673433",
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2592609003800",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5035362971061",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1207153314956",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289693067053",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166034177355",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1020660145840",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261994113043",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621215364",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "881508092950",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "912471460",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "1100",
+        "reputation": 0,
+        "rshares": "321737871402",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390512580501",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24025246285",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "831718988661",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129010140010",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44105554061",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39278159313",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339175353184",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24180738930",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24104428335",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287715767",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136700693544",
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19050337975",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8369502790",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11062374885",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410854861624",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74976705017",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15184822392",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5762120310",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146244962769",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24171503887",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14317866801",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463588860181",
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111109084951",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8122377747",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83062626465",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473678777",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45576499097",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-26021570751",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1963811956",
+        "voter": "gekko"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "1153105552557",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1082832389",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3562906824",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2113707447",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21495939803",
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15430961308",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75310894240",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5391636200",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463524444",
+        "voter": "nasato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60186109387",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30023316560",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2058837684",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58906141859",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1799275363",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18819999680",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "934691204",
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1140676343",
+        "voter": "martinallien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48796012012",
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46595641250",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336027378996",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "928786221",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20722930748",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431210602205",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "629348835",
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300547523",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95569843329",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198120963204",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9161055964",
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28067186471",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184774658458",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "359537633",
+        "voter": "mrphilipp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10369476831",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350187172",
+        "voter": "arjoona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1667394140",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13867470489",
+        "voter": "blindleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244856009274",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354030328911",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55087896075",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74931439122",
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32259911478",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1174043938",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4005086376",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91410126736",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28212521635",
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47351358412",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4142890713",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13115815323",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398461524",
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81990673959",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326823285",
+        "voter": "jyap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "711825422",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1733934646",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4038577108",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30122122606",
+        "voter": "joelkatz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1430012422",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38683597495",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115363335857",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5404816087",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194943528105",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1630545554",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47386070028",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221344142780",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16832536493",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30539639939",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13950076541",
+        "voter": "omarbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16886152759",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6565769327",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10086743544",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6599679447",
+        "voter": "emhaze222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14223989793",
+        "voter": "jamiecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143856790135",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23200874349",
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2447735540",
+        "voter": "juansgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263549200",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4836028564",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280938789407",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4109936834",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6492356048",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250296280",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "111265427",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133997507290",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112700770870",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18250295914",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525127069",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-28712012369",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749419961",
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1426692983",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38458089845",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37319559413",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10366146321",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119197240563",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105682671334",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119228009",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19478516371",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427457006",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15298660141",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263539417",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4162811196",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4112821541",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1360448159",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2978603926",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142769283476",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6375375055",
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33586252036",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4257398858",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "849409157",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61402639016",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1405959381",
+        "voter": "decrypt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327751752919",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257634805",
+        "voter": "medge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1259117194",
+        "voter": "chrisj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116028146528",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61143100178",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203840552",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73682734664",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3304150285",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9408900533",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2351802084",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7020043275",
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1670036281",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128866188012",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123248958030",
+        "voter": "kevinpham20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225841258",
+        "voter": "christianus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26727789421",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6715836052",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253048089",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164300913",
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1579300771",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12114484026",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225470679",
+        "voter": "valeri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1243378929",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3517375433",
+        "voter": "kimmar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156642164849",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117448996",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13904645861",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457906767",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196897399",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7161351637",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116749766",
+        "voter": "selectorsam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1097087466",
+        "voter": "mekongmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8381226852",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311209174",
+        "voter": "olinzodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511763078",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5723094491",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "937733325",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1339874233",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2615125111",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10935349548",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117780376",
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2236861513",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116065815",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1803871438",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114054397",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360944545",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127957702",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1013092046564",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2119819301",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28502334260",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115682991",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4924753888",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2734586852",
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49852905345",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7096397562",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6435798244",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203182376061",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114319957",
+        "voter": "bigb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13741966857",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40800901818",
+        "voter": "susanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121394030",
+        "voter": "hptjpanime13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3634925135",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19671942897",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17778516682",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226940353",
+        "voter": "anarchotrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638748685",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226766254",
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2675034626",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230437999",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118173449",
+        "voter": "cronk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198276556",
+        "voter": "steemroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19639269533",
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113273216",
+        "voter": "reality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59001531699",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67351351168",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35522649486",
+        "voter": "cryptomarket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1138150358",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113271457",
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10030763687",
+        "voter": "michiel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1680483236",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1052360420",
+        "voter": "jumpman"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "109235699",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4766176912",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "790579875",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110203683",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-28016345645",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15286822550",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65769043",
+        "voter": "sailor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9418639254",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8301740838",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7607959435",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104448843",
+        "voter": "andrealeamcbride"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4969591605",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2118391058",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261654970918",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102302733",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28234870957",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7342551506",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68217529",
+        "voter": "dvaryani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890051070",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63435975",
+        "voter": "delph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4509216404",
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2000120125",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67554046",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136051451",
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4922084218",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81624389",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135512598",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63750303",
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1797321957",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247825627",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68992407",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602549201",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61893377",
+        "voter": "strikeback"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217483476",
+        "voter": "builder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17383849163",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19559423824",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342724480",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2939474977",
+        "voter": "pseudonymwriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61178779",
+        "voter": "mithridates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64990311",
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "704152660",
+        "voter": "imarealboy777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "738451744",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-206547387",
+        "voter": "orca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69328915",
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38827607895",
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59127162",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62273194",
+        "voter": "r2d2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463760441907",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59723329",
+        "voter": "blubeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221186740",
+        "voter": "mefisto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32109165187",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59562786",
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59800388",
+        "voter": "sirloins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1136632065",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "787460939",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82017595",
+        "voter": "steemitgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59255025",
+        "voter": "kulsumabdullah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251290099",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242393394",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1150763021",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59536506",
+        "voter": "vegeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1502583468",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1253519725",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127893255",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58132384",
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1081293784",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54381971",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57842929",
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58997531",
+        "voter": "canambullion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20093740787",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310534407",
+        "voter": "pokerdude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74823513",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10243737834",
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23524427223",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57855498",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4135119039",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296332034",
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2170430303",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58984750",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96506420435",
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "517873836",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78588676",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13803882565",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57549944",
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57475981",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57886832",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77877181",
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68338923",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5632275230",
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6256216718",
+        "voter": "xbananax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156468479",
+        "voter": "steemlinks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66190421",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "325158374",
+        "voter": "caleballen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "585008313",
+        "voter": "kazumba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2529585368",
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1565744970",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1794545095",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60346826",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58213920",
+        "voter": "kapateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57060344",
+        "voter": "andyg89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13408059565",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60075109",
+        "voter": "allbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57208842",
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60344715",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58035992",
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58068998",
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55611531",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59482963",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51522400",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57851525",
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33768003037",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39486911092",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56633088",
+        "voter": "djpeezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58956403",
+        "voter": "rahnawnjudah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61325043",
+        "voter": "vee.kay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8298370142",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57959938",
+        "voter": "cwalton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3480365681",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "970961663",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55321718",
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77168451",
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2460972898",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8302094936",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46768142805",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1839378622",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127800516",
+        "voter": "alternativefn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50342261",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2370268707",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "514988082",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54875000",
+        "voter": "virgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "950335988",
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56803250",
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "358294182",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56781082",
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55678770",
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56773591",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55649576",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53392204",
+        "voter": "etheom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1803333869",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1021722510",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677688371",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25080432851",
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57894807",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55324823",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55226664",
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55397045",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53998668",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55053663",
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51745040",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025746",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59365558",
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2519041495",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56484499",
+        "voter": "mikebartolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1876512545",
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175664610",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55863107",
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61688723",
+        "voter": "traceystark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1783186174",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677884523",
+        "voter": "gerasim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54052181",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54729631",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55673492",
+        "voter": "baul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61668627",
+        "voter": "avemend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58699037",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69800956",
+        "voter": "cemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71738102",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54182817",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "450647092",
+        "voter": "martinh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1089759239",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52895316",
+        "voter": "michivollgas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76886011",
+        "voter": "gabosh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55252777",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54217891",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55049232",
+        "voter": "fee.org"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53724029",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51301791",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67051047",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54647301",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55107256764",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53555002",
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54588885",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52359971",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54254783",
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53188832",
+        "voter": "angryredbarber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56165241",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53115996",
+        "voter": "pingu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53103516",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53092299",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52325653",
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54050846",
+        "voter": "ariziz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50855387",
+        "voter": "ecoosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52964660",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52948298",
+        "voter": "alwayzgamez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "733457095",
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52917480",
+        "voter": "amiami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51817146",
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50755661",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53910197",
+        "voter": "aprilbannister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53903943",
+        "voter": "kakesinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53894203",
+        "voter": "devilinlimbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54567804",
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52814743",
+        "voter": "konkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53863855",
+        "voter": "thisicontroler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53863521",
+        "voter": "petitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51744927",
+        "voter": "shotgunzzz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-53815232",
+        "voter": "cuantu22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52750104",
+        "voter": "unknown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52726417",
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52653307",
+        "voter": "cucumber1234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52627823",
+        "voter": "saayeel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562143",
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53663275",
+        "voter": "sidvgrover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52573075",
+        "voter": "thecryptonews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52545515",
+        "voter": "friendster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52190580",
+        "voter": "exlaxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53160337",
+        "voter": "kstolorz"
+      }
+    ],
+    "author": "tracemayer",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hey Steemitsters!</p>\n<p>I am <a href=\"https://www.tracemayer.net/\">Trace Mayer</a> an early Bitcoin pioneer, evangelist and investor in core blockchain infrastructure including the largest merchant processor <a href=\"https://www.bitpay.com\">Bitpay</a> and largest <em>safe</em> [never been hacked] exchange <a href=\"https://www.kraken.com\">Kraken</a>. I also host the extremely popular <a href=\"http://www.bitcoin.kn\">Bitcoin Knowledge Podcast</a>.</p>\n<p><img src=\"https://www.tracemayer.net/images/trace-mayer-30.jpg\" width=\"266\" height=\"400\"/></p>\n<p>Lately I have been hearing a lot of amazing things about Steemit from popular Steemsters I listen to including <a href=\"https://steemit.com/@dollarvigilante\">Jeff Berwick</a>, <a href=\"https://steemit.com/@charleshosk/\">Charles Hoskinson</a>, <a href=\"https://steemit.com/@decrypt/\">Domi</a> and <a href=\"https://steemit.com/@charlieshrem/\">Charlie Shrem</a>. So, here I am checking it out :)</p>\n<p>Feel free to post some questions and I will try to answer as best I can. If things go well then in the near future I will likely do an AMA here!</p>\n<p>Verification:&nbsp;</p>\n<blockquote>\u2014 Verification for checking out <a href=\"https://twitter.com/Steemit\"><del>@</del><strong>Steemit</strong></a> and plan on making my first <a href=\"https://twitter.com/SteemitPosts\"><del>@</del><strong>SteemitPosts</strong></a>. - TraceMayer (@Trace Mayer) <a href=\"https://twitter.com/TraceMayer/status/766335290709450752\">August 18, 2016</a></blockquote>\n</html>",
+    "body_length": 1517,
+    "cashout_time": "2016-09-18T23:16:54",
+    "category": "bitcoin",
+    "children": 125,
+    "created": "2016-08-18T18:15:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto-news\",\"introduceyourself\",\"freedom\"],\"image\":[\"https:\\/\\/www.tracemayer.net\\/images\\/trace-mayer-30.jpg\"],\"links\":[\"https:\\/\\/www.tracemayer.net\\/\",\"https:\\/\\/www.bitpay.com\",\"https:\\/\\/www.kraken.com\",\"http:\\/\\/www.bitcoin.kn\",\"https:\\/\\/steemit.com\\/@dollarvigilante\",\"https:\\/\\/steemit.com\\/@charleshosk\\/\",\"https:\\/\\/steemit.com\\/@decrypt\\/\",\"https:\\/\\/steemit.com\\/@charlieshrem\\/\",\"https:\\/\\/twitter.com\\/Steemit\",\"https:\\/\\/twitter.com\\/SteemitPosts\",\"https:\\/\\/twitter.com\\/TraceMayer\\/status\\/766335290709450752\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T18:50:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 197472591143903,
+    "parent_author": "",
+    "parent_permlink": "bitcoin",
+    "pending_payout_value": "4867.767 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "trace-mayer-is-now-on-steemit",
+    "post_id": 658921,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Trace Mayer Is Now On Steemit!",
+    "title": "Trace Mayer Is Now On Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/bitcoin/@tracemayer/trace-mayer-is-now-on-steemit"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29064882231747",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639571093353",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27711875306956",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28851409050",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30543427850426",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13781217508407",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36384984200737",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "654432054027",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108332970655",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5081611684907",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3070186572903",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3084952552",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3744099613",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "708916690",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52164136700",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1653744064",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213265420",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244128003800",
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11292145282",
+        "voter": "perky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11700268451",
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99742232",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "782251516421",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124091386755",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1242836215439",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8296925787",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613500608",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1200865541362",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "883033583",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2561599766077",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18831931707",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "830752609051",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128437848095",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97458276749",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18061236377",
+        "voter": "jakev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26663208957",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287496994",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124261166996",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15484783543",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3688518670",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17326242333",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19085963051",
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5072953140",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488729261",
+        "voter": "sunil-aggarwal"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8139842369",
+        "voter": "fkn"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "431018218",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473678777",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28058280552",
+        "voter": "thedarkestplum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1013136807808",
+        "voter": "hipster"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "5158659329",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45574888424",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31924120110",
+        "voter": "james-show"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10019879215",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1729392451330",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39466946644",
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "605834087675",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3124892111",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60373476260",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58991954964",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227472105329",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749252971",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398794500883",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1450594023",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2938357684",
+        "voter": "scalextrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46263500526",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580447736426",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "285134829",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18522141920",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212814169539",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12751248246",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22105193108",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "667470132",
+        "voter": "compumatrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296704543543",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304724398",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "7100",
+        "reputation": 0,
+        "rshares": "708231059651",
+        "voter": "rok-sivante"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "337003750",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447786893634",
+        "voter": "the-alien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258688582111",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218701281553",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56208177767",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "429805519051",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32242309393",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187339395265",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19853987817",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122820742710",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1445317942",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75514937196",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22262463399",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28854395778",
+        "voter": "joelkatz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130135983609",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "693010749226",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128009742372",
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3713808326",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": "1421151178607",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5163259581",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44232181506",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208893515786",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212469585665",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "767028258",
+        "voter": "christoph3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846666893",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26443469191",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688449090",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34890863904",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5007196589",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6821280213",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2438027091",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28735669603",
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8295455986",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13576940793",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336297746",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53429656343",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5785420753",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39923603181",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1881733645",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7697765339",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15902021111",
+        "voter": "eindbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2469496992",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5481866423",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46328133357",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1964043686",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146457100978",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18237694956",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244927099",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2525651507",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25461274068",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1970125259",
+        "voter": "rambogoham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5785903301",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20016353426",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131324561501",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1976095808",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279214663",
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6091726229",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24590582170",
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "442037344",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328251913",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267219006",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62866271531",
+        "voter": "steemingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37746015247",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "353762811",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244336549",
+        "voter": "leonalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17732254406",
+        "voter": "freiheit"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "15683469944",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12878226865",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10574593346",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499765040",
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2812831978",
+        "voter": "yassinebentour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1673331518",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "193809865",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "203158355",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "198679061",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13360466504",
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101065147040",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6555644383",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "946026261",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46648186234",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1273195910",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18941063649",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4213415211",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2647762226",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3863607637",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6659307379",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250344137",
+        "voter": "zizelevak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3740787714",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "828629042",
+        "voter": "bmmmmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10546453081",
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "567047214",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70119056407",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13596494808",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19068141409",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3495668750",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6040131971",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51526103464",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237023898",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6096995881",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11349192297",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149280443703",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4664291995",
+        "voter": "morpheustitania"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10098916070",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1959657413",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481686752",
+        "voter": "fireriseace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240570298",
+        "voter": "ricardolucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8992979702",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1392224450",
+        "voter": "janqoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1827915010",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15712399563",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176394192757",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7291602679",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3587324924",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258070573",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84104019612",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229711964",
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6585217891",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11631563836",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3080371065",
+        "voter": "rhi-marie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1945768989",
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4499526465",
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152443991438",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126833824",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2398477740",
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29723964602",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1149106852",
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6731469625",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13043934034",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204669482",
+        "voter": "pizarrojesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8103208025",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51623937057",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4866130775",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90841927000",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1900676622",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17899700256",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55239418396",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1472163458",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7947869919",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169327203807",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127957702",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6146143399",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17440200700",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97173712",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170931357",
+        "voter": "ceuranher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125956582",
+        "voter": "valenttina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1083181004",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272988550",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279094364",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161846929",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159442544",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91023776",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190349396",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115387959",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134759629",
+        "voter": "arconite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12589604473",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120458057",
+        "voter": "belovruslan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5042621308",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "775740012",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18445550763",
+        "voter": "jennamarbles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2646831087",
+        "voter": "marriedbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14939163684",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "619013767",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1255524871",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225884392",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2674015224",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218617270",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221372001",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132451801",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64952857",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "204370925",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "200492318",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79629905",
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186748758",
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418454097",
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112027656",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115083433",
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464388017",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58993378905",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111050448",
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1805608597",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1580113648",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15436226461",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2204209643",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3123156945",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9990352692",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "887643764",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7315634872",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1010597496",
+        "voter": "thedon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107829971",
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-17812979015",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1422036640",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50220544",
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660218222",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "584310551887",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14686366128",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19606865230",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1172017603",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60066201",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21464225324",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444583673358",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120245555",
+        "voter": "belgorogdmitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "764508844",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1915245388",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63300522",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6663962168",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "712710757",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64298241",
+        "voter": "crisstaken"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "22147448301",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172866684613",
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349060440",
+        "voter": "bitcoindon23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64148930",
+        "voter": "johnmstk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "602794217",
+        "voter": "havok777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7418993028",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125365589",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12665881479",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144721147",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81626713",
+        "voter": "ipkez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62019780",
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62153668",
+        "voter": "aiaconelli707"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62152861",
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57105514",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11316562534",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150414461",
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087398184",
+        "voter": "dercoco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412480673",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62928860",
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61537919",
+        "voter": "pizzadinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63309136",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760465830",
+        "voter": "kdugar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1351292011",
+        "voter": "pseudonymwriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63753022",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "541318089",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1905721801",
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6484974823",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61150408",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545877",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1478894713",
+        "voter": "stylo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225515921",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60561935",
+        "voter": "polyball"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61716458",
+        "voter": "diissiid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67794353",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89486319",
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "717408117",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33984934099",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59560024",
+        "voter": "andrey000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68271538",
+        "voter": "litali"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59562786",
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216516926",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59379075",
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59335193",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109008307",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283790428",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80517521650",
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2880187438",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59153616",
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2311894727",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "587831459",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58733486",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60666250",
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1884177416",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58651156",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1127561392",
+        "voter": "iamrohitkgupta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56128777",
+        "voter": "kingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61220983",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133222141",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5010489786",
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565034",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24583928894",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71547670984",
+        "voter": "richhorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143214553",
+        "voter": "fungusmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1582436750",
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58899811",
+        "voter": "frol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1054185349",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16171953125",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64812015",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391997751",
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6390161937",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23115303525",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56903096",
+        "voter": "libertyminded"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57653071",
+        "voter": "capehost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7844013650",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65200083",
+        "voter": "ukblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64184750",
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1629213283",
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57457783",
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58449785",
+        "voter": "carls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57259372",
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "592998202",
+        "voter": "bennytremble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57467016",
+        "voter": "ghcc1932"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5520760171",
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1136891781",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58335926",
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57095540",
+        "voter": "blue1950"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58226881",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60448189",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2909500506",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67716447",
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282720524",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58047865",
+        "voter": "konstantinrf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56898031",
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61244681",
+        "voter": "genzai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118587240",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55452158",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1312691084",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57883123",
+        "voter": "theweatherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50851541",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16842267479",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54789994886",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71550577",
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3235464312",
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4112087133",
+        "voter": "ready4freddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56534099",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56522898",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59337594",
+        "voter": "sardonyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84575668",
+        "voter": "freeinthought"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57519259",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "463032206",
+        "voter": "jeffreyahann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7226983203",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324568526",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53425144",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57661859",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57173176",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10196070675",
+        "voter": "lsparrish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57410674",
+        "voter": "titanius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57729316",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57370536",
+        "voter": "rcyan333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56167488",
+        "voter": "fahad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56048863",
+        "voter": "earnings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57144489",
+        "voter": "darwilliam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53715939",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330468459",
+        "voter": "ban485"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378486516",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56803250",
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2299021825",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54536584",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56742478",
+        "voter": "maricote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "920299632",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54233944",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154457113",
+        "voter": "kevbonneau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65212139",
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56430883",
+        "voter": "klexaelm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3944891024",
+        "voter": "gardenofeden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56377622",
+        "voter": "sweetango"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56367137",
+        "voter": "shakimclark7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416932669",
+        "voter": "guille"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394487282",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56288884",
+        "voter": "phusionphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56278174",
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56208181",
+        "voter": "omars3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72504157",
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56086281",
+        "voter": "d-cheney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405351503",
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50527998",
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57574352",
+        "voter": "hamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56630156",
+        "voter": "soddenguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55784086",
+        "voter": "eef87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55752594",
+        "voter": "alucard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54052181",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54637932",
+        "voter": "happiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26894133903",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400985",
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54068218",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54530618",
+        "voter": "r40k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746597532",
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52274330",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52261498",
+        "voter": "edelmiro1986"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54436616",
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55502297",
+        "voter": "parkerlutz392"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52747828",
+        "voter": "pennystockhelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55429378",
+        "voter": "vforvoluntary96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54321048",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52745834",
+        "voter": "reza9090"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54229338",
+        "voter": "jvdb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54227540",
+        "voter": "opnmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94868887",
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52969809",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54032862",
+        "voter": "mrstraume92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51831291",
+        "voter": "forcestaff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53980381",
+        "voter": "pj-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52893647",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52881992",
+        "voter": "alrangers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55020337",
+        "voter": "cyrils"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52861139",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75687607",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53918464",
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54985536",
+        "voter": "lchow14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51745971",
+        "voter": "gardengirlcanada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52793067",
+        "voter": "jensk92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54924994",
+        "voter": "manfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52768850",
+        "voter": "reza9898"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53836674",
+        "voter": "missagandonian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54911738",
+        "voter": "theboxpeople"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54902820",
+        "voter": "toopoorforsf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53822887",
+        "voter": "warock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54874387",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54871854",
+        "voter": "agentgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54863194",
+        "voter": "seedvault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53781446",
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52683284",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54813026",
+        "voter": "i-soft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52657102",
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54793437",
+        "voter": "bahalouati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53692995",
+        "voter": "goodinohio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53689387",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53679390",
+        "voter": "hg8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53663307",
+        "voter": "mikebroemmel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53633596",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622370",
+        "voter": "waverider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52549068",
+        "voter": "tazouka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53578525",
+        "voter": "iplumb3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52493832",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54626102",
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50319970",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53528244",
+        "voter": "steemhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52447972",
+        "voter": "olivianakano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54574092",
+        "voter": "rafej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53203649",
+        "voter": "dshizzle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51383850",
+        "voter": "lightobserver"
+      }
+    ],
+    "author": "kevinwong",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>[![liberty-and-justice-gets-maced9c633.md.jpg](https://www.steemimg.com/images/2016/08/14/liberty-and-justice-gets-maced9c633.md.jpg)](https://www.steemimg.com/image/ci6ga)</center>\n# Criminal justice systems are a worldwide phenomenon\nThe same goes for central banks, governments, and the fiatcurrencies that we use today. Surely there's nothing wrong with something so universal? Catch the bad  guys and punish them accordingly. Is it that simple?\n\n-------------------\n\n# Why did I spend 20 hours writing this?\nCriminalization is an inefficient tool in keeping society safe and sound. If you have experienced the state knocking down your door and giving you hell for no good reason, you'd understand that criminalization is a disruptive process. It destroys lives. Look no further than mass incarcerations in the United States.\n\nMake no mistake that mankind has always been rolling with the punches. Every social structure, like a technological device, starts off crude before becoming sophisticated. Currency have recently updated itself through blockchain technology. So what about criminalization? Sure, we've kept some psychopaths at bay, while causing countless amounts of collateral damage in the lives of innocent, sovereign beings. Is there a better way of doing things?\n\nThere are ways to render criminalization obsolete. But first, let's inspect its fundamental problems.\n\n<center>![jerrberwick47dc2.png](https://www.steemimg.com/images/2016/08/13/jerrberwick47dc2.png)</center>\n<center>I like @dollarvigilante's take on this matter</center>\n\n------------------\n\n# Why criminalization sucks?\n\n<center>[![kf7icqqn9sbxzoihfzsu46124.md.jpg](https://www.steemimg.com/images/2016/08/15/kf7icqqn9sbxzoihfzsu46124.md.jpg)](https://www.steemimg.com/image/lMkX1)</center>\n\n## Socioeconomic leverage determines most outcomes -\nPeople in position of wealth and power have better immunity against criminalization. If I'm a highly networked rich and powerful individual, common sense is telling me that I'm not going to jail. I'll just pay off some fines as punishment. Some people are above the law, period. And not everyone has access to proper legal representation.\n\nAlso, those not in position of wealth and power do not have the necessary resources to fight yearlong court cases. Criminalization is disproportionately disruptive for 99% of the population.\n\n## Lawbooks are so complicated - \nAm I going to tell my child that she needs to fully understand the thousands of pages of convoluted fiction in order to avoid scuffles with the law? Social contracts are necessarily built upon mutual consent. But we know that laws are always revised without our expressed consent. Becoming a criminal is not just as simple as the act of theft and violence. You can easily become one out of petty rules of law.\n\n## Criminals are branded differently across all pockets of society -\nThis increases the complexity of criminalization. As an extreme example, there's nothing wrong being a headhunter in a headhunting tribe. It is perfectly fine within the community. But the headhunter will soon discover that he's a criminal once he steps into the broader world. You'll never really know what's unacceptable in another region. \n\n## Criminalization can be used for political powerplay -\nCriminal cases can be pushed forward to indict political opponents. Power players wishing to rise up the ranks of government could overzealously search and close criminal cases. It happens, usually at the expense of underrepresented minorities.\n\n## Criminalization is incompatible with compassion -\nCompassion is something that grows day by day as you're exposed to more personal stories from people all around the world. Criminalization is a shortcut to cull members of  society that do not fit into the system. Compassion is all about healing. It is hardwork channelled through the love and care for others. Practising criminalization alongside compassion contributes to the overall unhappiness of our society.\n\n## Falsity of complete free will and accountability -\nAll man made laws assume that every moral agents are completely accountable over their thoughts and actions. While I certainly believe in personal responsibility, there are plenty of issues with free will. There will be an erosion in criminalization once free will is properly understood. I will address in the next section.\n\n----------------------------------\n\n# Limitations of free will and accountability\n\n<center>[![Pyramids1f33286.md.jpg](https://www.steemimg.com/images/2016/08/15/Pyramids1f33286.md.jpg)](https://www.steemimg.com/image/lhorK)</center>\n\nYou have free will, no matter what others may tell you. However, you can only be as free as your environment and mental life. Take for example, slavery used to be acceptable in the United States. Are supporters of slavery exercising their own free will to support the idea of slavery, regardless whether if its right or wrong? If its so commonplace in a culture, it may never occur to someone that it's wrong.\n\n## Life is a lottery -\n\nI could have been you, and you could have been me. Whatever it is, all of us are thrown into this existence without our consent. There wasn't any console for us to input our preference for our birth condition. It's just an impossibility due to the nature of our existence. \n\nSure it can be argued that everyone has personal responsibility over their own thoughts and actions. But consider this:-\n\nSlavery used to be acceptable in the United States. Those in the privileged class were born into such human conditions. It would seem normal to do so, like how a tribe of headhunters would inadvertently create more headhunters. Sure, you have the free will. But you can only be as free as your environment.\n\nWe may have the power of imagination, but like it or not, our environments play a great deal in shaping us.\n\nCount in the fact that most underrepresented people do not have socioeconomic mobility.\n\n<center>[![eye-nebulae044d9.md.jpg](https://www.steemimg.com/images/2016/08/15/eye-nebulae044d9.md.jpg)](https://www.steemimg.com/image/lhe06)</center>\n\n## Our thoughts are cloudy, nebulous -\n\nI'm pretty sure you're enlightened enough to know about the volatility of the human perception. We would always empathise with our friends when we begin to see their side of the story. Truth is, we can pretty much frame any situations in wildly different perceptions. \n\nAll actions originate as thoughts, or as impulses from our subconscious. Complete free will necessarily requires the mind to have a complete picture over one's situation.\n\nHere's a fun thought experiment: Think of 10 prime numbers. Notice as your thoughts come into existence - a cloud of numbers.. did you really choose 100% of the contents in that cloud? If I ask what's your top 3 favourite movies today, I think you would agree that your answer will be different if I asked you tomorrow instead. At times, we forget some of our options. Our minds are fuzzy.\n\nAnd what about snap decisions without sufficient time to understand the complete picture? Such disruptive situations deteriorate the quality of free will.\n\nHowever, it is something that can be trained. Thinking is a skill by itself - just like how you could master specific types of thinking in 10,000 hours. Let's say if you were born in Nazi Germany, you'd most likely become a supporter of the Nazi Regime, especially if you're not exposed to the broader world.\n\nYou can only be as \"good\" as your immediate environment. Thanks to the Internet, immediate environments are shared these days. Good becomes greater good. \n\nWe always make our decisions based on the shifting tides of our inner narratives.\n\n-------------------------------\n\n***Putting our ego aside, it's best to understand there's a chance that we are not fully accountable all the time. I'm not expressing this to absolve people from their misdoings. I'm expressing this in hopes of telling you that things may be not be what it seems. Sure, everyone is responsible for their actions. I just hope no one receives the blunt end of being branded a criminal, especially when criminal justice systems are not very just for the common man.***\n\n-------------------------------\n\n# What about murderers, thieves, and psychopaths?\n\nWe are getting more civilized everyday. Simply because we are exposed to different ideas, meeting all sorts of people. Technology helps here. Think about roads, autos, airplanes, and the Internet. Most of us are not in living in secluded tribes. Not anymore. Without a clash of cultures, we are just bound to our immediate environments, operating and valuing things that our environment can only promote. Free-will or not, you are only as free as the system and the information you are exposed to.\n\nWhile admittedly the real criminals are often those with the establishments (order givers and order followers), do we want to continue with the idea of criminalization alongside our collectively discovered sense of compassion?\n\nAll wrong-doings can be boiled down to one word - \"theft\".\n\nSo what do we do about theft?\n\n<center>https://s3.postimg.org/yt0vti5vn/Mark_Passio_Force_Violence.jpg</center>\n<center>Source: Mark Passio</center>\n\n## There's a difference between violence and self-defence (force)\n\nThere seems to be a growing misunderstanding that compassion should necessarily be a path of complete pacifism. It should be understood that anyone is right to apply sufficient force against the violator (the initiator of violence). Self-defence is not violence, but an act of self-preservation.\n\nSo in regards of murderers, thieves, and psychopaths - it is not a moral problem for society to apply force against violence. As long as central governments exist, the practice of criminalization is necessarily made for those that sync up well with the establishment. Not the people. Which is why it needs to end.\n\n--------------------------------------\n\n# Be the change that you want to see in the world. \n\n<center>https://s3.postimg.org/5tllh7boz/our_graphics_made_by_Wa_Post.jpg</center>\n\nHomelessness is now considered a crime. It's time to realize that criminal justice systems are not really made for the people. Disputes could be solved with compassion. Rather than killing people off and throwing them in jails, it's time to treat people like they're in need of healing (instead of punishment).\n\nIf you subscribe to the notion that we're all somewhat connected, remember that I could have been  you, and you could have been me. Shit happens all the time. Maybe the system continues to perpetuate criminal activities as long as there is support for such an idea. Clearly, it isn't working on the right kinds of people.\n\nWith the advent of decentralization technologies, will the idea of criminalization be surpassed? We need to find a better way of doing things.\n\n# Choose to be compassionate.\n\nWhat are your thoughts about this?\n\n-------------------------------------------\n<center>Follow me @kevinwong</center>\n------------------------------------------",
+    "body_length": 11028,
+    "cashout_time": "2016-09-16T00:27:57",
+    "category": "philosophy",
+    "children": 88,
+    "created": "2016-08-15T18:43:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"philosophy\",\"society\",\"decriminalization\",\"life\",\"writing\"],\"users\":[\"dollarvigilante\",\"kevinwong\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/14\\/liberty-and-justice-gets-maced9c633.md.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/13\\/jerrberwick47dc2.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/15\\/kf7icqqn9sbxzoihfzsu46124.md.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/15\\/Pyramids1f33286.md.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/15\\/eye-nebulae044d9.md.jpg\",\"https:\\/\\/s3.postimg.org\\/yt0vti5vn\\/Mark_Passio_Force_Violence.jpg\",\"https:\\/\\/s3.postimg.org\\/5tllh7boz\\/our_graphics_made_by_Wa_Post.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T13:26:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 169874441341734,
+    "parent_author": "",
+    "parent_permlink": "philosophy",
+    "pending_payout_value": "4431.059 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-end-of-criminalization-on-free-will-accountability-and-compassion",
+    "post_id": 616598,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The End of Criminalization: On Free Will, Accountability, and Compassion",
+    "title": "The End of Criminalization: On Free Will, Accountability, and Compassion",
+    "total_payout_value": "0.000 HBD",
+    "url": "/philosophy/@kevinwong/the-end-of-criminalization-on-free-will-accountability-and-compassion"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "11520761837319",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47011498078",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7242871981722",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28424925797342",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28856322748",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14832283388751",
+        "voter": "summon"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "16079976132789",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36392299434543",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6553128884332",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "446861570906",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2290557669819",
+        "voter": "hr1"
+      },
+      {
+        "percent": "6700",
+        "reputation": 0,
+        "rshares": "14017654885657",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107322127014",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3709064161",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4501927012",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843649813",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4525595375071",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63315990695",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1988147812",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256183845",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109885440800",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53880737032",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197968918385",
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382025603320",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331096473791",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2596407463805",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960335113039",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320248215972",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371507475836",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279932995073",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163067490913",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28619045860",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745887732",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1108299818",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2686475057828",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "730255901",
+        "voter": "timifey2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131786065328",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58391329703",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305045198376",
+        "voter": "spectral"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45179645003",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277903026371",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6230611587",
+        "voter": "jabberw0cky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23873172579",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345412499",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11259102275",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846126462",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419096255614",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15489752487",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3514308118",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146310892012",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2823724898",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2882212761",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19686496396",
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14146724265",
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5073340932",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7215537109",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8167139903",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3505786797",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23882322510",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96895054433",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45576935659",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2178699124",
+        "voter": "gekko"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10723381898",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1288986679",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "719251310451",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "271624298548",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821203683",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3415019624",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2160227916",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3081598669",
+        "voter": "term8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60404070328",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17254583184",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2352510904",
+        "voter": "luxiano-valdez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5391934264",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93812830578",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7313257790",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57850241507",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236845828000",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60737114209",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7518510083",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50609323784",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2059989636",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44024667559",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438729743939",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1439805826",
+        "voter": "murh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-269579877222",
+        "voter": "federicopistono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1808575623",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48797394392",
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7416617265",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144658279",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313460643895",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54895777983",
+        "voter": "windsok"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-47233301769",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388635007026",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161833281",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63550680448",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97784124829",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "395727469",
+        "voter": "kekoacoaching"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16534866092",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10284080069",
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90250548483",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184846974437",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21968579570",
+        "voter": "bee-tollworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10390929094",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390881383234",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3333074114",
+        "voter": "ian-harris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1669034099",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53414239238",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361289680965",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53951439973",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "526975513257",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323729576982",
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6298043606",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85933409989",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201468883826",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13379025540",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76491107964",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200169679714",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23659608034",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134960711436",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "944629081",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1493883347",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "319691598",
+        "voter": "gary-wood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41606014975",
+        "voter": "foma17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41162837415",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152610751574",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4040859808",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "606250028",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5520713099",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191131284522",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1365539507410",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1800176982",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23103657571",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47561540176",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52445127497",
+        "voter": "les-peters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15030571004",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2134655678",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29105923553",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6218440587",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2256606036",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5692566183",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3074111360",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266758209008",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3738359972",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7893174516",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14238037087",
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019490436",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2607172217",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090559231",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63487550675",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14511219981",
+        "voter": "jamiecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8756330675",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260992849",
+        "voter": "bitcoins4life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240520535",
+        "voter": "russle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8270412572",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4694827407",
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4903045253",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2470214128",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13788771249",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2158294606",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26626301453",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255641896",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278165321",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106085033004",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25923004556",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4906774202",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2607211604",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362848957",
+        "voter": "thefundiau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2849477665",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17887537105",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5074579887",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64620383869",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2745195499",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28715207398",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "321815601",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300550721",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26184125856",
+        "voter": "missjessica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254936408",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1943159706",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1515897059",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38501748200",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250285779",
+        "voter": "concave"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8869364224",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46640429660",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9484434103",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8460106767",
+        "voter": "jay4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80100577494",
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37383082817",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "18211894300",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500424236427",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10793161159",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "192317264",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "215090199",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "197197876",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241513668",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1406350843",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1105738640052",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114840276343",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119315512",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20350312714",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203834135",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427602632",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41265214873",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15605223469",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "968763692",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4375279402",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14354133372",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18394569767",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4025876756",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41464877163",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33588213713",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239278318",
+        "voter": "fintekneeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1838257661",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19068866363",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306348387",
+        "voter": "lioliomir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116034049732",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6346169305",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2647715018",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8901369202",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24898899016",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61147936731",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203840552",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137166250638",
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236762268",
+        "voter": "hankrearden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261856059794",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74199652346",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7008031511",
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3721084703",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9973968390",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2576891078",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1404350785",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1775731377",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128873799975",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12612029367",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42505167589",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21749604388",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6973307123",
+        "voter": "andrewsanderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6576008542",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26444633366",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75096571498",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3693094240",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263376582",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84252839464",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36690888327",
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1681988852",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234732800",
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9935434865",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11875743476",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19163421655",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2559823488",
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3269668906",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4385329257",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19950310527",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167174073181",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124941744",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12696401394",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14474860165",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32871594059",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26378451558",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7304775281",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2899137895",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11024880285",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51625088464",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5897413627",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "985503736",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109051181923",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2805643729",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595467367",
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38516172361",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11195229303",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58864184640",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118407417",
+        "voter": "franco8i"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1971739307",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114054397",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5200501309",
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "286406647966",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "912159331951",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2280772111",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6578001571",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1161698563",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237128116",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237484329",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137567189",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138344869",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78913244",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435316007",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4925542611",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53040305238",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695718",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5949903064",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2328169246",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897338523",
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114881292",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194472298",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120531704",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4249913409",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116415503",
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20509443094",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1369365311",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18991243462",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35500681006",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27127436736",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614917498",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230677258",
+        "voter": "automatedkings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2982516552",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305045359",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174144416",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229962570",
+        "voter": "n4n8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71320415",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "206596404",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "199002200",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "955228104",
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101230424",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18579856385",
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9280314440",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98458844",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1866715182",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3489906947",
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60185165867",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68383503739",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164504832",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "725940445",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111050448",
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1963447357",
+        "voter": "extricati0n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29877333717",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "338128829",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3091398440",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273091001",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "739615310",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13282864956",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1442440880",
+        "voter": "shaheer001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16804600036",
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14990501670",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16857580021",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4872499259",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1448130016",
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2165149353",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369818210",
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1609599662",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102348882",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "2900",
+        "reputation": 0,
+        "rshares": "202969988606",
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7825924543",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68449326",
+        "voter": "meins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3542663375",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5786439472",
+        "voter": "lenerdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7323618776",
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3189570071",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36421144748",
+        "voter": "budgetbucketlist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145662345",
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6589118136",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7538910886",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39655179494",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3983572960",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63700992",
+        "voter": "rataloclaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63534357",
+        "voter": "themrserhio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64948851",
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1558061379",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1559079167",
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277163214",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70496832",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1784801365",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703942679",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5100198339",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11113708821",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2142174407",
+        "voter": "milaoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61295330",
+        "voter": "bigmann23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12443341921",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2739667397",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154768857",
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1384029545",
+        "voter": "nords"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "672000989",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12091400681",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38833894124",
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59127162",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56572793",
+        "voter": "belohndichselbst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8891618955",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61323939",
+        "voter": "titan792008"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "530171041555",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63789776",
+        "voter": "sashimisatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60996396",
+        "voter": "sirloins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1137177309",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60521896",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127665182",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60456894",
+        "voter": "jayseedubya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1009423454",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121778386",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1603120138",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72406042",
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391599323",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1200650569",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58964015",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53959064",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61831608",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1249234813",
+        "voter": "cehuneke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277972294",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1126661725",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26658329502",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59007035",
+        "voter": "gejoksch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1086581417",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7684085092",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68588220",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20936372522",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61804840",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2127553698",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58984750",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57329654",
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560889817",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1494592066",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3088576209",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14093250593",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58452606",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58625501",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60738220",
+        "voter": "fiat19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3594337564",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64321439",
+        "voter": "donniet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400745980",
+        "voter": "chuckwilliams37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161039474",
+        "voter": "steemlinks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53712591",
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597059869",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1176722422",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13977619830",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4456621006",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2166034009",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60526884",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58025713",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58015930",
+        "voter": "vitalik1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7837669068",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120161990",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227602397",
+        "voter": "newandold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60779888",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760690935",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146914868",
+        "voter": "pollux.one"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65086623",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54489005659",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55546061",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5048299971",
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8467660812",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57637549",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4574586061",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "970961663",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10219489676",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168964617",
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57971965",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "756859781",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12019551863",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102566553",
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320074474",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29242408930",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9048508063",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6742769002",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "650114358",
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60003163",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27297054380",
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1119030040",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239279029",
+        "voter": "aslammotala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214189347",
+        "voter": "ajaub1962"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52663795",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58052761",
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350686963",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14085871589",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56777133",
+        "voter": "mrdragon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56773591",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1918847390",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1062027558",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687499428",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53167722",
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56025199",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2600295788",
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54289104",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56202695",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "522747796",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025746",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3469280513",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55937830",
+        "voter": "luigimendi89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54729631",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59856239",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62361808",
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115562685",
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55531094",
+        "voter": "tpojnsm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54398393",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117418584",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7454525011",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54298949",
+        "voter": "satoshigraphics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75079357",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55189900",
+        "voter": "aylinsita1990"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2053671931",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54144667",
+        "voter": "hereisflaco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55052571",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50714778",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55070425",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175449962",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53861129",
+        "voter": "urbanchick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794249",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54921796",
+        "voter": "markus.kcfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54912747",
+        "voter": "thebuzzard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54910034",
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53781446",
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95401845",
+        "voter": "gracewriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14588904171",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53724029",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128675945",
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67051047",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374243560",
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71027434",
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194766468",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52521499",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68162322698",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54626102",
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54674145",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23934725883",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11525578653",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3677273797",
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50222829",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133587590",
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88441939",
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55668201",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53400199",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51229331",
+        "voter": "lynchiandream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1050379429",
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54234303",
+        "voter": "incajack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499872110",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57524778",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54165586",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54296587",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52870213",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54049299",
+        "voter": "rantanplan41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51909373",
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54002407",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3517656674",
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50230258",
+        "voter": "thecentreofitall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53932131",
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55620886",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2066802625",
+        "voter": "anthemhayek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52815493",
+        "voter": "dilmacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1738000972",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916666",
+        "voter": "littenti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53643296",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53631416",
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52541690",
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53578816",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52484486",
+        "voter": "ryanrock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52320341",
+        "voter": "gaurav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50227234",
+        "voter": "coldestcorner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52319921",
+        "voter": "karazia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52312287",
+        "voter": "btcmaker21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53351185",
+        "voter": "fganz72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53343535",
+        "voter": "cho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53341745",
+        "voter": "ganargatul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53328385",
+        "voter": "jinniu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52281058",
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52277186",
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51227011",
+        "voter": "coyotespike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230107",
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53262744",
+        "voter": "mudin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53243735",
+        "voter": "ciroberts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53235665",
+        "voter": "irura"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53232798",
+        "voter": "underthebug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52183914",
+        "voter": "crowbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53196086",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53175543",
+        "voter": "audi786"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53167544",
+        "voter": "timsherman1972"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53156073",
+        "voter": "harbinger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53135308",
+        "voter": "qhemist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52079777",
+        "voter": "ripll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53117823",
+        "voter": "veselind1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53109397",
+        "voter": "t-bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53106577",
+        "voter": "fluffymelkii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53089656",
+        "voter": "themattsnyder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53088352",
+        "voter": "schnabelstefan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52027863",
+        "voter": "alexa34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53064043",
+        "voter": "steel3ernation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53051738",
+        "voter": "tanmay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859127",
+        "voter": "marielynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51836282",
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50055880",
+        "voter": "arnebolen"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50375830871208,
+    "beneficiaries": [],
+    "body": "![1074365_10101608975307499_1512643843_o-1024x768a33c7.jpg](https://www.steemimg.com/images/2016/08/20/1074365_10101608975307499_1512643843_o-1024x768a33c7.jpg)\n\nI've spent the past few days thinking about how Steem can continue to succeed.  My answer is community and outreach. Steem incentivizes community building and growth. Why does this matter?  I'm going to take you back to 2013, London. \n\nAlmost everybody who was anybody in Bitcoin converged at 'Bitcoin London'. An Editor with TechCrunch Europe tweeted that Bitcoin London was a \u201cperfect storm of entrepreneurs, VCs (who stayed the whole day), Utopianists and borderline autistic super geeks.\u201d\n\nI\u2019m one of the geeks. Although, there\u2019s no way I\u2019d call myself a \u201csuper geek.\u201d My thing is communication. I jump in, bring people together, and solve problems. Yeah, I can be too blunt from time to time. But I\u2019m good at bridging the gap between suits and guys like me who are serious about technology.\n\nGeeks went to London to see what other developers were doing. To ask for help, because many of us were in our twenties and had little experience running businesses. We went to find whatever we needed. Whether it was money. Or advice regarding the byzantine maze of government regulations. Or fresh perspective on tactical decisions.\n\nWe went because techies need playdates. At home we eat, drink, and hunt for love in front of our computers. We fart at will because no one is there to object. And, yeah it\u2019s true, we con ourselves that video Skyping is real face-to-face interaction. We went for the sensory experience of getting drunk, backslapping, and sharing awesome meals with good friends. Way different than scarfing down the usual crap alone at our desks.\n\nMany of us went to reminisce about the old days when we, the brotherhood of geeks, the future of great things everywhere, were the only ones who understood what the fuck a cryptocurrency was. Or how to buy Bitcoins. Or where to spend them.\n\n![ScreenShot2016-08-20at6.39.00AMb8009.png](https://www.steemimg.com/images/2016/08/20/ScreenShot2016-08-20at6.39.00AMb8009.png)\n\nWe went to talk strategy. Should we figure out how to comply with their crazy rules and regulations? But no matter how we split over this debate, we agreed that central banks were a problem. They were printing notes willy-nilly with no regard for tomorrow. It was up to us to give people control over their own damn money.\n\nWe went with heartfelt purpose. Because every one of us agreed with Bitcoin Jesus, otherwise known as Roger Ver. He said, \u201cBitcoin is the most important invention in the history of the world since the Internet.\u201d\n\nRoger was my first outside investor, now a great friend. When he heard about the benefits of Bitcoin\u2014privacy, little fees, no banks to freeze accounts\u2014he didn\u2019t sleep for three days. He made himself sick with enthusiasm and later earned his nickname by giving away Bitcoins just to spread the word.\n\n![honeybadger](https://pbs.twimg.com/media/BRaqwrlCYAAXGEx.jpg)\n\nBitcoiners don\u2019t have one central leader. But Roger\u2019s unflagging commitment defines who and what we are as a community. The month before the conference, he leased a billboard between San Francisco and San Jose, shelled out $1,500 per month for a prime location, and threw down the gauntlet. He advertised Bitcoin as the \u201choney badger of money.\u201d His message: We\u2019re here to stay.\n\nThe reference is to a loopy video that went viral on YouTube back in 2011, 66 million views and counting. The narrator, his voice a mix of sarcasm and reverence, describes the fearlessness of an animal that chases cobras into trees and devours them. Honey badger was everywhere during Bitcoin London, a constant reminder that nothing could stop us.\nNo wonder we\u2019re scary to people like Paul Krugman, the economist who wrote an op-ed in the New York Times entitled, \u201cBitcoin is evil.\u201d\n\nGrumpy old men don\u2019t get us. Which is fine because nobody under twenty-five reads their columns anyway, unless there\u2019s a link on Hacker News. They don\u2019t come to our conventions. They don\u2019t hear our success stories. Like when I texted Bitcoin to China because a family here in New York couldn\u2019t rely on banks to wire money in time for an emergency operation.\n\n![shrem](http://cdn3.sbnation.com/assets/3952535/shrem_002.png)\n\nIt beats me why anybody thinks digital currencies are evil. Maybe it\u2019s because of the people behind it. We\u2019re brash. We keep weird hours. We\u2019re intense. We get wrapped up in our work. We forget to shower, to shave, and sometimes to eat. We have a hard time communicating with people who don\u2019t have a clue about coding.\n\nYou can think whatever you want about us. We\u2019re good. We\u2019re pure. We\u2019re genuine. Or, we\u2019re evil. We\u2019re cultish. We\u2019re a mob of snot-nosed kids, crude, socially unacceptable blowhards who think we know more than we know. You decide.\n\nI went to London for one delicious, irresistible reason: These are my people.\n\nYou guys are my people. \n\nWhat can we do to educate and grow the community? \n\n-Charlie\n\n(Some of the people in the top picture: Charlie Shrem, Erik Voorhees, Ira Miller, Cindy Zimmerman, Courtney Warner, Justin Blincoe, Ashe Oro, David Bailey, Roger Ver.)",
+    "body_length": 5172,
+    "cashout_time": "2016-09-20T14:18:06",
+    "category": "steem",
+    "children": 116,
+    "created": "2016-08-20T11:45:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"life\",\"bitcoin\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/20\\/1074365_10101608975307499_1512643843_o-1024x768a33c7.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T12:07:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 173138886986833,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "4419.020 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "how-can-steem-continue-to-succeed-a-story-by-charlie-shrem",
+    "post_id": 682157,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "How can Steem Continue to Succeed? - A Story by Charlie Shrem",
+    "title": "How can Steem Continue to Succeed? - A Story by Charlie Shrem",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@charlieshrem/how-can-steem-continue-to-succeed-a-story-by-charlie-shrem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "800",
+        "reputation": 0,
+        "rshares": "2286273138529",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7535407626923",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32779800649272",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26077251695605",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40968306769338",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "2300",
+        "reputation": 0,
+        "rshares": "8545040449043",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2321052859710",
+        "voter": "diaphanous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172818412568",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1714021323271",
+        "voter": "disney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1469005674138",
+        "voter": "commedy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7317854950426",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210068220774",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8573070031613",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "134261972988",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1764401260801",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624092343684",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1361742176425",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3117311517077",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "924017463911",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4643623331023",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155095685782",
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3099213331",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2044569170150",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3762517677",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "697318387",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7326878718691",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481363240580",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54015931380",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660933018",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213661759",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214553946339",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212931415328",
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15818171666",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401713935140",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2531320203237",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6451236783",
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5803810458236",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160458264263",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1113141807109",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16340082109",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622727783",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967199991",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22613505929",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "296018696861",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31488861074",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120131244818",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "549442905324",
+        "voter": "kencode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3495643148",
+        "voter": "spartako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288140285",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14643052782",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "899970018",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80051060522",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419241455347",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331720518877",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7098781576",
+        "voter": "methodise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78070381820",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24175822833",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97645470861",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170419675593",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15778432360",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8205719339",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7584006571",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3991057200",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13094998288",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83670481392",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475449654",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9966710701",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581198006",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29088869234",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263835566670",
+        "voter": "streemian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098982781",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "340907048790",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "17241669073",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9650580617",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692261667883",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1029300592",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3591355149",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2557289360",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91718922101",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60408640373",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56762468044",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32680556442",
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236023250940",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79658049745",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1431852861",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3087380162",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368696007081",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20342998784",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586286811332",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64284714678",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265125324670",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38891594263",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92461174271",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197876719249",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9601085464",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3596528108285",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388823990187",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391275913",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37106301832",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371338569",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52893388475",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369773764236",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52998773109",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77754728236",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9004615518",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67955241910",
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266442266951",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500746650031",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48670967654",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4794047234",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13619124411",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77535334483",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138353237297",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1863773805",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "321645695",
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29652449423",
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2434631651",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193336221016",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6127107329",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1487859268399",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9720315931",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97840926478",
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100534891530",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43181755485",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31688993607",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66670031086",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8989521443",
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44546598274",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17904315172",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4242221961",
+        "voter": "azaan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25352220451",
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17897203629",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360802404",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264522603",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234649760133",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8820348623",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255317866",
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3112471750",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5240855771",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254299917",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17966720615",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112341495888",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31880219495",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10363872378",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133098789385",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1971816747",
+        "voter": "bitqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "285466025",
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "526139691",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "599975985871",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32961215897",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "259486897",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230699260",
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1625153964",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8718300603",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "660201964691",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7083046433",
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "499156305959",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10797615304",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638655715",
+        "voter": "busser"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "343772022",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "318185135",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99676062720",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227038042",
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1500721767",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24638975246",
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147240421388",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11193701699",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243356345",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254952330",
+        "voter": "splus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7880193692",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41267307369",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "885891994",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "321412488",
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "919965160",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4487120677",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "30366906910",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233824994",
+        "voter": "ozbay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2931050359",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10802622782",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41067245291",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1970824176",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86192306441",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116044671291",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4405601512",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15592975899",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25440907620",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1396330239",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80570734908",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11367833177",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282253899",
+        "voter": "gobbahfett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2323109321",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2517806958",
+        "voter": "fireriseace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367760346",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384335950",
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138956047790",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2105453596",
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367441394",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18844876808",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9714290940",
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268243096",
+        "voter": "joiflores"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42927707223",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44887212750",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6929991532",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120162058",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118284637980",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373524020",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9370705725",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3498346239",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1481735585",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1938865152",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2946289390",
+        "voter": "algimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13250462027",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36965151180",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4319281075",
+        "voter": "deadloop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2472576649",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10846689202",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20410120133",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257403668412",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5853915747",
+        "voter": "kidsysco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3486501308",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14595996216",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1493514692",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61164877049",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123371166",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8241540437",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200869173",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7310783835",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3365168886",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2379897089",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69123993562",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222542499155",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25043650328",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4302076450",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19713815724",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35138047991",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13064688336",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74885413307",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4295800504",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22491376069",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100131242",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7970107770",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "990217556",
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162148467",
+        "voter": "xand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214418183330",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381723370",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130741738",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1036379725709",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "820314355",
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2948767983",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "18748294564",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1683378197",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255303484",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255686119",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147914638",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148750003",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84813726",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4927676298",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5733299216",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216437643539",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696284733",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47467252853",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196185915",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "795632907",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571610409",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21370785844",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436697567",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688931909",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24328823034",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7599876024",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231161441",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18453282331",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618560648",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408950035",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219368610",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32607805957",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76805770",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "991828752",
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37567501779",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74356260",
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125670168",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112914306",
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239200705583",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94907873280",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18091411211",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1526231546",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456054658",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26208927525",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1721866378",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5449090977",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1048916493",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50440059165",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9225374819",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731723236",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36188652656",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37475910231",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3744057022",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1485758293",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52102443",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25323287465",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18320500859",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8303415935",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1040657025",
+        "voter": "handmade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108318138906",
+        "voter": "n628"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23672211620",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1449214120",
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3800424712",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2646325863",
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142236537",
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4766914366",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9623723965",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19451988403",
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1986358120",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2312379610",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3565700998",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512286246",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3495650909",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93408467657",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47408467721",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148353341",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13117586964",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98430679173",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3497293755",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12673208176",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56272514",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293812470",
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2093147434",
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624994940",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64518882",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52502611",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52099594",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115476170",
+        "voter": "crypticus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3294123210",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63003460",
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410532296",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1342463662",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62928860",
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753317",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4449898707",
+        "voter": "zivile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39864158238",
+        "voter": "salva82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74615731",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59896309",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28579615756",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1718414440",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62302798",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83673051926",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44348975328",
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6078376183",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61110411",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7624079651",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1148697669",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60121509",
+        "voter": "titan792008"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36994951415",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78132990",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136073201",
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649775834",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20522944664",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "609693016486",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094162",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4118875398",
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59512540",
+        "voter": "boatman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122575003",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168737391",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2560643506",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10968971478",
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863356",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51860909",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60143295",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71768449",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535734998",
+        "voter": "postapoc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60654881",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59591505",
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383461680",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43667107055",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58295460",
+        "voter": "steemitsupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52449059",
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "457360148",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6043972109",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34223856616",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5757009344",
+        "voter": "monopoly-man"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58984995",
+        "voter": "anesthetize"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066043033",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13243311864",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2046360638",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8262972409",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1852031403",
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11457714027",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60512686",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2697966952",
+        "voter": "kovaiensko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7602805802",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2366957277",
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60157039",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71097993",
+        "voter": "voluntaryv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562255",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59131048",
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55998234",
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84553833",
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2212591927",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59486519",
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91312181",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8629322459",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1293327844",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709285853",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4048546063",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2515136120",
+        "voter": "colinklein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56717182",
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39491089806",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97612779",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57814202",
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57813247",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83059481",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13909654561",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12308782280",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447777754",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56284975",
+        "voter": "titanius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "462549906",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19892617782",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7018666997",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361907111",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1747107542",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2523906858",
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114896871",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57072675",
+        "voter": "dadview"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4319149895",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1174326147",
+        "voter": "aggroed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2441174037",
+        "voter": "victoriart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "732560929",
+        "voter": "sophiachan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1498342749",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51207552",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16175473821",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59518488",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219451496",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58435569",
+        "voter": "sanzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56690664",
+        "voter": "ritherz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1757292291",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1810437987",
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89846801",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56438964",
+        "voter": "jdigangis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57163358",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5970786412",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298663325",
+        "voter": "tfeldman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55803830",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9621810499",
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568381891",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143941",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16402554127",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282331162",
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262718397",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55416927",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381923269",
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2209122623",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23712552853",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226292406",
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55267865",
+        "voter": "gastlep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2814664599",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5143551962",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55047100",
+        "voter": "melicor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54194125",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350245417",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117140255",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57522774",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53484846",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "387594274",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311627797",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264054111382",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54223214",
+        "voter": "ecfootball71"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61109696",
+        "voter": "sressler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594706072",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4027411276",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52930132",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1576328130",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1645692763",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5550458547",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614254178",
+        "voter": "kharn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3048213491",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53688546",
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2539945399",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61779036",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713530224",
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454788",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50468091",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8258050384",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67902124",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "325265674",
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56465141",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1606778190",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64280371",
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52628458",
+        "voter": "marielynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51836282",
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103532789",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142968891",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6769652006",
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1918615754",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150868796",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52614987",
+        "voter": "dulcio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52785710",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60952512",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50357208",
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70358845",
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52468652",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52131186",
+        "voter": "elena2101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64753648",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1059793205",
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5063402045",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "466446767",
+        "voter": "ekaterina4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139509079",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314429739",
+        "voter": "mattmacreadie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468522",
+        "voter": "catkill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10707310991",
+        "voter": "shiva777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51406339",
+        "voter": "madikantia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51155906",
+        "voter": "rob.bullock29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1172991612",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51021301",
+        "voter": "coriana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50983862",
+        "voter": "poetryfrombooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52680591",
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464502884",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93074631",
+        "voter": "artfullyaging"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50181287",
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50161827",
+        "voter": "dan0n4freedom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50008646",
+        "voter": "winnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76713592",
+        "voter": "cianosapatti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157831632",
+        "voter": "sergeykitayev"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50375830871208,
+    "beneficiaries": [],
+    "body": "[![IMG_0006-e1433109728455.jpg](https://s16.postimg.org/x7f2d7zud/IMG_0006_e1433109728455.jpg)](https://postimg.org/image/3s9e47vap/)\n\n*This is Part 3 in a series about my life as a Geek in Prison. Click my name to follow me and check out my blog for the Preamble and Parts 1-2. All names are changed to protect inmates privacy.*\n\nMarch 31st, 2015 \n\nWoke up around 7am, barely slept through the night. The total shock of yesterday is starting to kick in. Omar said it would be super hard to sleep and he was right, but the earplugs helped a little. I took a shower this morning, there wasn\u2019t much of a wait. Using the showers are like trying to land an airplane on a runway with no traffic control. All the planes that are waiting to land and take off are speaking to each other directly. \n\nTo prevent yourself from crossing someone else you wait outside and yell: \n\n> Showers\n\nEveyone in the showers will reply\n\n> 1 on the right, 2 on the left\n\nMeaning there is 1 person on the right and 2 on the left, so there is a right shower empty. Then I say. \n\n> Coming in on the right\n\nI go into the changing room area assigned to my shower and say\n\n> In on the right\n\nWhen I\u2019m ready to cross into the shower I say\n\n> Crossing on the right \n\nAnd I let them know when I\u2019m in the shower. When I\u2019m finished, I do the same but backward. \n\n[![shower.jpg](https://s16.postimg.org/5y3oypyr9/shower.jpg)](https://postimg.org/image/8s6uc60xd/)\n\nI was issued my khakis today and I have to wear them from 7am until 4pm. After 4pm I can dress down into shorts or sweatpants. They are olive green and not the most comfortable things in the world. \n\nIt feels weird not using a cell phone and technology. Everything here is word of mouth, there is no google and information is trickled in. I think the hardest part is learning how to use my own resources to grow and not the internet. I need to learn how to read bullshit and filter through wrong information to find the right answers. Your word is your life here, we all live together so if you don\u2019t follow through, no one else will trust you. Information travels fast here. The slang for when you hear about a rumor or unverified information is \u201cI heard it on Inmate.com\u201d\n\nOn the outside, I had this Bitcoin celebrity status. In here, no one knows me nor do they care about me. I\u2019m just inmate 92164-054. As I walk through the range, using the rest room, making coffee I notice some hateful stares. People have their every day routine. Some for 1, 5, even 10 years and here I am going about it like I own the place. I need to change that attitude and humble myself. How do I stay out of someones way but at the same time still be assertive? Everything is such a fine line here. If you back down you are a wuss, and if you stand up for yourself you go to the hole. I have a lot to learn. \n\nAfter my shower I spoke to Courtney and had a 12 minute call. This used up my 10 minute allocation for the day and 2 minutes of tomorrow but it was my first day and really needed to talk to her. \n\nShe found the visitor form on the BOP website and is printing and mailing it today. The visits are once a month Saturday and Sunday from 8am - 3pm. You get 1 weekend a month which is based on the last digit of your register number and last name. My number ends in 4 which is an even number and my last name ends in an S so my weekend is coming up this week! If I can\u2019t get her approved in a few days, I won\u2019t be able to see her for 5 weeks. On the outside I\u2019m so used to things being done within minutes of when I want it to be done, but in prison I have to learn to get used to things taking days sometimes weeks. I can\u2019t always get what I want when I want it, this is a thinking error as I would later learn. \n\nHere in Lewisburg, I learnt that there is a program called RDAP. The Residential Drug Abuse Program. RDAP is the prisons most intensive treatment program. Cognitive Behavior Therapy is used in a modified therapeutic community model where inmates experience living in a pro-social community. Inmates live in a unit separate from general population; they participate in half-day programming and half-day work, school, or vocational activities for 9 months. In reality, RDAP is 24 hours a day because your life in prison revolves around it. If you graduate, you can get time taken off your sentence from 6 months to 1 year. The program focuses less on drugs, more on dissecting your life and rational thinking. Why do you feel the way you do and how does that effect your actions and reactions. I may try and get into the program. I would get to go home earlier and it would help in my quest bettering myself. \n\n[![Dining-hall-e1411760469932.jpg](https://s16.postimg.org/ltsj20pbp/Dining_hall_e1411760469932.jpg)](https://postimg.org/image/ruq7z3bxt/)\n\nSkipped lunch today because the line was too long. Lunch is served around 1030am and follows a 5 week menu. Wednesdays are burgers, and Thursday is chicken so those are the best days. Today they were serving chicken patties, although I\u2019m not sure if there is chicken in it. I think I\u2019m going to be a vegetarian in here. You wait on line, scan your ID card and get a tray which is what you may have used in school. Usually for lunch is a protein, a carb, vegetable and fruit. Today was chicken patty on a bun with baked potatoes and green beans. For dessert an apple or bag of chips. To be honest, some of the food isn\u2019t bad but I guess its because it was all I was used to. Unfortunately, the seating choices are as diverse as I\u2019m used to being from Brooklyn. \n\nI will likely make some soup in a few minutes of ramen and mackerel with some adobo, jalape\u00f1os and garlic powder. I miss Courtney a lot but I need to focus on getting out. We speak in the morning and we say good night to each other on the phone. During the day we email as well. \n\nTo use the email, you log into the prison intranet on one of the computers. You can add someone to your contract list and it emails the contact asking if they want to communicate with you. If they accept, you can start sending emails. It costs $0.05 a minute and there is a 90 minute delay from when you send an email to the person receiving it and vice versa. When you log out you have to wait 30 minutes before logging back in. \n\n[![Lewisberg Bunk.jpg](https://s16.postimg.org/6wk210c39/Lewisberg_Bunk.jpg)](https://postimg.org/image/rgovzhru9/)\n\nMy locker is more like a pantry. I have candy, tuna fish, chicken breast, various drinks, ramen, soups, soy and hot sauce. Everything is either shelf stable or in powdered form. I\u2019ve seen some of the guys cooking up some crazy things, but right now ramen is as far as my culinary skills go. \n\nAn hour ago I watched CNN with Shimi. Shimi is the personal injury lawyer I mentioned earlier and he lives in Range 1, downstairs from me. He has been helping me out alot and I\u2019ve been shadowing him. Tonight he said after dinner I can go play spades with him and some other guys. \n\nEveryone in my Unit is pretty cool for like the first five minutes. I\u2019v noticed after that, either they become hostile towards me or ignore me all together. Overall its like living in a small town with minimal outside communication. In the bunk next to me is Tommy, a former judge from the midwest. I look forward to getting to know him. \n\nI used the bathroom earlier and a few minutes after I got out noticed a lot of hostile stares from guys in the range. I couldn\u2019t figure out why. When Omar got back from work I asked him and he spoke to some of the guys. He came back and told me that I smelled up the whole range because I did not courtesy flush. Courtesy flush? Yes, while you are sitting on th toilet you have to flush every minute or so because the water starts smelling up the place. He explained to them it was my first day but it was a bad first impression. \n\nAt 7pm after dinner and cards I\u2019m going to try out Yoga. I\u2019ve never done it before, but I\u2019m told its good to have in your routine and helps with stress and anxiety. \n\n\u2026\u2026\n\nDinner was pepper steak with broccoli and soda! Yoga was intense and the classes are offered 3 days a week. It takes you out of mental prison for an hour so its worth it. \n\nI\u2019m wiped out so I\u2019m going to call Courtney and try to sleep. \n\nI can do this. I think. \n\n-Charlie",
+    "body_length": 8260,
+    "cashout_time": "2016-10-01T15:13:27",
+    "category": "story",
+    "children": 69,
+    "created": "2016-08-31T13:26:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"story\",\"life\",\"bitcoin\"],\"image\":[\"https:\\/\\/s16.postimg.org\\/x7f2d7zud\\/IMG_0006_e1433109728455.jpg\",\"https:\\/\\/s16.postimg.org\\/5y3oypyr9\\/shower.jpg\",\"https:\\/\\/s16.postimg.org\\/ltsj20pbp\\/Dining_hall_e1411760469932.jpg\",\"https:\\/\\/s16.postimg.org\\/6wk210c39\\/Lewisberg_Bunk.jpg\"],\"links\":[\"https:\\/\\/postimg.org\\/image\\/3s9e47vap\\/\",\"https:\\/\\/postimg.org\\/image\\/8s6uc60xd\\/\",\"https:\\/\\/postimg.org\\/image\\/ruq7z3bxt\\/\",\"https:\\/\\/postimg.org\\/image\\/rgovzhru9\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T13:55:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 195806721769401,
+    "parent_author": "",
+    "parent_permlink": "story",
+    "pending_payout_value": "4144.599 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "a-geek-in-prison-a-life-series-by-charlie-shrem-part-3-i-m-actually-in-prison",
+    "post_id": 812589,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "A Geek in Prison - A Life Series by Charlie Shrem (Part 3 - I'm Actually in Prison)",
+    "title": "A Geek in Prison - A Life Series by Charlie Shrem (Part 3 - I'm Actually in Prison)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/story/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-3-i-m-actually-in-prison"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7091789419092",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28421306818658",
+        "voter": "smooth"
+      },
+      {
+        "percent": "68",
+        "reputation": 0,
+        "rshares": "28856182775",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "6800",
+        "reputation": 0,
+        "rshares": "11547432333778",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26908937960730",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117153738816",
+        "voter": "penambang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14541454302697",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40478437385795",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "12844542811725",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134841384049",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "7010817118448",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3090883310",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3751600607",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703041511",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5824533973993",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52757873614",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1656788098",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213486537",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34612931967",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2596123420368",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4953659261030",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1050743329481",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621573110",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "71545170677",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921837962",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21098625559",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45179645003",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5025012507",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287843749",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87278685433",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23130933355",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11259119702",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "829535747",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3654082102",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543059088",
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127172358363",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14146724265",
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4667473657",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94995151405",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45576935659",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2135979533",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3489651223",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2177642624",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91973363311",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7170017526",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4023048939",
+        "voter": "mrkhuffins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39133037831",
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "213893213977",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1439678714",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48503254530",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7564949611",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313397420054",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367001031531",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354491950",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10493959254",
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90250548483",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361302473837",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237316155902",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53949422400",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19542347966",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180361081869",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1147181770",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "178134182658",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83756720354",
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73330821390",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23195120933",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1455229073",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315272215",
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41162837415",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152610751574",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33167263907",
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "593252311",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5412463822",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11422730697",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26197763695",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31294492326",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2153768921",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46942620740",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2933990260",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2244371641",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3567818391",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "999100627",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61102671700",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2488363646",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153081523002",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55577398106",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2357586913",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518403186",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "956499846",
+        "voter": "cuckoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250629310",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "111266825",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11598524126",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2488327899",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86732863426",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17490066959",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4975078320",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2620127809",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "625722935",
+        "voter": "suchnewb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29740244366",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214183155",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1426776801",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8695455121",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17386970458",
+        "voter": "freiheit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10581478212",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119197615017",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241513668",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1322665638",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3181701822",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117075692961",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105469798077",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40456093013",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263539417",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4375279402",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14354150809",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18033891928",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4025876756",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139437346399",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138158323222",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19450243690",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12111904102",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59948957580",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203840552",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2576891078",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1723503984",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8814210013",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1424731565",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494835022",
+        "voter": "jillfeint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195108235931",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25839609028",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75093674684",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4195791223",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3693094240",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14373825169",
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82600823004",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1484107810",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1312824728",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10244507265",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12360467699",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2248615528",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19162351843",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144757025244",
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3270068768",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4207979237",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14191091653",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162548310",
+        "voter": "soulthug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6875049105",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10808706161",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166034245",
+        "voter": "dnsz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "931679689",
+        "voter": "frankpryor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "985503736",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2712122271",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595467367",
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4971101667",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1893531816",
+        "voter": "idan4326"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10938373493",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67919004974",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1204340213",
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2236861513",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1887835506",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116382038",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "940333523",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "466212714772",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362267920",
+        "voter": "queiroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2215583453",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115387523",
+        "voter": "skunik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5949903064",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114881292",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1102035317",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4351101823",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4445653859",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114132846",
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438637419",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38831196502",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914953153",
+        "voter": "coinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2427471195",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5512637312",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5091712349",
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2851899479",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95063711",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6237229890",
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69869628014",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "863446792",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111635397",
+        "voter": "nighzmarquls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "711148677",
+        "voter": "candy49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29279615965",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331498852",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134803255",
+        "voter": "mairavrg"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "109237097",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "739615310",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112407757",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2334340277",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14690691636",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16361722939",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2387723771",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83869834",
+        "voter": "nickskywalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2078560081",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119675184",
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "880974380",
+        "voter": "toxichan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102348882",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2718091982",
+        "voter": "jokerpravis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30691300049",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1293874910",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63300522",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7323618776",
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6544706071",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68682650401",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147832214",
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62842616",
+        "voter": "kevinhoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7538910886",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16431877139",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75436221",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4068639160",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63675345",
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1411972851",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184775476",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1785122109",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662317039",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6602889863",
+        "voter": "randolphrope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26999446974",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5099237822",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78204962",
+        "voter": "millen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4555849418",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11391522918",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "698448734",
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64019062",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "366093620",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1358383666",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25711420325",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2363634617",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190497451",
+        "voter": "spoonermlt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571200841",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65668582",
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59127162",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60234624",
+        "voter": "tammyyin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59915538",
+        "voter": "nbdeledrifts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70111504",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56961785",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121862219",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83936892422",
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1009466314",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1629742923",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70986316",
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375935350",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445271803",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58964015",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53959064",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55769685",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30581032443",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1126661725",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841764781",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6857689066",
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3781665514",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9065603232",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67029397",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20936336941",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2806600152",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58897154",
+        "voter": "purplelama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57828186",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83305685",
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76802569",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518032278",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57632635",
+        "voter": "ihazaname"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310859486",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1250544103",
+        "voter": "terryrall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "321001176",
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1565744970",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1761785202",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1176722422",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130889172",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257577089",
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55750195",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118398300",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120048594",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1317394072",
+        "voter": "jchiogna"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-58245565",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70290056",
+        "voter": "raseukinapobri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65086623",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58186044",
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56719431",
+        "voter": "lilbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56661775263",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120907621",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398583502",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8464337545",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55377253",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3630029664",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57535214",
+        "voter": "davincij15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57971965",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29256369959",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2132585670",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9500362322",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57176651",
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55978702",
+        "voter": "phonemonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62556489",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2712604436",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24617514571",
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1119030040",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75243243",
+        "voter": "ksena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56914472",
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350670901",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54547175",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173358680",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93363315",
+        "voter": "getonthetrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55649675",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121466526",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167718520",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1041203488",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56759615",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2012627660",
+        "voter": "elewarne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1125741534",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501837884",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025746",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173158802",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67314176",
+        "voter": "russ512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209942172295",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55713891",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54584359",
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53471592",
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115562685",
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "832480836",
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91733268",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55410689",
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56693331",
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "492433664",
+        "voter": "venusdehilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55275332",
+        "voter": "jmendiola222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2110924737",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54072807",
+        "voter": "q1248"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54990943",
+        "voter": "shax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54156428",
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51301791",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67051047",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374243560",
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71027434",
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53452043",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50222829",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86707783",
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55668201",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55584646",
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53774061",
+        "voter": "lloydy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53103516",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54154145",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53231948",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53393524",
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "407383334",
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51909373",
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52943536",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52871755",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53877238",
+        "voter": "borntobealiveent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916666",
+        "voter": "littenti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52591467",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51514185",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52528251",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52320341",
+        "voter": "gaurav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53352742",
+        "voter": "nemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52305084",
+        "voter": "fganz72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52281058",
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52277186",
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53318692",
+        "voter": "jibinkor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52272460",
+        "voter": "coyotespike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53287995",
+        "voter": "jamebuffalobill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230107",
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52218833",
+        "voter": "i-repost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52218376",
+        "voter": "mudin"
+      }
+    ],
+    "author": "mynameisbrian",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "In the beginning there were few...\n\n<img src=\"https://lh3.googleusercontent.com/bEdy50gH2ogFrQkAbbE0QOI4vwAbTct54hhDw6M9Mol-ULh4xOLoXyiCkHMRENVlGs_a__h1UST-hHpEf5Y4kP7CSosvQL8bniq6BTLpl0sJdrnjVyZyN1-EtVCmxfd30xOCRXUH0sdw9s38qhjanGvfNACdNYCbonDoReILddRRxzeJCwv66ugdh1p8IBZW0Wwlpzdfo-DA1jsTEwJguG3SNAxM6Qe8IZbpCsqjsPTKLOsVnA7F8bSyhjVSJ9ygUN1WWmxNW40OjzefMPVAbcLquSJiFjlpnKQW7e_-K0lI4Yh065DA6fb7YLu5VtIbruvDwCMAXJlUmRlYLUXN3GHubVinZiLbPmD8d0OJHWQR7CiZt-jLHkSvfu2HPtQO_9oYqrHen7a55O9AknTta7cJdGCnmZcDCVFTUG3nWPyOEvKKxTiOhK3EjvIwnoXaUgFONsgmk2w9-ZU0VXfzVM6Wjp6UAaHgQSZkIm7FNXei5wBeBNBAcM2sw77EhR9XjaQR9B6_7-WIOhGsF89q4omRzD5QYCEa8zLooOizHkA_mwz8BGJP2814PM4bi9m-XcuMfHfxrn772zyTMISerdO6Dn6-CrPYdIo3tmpRxrGJTYTHqg=w1000-h700-no\" />\n\nSteem was abundant and competition was low, thus the few gorged themselves until they became blubberous monstrosities capable of consuming any fish that dared to cross their path.\n\n![](https://lh3.googleusercontent.com/1gPOAJu7qWhMTu9B4KehylR_cyv_o9inydRGJlzmFrKOT958HjaXY8Mi_NBhwyrnFNpP94phoXZWthQaF2PRRXy5JBzk6pGS3q-RUBQGFGZfX7jvPsGRR-sbr_UvorIG4Qtd96E3i1p4HYa5Vs71nkIOwAGgnOgGfLhFDoK4h1V5AyGQtjfIGgKgjxNCp-lhkxkxdKxEmhIVr6Bkq0kkOviqXEphtQO2DrdTJgJGDKM9xzV7f5jGXrfARN-guqaF2qxvk4yzN7N0UlTomqVeyBfBMi-oDWcWM9GxtBQifGbYpL8QMwKzHpxC_8VpL46od1VZxssQmtm4HJLLRhSPNbMafBvYkk6wApdAidYb31JBG7krD_bqmgEq99Z41AwDslW4SlVkmtBYmelvml4moXLg6lPMcMKhCpJ-s7TIHoSgWoCRY9fCCk7FSUByGjEgWniEmvr3zJubq57EJfKWvrrXCvVoumDARU0PRjMLEaQXePn2OGx7AoipDWuIRMNvR0sXfGOt2tk_nDEqu2UmHCG7NIxF_T84y0UlhVgeOT6KLQ4vLG-HSL4WwSsS4FgtpYWD8rlmfxoQl7kV_44mmpRERbS6EM5IbuKi0HwlBhAjMBMpJQ=w1000-h700-no)\n\nThe whales remained fat and powerful - capable of pushing any post of their choosing to the top of the trending page.\n\n![](https://lh3.googleusercontent.com/UKVJNAA-PeWnEGYECCu9tOTgnk0pd28kVJKfmF2hSF4JeWGmRUqzNuKlGzdkImZHesmVXqISoccmfHlAZ9dw6FNuDgGvnf_5A6ksM2w90a_onFdpeug0IV-xIbfN3oL_GPtLafP2cre29pgsfLdma0VoWvkWoxhHo4A1uTauhQj8TwnfujUbDdFb-hN04AoJGeiQe-nxEWKfL6X16KsL6gqrK6_HLwfyWwGZYzOmLOXPDROfA8jUtOJa9mFNDaxKNTppOCYHMgspX1Msr7jgU8riJQhkzCl2auJkVod0o0jj4Z7dG2Kicyiv6sd8ePgTsxl-4CMG5Ku2l8B440OyFhXP-NxbPguu05fjx43YT5_8cuiL3zHXIURmCZyK4IPyQSh5FExe0PGLFc_r3Dx_1JDvVsSWaO1dGKxvwnDmitzT6oX3CtXu6hlWh9O3F0lygMarzKHk285QCYOUtfRGA3BlkqJY5GewyWBHdb3T00F1QF57nunOylj7l_R2o5BknamUuaz62CiUl14nOjAeJg9QOHywkATfe2A5rWAKS5BnCNbGmYq481Xy5j11TARh7u648sH0VSM0p7JoYfhHqCReLG93sIRb=w1000-h700-no)\n\nTimes were good for the Steemit whale, but down below there were rumblings of a revolt amongst the lowly, insignificant minnows.\n\n![](https://lh3.googleusercontent.com/qdiTMmJTmYBUR58_0E-QSgFUBvrxj7pAB_hoVwbbwFiuSKbVW1X7KkYpsu3wMXPzti1KhAFUpuU87RWidmr_VpGN6JOfF13dpk_Jbt_BVJhzMWGUqHWq22VoAioDZNr-QIZ1dI41HkZ1IlXIADv1kj-rJHGeE-YX-UxvkR1-tj7I-dT3NOCaQQILQ8djg2b9c4XAstjLiN598IkeN6f1ZQzIMHPP3Wj7HKd1gQrRsAoP89kAnFMtOoch9H_fFJWoOekzeJpKn1mgASOqGodffcxHSygJowzb-0x0t6p5lv_-xiBxWsjbiKKKSYGW3l9pzWHhd1AEpFw7pQQQwtzkw6LX6RexxiQDUQm8TKqmiMt14osKs826dNMkJ1NdwFGNOTJwaPcUgs8he8ojef8xDqJD_t5eK1vZUg3hidxuZJXopUQ5AL992gVQOSeLPL77nruo_QHx4tlrT5Jxhp-4Wato5VLJQ0UWriHRWg0396AigaPJNnT6P5B-RLGcn-ZiwvF_77lw-iSdmh1-KY_jZQSbnD6v3ujSenVZDI6SGu-MNS2t-Vjd078oMkD2Un5hGTSd8niHqIH0QXkLk5R39-gXB8PdIJ9y=w1000-h700-no)\n&nbsp;\n\n*Whale diversity?* The minnow was on to something. You see the few that reaped the benefits of low competition in the beginning all came from the same walk of life and enjoyed similar things.\n\n![](https://lh3.googleusercontent.com/7FY582A5ny5w8XKvDqmyxuEy-xmPgeVXkxvQaoh7EHzwFAqCD8giEPSRQ_sIeET5GbPH_hq6QAxC2kst0mLoLYzCsRx_TDAT-Stg1Or2z_DVbCNVQ8fO46_sCKaNZ6Wmcp8IWFlHf-hdftDXjxdNHBIsHhEG4Dl4nzLmRyTUIzkLv-WA0lNyjC20MOGj0dujkfg6v3X_wwpVW3tYj25cErsgxadPOIwm57w3wLgINYYO-8YNCVEs1Z17N9sTxIesCQFcgej0Wg6hl_1uIL1-lNUdXyEn9zRnLcmPd0Hm8wepfM7GsFCAO7foSh6ikuySW2dRIZsjIbiuhJXOkZiiTwXMG6hzELaiK25KvXVCNEDV0DjeKyVb8qLTsgy-LqeMsPKv3tTYmW53XRjZeIevwlexx_8uU3G1q_c4VW1ZOyHPhBBb62OhD3cTNtxtH0m1p8rQoXIQGuP2ljjOkRpwSshwIsVAQx20lTNcCUpTT0lei6N5TbSe3LQSmfs63L_-K7CsoqCMt6ZFaNXBtbEHtmtr6aV3a85cmw_9hX13a0NkzSs1LJxE3vxxXNwYPYnrbI0tS5oTzfWhgJJHQeaMFFwcYadrvRAj=w1000-h700-no)\n\nAnd incidentally...\n\n![](https://lh3.googleusercontent.com/b-FTLIFqKvBNrKaYJBsBOdQDQuqA035kvRN51cIOjV_QvYj5o_q5o2CdMrIcUoFmg89Yos0jKnLAaoQRY5TEpsDNu3j-dffijvxDLePMvtM49_SxU4LokNZfNy7HZ3yh3PKvl7_oYepYBCtkW9-u1gFrseHc9Cw3WIq12jkcAh40r_9jiTaCkefx2QdjsdE7f43YZn35sqQnvyK-U5Y-x3FpiaKT7XORBe5tMklRbJuy5puh1PYXqCbCRWhTa36rqg6zT4lZJXhduBsjq_cZZDcOQmRh54cNZ3yg9snFoVTfbsleGiG9XCe-65N3hHkg2o2uYMBDzRHow9qOO9JrB9YYcyr2RURrpVjFNcIW0078s58DYtph8SAP8QMCa6iDW6EuzFHG2iiK14afSpTGUJsAQLOAUGVb5B73VTSZXNn8W8ZiKws-9BkenegOgFKP80_UVmIRS38uwc6sHSDah5mQ2ckgIpdYs5mxJvjyvDfjlP13PnGn4vigAeANXWKRIz6ODoGbHxyN4QruVZIvJlVctFwvV3OOtMeNKoaPGCMqsgJ4QkM8R6EAbrKvQPj0wzm68sykO9Tbtkj1jkAvvAoCmNQeDpKF=w1000-h700-no)\n\nFor some this was perfectly fine; however, as more minnows joined Steemit the desire for non-crypto and Steem related content grew.\n\n![](https://lh3.googleusercontent.com/_Cgat8Ma4-b2gOQcWfzxuMVi_PWynqKTGY1-FOYh7DJDJxMX0CeuavZ5xolHDDDufIO3uo4XmseK9I_0D1BCz046GLwVWutWDBJcAd-BroFyj8KmhmC5vs1y6kVmMouTwO4J5Q95PkITP6yc2Huor2PxBq-YUD2toHJA2eW2qiibH9zBIb7yxPgCqa3LNFftXS45vuiQD28muY9nHmS7AW8vFn_U0gaN7jMDt8hRjRl1WDFRONel1uGWlcP_SJX6nud-jBi8ZZKfSjF86cN0owe8zAcjyfa6jDqxndZSU6onMXxIBDTUPxhvUXTkPMiJjepuAH_X1aS641DffnAvTF4_7u6JzB14Miduk7Q1q1jK7s1gjeIS7p2L7qc-fWAMFExlAZM62AOR-Kj4FOd6kYyL4042sOxoLeE6mcp0hCIBLP5lnZl9q1KUhJHfiFqGjhEZSIqqxQMo9Nkk632RfG5kTSnILOujGD-bb0cnergLWcefgw-9_uTkIhren80ZAwJa4lLKtK_xOw21C26BPK6L0CLVKa9VjxNY1aZkjGPZszUHhMhaRY4Nyw8xh4yKzMl1YQ8HVYaEVO2xM4ff5C2p7aYUVPN5=w1000-h700-no)\n\nFortunately there were intelligent whales that recognized the issue and decided to take action into their own hands to appease the minnow masses.\n\n![](https://lh3.googleusercontent.com/_WMDmgCEM_g1Q3OTZ2IBQUaQZ5xDNq3bqgleBZyiVmf3Akvvq5whtTVx_0zIZoZ3J2yQEyrutSRxFbHrSuzwr97tPEfxUb8YyiemCq-NEPLljfkK1pshMpPieLdF52Csuhgdj2rWXKPp8wJQMxf0VmEZcg4W5BaDvUdTg9iJL2_4SoGAKBnAviKacKenxli8zaVcjS7CmyUo6EDHebOgx4XBGOs5lq52lD1_JMZTNlqOOoxnMkCcoWDlfvvBthaBRKrdECES4O-fYITvZEKdxRoxnk4Vxi1ylUqUTvUKjdQM3rnEf0Pbq_4U7qfe24Yzz1RQt2n4SfbVlif3eBRxEkW-pZPMwCtSQeTEDnwsrGwE1voufdM6TsIFiFn9Buz2436e162swat6I2M0bUnSVIMh5mwuT44_Bqd70-W6LMt-4_P58O3vPAr91EVuDZLGRlliMDa9AhUm4UXKpV-YVhl0r40R08wBHvAEk101610hm3hkJoC9mACzA6OGjhSeJFazjuYlpU4yWT8NEYYv2F__4q_jYXfEvZDK3lcOgsIsWpajKRxglos7v_1lKV91Qj6SmDlglWNrSqR2_CvlzZnyiIfGOKYZ=w1000-h700-no)\n\nThe whales kept to their word and over time minnows from all walks of life slowly grew up to join the whale ranks.\n\n![](https://lh3.googleusercontent.com/yr0h2R4aRsIYOEi_TzJ0_jKDu2ijRp26s_iDqaN8h5zt_ICrSRAzPgUt00x9lA7ZmIUtaHsMe0LRey-qImy-OmHN5fQftmuR5WinqJrCEQxKfNwqR5ysZhpOrUtmOzKk2vg3ClmxSFUYoifDFhp81zrHddUyhy7ZdYgB0aAfULv_BqMYzK7QNitPYPoegOJxNkbv6Z6CU8dC2gEE48rBPuLb6VAt6LJLnqw3Tua9qADtFp_TR-wjYgGGBeGjk1HwKN0cNSG9FbI3kiBkOWADUY6RcWlXGRH24DpSGo01HqluVKjWA7UGzESgzJ0_O3aNExpMITGW5NQzxYU6QMWGBnhygD0BlkNKwdH7MuTzmvGyjIDE7tydiqUAd484MwU9DPPBOML2e6OJ6UsSVFkGe6q_0m4NDuJpCwtVEPbawjS0gUXO1rgV5FDdAUNuS18bhFV201aJgIB9OxMt6lJVFe32YDaT_hDiXP1eCb9wr1K4wJZY_GRqDtu83pbIvRVI6mIKoq2MfGfQf9lD0Vt5V_ISKoOhYfIQcNtD46vrNs5CrxM1KdIaY2e_-yv0sZ-JbRAK6aPZu-s18TU6ixKDDAGHY1V9lFp0=w1000-h700-no)\n\nThe whale diversity problem was solved and Steemit evolved into a social networking utopia where all points of view were equally represented, supported, and rewarded.\n\n![](https://lh3.googleusercontent.com/HKRf2YGck4_74_YgTXzxvjwbAer6gj4rsHb7HaN0VpfTb70QY6BWeStAnHzwMVes2s4kaD5MdZy6jNEA0uJUDfFuZvsHKPDCjHb1smA39aYhgDCJizyUsZj8CsUYVsLUH3YTPavhsOFMLOI9a_6PqJHts_x8TEjFIJi1_QuWlChGMM3qDyoJO1yYMFz5ak4VpUyqArY0gfkxOaCYX4bmffKqaPec4xA2RAzp-VZMpeV-n96SBHbrvV7PCee-_OMUby1HSLH-vzIo4dkNfS9Sp7zXDLCVXeITcaLNnY1JdODbAjkGxqntIVWxTnc9JXmb7UspZriRu4YrJnPWg_XaGVhiKpa4dM7dcntLqLDyaInN-poyybJA4W7qLvacJoxBln9rdP0Mj2-sKe1fSkqCvrTk7Z9pQXkPXzzbEJoNZriI9e_ZCwwkHJfbWuUMHP_zsppB4U1fsfXxlgros3_oc5fP9YJmcqRXJP_--VZbkN87fdNVDBQj61DOfJ7hQG7U9uMa9i8m0VSM4e-ic2iR24Gt5Zgt119zQyFpR-3cbvB14POxKdG3-gnRMmohgkTRaMkKC5naCIMNyWhG4_92k8EVV8xwoKzyb4PFwOMuDQdbUuVgGg=w1000-h700-no)\n\n***Footnote:*** *This account is 100% factual*\n&nbsp;",
+    "body_length": 7997,
+    "cashout_time": "2016-09-20T08:40:00",
+    "category": "steemit",
+    "children": 98,
+    "created": "2016-08-20T03:16:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"marijuana\",\"art\",\"bitcoin\"],\"links\":[\"https:\\/\\/lh3.googleusercontent.com\\/1gPOAJu7qWhMTu9B4KehylR_cyv_o9inydRGJlzmFrKOT958HjaXY8Mi_NBhwyrnFNpP94phoXZWthQaF2PRRXy5JBzk6pGS3q-RUBQGFGZfX7jvPsGRR-sbr_UvorIG4Qtd96E3i1p4HYa5Vs71nkIOwAGgnOgGfLhFDoK4h1V5AyGQtjfIGgKgjxNCp-lhkxkxdKxEmhIVr6Bkq0kkOviqXEphtQO2DrdTJgJGDKM9xzV7f5jGXrfARN-guqaF2qxvk4yzN7N0UlTomqVeyBfBMi-oDWcWM9GxtBQifGbYpL8QMwKzHpxC_8VpL46od1VZxssQmtm4HJLLRhSPNbMafBvYkk6wApdAidYb31JBG7krD_bqmgEq99Z41AwDslW4SlVkmtBYmelvml4moXLg6lPMcMKhCpJ-s7TIHoSgWoCRY9fCCk7FSUByGjEgWniEmvr3zJubq57EJfKWvrrXCvVoumDARU0PRjMLEaQXePn2OGx7AoipDWuIRMNvR0sXfGOt2tk_nDEqu2UmHCG7NIxF_T84y0UlhVgeOT6KLQ4vLG-HSL4WwSsS4FgtpYWD8rlmfxoQl7kV_44mmpRERbS6EM5IbuKi0HwlBhAjMBMpJQ=w1000-h700-no\"],\"image\":[\"https:\\/\\/lh3.googleusercontent.com\\/bEdy50gH2ogFrQkAbbE0QOI4vwAbTct54hhDw6M9Mol-ULh4xOLoXyiCkHMRENVlGs_a__h1UST-hHpEf5Y4kP7CSosvQL8bniq6BTLpl0sJdrnjVyZyN1-EtVCmxfd30xOCRXUH0sdw9s38qhjanGvfNACdNYCbonDoReILddRRxzeJCwv66ugdh1p8IBZW0Wwlpzdfo-DA1jsTEwJguG3SNAxM6Qe8IZbpCsqjsPTKLOsVnA7F8bSyhjVSJ9ygUN1WWmxNW40OjzefMPVAbcLquSJiFjlpnKQW7e_-K0lI4Yh065DA6fb7YLu5VtIbruvDwCMAXJlUmRlYLUXN3GHubVinZiLbPmD8d0OJHWQR7CiZt-jLHkSvfu2HPtQO_9oYqrHen7a55O9AknTta7cJdGCnmZcDCVFTUG3nWPyOEvKKxTiOhK3EjvIwnoXaUgFONsgmk2w9-ZU0VXfzVM6Wjp6UAaHgQSZkIm7FNXei5wBeBNBAcM2sw77EhR9XjaQR9B6_7-WIOhGsF89q4omRzD5QYCEa8zLooOizHkA_mwz8BGJP2814PM4bi9m-XcuMfHfxrn772zyTMISerdO6Dn6-CrPYdIo3tmpRxrGJTYTHqg=w1000-h700-no\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T06:12:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 170483910533651,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "4048.917 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-evolution-and-diversity-of-the-steemit-whale-past-present-and-future",
+    "post_id": 678851,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Evolution and Diversity of the Steemit Whale - Past, Present, and Future.",
+    "title": "The Evolution and Diversity of the Steemit Whale - Past, Present, and Future.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@mynameisbrian/the-evolution-and-diversity-of-the-steemit-whale-past-present-and-future"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "24764514875146",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7542003454455",
+        "voter": "steempty"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28856126477",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14825670531273",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42084438150989",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "20606972048676",
+        "voter": "val-a"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "33500836333107",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131350349763",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223387419724",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "3495497154422",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6183464077147",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1696732608212",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1235646206",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1499730525",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281080652",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3375344427585",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21034837789",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662345893",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85364487",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32746360575",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2592609003800",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1181693797526",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289695914463",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73168546803",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008017518314",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256885763576",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248512921",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "366443930",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374892077281",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22423563200",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "831726581013",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37314251347",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115094057",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410848680226",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100000796919",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14274195998",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5762120310",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543059088",
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23697552830",
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14317866801",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "464536603135",
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5073271124",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8889991171",
+        "voter": "piranhax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473678777",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46488029079",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2134929320",
+        "voter": "gekko"
+      },
+      {
+        "percent": "8400",
+        "reputation": 0,
+        "rshares": "1390509636907",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40256756694",
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5176156064",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59008577002",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50479746379",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2159282570",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7564896202",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305617293350",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431313999109",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "629348835",
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300547523",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156348565",
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96004313214",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9543761556",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1667394140",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "332794848495",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56236128858",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4005086376",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20052060161",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6306835193",
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4142890713",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13378292922",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80383400292",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750522515",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245414402472",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3959389322",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1327941697",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40337233208",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107938878503",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5296719765",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16832536493",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28362187028",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49239210039",
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44341610368",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6030262582",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9142725916",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159843656074",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4836063726",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54465850144",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250436670",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "111265427",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108205573807",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4710786819",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131372321545",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4875559587",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1271258622",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237324146125",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-27686583355",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67813427095",
+        "voter": "steemingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10577753089",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105686790784",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20289804803",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3712824047",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4101011103",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3139609543",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6375375055",
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34258639375",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241033184",
+        "voter": "bobkillaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24889176482",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59944812577",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1051674259",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203840552",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3372986749",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28516886112",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2351934852",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400787055",
+        "voter": "alexoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217720229",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399143272",
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1022676513",
+        "voter": "doctorstrange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7296928755",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126340015293",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221136232",
+        "voter": "christianus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7154602608",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159606601",
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2247825333",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1243378929",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117448996",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457906767",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515521560",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8075937566",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7161404359",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8922101865",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311209174",
+        "voter": "olinzodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2905350738",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1440899131",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19873459203",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11187497242",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20473976548",
+        "voter": "mynewsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113744498",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1845821936",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277035330",
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116382038",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "952411138142",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1917931749",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29969784949",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11862567099",
+        "voter": "ben.zimmerman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543880122",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7480302114",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117140238",
+        "voter": "imranj131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207505405339",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4248413722",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19671891232",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "4684149428",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2723901267",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101853977",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22280053546",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59001531699",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9835135927",
+        "voter": "michiel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1842501592",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "109235699",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "790579875",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107999610",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "529204846983",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14987080932",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9418973398",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1945461176",
+        "voter": "rich77"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "124565361341",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28234870957",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7342551506",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35269708731",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2265593960",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "20031243976",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147294795",
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "472564619",
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67795706",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237824290",
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132361142",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4456674910",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457362078",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247825627",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615648097",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15617788283",
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19595764461",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6154739255",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7107866443",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12448294080",
+        "voter": "nomorealex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "286810351",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436647390",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63745502",
+        "voter": "mchavarriaot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66981954",
+        "voter": "mustool"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-202416440",
+        "voter": "orca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72553516",
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60333839",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63014671",
+        "voter": "buriga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17383762786",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58371530",
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "589642163",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60661081",
+        "voter": "goblu96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102334329",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59255025",
+        "voter": "kulsumabdullah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1495753339",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391266485",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1677548311",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56305110",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1316826358",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-58862795",
+        "voter": "icecreamyolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58479392",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127893255",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59380363",
+        "voter": "ultimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5010680488",
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56949666",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53199754",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23874395477",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21754425352",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67029397",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20605152042",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61250665",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3839771700",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70063032",
+        "voter": "henriquez147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2170430303",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57828186",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54247403",
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14666786719",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56072882",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58993287",
+        "voter": "jurisnaturalist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57600707",
+        "voter": "johnnyhurley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57283554",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57475981",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55936524",
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1724170777",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56411164",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75384980",
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13128724991",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59161485",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51199159",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74181133",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30836759859",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56679654",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57781525",
+        "voter": "internets"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-115119261",
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58690675",
+        "voter": "malxdrakon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55377253",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57959938",
+        "voter": "cwalton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3482038774",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "970961663",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53063689",
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2307183228",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57408242",
+        "voter": "korpzhe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11781966738",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56314596",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29236860420",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1802591050",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58576423",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56082403",
+        "voter": "nbragg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57315683",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2291259750",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128276846",
+        "voter": "steemvideos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381164023",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55678770",
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54536747",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54536584",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53392204",
+        "voter": "etheom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55542518",
+        "voter": "eleven1101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1840903324",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1041203488",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406163",
+        "voter": "snowcrash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29198186277",
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54489230",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15735961596",
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51543183",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55397045",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53952590",
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55047915",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53925231",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176454678",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155287",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1484135397",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55386319",
+        "voter": "zinnia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73607213",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1032656866",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76886011",
+        "voter": "gabosh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55252777",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51699969",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103734794",
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52649549",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51301791",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91301058",
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53559999",
+        "voter": "car2nistrob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53428542",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54378547",
+        "voter": "uncrazimatic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56149767",
+        "voter": "arshakuny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52041445",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53092299",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52325653",
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52986484",
+        "voter": "assmuffin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50855607",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51817146",
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50755661",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51789479",
+        "voter": "kitperez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51695102",
+        "voter": "unknown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50617360",
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52688025",
+        "voter": "joktan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50579916",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51600241",
+        "voter": "cucumber1234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52598023",
+        "voter": "gaetano.caimano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51521614",
+        "voter": "thecryptonews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53620159",
+        "voter": "g33kspeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53598929",
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52545515",
+        "voter": "friendster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1849883331",
+        "voter": "exlead"
+      }
+    ],
+    "author": "mrosenquist",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://i.imgsafe.org/65d564e943.jpg\nHello all Steemers and Steemitans.  My name is Matthew Rosenquist and I am a cybersecurity strategist, father, and pragmatist.\n\nA few weeks ago I heard about Steemit.  I have always been a fan of cryptocurrency and I blog quite a bit for my industry, so I am here to check it out.  I enjoy posting about cybersecurity and commenting on a wide variety of topics, so I hope this is a good fit.\n\nMy professional passion is cybersecurity.  I work for a large technology company and have been a thought-leader in security for about 25 years.  I have held many roles and covered a lot of ground.  I look at the technology industry to understand the weaknesses and how attackers are undermining trust and causing impacts, the role of governments, and the defensive postures organizations are taking to protect themselves.  Every day I learn something new and work to apply and share it.  \n\nI am very active in the industry and on social media.  I speak at international conferences, consult with industry partners, academia, and governments.  I am an active member on a number of industry advisory boards, and have published acclaimed white papers, blogs, and videos on a wide range of information security topics.  I am most active on LinkedIn and bring with me 50 thousand followers.  \n\n**Speaking at the Cyberstrat2014 conference in Helsinki Finland.**\nhttps://youtu.be/qLFyEL3hKvA \n\n**Speaking at the CTO Forum in 2015 on how the technology industry must change to be more secure**\nhttps://youtu.be/AWyx4zMVweE\n\n\nI call California my home but have traveled the globe.  Shanghai, Taipei, Munich, Copenhagen, London, Cairo, Rome, Paris, Jerusalem, Helsinki, Ottawa, San Jose, San Juan, Stockholm, Gdansk, and many other places in-between.  I have had the good fortune to meet incredible people from all walks of life, taste delicacies, and experience a wide range of cultures.  We live on an incredible planet and are a truly mesmerizing species.   \nhttps://i.imgsafe.org/65e2bbdc18.jpg\nhttps://i.imgsafe.org/65e3902960.jpg\nhttps://i.imgsafe.org/65e5cd3e2a.jpg\nhttps://i.imgsafe.org/65e947737c.jpg\nhttps://i.imgsafe.org/65ea8e23e9.jpg\nhttps://i.imgsafe.org/65eb76329e.jpg\n\nWhat I will bring to Steemit:  I hope to add my voice to the community, providing information about cyber threats and the industry, participating in discussions and debates, and having a great time in the process.\nhttps://i.imgsafe.org/65e49b1511.jpg\n\nSo far, I have found Steemit to be such a wonderful community.  Too bad it still feels like it is a secret.  \u2026We really need to change that.  \n\nI have already made a few blogs on Steemit, but everyone is welcome to ask questions.  I will do my best to answer.  \n\n### Here are a few of my posts\u2026 ###\n- [7 Methods to Fight Back Against Ransomware](https://steemit.com/security/@mrosenquist/7-methods-to-fight-back-against-ransomware)\n- [Ransomware Help is Here](https://steemit.com/security/@mrosenquist/ransomware-help-is-here)\n- [Security Posts of the Week \u2013 900 Million Android Phones Vulnerable and Black Hat Hacking Highlights](https://steemit.com/security/@mrosenquist/security-posts-of-the-week-900-million-android-phones-vunlerable-and-black-hat-hacking-highlights)\n- [Security Pro Turns the Tables on Scammer Who Gets Infected with Ransomware](https://steemit.com/security/@mrosenquist/security-pro-turns-the-tables-on-scammer-who-gets-infected-with-ransomware)\n- [$3.5 Million Reward for Information Leading to the Recovery of Binfinex Bitcoin Theft](https://steemit.com/cryptocurrency/@mrosenquist/usd3-5-million-reward-for-information-leading-to-the-recovery-of-binfinex-bitcoin-theft)\n\n\n### You can follow or connect with me on a number of different sites and platforms: ###\n**LinkedIn:**  https://www.linkedin.com/today/author/matthewrosenquist\n**Twitter:** [@Matt_Rosenquist](https://twitter.com/Matt_Rosenquist)\n**Evangelist Blog:** http://evangelists.intel.com/bio/Matthew_Rosenquist\n**Information Strategy Blog:** http://infosecstrategy.blogspot.com/",
+    "body_length": 4023,
+    "cashout_time": "2016-09-19T05:09:12",
+    "category": "introduceyourself",
+    "children": 72,
+    "created": "2016-08-19T01:41:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduceyourself\",\"security\",\"life\",\"crypto-news\",\"introduction\"],\"links\":[\"https:\\/\\/youtu.be\\/qLFyEL3hKvA\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T01:41:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 173500027632557,
+    "parent_author": "",
+    "parent_permlink": "introduceyourself",
+    "pending_payout_value": "3929.401 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "matthew-rosenquist-cybersecuirty-strategist-is-on-steemit",
+    "post_id": 664196,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Matthew Rosenquist, Cybersecuirty Strategist is on Steemit!",
+    "title": "Matthew Rosenquist, Cybersecuirty Strategist is on Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduceyourself/@mrosenquist/matthew-rosenquist-cybersecuirty-strategist-is-on-steemit"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_tag.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_tag.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..db6ab322c455f585fc300982fa2f4c88bdd123ce
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_tag.pat.json
@@ -0,0 +1,76032 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28093846388978,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1915876518994,
+        "rshares": 699914473958,
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83122046,
+        "rshares": 17257232261172,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 480115650369,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7913777948669,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30337453076324,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 260548325708,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 16854241280325,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 28924078018731,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14444913681822,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 39965317174712,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 689029258065,
+        "voter": "neogen1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13270505121655,
+        "rshares": 63253281536152,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36032064618135,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 726080932522,
+        "voter": "hermes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 877675628804,
+        "voter": "hermes-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2030896048271,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 500319811721,
+        "voter": "thorium1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 438210498091,
+        "voter": "thorium2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20325022183,
+        "rshares": 5056112988611,
+        "voter": "datasecuritynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 18153135567327,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 519142130530,
+        "voter": "bunkermining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 5157097606627,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 6899868284164,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9674921775291,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 223703977403,
+        "voter": "bitshares.org"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147996188902,
+        "voter": "blockchainbunker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53243993306,
+        "voter": "blocktech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 13957464410,
+        "voter": "neominer2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2002246627756,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 221838299608,
+        "voter": "abderus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9637889890,
+        "voter": "olympus-steemy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 245373914914,
+        "voter": "hephaestus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 123346745696,
+        "voter": "aquarius.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53786089865,
+        "voter": "minosman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153708432700,
+        "voter": "aphrodite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 18730151342,
+        "voter": "hotels.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 15464075795,
+        "voter": "aries.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89110173285,
+        "voter": "rabbitminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25157265699,
+        "voter": "insurance.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6595312101906,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 110419235217,
+        "voter": "fund.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 428017035820,
+        "rshares": 82759541835,
+        "voter": "friend5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120836984895,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 4445841013641,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1837624790786,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4459584427110,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 14831683698,
+        "voter": "heracles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1137398676566,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 21952504677,
+        "voter": "bunkerchainlabs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4209277765952,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1086902089740,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 1017560017130,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 21885626779,
+        "voter": "jaewoocho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1786533941371,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10026510714787,
+        "rshares": 97009979527,
+        "voter": "testz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7220943508883,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1710349335938,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6359610748191,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49280708331375,
+        "rshares": 6942614615722,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1778211712,
+        "voter": "tigerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8980249791516,
+        "rshares": 243564520407,
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1831858803960,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185067624745,
+        "rshares": 2183482896124,
+        "voter": "bhuz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 71574765002,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35385015759603,
+        "rshares": 215958073175,
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 601298858373,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1171318122,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250001478305,
+        "rshares": 108222463585,
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 93869000523,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5642052247060,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1330688610736,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 436338741278,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158487994237,
+        "rshares": 49161573729,
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1082239289637,
+        "rshares": 264060540254,
+        "voter": "indominon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 425156145671,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23744414677575,
+        "rshares": 3126067413688,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1829863145814,
+        "rshares": 700898568836,
+        "voter": "marginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1166261090205,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 31586736553,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 10836599449,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2369366055877,
+        "rshares": 73485247243,
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20661161447481,
+        "rshares": 201402716350,
+        "voter": "peerplays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51006025081420,
+        "rshares": 651650151993,
+        "voter": "clains"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7861629418,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 799223082971,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 18431412528,
+        "voter": "apollo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11896085173,
+        "voter": "athena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1919905710,
+        "voter": "muses"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 311732866,
+        "voter": "perseus"
+      },
+      {
+        "percent": "900",
+        "reputation": 37454101478493,
+        "rshares": 31464611372,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 36706368978,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 67501955936,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 16257256350,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 156365496996,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1799230966,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 51332569345,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15051100192,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78240336194,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 66907598269,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2832016984,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3675361198293,
+        "rshares": 15214718551,
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5380704535,
+        "rshares": 178530166606,
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "8758",
+        "reputation": 12382143533351,
+        "rshares": 508667685990,
+        "voter": "eeks"
+      },
+      {
+        "percent": "4200",
+        "reputation": 14848515958625,
+        "rshares": 36130468662,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 61062133,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 894610117782,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "1000",
+        "reputation": 376960001789,
+        "rshares": 729855132,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 29757966917,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2197244270,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 336222767084,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9605734431,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 590880111465,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8364732813017,
+        "rshares": 130765654564,
+        "voter": "psylains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 28644312682,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 140767896242,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 54529679370,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 35933035552,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 182807260574,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 39838275827,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1686985722639,
+        "rshares": 8265260142,
+        "voter": "censor-this"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 57402475507,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 715863735,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 99094642992,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 642556761509,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "5555",
+        "reputation": 2902053059801,
+        "rshares": 1060209776,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 6221982003,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2432487676,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 414252277177,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5502671300,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 39055019637,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 1181974695451,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10675191699,
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6365214013,
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3478936444,
+        "voter": "aizen03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1143835315,
+        "voter": "aizen04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 483853236,
+        "voter": "aizen05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4693567848,
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2807253492,
+        "voter": "aizen08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 997777297,
+        "voter": "aizen09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 431760512,
+        "voter": "aizen10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7101615732,
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2983378574,
+        "voter": "aizen11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2050579884,
+        "voter": "aizen14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2411192239,
+        "voter": "aizen19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 59865085883,
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 635600745,
+        "voter": "aizen15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6292058117,
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 50734100398,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 631857622,
+        "voter": "aizen20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4130275635,
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1097892348,
+        "voter": "aizen23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2159349021,
+        "voter": "aizen17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3398734282,
+        "voter": "aizen24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 480477451,
+        "voter": "aizen18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1287103324,
+        "voter": "aizen25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2186327596,
+        "voter": "aizen28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3364338062,
+        "voter": "aizen26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1104427992,
+        "voter": "aizen27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3795716671,
+        "voter": "aizen32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2076648957,
+        "voter": "aizen30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3841200066,
+        "voter": "aizen31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1264455671,
+        "voter": "aizen33"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 64089665412,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1521106185,
+        "voter": "aizen34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 305387048,
+        "voter": "aizen35"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5728889626,
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1429330870,
+        "voter": "aizen37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 399919669,
+        "voter": "aizen29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2813197300,
+        "voter": "aizen21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4316399334,
+        "voter": "aizen12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1837991384,
+        "voter": "aizen38"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 30065956267,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 9278417119,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 94752577156,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 512479457,
+        "voter": "aizen39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3769369379319,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 400269260334,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 418638114,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 51844504762,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 383344605027,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "7500",
+        "reputation": 3804349938696,
+        "rshares": 42223163463,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65989046107177,
+        "rshares": 583461363660,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 16209299302,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 52129552131,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4606609796,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 329350239,
+        "voter": "gardening"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 329500032,
+        "voter": "survival"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740247204120,
+        "rshares": 9924614344,
+        "voter": "arisa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2427142197024,
+        "rshares": 31790139287,
+        "voter": "peter-parker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 55393371507,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13621983705,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 79211870859,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322737106,
+        "voter": "garagebill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6877012376448,
+        "rshares": 124617921009,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 210147284092,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23272135087,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 268409488877,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 3926913096,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 29627469187,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 170297725317,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 811931125,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "4500",
+        "reputation": 6571743380703,
+        "rshares": 46328182720,
+        "voter": "igl00"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5940635398,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 306336916,
+        "voter": "chris-piatt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 113838927200,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 231593655603,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1179873230000,
+        "rshares": 23687725437,
+        "voter": "seth-krings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2290417141012,
+        "rshares": 77388693784,
+        "voter": "technology"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 4988718787,
+        "voter": "ben99"
+      },
+      {
+        "percent": "100",
+        "reputation": 5571311902261,
+        "rshares": 156612109,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3924899966690,
+        "rshares": 87245921405,
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 64046549790,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 69311512532,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "5100",
+        "reputation": 28873518041457,
+        "rshares": 37142606344,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2121707918,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 445666416057,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 7882724055,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 458312922,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 40639591868,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 44947602150,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2101177796483,
+        "rshares": 10773706113,
+        "voter": "auction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 280810708,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 65714200324,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 395691115781,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 19967142582,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 225818220743,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 38015209547,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 335467671780,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 53448755207,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 71569876818,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5161699544,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "1500",
+        "reputation": 9956734090708,
+        "rshares": 6151465178,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 17882004940,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 8566068032,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 19226458378,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 327702249872,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 16313568490,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 18154720133,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2906973892,
+        "rshares": 241530255,
+        "voter": "strawhat"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3366379465325,
+        "rshares": 4161841852,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2316539289485,
+        "rshares": 5150808369,
+        "voter": "omotherhen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675716972978,
+        "rshares": 239360899,
+        "voter": "cryptochannel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 153907445339,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 30835503316,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 856020810508,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 391416,
+        "rshares": 238363664,
+        "voter": "honey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17820220099,
+        "rshares": 1340898063,
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76870083894,
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 381456632,
+        "voter": "aizen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3276035841,
+        "voter": "aizen41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 931013010,
+        "voter": "aizen42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3171631768,
+        "voter": "aizen46"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 868109476,
+        "voter": "aizen47"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 212810750,
+        "voter": "aizen48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 110962425,
+        "voter": "aizen49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 97696532174,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90036233,
+        "rshares": 246104638,
+        "voter": "cryptosaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 921711726,
+        "voter": "aizen51"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978354715302,
+        "rshares": 13653767629,
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1353763544149,
+        "voter": "renohq"
+      },
+      {
+        "percent": "5000",
+        "reputation": 727668809534,
+        "rshares": 2765010944,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 446432832,
+        "voter": "aizen43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 66287180,
+        "voter": "aizen44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 10695179211,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747648248,
+        "voter": "aizen54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 111908928636,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 19288488602,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 160850934832,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 42276543842,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1480728995,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1454993610,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 90553059,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 17990323962,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 880687800,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 61949507807,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "8600",
+        "reputation": 2821855573125,
+        "rshares": 4892197609,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13787047411,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 12345609219,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 270857691200,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34325541297,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 180469261,
+        "voter": "snowden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4596219060,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1855825,
+        "rshares": 723428928,
+        "voter": "danielkt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 19900789412,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2397831198773,
+        "rshares": 886096723,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3779872763249,
+        "rshares": 19945257369,
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24468062852,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 11088965046,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2432538531735,
+        "rshares": 10154373506,
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 73111465870,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 251232492048,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 79440114599,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13606265678,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2503362754,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 3219182214,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 228791895,
+        "voter": "aizen52"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 93405654863,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1454011802,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 19794533144,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 7073326293,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 399155504341,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2347565634738,
+        "rshares": 10692202188,
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 44506668554,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6302198812,
+        "rshares": 2320943285,
+        "voter": "alienation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7311089232,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 39856415994,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 84865861,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 127837565146,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1649084795,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5717595586,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1506582089,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 14745205841,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 186386428,
+        "voter": "aizen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2554645343,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 154958749697,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 6031480011,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9709066337974,
+        "rshares": 28652737724,
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57820199104417,
+        "rshares": 159383275378,
+        "voter": "opheliafu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 5706185290,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 355518481407,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 144440787,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 309671076646,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3362355137,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 70392249112,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 33480676135,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 15391105159,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7311842917,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 10894279417,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9792777,
+        "rshares": 154004837,
+        "voter": "bsgomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 19488293372,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 6607597748,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3411318889,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3695379442,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 28780986199,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5364413820,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 9502163734,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 34275659089,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54051855495,
+        "rshares": 138565418,
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 897000392259,
+        "rshares": 1559066068,
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485438151743,
+        "rshares": 999607842,
+        "voter": "hemp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115967854,
+        "voter": "flowers"
+      },
+      {
+        "percent": "1000",
+        "reputation": 14988694886527,
+        "rshares": 43068433734,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 421627949,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1019161611086,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6570213787,
+        "rshares": 117630527,
+        "voter": "pokemon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 6499444080,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 30772750136,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 1344238972,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 643614590,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 24289385146,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 85132623,
+        "voter": "steemchain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80530859,
+        "voter": "whalepool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 21875497725,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114879685,
+        "voter": "nikhil.jalan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 36336480526,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 77155168,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1849155799051,
+        "rshares": 5600086816,
+        "voter": "crypto.owl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237377384906,
+        "rshares": 11182026678,
+        "voter": "meister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 3917672567,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131194405091,
+        "rshares": 3314012361,
+        "voter": "overlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 14453665788,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1376683720,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 483926264,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 58190631451,
+        "rshares": 3634633643,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 639790724,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 25137854994,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "9000",
+        "reputation": 7172977970558,
+        "rshares": 3246871665,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230437999,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 37675171572,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1403820143,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2918428102,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125619617814,
+        "rshares": 2885781511,
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 44813632062,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27855371709889,
+        "rshares": 64689794435,
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82005068,
+        "voter": "aizen53"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214076084605,
+        "rshares": 257984286,
+        "voter": "nat4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3821319838891,
+        "rshares": 21665639579,
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 26626040613,
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 249991506876,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 16823988904,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2720074905,
+        "rshares": 112695119,
+        "voter": "topten"
+      },
+      {
+        "percent": "100",
+        "reputation": 2889656462700,
+        "rshares": 174462677,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5061223849,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 118572345435,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1075326746,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92225510961,
+        "rshares": 134257660,
+        "voter": "yulia98"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3278418228934,
+        "rshares": 512229631,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 67383102814,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 439936849,
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 737719441,
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1502677319,
+        "voter": "aizen"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1275505236,
+        "rshares": 1838428768,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234650215,
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1733155392278,
+        "rshares": 1506382994,
+        "voter": "littlekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 540254121,
+        "voter": "bento01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 887519432562,
+        "rshares": 1617252822,
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 6879897081,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 406607053254,
+        "rshares": 240147448,
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 7718438607,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 15600032896,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 9904956205,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1304858257671,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61374667649460,
+        "rshares": 239894523987,
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 876981522843,
+        "rshares": 4997496711,
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63989651,
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24850740061,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63982460,
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8108015998,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65227360,
+        "voter": "karlmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7564464865541,
+        "rshares": 21691669911,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "100",
+        "reputation": 97123078718,
+        "rshares": 413573288,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 25056718038,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9995923586884,
+        "rshares": 22364495731,
+        "voter": "amy-goodrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25035378506,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25044324887,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80176107,
+        "voter": "bento06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 43649602780,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 271623424030,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206355094166,
+        "rshares": 10641150587,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19073889900896,
+        "rshares": 31639772578,
+        "voter": "kental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 5719416794,
+        "voter": "brendio"
+      },
+      {
+        "percent": "8758",
+        "reputation": 1751717743,
+        "rshares": 14114771826,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7989197237827,
+        "rshares": 27114932121,
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 71611881611,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 62863662405,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 81456989570,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 63541793,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 997653189,
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4182597212,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6908371363,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 99519846,
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63207020,
+        "voter": "michellek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25040020923,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25037838253,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25034898883,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3524384056312,
+        "rshares": 2286209152,
+        "voter": "armen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25031499926,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7468131680,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25027247249,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25025158791,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3585887866,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 94691370060,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 102579063,
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3016325652890,
+        "rshares": 149678978773,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475920141542,
+        "rshares": 361231093,
+        "voter": "riosparada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1405322819,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 19407094003,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11131912532,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 93053795287,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5585704636,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1745875875,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 58773515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4804440310,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 79996671136,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 10574300028,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 2303202060,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 971138,
+        "rshares": 192492931,
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 42833125455,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 246968635,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15018520093808,
+        "rshares": 47227266135,
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 4098512589,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 175727857,
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61529559,
+        "voter": "diamonds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 9909178760,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62707787,
+        "voter": "bitpharmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58419319,
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1024594451,
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 814567891,
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 228177755,
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "2000",
+        "reputation": 4130836907564,
+        "rshares": 3606419075,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 77724719,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 725661119,
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 3745978172,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54581430,
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 29602528441,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 67627457,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1154260617,
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62240819,
+        "voter": "steembook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 89074525380,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1198508893,
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 428894446,
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80723007188,
+        "rshares": 1949500307,
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 104704717,
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 649554683,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 255827992,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 878611728,
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 77220767,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 5290162531,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34134092,
+        "rshares": 61654952,
+        "voter": "ip0000h"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 2089597288,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1878677136,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7297087216805,
+        "rshares": 8572094405,
+        "voter": "pjheinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 56598010,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56591855,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 683247723611,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60945251,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 6569101287,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "1200",
+        "reputation": 44529428534261,
+        "rshares": 13150299017,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 9354302631,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "5000",
+        "reputation": 64878458203,
+        "rshares": 728677907,
+        "voter": "alexma3x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 479158342,
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 14474085661,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40099820081,
+        "rshares": 71226461,
+        "voter": "qq553937961"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 9579977522,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 3032070551,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25018371379,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 90960102,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 283688365,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 531925070,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 190798856,
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4536175742,
+        "rshares": 59088771,
+        "voter": "bitchplease"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 75951756252,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 82470613721,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 16095716680,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 26464861067,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4775359646971,
+        "rshares": 5533635387,
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824556048979,
+        "rshares": 3897524388,
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 261774778267,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13199428530,
+        "rshares": 31288709012,
+        "voter": "dmesquita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4403814537511,
+        "rshares": 17557215770,
+        "voter": "takethecannoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565688,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 156093246,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 1829064790,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 1912895892,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 3802138240,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 110179538,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 99514120,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 19007087827,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60022998820,
+        "rshares": 3701556243,
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 5352351403,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 24152896019,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2226328838,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573591254,
+        "rshares": 55150378,
+        "voter": "thomas777young"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 9593352289,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78138793415,
+        "rshares": 77740420,
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4922272667302,
+        "rshares": 5356548931,
+        "voter": "nadin3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1619975669,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 1566895978,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 179477906,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7129013408,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6795759787822,
+        "rshares": 10479352164,
+        "voter": "aggroed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 56883857,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 133209914,
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11352667511018,
+        "rshares": 14423440417,
+        "voter": "canadian-coconut"
+      },
+      {
+        "percent": "100",
+        "reputation": 837791549130,
+        "rshares": 905236332,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 5429637055,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 15543585422,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 63269642,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 504557419,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3785412243,
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11937003273,
+        "rshares": 57710105,
+        "voter": "freesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71073572115,
+        "rshares": 83379327,
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7402303856,
+        "rshares": 2051253805,
+        "voter": "grm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10024959969,
+        "rshares": 55955579,
+        "voter": "loveon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5671555108,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1354778162586,
+        "rshares": 834930684,
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 11320950885,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 646418000,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 1017505261,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 21842253555,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229065282410,
+        "rshares": 2229841944,
+        "voter": "richhersey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51223240,
+        "rshares": 347968139,
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1191155622,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 15941029835,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16147984004,
+        "rshares": 58058391,
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 174036044,
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 193759655472,
+        "rshares": 120146888,
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 453412386,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 973435439155,
+        "rshares": 421588284,
+        "voter": "cemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2671425017,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 7158623890,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 120399254,
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 2437912628,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 674315064,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 77397417,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 371138203729,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8671572242235,
+        "rshares": 7837930769,
+        "voter": "mariandavp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 53065445947,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "100",
+        "reputation": 26215514,
+        "rshares": 904251449,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50196187,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451285776301,
+        "rshares": 2750817128,
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1339289907,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4753911561,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 987466162,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5464997821,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50569452,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50514225,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327349908318,
+        "rshares": 2738480662,
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1485682041,
+        "rshares": 1626595698,
+        "voter": "stuartsandford"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 240962108,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 50179535,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726647930107,
+        "rshares": 3673561533,
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1997809158,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 143406202,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 27660540881,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 2397740936,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50376689,
+        "voter": "timothy.sykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 65509794,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 1051770193,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 11419406013,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 806042,
+        "rshares": 52618436,
+        "voter": "joep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50263480,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 276373106,
+        "voter": "robotev1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4809049819,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99160090205,
+        "rshares": 199821196,
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51615039,
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1013164758868,
+        "rshares": 373150559,
+        "voter": "borishaifa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 971319419022,
+        "rshares": 840638307,
+        "voter": "annesaya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51232949,
+        "voter": "dragonice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51230296,
+        "voter": "steemq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53224704,
+        "rshares": 51185277,
+        "voter": "zizzed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39516054142,
+        "rshares": 59814831,
+        "voter": "teo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1693172493,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50873654,
+        "voter": "palladium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1625136432,
+        "rshares": 4983033261,
+        "voter": "donchate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50538694,
+        "voter": "fenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16681034811,
+        "rshares": 3631166793,
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 117880628,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3603886924,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192046357763,
+        "rshares": 361011252,
+        "voter": "julia26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162925257,
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675589247639,
+        "rshares": 1384715979,
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 162274563,
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4857670,
+        "rshares": 155476058,
+        "voter": "ndea30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155469045,
+        "voter": "domenico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161205518,
+        "voter": "acute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161179339,
+        "voter": "bethesda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157931180,
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157799009,
+        "voter": "photorealistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154649753,
+        "voter": "serena199"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157745750,
+        "voter": "digitalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154619387,
+        "voter": "gia7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 130504358563,
+        "rshares": 2437573030,
+        "voter": "dresden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154157014,
+        "voter": "richie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154096626,
+        "voter": "coraline88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157182398,
+        "voter": "planet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157176058,
+        "voter": "cybergirls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153838109,
+        "voter": "harlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153800757,
+        "voter": "yanuel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118310383,
+        "rshares": 153751482,
+        "voter": "daritza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156837244,
+        "voter": "capcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156411729,
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156194471,
+        "voter": "stimmt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159164412,
+        "voter": "disneypixar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446608067,
+        "rshares": 3795879512,
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2482879,
+        "rshares": 158904262,
+        "voter": "animaltooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2652776,
+        "rshares": 158842356,
+        "voter": "sixthsense"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1765060868967,
+        "rshares": 306773356,
+        "voter": "modernbukowski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155493039,
+        "voter": "steem-wallet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158486055,
+        "voter": "zendesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251629303655,
+        "rshares": 13292298415,
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79770443777,
+        "rshares": 158308204,
+        "voter": "budgiebee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 584475717,
+        "rshares": 118460104,
+        "voter": "dealzgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155096689,
+        "voter": "zapster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3828608244,
+        "rshares": 288371810,
+        "voter": "wakeupworldnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157826099,
+        "voter": "busy.pay"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -9393005213,
+        "rshares": -157775128,
+        "voter": "ekremi12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 139118281,
+        "voter": "storage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154575867,
+        "voter": "cbd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154575867,
+        "voter": "junk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154575867,
+        "voter": "hug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154575867,
+        "voter": "bearcub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154575839,
+        "voter": "cyberpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124988927947,
+        "rshares": 157743184,
+        "voter": "antaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 208518915422,
+        "rshares": 157593613,
+        "voter": "steemdesigner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 528965668,
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2233935729440,
+        "rshares": 3691374587,
+        "voter": "anritco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2361914,
+        "rshares": 157332453,
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18155912,
+        "rshares": 157167161,
+        "voter": "lisa2999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153827206,
+        "voter": "keisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116908677,
+        "voter": "blackmarket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 135367916,
+        "voter": "gifts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153827178,
+        "voter": "int"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15827302113,
+        "rshares": 157376800,
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 107664572,
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156048961,
+        "voter": "alexfein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 129371412,
+        "voter": "steemtrail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155709738,
+        "voter": "theoryloader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 152585751,
+        "voter": "jlsuarez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7832435,
+        "rshares": 152350560,
+        "voter": "eastcompton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45732247,
+        "rshares": 142929185,
+        "voter": "seth21smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21907856,
+        "rshares": 145963713,
+        "voter": "adarcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86373454182,
+        "rshares": 136784207,
+        "voter": "pathtomydream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148916483,
+        "voter": "bromejs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2798971603,
+        "rshares": 124602411,
+        "voter": "paulocouto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 248397790,
+        "rshares": 151807232,
+        "voter": "squadron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148766242,
+        "voter": "clovick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 453683074,
+        "rshares": 151754313,
+        "voter": "dek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151525581,
+        "voter": "kevinfoesenek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153200332,
+        "voter": "emgavin"
+      }
+    ],
+    "author": "roelandp",
+    "author_reputation": 57643429300793,
+    "beneficiaries": [],
+    "body": "<b>About <a href=\"https://steemit.com/boredom/@roelandp/embrace-boredom-a-little-story-about-getting-into-the-zen-and-dish-washing\">5 weeks ago when I was doing the dishes</a> it suddenly popped up to me. _\"Steemit is great, how cool would it be if many steemians from all over the world would meet in real life\"_. And so the idea of SteemFest (working title SteemCon) was born.</b>\n\n<sup>Tbh the whole Steemit launch and vibe reminded me of the early days of Twitter, where you got to know so many new people in such short time, but only online, and when we finally met at a meetup it was epic. I still have many friends and acquaintances from that period. </sup>\n\nThis idea of a global \"conference\" to enable steemians to meetup kept 'bugging' me and I started talking to some people from the community on Steemit.chat how they would feel about this... Overall the response was: _\"Great! when can i book my flight?\"_ So i knew I hit somewhat of a \"want\" here...\n\nI really like the local meetups and they really add value to the Steem ecosystem but for SteemFest the \"vision\" is to bring many steemians from all over the world together to nurture new IRL relationships, learn from each other and just have great fun.\n\nSince this idea was \"kinda big\" from the get go I wanted to have official endorsement by Steemit HQ in the USA so I reached out to @ned on Steemit.chat with the following: \n\n<table><tr><td>\n<code>\n\n\nNed, I'm dabbling with the idea of having some kind of bigger get-together... Like a conference but not too corporate but <b>try to embrace the Steemit frontpage feel in a day full of diverse content... Sort of Ted X meets Pecha Kucha</b> etc. Best of confs (imho) is to meet other people and most fun I recall was meeting twitter people for the first time IRL... <br>\nAmsterdam could be a fitting place, but I am biased... but might be nice to cut ties from home for a few days \ud83d\ude42 Have you guys thought about something like this already? <br>\n<a href=\"https://steemit.com/introduceyourself/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp\">Before coding I studied Hospitality Management, worked at a festival for a couple of years, and have afterwards organized a couple of hackathons</a> (organizing 1 at the moment too). \n\nThink about it...!\n</code>\n</td></tr></table>\n\nAnd yes, he was very enthusiastic about the idea. So from there my thoughts where: _Wow, this can just really happen!_\n\n<b>And so it will! </b>\nReally proud to pre-announce this! So you can save the date for:\n<hr><h1>SteemFest 2016</h1><h2>11 - 12 - 13 November<br />\nAmsterdam, The Netherlands</h2><hr>\n\nhttps://s13.postimg.org/rmwo22hw7/steem_Fest_poster_playground.jpg\n(Yessss  @cass is officially aboard ofcourse :D with great designs!)\n\n<h3>What will it be all about?</h3>Steemit is different compared to other 'Blockchains'. You might have heard the term \"Blogging is the new mining\", and yes Steemit is a great mix of diverse thinkers, technophiles, libertarians, crypto enthusiasts and creative people in general. \n\n<b>The conference global program schedule will be as followed:</b>\n\n<h4>Friday 11 November (Day 0): </h4> _People fly/travel to Amsterdam_. Night drinks in the official conference hotel (package deal will be announced asap) Volkshotel.nl\n\n<h4>Saturday 12 November (Day 1): </h4> _Plenary Conference_. In the morning we go by boats from the Volkshotel to the Conference Venue in the city centre. <b>The conference will be as diverse as Steemit's Frontpage. 20 minute pecha kucha / Ted X style presentations.</b> Part of the program is already set, and the rest will be open for your suggestion (soon more on that). In the second room workshops, and well have Lunch, Dinner and a Night party (with Steem Djs) in this place too.\n\nNote: <b>This day will be livestreamed and recorded, so no one will miss out</b> (well,... Amsterdam of course), even if you somehow can't make it!\n\n<h4>Sunday 13 November (Day 3):</h4>_Unconference day_, called the \"Red Light Mashup\" where we are able to enjoy a \"late sunday breakfast\" in the hotel (until noon) and go on a longer boat tour along the canals to the oldest part of Amsterdam, which won't be that much about XXX in on a sunday during daytime and you can 'hook'up with fellow steemians as a diverse set of activities is planned nearby for you to pick: Guided tours, climb the Old Church tower, visit a weird attic museum on the canals, follow a workshop, grab a coffee, explore side street surprises and we have a base hangout (looking at a former arcade hall at the moment), all within the vicinity of one-other. This lazy sunday afternoon is followed by a closing dinner and drinks in the Volkshotel.\n\n<h3>Costs $$$ and Wins. How does 1000 Steem Power sound to you?</h3>So yes: drinks, lunches, dinners, open bars, conference venues that must cost a shitload right? \n\nThe idea of this event is also to show the power of Steemit and next to support from Steemit HQ, quite some whales are supporting SteemFest and therefore help lower the ticket price a great bunch for SteemFest to make it as accessible as possible for any Steemian to join. \n\nVery soon (this week) we will communicate the conference ticket price. We are even working on a 'Steem Travel Reimbursement Fund' where you can apply to get part of your trip paid by this fund, based on miles travelled!\n\n<b>What we can already say is that Steemit HQ has this supercool (!!!) offer for all Steemians showing up  (with a ticket (available soon)) in Amsterdam: 1000 SteemPower onto your account! </b>\n\nWe have also bargained a great package deal for the <a href=\"http://volkshotel.nl\">Volkshotel</a> for the given dates and more info will be published on that soon. This will be the official hotel and key events (opening drinks, closing dinner, boat departures) will happen from here, so its great to book a room there. Soon more info. We have blocked 130 rooms for the conference, so that would mean the hotel would be practically owned by Steem people. LOL.\n\n<h3>What can you do now already?</h3>\n1. <b>Save 11-12-13 November 2016 in your agenda</b> and book a flight / train / start arranging visas!\n2. <b>Follow @steemfest the official account for SteemFest</b>\n3. <b>Signup via <a href=\"http://steemfest.com\">SteemFest.com</a></b>\n\n_Wait with booking a hotel_ until we announce our hotel package and ticket price. \n\n<h3>_Soon_ to be published on @steemfest</h3>\n- Conference Ticket price (trying to make it 1/4 of the costprice per person)\n- Hotel package details for the official conference venue \"<a href=\"http://volkshotel.nl\">Volkshotel</a>\" (130 rooms blocked)\n- Infos on the _Travel Reimbursement Fund_ to claim back (part of your) travel costs\n- First names and 'call for program ideas'\n\nFinancially I can say is that this event will be run of @steemfest which will turn into a multisignature account very soon (before sponsor money will be put on the account). More info on that soon, but you can already check @xeroc's recent posts if you want to learn more about multi-signature steem accounts.\n\n<h2>All proceedings from this post will be transferred to the @steemfest account and help fund SteemFest 1</h2>",
+    "body_length": 7146,
+    "cashout_time": "2016-09-19T22:15:09",
+    "category": "steemfest",
+    "children": 160,
+    "created": "2016-09-12T22:15:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemfest\",\"steemit\",\"steem\",\"conference\",\"amsterdam\"],\"users\":[\"ned\",\"cass\",\"steemfest\",\"xeroc\"],\"image\":[\"https://s13.postimg.org/rmwo22hw7/steem_Fest_poster_playground.jpg\"],\"links\":[\"https://steemit.com/boredom/@roelandp/embrace-boredom-a-little-story-about-getting-into-the-zen-and-dish-washing\",\"https://steemit.com/introduceyourself/@roelandp/my-proper-introduceyourself-hello-i-m-roelandp\",\"http://volkshotel.nl\",\"http://steemfest.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T22:18:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 437372887623984,
+    "parent_author": "",
+    "parent_permlink": "steemfest",
+    "pending_payout_value": "11198.576 HBD",
+    "percent_hbd": 10000,
+    "permlink": "save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl",
+    "post_id": 1225091,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[save the date] SteemFest 1 - 11/12/13 November 2016 - Amsterdam, NL",
+    "title": "[save the date] SteemFest 1 - 11/12/13 November 2016 - Amsterdam, NL",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemfest/@roelandp/save-the-date-steemfest-1-11-12-13-november-2016-amsterdam-nl"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28491948185081,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2335389073809,
+        "voter": "fminerten"
+      },
+      {
+        "percent": "0",
+        "reputation": 446491524573,
+        "rshares": 769023873,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10062655,
+        "rshares": 253972738407,
+        "voter": "fmooo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7537919362014,
+        "voter": "steempty"
+      },
+      {
+        "percent": "100",
+        "reputation": 32455846463901,
+        "rshares": 644738319706,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28854877817,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 17309122987533,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14661315769715,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 37843941273929,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1133069631465,
+        "rshares": 31846016835584,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 35671630677045,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7085295375194,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2874445432443,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6145554009686,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9016260471946,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3183112492799,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223370422303,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5839398288147,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 377387227766,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6855027639798,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "5500",
+        "reputation": 16685610555705,
+        "rshares": 11539124623420,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 113229928926,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 33307827345,
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 935398055643,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 790314875205,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "300",
+        "reputation": 36749432321730,
+        "rshares": 38014593246,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314383371770,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26776677752355,
+        "rshares": 142457556177,
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2468539488,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 2015275654813,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2996002946,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 567264912,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3652788632540,
+        "voter": "complexring"
+      },
+      {
+        "percent": "4700",
+        "reputation": 31405352060596,
+        "rshares": 2778025237009,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 41834504786,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1323295404,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170640910,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 136064409295,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 31255480098,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 56420427341,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 21635638792,
+        "voter": "lee3"
+      },
+      {
+        "percent": "100",
+        "reputation": 83941319998,
+        "rshares": 108653496277,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1103266418548,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 342922310367,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 72295502766,
+        "voter": "vip"
+      },
+      {
+        "percent": "9700",
+        "reputation": 82600290949846,
+        "rshares": 819073434426,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 252013681076,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 9017296731,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 11946225183,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 492323222,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 716601913,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2619027587683,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 18669898870,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 44105800633,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 94216559894,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 354716781559,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 26669398602,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230037599,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 19394879350,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9041369176,
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194727158609,
+        "rshares": 1261450616,
+        "voter": "pstrident"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1558881665,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 22663466478,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1339573287588,
+        "rshares": 10271411415,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 418993962462,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 116313551950,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15484783543,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 23697180464,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 596707334180,
+        "rshares": 3980653569,
+        "voter": "ppitonak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 90122533468,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2965778688,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 5386719054,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8284357450,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23979714471574,
+        "rshares": 185048934927,
+        "voter": "bleepcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 23204359427,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2766508550901,
+        "rshares": 29123857192,
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 483152352,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5639122835,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11372617606769,
+        "rshares": 115612591144,
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423408785434,
+        "rshares": 411934547489,
+        "voter": "bitacer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46486386193,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2134560502,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 344078198076,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855178912028,
+        "rshares": 7122387198,
+        "voter": "taoofsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5215828628480,
+        "rshares": 8580770717,
+        "voter": "generalizethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 254132895141,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3342907840,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4599317604,
+        "rshares": 2164745847,
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2009920367,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79488061175,
+        "rshares": 39851552003,
+        "voter": "shagda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6703300627334,
+        "rshares": 16838470622,
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 9616772558,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 73767981753,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5498455770,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1346484060,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 58992402649,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": -360088797540,
+        "rshares": 1478055908,
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178873113861,
+        "rshares": 4702449999,
+        "voter": "xav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1399620602,
+        "voter": "coar"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1451244461,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19195948463,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 413559341,
+        "voter": "viet-ngo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 41379392785,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16325478562,
+        "rshares": 1703064758,
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1737651089,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7087964556647,
+        "rshares": 73756894677,
+        "voter": "kennyrowe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 284638006,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3144640411,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 346429583563,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29597937618,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97233234488,
+        "rshares": 417817338,
+        "voter": "argsolver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775122446878,
+        "rshares": 48191210281,
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 18708488245,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 537523962057,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 292841176,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 95125372242,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2272340357792,
+        "rshares": 218111827316,
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 202957999688,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329767399573,
+        "rshares": 1645357112,
+        "voter": "arskiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5756093577230,
+        "rshares": 116877698689,
+        "voter": "loveofprofit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 95985729250,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 184128290548,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10367032406,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 400302600,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 32037243217,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 473402236,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 154656119780,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57302509663422,
+        "rshares": 386331156879,
+        "voter": "the-alien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 290189917167,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14734236654427,
+        "rshares": 39107988622,
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55062632499,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 18538545509,
+        "voter": "samether"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -577089724709,
+        "rshares": -43939196830,
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 62320436553,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816177,
+        "rshares": 2908355651,
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 3892379945,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 76726510652,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1823741139572,
+        "rshares": 2985433139,
+        "voter": "ola-haukland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 152272635210,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 44480116252,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13377752170,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398461524,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 78734595421,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19574669,
+        "rshares": 727887271,
+        "voter": "menace.coin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 654109848,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1219887702,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 3930605017,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7647810585727,
+        "rshares": 29431483693,
+        "voter": "joelkatz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 41966723743,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 96675381279,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 3714118085,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 194942153412,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "9900",
+        "reputation": 48542961182602,
+        "rshares": 1450871177480,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663156465,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19196715690053,
+        "rshares": 66341454434,
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8450404673,
+        "rshares": 304955387,
+        "voter": "oleim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2797012370034,
+        "rshares": 1514161114,
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 216898475237,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 26443469191,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 739465956,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 34892494699,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 24548710514,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 30032749687,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012910736351,
+        "rshares": 10527048441,
+        "voter": "vladon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44591565205,
+        "rshares": 31276212589,
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15948380503,
+        "rshares": 20855598487,
+        "voter": "niliano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 3781209659,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 70684007986,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 5151537284,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 5151147287,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 393454479815,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18388231908063,
+        "rshares": 83190211574,
+        "voter": "blocktalk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1841038867,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17574929980,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 6264406429,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6562084749,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 55630120628,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 17651204278,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6053064579803,
+        "rshares": 25962920064,
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 13639564439,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 801199558323,
+        "rshares": 1225170601,
+        "voter": "fonzerrellie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3867299118850,
+        "rshares": 13937988521,
+        "voter": "akado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 336297746,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4368888143,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 4090523115,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 262266700,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 127433544240,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 7701781388,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110873902249,
+        "rshares": 4783965778,
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 266349543845,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4716798929,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11666102,
+        "rshares": 761563201,
+        "voter": "stalnionis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 2098337565,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "0",
+        "reputation": 1959446497877,
+        "rshares": 93048320,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 4139673649,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 250310044,
+        "voter": "jn024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 668633470533,
+        "rshares": 3631731140,
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4066839697461,
+        "rshares": 9863745101,
+        "voter": "getssidetracked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 6985662723,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 17767256479,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 21098879051,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 249925611,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 1684014369,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 106076972638,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51582783676,
+        "rshares": 9107229905,
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 24035598380,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 5644023807,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 4369252516,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1979023426046,
+        "rshares": 7464583856,
+        "voter": "sillyfilthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20417427205,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1949550312939,
+        "rshares": 376848368,
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192903029542,
+        "rshares": 253745858,
+        "voter": "bitnation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 123462305695,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570848703227,
+        "rshares": 12932343539,
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 4873699343,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91531121710,
+        "rshares": 290611180,
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 65905815219,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 252012825,
+        "voter": "cryptid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17910661583686,
+        "rshares": 211326450791,
+        "voter": "guerrint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 4600206551,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 490084881,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 31572013272,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 328251913,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 279180664,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36430343311,
+        "rshares": 331116160,
+        "voter": "linkku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 415946152,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1039837719,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 265940683567,
+        "rshares": 589197515,
+        "voter": "iamjmgx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 38500935552,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": -23813556107,
+        "rshares": 249477849,
+        "voter": "concave"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 39100935313,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46057798112,
+        "rshares": 249223280,
+        "voter": "leonalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 752262956946,
+        "rshares": 2831939062,
+        "voter": "kepo777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80099998580,
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138260010810,
+        "rshares": 103881225828,
+        "voter": "conspiracy-guy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11264574,
+        "rshares": 735351436,
+        "voter": "korneta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38421201873,
+        "rshares": 37312425087,
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223278762484,
+        "rshares": 12964275395,
+        "voter": "jazzka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10574593346,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978354715302,
+        "rshares": 13360466504,
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 107807940931,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549279741905,
+        "rshares": 10232321132,
+        "voter": "becerra18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47264506487,
+        "rshares": 1834917255,
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3209043458,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 19465926763,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6555717218,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41262623155,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 245149849,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 14991073706,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 302485212431,
+        "rshares": 542889321,
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2993850661147,
+        "rshares": 17625843355,
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "700",
+        "reputation": 25849925929525,
+        "rshares": 8952283616,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4593945180,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4124574932,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 2686633918,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 603936286451,
+        "rshares": 8002312708,
+        "voter": "ssjsasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3944099463,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15996540027,
+        "rshares": 244791595,
+        "voter": "lisadeboer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41464124225,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 117124263472,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6501376665,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 234379829569,
+        "rshares": 2469062281,
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 309970012640,
+        "rshares": 656078195,
+        "voter": "granin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 78889019157,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19449576987,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110677545707,
+        "rshares": 306348387,
+        "voter": "lioliomir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 756734123357,
+        "rshares": 1403659870,
+        "voter": "decrypt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 341238506547,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5410832727305,
+        "rshares": 34152605660,
+        "voter": "alexfortin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147722466499,
+        "rshares": 15504743786,
+        "voter": "gubbes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 11395824102,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81669523671,
+        "rshares": 267970892,
+        "voter": "medge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116026598668,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 2840645399,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 196800352745,
+        "rshares": 5502577296,
+        "voter": "r33drum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 6040214084,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205753119776,
+        "rshares": 2888746585,
+        "voter": "cashbandicoot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24870513211,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 59926281450,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 237023898,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 5989513477,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 12376124316,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 179196273146,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 73573832782,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9493199624,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277346650991,
+        "rshares": 406075645,
+        "voter": "danroseman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2348727450,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 216984975,
+        "voter": "ricardolucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7019901179,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1517806453887,
+        "rshares": 250267568,
+        "voter": "jza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 248144968,
+        "rshares": 240285537,
+        "voter": "coinrun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2504444195,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 109147085939,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17682694261,
+        "rshares": 230764863,
+        "voter": "mazzaneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 12600155383,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 1906083673,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 32088583721,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7291620508,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25830549400,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 55407549746,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314706128732,
+        "rshares": 419389841,
+        "voter": "bigedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3384146535,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 148525300554,
+        "rshares": 14661229813,
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 263231984,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 4795024069,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84104092489,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3096010079,
+        "rshares": 8685766116,
+        "voter": "piramida"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 601243388017,
+        "rshares": -1677935166,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1458768857,
+        "rshares": 239130940,
+        "voter": "flurablastin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 11399002586,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10159922334,
+        "rshares": 244791136,
+        "voter": "ragnarok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 1684121650,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 19950040691,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 152514663334,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 126870195,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 8322538338,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14469419872,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1369418111,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 32765263830,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 88939754,
+        "rshares": 119473644,
+        "voter": "thisischris225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 113405244,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 487683432,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1034196167,
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 24615545460,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8236751951,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7304524377,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 2623984996,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 12248854455,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10620466262,
+        "rshares": 4434198068,
+        "voter": "drako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 9461724597,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 51624227800,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5034293849,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 953304837,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118779815,
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 1901709746,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 10418924742,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172953944203,
+        "rshares": 1240350052,
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13264343611,
+        "rshares": 507211664,
+        "voter": "mephdxa21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361552742284,
+        "rshares": 120135983,
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 2236570764,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118387131,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 114054397,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 316141588490,
+        "rshares": 441571677,
+        "voter": "vanis"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19590958,
+        "rshares": 115964286,
+        "voter": "theleximus1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 137600184786,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 359207103,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1033295035454,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24394944,
+        "rshares": 118154645,
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 28141150594,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 146751860,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3252985828,
+        "rshares": 118173204,
+        "voter": "roslinpl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 32878858013,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 117996651,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4923448193,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211481192881,
+        "rshares": 658421795,
+        "voter": "cooper10510"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 46530176604,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35209974404,
+        "rshares": 116684095,
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327313183062,
+        "rshares": 1183318721,
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 101095537,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 6165371740,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 211677715438,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 189774281,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 13448674717,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1076239526,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4740064029,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4441797036,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 8367388073,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97517122081,
+        "rshares": 152534576,
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 459170283182,
+        "rshares": 290648727,
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1368931695,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 17488988290,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 36177519488,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73386813,
+        "rshares": 231269649,
+        "voter": "aleksandra28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 12139886030,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 613169861,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526503358940,
+        "rshares": 2413942266,
+        "voter": "anon.news"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2405047992,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230402080,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1277580129,
+        "rshares": 389417359,
+        "voter": "vadim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22504728466704,
+        "rshares": 62904955344,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 239266696,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3155521853,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3702085260958,
+        "rshares": 18569937087,
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30555958860,
+        "rshares": 5638531290,
+        "voter": "unseenuno"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 108632879,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11506198408,
+        "rshares": 115083433,
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 22722737459,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 723837341,
+        "voter": "djinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26059897,
+        "rshares": 111274604,
+        "voter": "peace77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27787545215,
+        "rshares": 146300502,
+        "voter": "borntowin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 224221645799,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2642781889634,
+        "rshares": 6361831397,
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 197930221096,
+        "rshares": 115836709,
+        "voter": "linklad13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 57817214351,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9160025467,
+        "rshares": 55944470815,
+        "voter": "trove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 1646540649,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 169718576,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692596113547,
+        "rshares": 120629144,
+        "voter": "pisteem01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 3907262027,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 1543136937,
+        "voter": "weenis"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2580067408929,
+        "rshares": -3912751573,
+        "voter": "spookypooky"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 4265214728001,
+        "rshares": -11111064311,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 685121070,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 5944949769,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1439465905530,
+        "rshares": 78410608832,
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4435124567,
+        "rshares": 109738278,
+        "voter": "jeffwood4office"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192578386836,
+        "rshares": 58248653,
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493258919,
+        "rshares": 65444875,
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 526827571643,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 15285809644,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5986362203385,
+        "rshares": 10166431213,
+        "voter": "lasvegasgirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 8714341012,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 17665793759,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8300135915,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8255174852,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4969230243,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16945948625,
+        "rshares": 69432094,
+        "voter": "rjarmon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 1354364342,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "5000",
+        "reputation": 124802744033,
+        "rshares": 3958915129,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3958897309,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3958885438,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "5000",
+        "reputation": 18027204457681,
+        "rshares": 9801693464,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111834001286,
+        "rshares": 1446696248,
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2117975069,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 267237960675,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1412252219445,
+        "rshares": 2593793851,
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 24216190808,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32372239,
+        "rshares": 64944453,
+        "voter": "play"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 10673639106,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2136142852031,
+        "rshares": 5022536529,
+        "voter": "aleksandraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 34141330055,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2369229878,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7330008664,
+        "rshares": 66162336,
+        "voter": "fbotha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 789433125,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1938969324440,
+        "rshares": 5435472901,
+        "voter": "jrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 63300522,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3209909513,
+        "rshares": 19962241247,
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85099309,
+        "rshares": 4845067603,
+        "voter": "lianbing"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3958548557,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3958536002,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3958527539,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3958503881,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6803868862,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3958485414,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64421544,
+        "voter": "useless"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3958463351,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4914371585,
+        "rshares": 63869394,
+        "voter": "ajareselde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95781718271,
+        "rshares": 64287099,
+        "voter": "sumee1313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3189570071,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 19943218830,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1960335073,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361409840466,
+        "rshares": 147294795,
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1056504274649,
+        "rshares": 8566344676,
+        "voter": "trending"
+      },
+      {
+        "percent": "10000",
+        "reputation": 236035899007,
+        "rshares": 180513020,
+        "voter": "darkunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98938671458,
+        "rshares": 97853188,
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3394759517,
+        "rshares": 5534757981,
+        "voter": "tannukas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7418993028,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 113166245,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98165336756,
+        "rshares": 89782930,
+        "voter": "jefflee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121552056346,
+        "rshares": 690065226,
+        "voter": "ezel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 298397221413,
+        "rshares": 121680194,
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 4395232293,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 21006063949,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23698656,
+        "rshares": 63534357,
+        "voter": "themrserhio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12969824499,
+        "rshares": 59488360,
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 204161047,
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63514042,
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 65486420,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1900541345,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 28283144452,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 328256060,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1762897311,
+        "rshares": 63616030,
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1163500041,
+        "rshares": 63203593,
+        "voter": "gargamel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8545875688,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 4831441172,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2461770643,
+        "rshares": 62006301,
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146043651936,
+        "voter": "ghwang2888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62965784,
+        "voter": "apsydium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16903801181,
+        "rshares": 7013888258,
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 489577513,
+        "rshares": 62914952,
+        "voter": "ccbison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 21978202143,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 169623708,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 513642753210,
+        "rshares": 63536274,
+        "voter": "willybot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 646216243,
+        "rshares": 62928860,
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10320676912,
+        "rshares": 62830022,
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19233086490,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 3495600728,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 167462543,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 606096537951,
+        "rshares": 760465830,
+        "voter": "kdugar"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2751128831351,
+        "rshares": -1885740862,
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1963988322727,
+        "rshares": 1351292011,
+        "voter": "pseudonymwriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 63963399,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 541334147,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": -752010553427,
+        "rshares": 1791378493,
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 6355609131,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 59927400,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2685807725,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 597889009267,
+        "rshares": 69558111,
+        "voter": "sarita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 62069775,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 337419230429,
+        "rshares": 218355610,
+        "voter": "wildwar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504842566410,
+        "rshares": 1326268544,
+        "voter": "nords"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191533186325,
+        "rshares": 63775214,
+        "voter": "laissezfairedr"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 62214076,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5297329962603,
+        "rshares": 4035295059,
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61773174,
+        "voter": "polyball"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465514128051,
+        "rshares": 86541852,
+        "voter": "teambitwala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516486135,
+        "rshares": 61728337,
+        "voter": "pbelavin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 68031139,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": -67270458057,
+        "rshares": 66000721,
+        "voter": "chicken1990"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 2089597288,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286385675205,
+        "rshares": 87692388,
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 54300455,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3701523,
+        "rshares": 59947540,
+        "voter": "pda11111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978686892,
+        "rshares": 61676853,
+        "voter": "leraakulenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 588775942,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 459498616258,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 5147968544,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 71513734,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230124017,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83638535,
+        "rshares": 60566656,
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1068083999,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 357607571,
+        "rshares": 59304146,
+        "voter": "xplice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 214290731,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 2746517544,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 2406385343,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1032399388,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36514411336,
+        "rshares": 71453032,
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15971567,
+        "rshares": 60204020,
+        "voter": "jhalde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 203275427,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 154555764,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 539814268751,
+        "rshares": 376001676,
+        "voter": "manicmidnight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 4201329781,
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 50510798,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 3953153747,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 53959064,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3956428199,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1678817657,
+        "rshares": 58812716,
+        "voter": "x5cc7fd68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 59648980,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59591505,
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 847904340711,
+        "rshares": 968938988,
+        "voter": "followmyvote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2860230615,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 59855735,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 59274142,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 428034348,
+        "rshares": 59086606,
+        "voter": "evavavoom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 16010979585,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 141721000,
+        "voter": "djohnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138707294,
+        "rshares": 58989135,
+        "voter": "gejoksch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1075269056,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 9150608728,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 69441445,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 21500216282,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58525745813,
+        "rshares": 58637398,
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6789442806,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2212826369,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 71169323,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2653009630,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 8000893923,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 53804048,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58743942,
+        "voter": "robind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14701563258,
+        "rshares": 77746646,
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1255927681,
+        "rshares": 59032754,
+        "voter": "andyseo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25773560575,
+        "rshares": 65468445,
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17390154,
+        "rshares": 58700943,
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58631508,
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58625501,
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 57369558,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3425358793,
+        "rshares": 57860340,
+        "voter": "vladimirperic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53098184238,
+        "rshares": 57259372,
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 60092482,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34004319054,
+        "rshares": 66067014,
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4346098256,
+        "rshares": 2529223442,
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1596951422,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 60086764,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 55320371,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53741835953,
+        "rshares": 197939179,
+        "voter": "zrc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118704463,
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58199924,
+        "voter": "theverywiseowl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77327834214,
+        "rshares": 89410093,
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 13964360957,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 391087206,
+        "voter": "celestial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13172247110,
+        "rshares": 60075109,
+        "voter": "allbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 931476355,
+        "rshares": 58270400,
+        "voter": "awareindeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 58895126,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 169640892,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 367284869879,
+        "rshares": 56919346,
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 58025713,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": -162294290155,
+        "rshares": 56857700,
+        "voter": "zein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1442187004,
+        "rshares": 58068998,
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 74076405,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 713159404291,
+        "rshares": 153933584,
+        "voter": "groovedigital"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 17676358821986,
+        "rshares": -1286952043,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1082135170,
+        "rshares": 57909399,
+        "voter": "starbuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57896578,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 61826880,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908980564,
+        "rshares": 57828337,
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 39484597553,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5296652630527,
+        "rshares": 17675131231,
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557688889,
+        "rshares": 56812654,
+        "voter": "cqdyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57729852,
+        "voter": "andrewkhor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 364408983,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 67601255,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 57664781,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57652422,
+        "voter": "patrickulrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 4560797950,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57626781,
+        "voter": "paulh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1199873999,
+        "voter": "kyronlahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 198034422,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 380730401,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17220881172,
+        "rshares": 60776041,
+        "voter": "pabich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4387200094,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599908904317,
+        "rshares": 147954143,
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 63597509,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 8550182378,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 58815096,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 145093296,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214277678030,
+        "rshares": 70392789,
+        "voter": "decentro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 57440888,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250024165462,
+        "rshares": 10203872162,
+        "voter": "lsparrish"
+      },
+      {
+        "percent": "5000",
+        "reputation": 85132342011,
+        "rshares": 3939737612,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 643838507,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 104678793,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7206813825,
+        "voter": "joscha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2147943423,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740011830,
+        "rshares": 57193795,
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 57192135,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736149094898,
+        "rshares": 877325912,
+        "voter": "epiphany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51013445,
+        "rshares": 57144489,
+        "voter": "darwilliam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304891800,
+        "rshares": 57136378,
+        "voter": "nicks"
+      },
+      {
+        "percent": "10000",
+        "reputation": -31006411688,
+        "rshares": 57322273,
+        "voter": "alysyaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 389060349,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14685550969,
+        "rshares": 55803065,
+        "voter": "ajaub1962"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 57080810,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 1370010161,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 57565305,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7306624703593,
+        "rshares": 55619206,
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20920557,
+        "rshares": 55612640,
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1246651487,
+        "rshares": 55749671,
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26970728857,
+        "rshares": 64483326,
+        "voter": "chance95"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1029594046,
+        "rshares": -56616688,
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1878118373,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1037555937,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 786648212,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56559977,
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124740159878,
+        "rshares": 56490705,
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 55340759,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 550680214413,
+        "rshares": 157637437,
+        "voter": "kevbonneau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972369433984,
+        "rshares": 2649813769,
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55305400,
+        "voter": "cubemonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4829079923,
+        "rshares": 57600218,
+        "voter": "irishphantom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56367137,
+        "voter": "shakimclark7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 309467100,
+        "rshares": 56356137,
+        "voter": "volsenvols"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45888815550,
+        "rshares": 57394051,
+        "voter": "justme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55025746,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3954457383539,
+        "rshares": 54993742,
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 1888513225,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8859041042380,
+        "rshares": 15954214842,
+        "voter": "natureofbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42790439089,
+        "rshares": 56823191,
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 59169115,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1749890,
+        "rshares": 55996505,
+        "voter": "roadie73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55959170,
+        "voter": "dirtyjr101"
+      },
+      {
+        "percent": "10000",
+        "reputation": -6734925555,
+        "rshares": 54839161,
+        "voter": "cyborg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 55903826,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37916979,
+        "rshares": 55881328,
+        "voter": "erixter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5202217,
+        "rshares": 55863107,
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110864068340,
+        "rshares": 72771670,
+        "voter": "powercouple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37531793657,
+        "rshares": 58937867,
+        "voter": "bobworks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 55155287,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34627330410,
+        "rshares": 65031439,
+        "voter": "ender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 54910567,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 55679663,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55676046,
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81557853,
+        "rshares": 55670413,
+        "voter": "thedesigner"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 4702037886,
+        "rshares": -55524391,
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 55171651,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396873747296,
+        "rshares": 54535722,
+        "voter": "skapart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9485427864,
+        "rshares": 54483594,
+        "voter": "j2washere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267108721,
+        "rshares": 761529483,
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55557437,
+        "voter": "prestonslove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 53433189,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138501388,
+        "rshares": 55498559,
+        "voter": "peteyates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55399836,
+        "voter": "labatyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 55343898,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 69851246,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55312090,
+        "voter": "opnmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91098207616,
+        "rshares": 53111729,
+        "voter": "crunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58659918189,
+        "rshares": 94868887,
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52969809,
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1824527596237,
+        "rshares": 52911110,
+        "voter": "forcestaff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3835867777,
+        "rshares": 55065602,
+        "voter": "hereisflaco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2638484095,
+        "rshares": 55470927,
+        "voter": "darryljones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51780266,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53918464,
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": -617605893390,
+        "rshares": 53917140,
+        "voter": "redone111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54987436,
+        "voter": "yogevblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 93233347,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1835121459272,
+        "rshares": 54939048,
+        "voter": "kato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1362597528,
+        "rshares": 54937602,
+        "voter": "annasophia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53854134,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705621100,
+        "rshares": 54925589,
+        "voter": "jpcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54920519,
+        "voter": "tankad0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146233604,
+        "voter": "dereremit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29099060923,
+        "rshares": 54834816,
+        "voter": "ripper234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 54833622,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20477968943,
+        "rshares": 52657102,
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 323012228,
+        "rshares": 54793437,
+        "voter": "bahalouati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 54763174,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51488252,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50387158,
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54504919,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54666127,
+        "voter": "otis13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53589726,
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641341984,
+        "rshares": 54658188,
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52504270,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 54646027,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50351227,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54626102,
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54604880,
+        "voter": "damickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 50319970,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 50307404,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -304515584476,
+        "rshares": 52447972,
+        "voter": "olivianakano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 507964430,
+        "rshares": 50305873,
+        "voter": "steemninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54563126,
+        "voter": "danyalos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122191520146,
+        "rshares": 53486763,
+        "voter": "ivanba12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54506784,
+        "voter": "tokyodesu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269520578215,
+        "rshares": 54492546,
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54481723,
+        "voter": "megaminx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33107217,
+        "rshares": 54476490,
+        "voter": "adpt2apocalypse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151738150,
+        "rshares": 54471695,
+        "voter": "goldenera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53400711,
+        "voter": "nancycoroa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7517642,
+        "rshares": 53387774,
+        "voter": "ginoside021"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53387047,
+        "voter": "licegra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51951433,
+        "rshares": 53381371,
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54445293,
+        "voter": "kimjubo"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -53377227,
+        "voter": "icykate0623"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53365070,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": -141407968658,
+        "rshares": 54429912,
+        "voter": "promaxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54420285,
+        "voter": "swisswatcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793222,
+        "rshares": 54401708,
+        "voter": "moshilhaiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54399903,
+        "voter": "donzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 252269790,
+        "rshares": 54391297,
+        "voter": "ladyboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54390845,
+        "voter": "pampers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 783047,
+        "rshares": 50115023,
+        "voter": "bik1980"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54364496,
+        "voter": "tweek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40178403,
+        "rshares": 54364415,
+        "voter": "sai143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 832769,
+        "rshares": 54363190,
+        "voter": "simongb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54353696,
+        "voter": "fortunaforall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54350581,
+        "voter": "greinsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54345163,
+        "voter": "mellisantombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 932570039,
+        "rshares": 54344083,
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950372517145,
+        "rshares": 1050379429,
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54302024,
+        "voter": "gigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13549234,
+        "rshares": 54266754,
+        "voter": "greensmurf45"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 52657220,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3652443205,
+        "rshares": 51566258,
+        "voter": "cgfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176228976143,
+        "rshares": 50427453,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 828920570,
+        "rshares": 50799557,
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 51077428,
+        "voter": "arnebolen"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50326964582800,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"https://i.imgsafe.org/35c3896fbe.jpg\" width=\"400\" height=\"386\"/></p>\n<p>Hey All!&nbsp;</p>\n<p>I'm Charlie Shrem, Bitcoin Pioneer and founder of one of the earliest and largest Bitcoin companies BitInstant. I also founded the Bitcoin Foundation and served as its first Vice Chairman before stepping down the day after my arrest. Since then I've consulted for dozens of crypto companies, public and private, and since my release from prison, working on my own stealth project.&nbsp;</p>\n<p>Been hearing a lot of great things about Steemit, and checking it out :)&nbsp;</p>\n<p>Feel free to post some questions, I will try to answer. In the near future I will likely do an AMA here!&nbsp;</p>\n<p>Verification:&nbsp;</p>\n<blockquote>\u2014 Checking out Steemit! Verification - Charlie Shrem (@CharlieShrem) <a href=\"https://twitter.com/CharlieShrem/status/765619829109772288\">August 16, 2016 &nbsp;</a><a href=\"https://t.co/ZmVtaf09QL\">https://t.co/ZmVtaf09QL</a></blockquote>\n<p>Here is an except from my recent blog post!&nbsp;</p>\n<blockquote>A few weeks ago I was released from Lewisburg FPC. I want to thank the hundreds of people who wrote, sent books, money, magazines, and their support. There are no words to describe my appreciation and affection to all of you. Thank you so much.Currently I\u2019m&nbsp;home in southern Pennsylvania where Courtney and I have relocated temporarily. We will spend the summer months enjoying the outdoors, good food, family, friends and the small things that I missed while I was away, and at the same time transition back&nbsp;into normal life. I\u2019m grateful for the opportunity to be back home.I\u2019m excited to move forward onto new projects and looking forward to seeing what everyone has been working on! &nbsp;<a href=\"http://charlieshrem.com/onward/ \">http://charlieshrem.com/onward/&nbsp;</a></blockquote>\n<p>Charlie</p>\n<p>Edit: You can follow me on twitter here: https://twitter.com/CharlieShrem</p>\n<p>Follow my blog here: https://charlieshrem.com&nbsp;</p>\n<p><br></p>\n</html>",
+    "body_length": 2031,
+    "cashout_time": "2016-08-23T18:46:06",
+    "category": "introduceyourself",
+    "children": 179,
+    "created": "2016-08-16T18:46:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduceyourself\",\"helloworld\"],\"image\":[\"https://i.imgsafe.org/35c3896fbe.jpg\"],\"links\":[\"https://twitter.com/CharlieShrem/status/765619829109772288\",\"https://t.co/ZmVtaf09QL\",\"http://charlieshrem.com/onward/ \",\"https://twitter.com/CharlieShrem\",\"https://charlieshrem.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T19:09:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 263548805255657,
+    "parent_author": "",
+    "parent_permlink": "introduceyourself",
+    "pending_payout_value": "10316.614 HBD",
+    "percent_hbd": 10000,
+    "permlink": "charlie-shrem-is-now-on-steemit",
+    "post_id": 839203,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Charlie Shrem Is Now On Steemit!",
+    "title": "Charlie Shrem Is Now On Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduceyourself/@charlieshrem/charlie-shrem-is-now-on-steemit"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 29065026087965,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 39193647153,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "0",
+        "reputation": 83122046,
+        "rshares": 350983411353,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": 100010071,
+        "voter": "style"
+      },
+      {
+        "percent": "0",
+        "reputation": 32455846463901,
+        "rshares": 644561565411,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28851409050,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 16629632053912,
+        "voter": "rainman"
+      },
+      {
+        "percent": "0",
+        "reputation": 14765040488827,
+        "rshares": 678749154221,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "0",
+        "reputation": 13823888326286,
+        "rshares": 290442248826,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1133069631465,
+        "rshares": 31846016835584,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13270505121655,
+        "rshares": 64424123116414,
+        "voter": "ned"
+      },
+      {
+        "percent": "0",
+        "reputation": 43394593255,
+        "rshares": 40990136716,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "0",
+        "reputation": 1582895535608,
+        "rshares": 1465429338,
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "6500",
+        "reputation": 27004834032159,
+        "rshares": 335898961474,
+        "voter": "modprobe"
+      },
+      {
+        "percent": "0",
+        "reputation": 19032535635212,
+        "rshares": 344351841045,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 6300691402888,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6374112970391,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3183104033800,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223360548647,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 384933625306,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6854979526916,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 684870754215,
+        "voter": "justin"
+      },
+      {
+        "percent": "8000",
+        "reputation": 16685610555705,
+        "rshares": 16484473824725,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120610759042,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5645824730155,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 2203971895865,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4798801965393,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18336382560162,
+        "rshares": 177869761105,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1000072774079,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 5307342946866,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1714782870044,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 790134973068,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314382747160,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3084952552,
+        "voter": "boy"
+      },
+      {
+        "percent": "0",
+        "reputation": 89703349977794,
+        "rshares": 39514772539,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3744099613,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 708916690,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3778265352120,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1408131653617,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5874464366093,
+        "voter": "clayop"
+      },
+      {
+        "percent": "2500",
+        "reputation": 49280708331375,
+        "rshares": 1587095276274,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 490952568782,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52162307417,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1653744064,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8717425187,
+        "rshares": 5353703077673,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213265420,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1344827833395,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33415320588,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4768294498878,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 462168403886,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 440397344978,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2948934371032,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 724454198454,
+        "rshares": 145153034071,
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 365218637510,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 320054757231,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 836053297246,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 252012000857,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 8983689584,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 613500608,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 883033583,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 18831931707,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 847367661232,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1187445991060,
+        "rshares": 8541231709,
+        "voter": "fbsvk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2468314738,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 131059028668,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 99407442284,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2890780562959,
+        "rshares": 18422461105,
+        "voter": "jakev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1301587831477,
+        "rshares": 22980185355,
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287496994,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19048759573,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14049617378,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 153266720533,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 28030491514,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 10809412876,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12594877551576,
+        "rshares": 78677360557,
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15484655885,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 4114116979,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 80912126570,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 91920078762,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 16986781098,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 19581497371,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2965778688,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4743131139239,
+        "rshares": 19864981951,
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 4953536758,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 59389567521,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "0",
+        "reputation": 3828884985898,
+        "rshares": 1176938440,
+        "voter": "lovelace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 22730046248,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5174412203,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3989110433,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2766508550901,
+        "rshares": 29123857192,
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 483152352,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5998136643,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 6860622525,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6307970519,
+        "rshares": 539229693,
+        "voter": "manu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46486294798,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 753324601733,
+        "rshares": 613633859,
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 1792970687,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1695482795421,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 17970582996,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3997942209174,
+        "rshares": 40256285576,
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17814707827319,
+        "rshares": 121040089554,
+        "voter": "bbqbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 598749018,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3197564021,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4599317604,
+        "rshares": 2164745847,
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6703300627334,
+        "rshares": 16501701210,
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59189682608,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 7522215721,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5498455770,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 60171794063,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 14553627890,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 52133457039,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1450594023,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 421830528,
+        "voter": "viet-ngo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3971811465,
+        "rshares": 9012478291,
+        "voter": "gore84"
+      },
+      {
+        "percent": "0",
+        "reputation": 9084038135515,
+        "rshares": 928498426,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3144640411,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6511494,
+        "rshares": 401086480,
+        "voter": "bkz-mark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 323291888380,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670625346868,
+        "rshares": 99230266456,
+        "voter": "oscarp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 5155051731,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29597883122,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5607058267,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775122446878,
+        "rshares": 48191210281,
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217755916442,
+        "rshares": 423526577,
+        "voter": "shane-loomb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 580447736426,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4271275461,
+        "rshares": 3379051883,
+        "voter": "crypton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 292841176,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18892584759,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 227661174549,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 14825107442,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238101508714,
+        "rshares": 9160294327,
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 3641210640,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 184127210501,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2663003206978,
+        "rshares": 10839974752,
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10367032406,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 400302600,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1005278051807,
+        "rshares": 2732164481,
+        "voter": "patrick-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 311649953,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 154650902490,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 258682311783,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 218701281553,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53913190618,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65989046107177,
+        "rshares": 420660720773,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 62485569470,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525238421,
+        "rshares": 74930713836,
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 32242309393,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 72465284432,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 187339395265,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1071159098,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19853951219,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 130506723134,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48263580054,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4225748527,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13376879780,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 77121637987,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6877012376448,
+        "rshares": 129350122394,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6469924381,
+        "rshares": 38007430652,
+        "voter": "kun7788"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 692586897,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 3820890867,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5174686594,
+        "rshares": 316079910,
+        "voter": "james-ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 130135983609,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7263761479745,
+        "rshares": 130569937219,
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 3713808326,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 19734517919,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5163259581,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217222224,
+        "rshares": 299624307,
+        "voter": "knopki"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 5886979119053,
+        "rshares": -43295372595,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 208893515786,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 846666893,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 27044457127,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 688333510,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 35617668938,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 862610149295,
+        "rshares": 5530404220,
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6209409248,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6335831989133,
+        "rshares": 73156015714,
+        "voter": "riensen"
+      },
+      {
+        "percent": "0",
+        "reputation": 2758500001611,
+        "rshares": 102193068,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2552582711,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "0",
+        "reputation": 1019011681813,
+        "rshares": 139217694,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18388231908063,
+        "rshares": 83171001282,
+        "voter": "blocktalk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8405765844,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1557874437556,
+        "rshares": -2388357578,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "0",
+        "reputation": 2445708956667,
+        "rshares": 169304350,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 36430901543,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6696004846,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 36090146114,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 51252420180,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 17647343278,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9400857896911,
+        "rshares": 842304582512,
+        "voter": "coinfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 956637447308,
+        "rshares": 1625043848,
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27961065610,
+        "rshares": 3875913318,
+        "voter": "steskoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 343023700,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 54498249470,
+        "voter": "norbu"
+      },
+      {
+        "percent": "0",
+        "reputation": 1691376287481,
+        "rshares": 118076270,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 4090523115,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 262266700,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 25984358555464,
+        "rshares": -41659756587,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 46307425448,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2018069960576,
+        "rshares": 8356388356,
+        "voter": "nobodyishome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 7699122159,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544044850677,
+        "rshares": 16220061534,
+        "voter": "eindbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110873902249,
+        "rshares": 4783947613,
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3178291674,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "0",
+        "reputation": 36391001943292,
+        "rshares": 3317397556,
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891519743447,
+        "rshares": 3690681721,
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 261479355,
+        "voter": "stompy"
+      },
+      {
+        "percent": "0",
+        "reputation": 15603689614497,
+        "rshares": 96259058,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 280744944256,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 54361788954,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1402029831983,
+        "rshares": 13811194874,
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 2520944846,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4179624293,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "0",
+        "reputation": 1160886081198,
+        "rshares": 111881284,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255316245,
+        "voter": "jn024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 668633470533,
+        "rshares": 3704365763,
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 253533017,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4066839697461,
+        "rshares": 10058326169,
+        "voter": "getssidetracked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4704791719,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 6985662723,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 15899597932,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247349335,
+        "rshares": 310292244,
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 108195012801,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25970499549,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 6208426188,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12569064381,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "0",
+        "reputation": 1035952800698,
+        "rshares": 118086118,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20416680494,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 131321480287,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 1648092544,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 9774380648,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 2068007241,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91531121710,
+        "rshares": 279214663,
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 63749936823,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 49577785960,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17910661583686,
+        "rshares": 211325523817,
+        "voter": "guerrint"
+      },
+      {
+        "percent": "0",
+        "reputation": 2237331858240,
+        "rshares": 124327762,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44761293560,
+        "rshares": 24590582170,
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 442037344,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 163154891628,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 32840023620,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 281009593849,
+        "rshares": 1749258576,
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 278125905,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6164439153,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 415946152,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1921778079,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1158676315,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217622810430,
+        "rshares": 249351212,
+        "voter": "ryno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 38500935552,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1389411746,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1321799982,
+        "rshares": 249212724,
+        "voter": "sintal1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 33866686438,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 353762811,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9272236814,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46057798112,
+        "rshares": 249223280,
+        "voter": "leonalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5093280360794,
+        "rshares": 17384527304,
+        "voter": "freiheit"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 57372201,
+        "rshares": -242222642,
+        "voter": "vernik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17642820126,
+        "rshares": 251825448,
+        "voter": "mahnunchik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 337493913398,
+        "rshares": 351594067,
+        "voter": "apes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 51232668486,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 12019557908,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 116814208271,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 198026604,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48602068855,
+        "rshares": 255250482,
+        "voter": "davman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 490975552659,
+        "rshares": 999982966,
+        "voter": "themax37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978354715302,
+        "rshares": 13627675834,
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 963672133449,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 105556931353,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549279741905,
+        "rshares": 10231659869,
+        "voter": "becerra18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47264506487,
+        "rshares": 1780499448,
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727668809534,
+        "rshares": 3825830255,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38925032909,
+        "rshares": 836023833,
+        "voter": "alkemix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 309808815,
+        "rshares": 4463547529,
+        "voter": "yun093"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 536550051,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6555644383,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41262623155,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1670378553,
+        "rshares": 239665790,
+        "voter": "sairji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 970743271,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131860560605,
+        "rshares": 304214503,
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43291626440,
+        "rshares": 252407179,
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 47581149959,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97646232305,
+        "rshares": 244217894,
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2993850661147,
+        "rshares": 17625843355,
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4691528458,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4123768079,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 2841500925,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3863607637,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 338909620445,
+        "rshares": 11061811644,
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 116961796010,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 234379829569,
+        "rshares": 2523930332,
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26199931018,
+        "rshares": 845201623,
+        "voter": "bmmmmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": -110718366028,
+        "rshares": 358696073,
+        "voter": "suicidemime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 567047214,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 73040531109,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19449504237,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1724220774,
+        "rshares": 241723619,
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17506904849,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274178159,
+        "rshares": 236954632,
+        "voter": "dashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629304079354,
+        "rshares": 19440035025,
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 10208713003,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116021930707,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3714148047,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1129586281,
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13254037,
+        "rshares": 236405035,
+        "voter": "geezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205753119776,
+        "rshares": 2831943731,
+        "voter": "cashbandicoot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 25365048399,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 50327671232,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1975952307044,
+        "rshares": 4874784593,
+        "voter": "karoline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 241764375,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77829333771,
+        "rshares": 71993072510,
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 156801812336,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 58942331065,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 7862851677,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2162692228861,
+        "rshares": 3350952714,
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3441787535,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 10098916070,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 537350564306,
+        "rshares": 16900513758,
+        "voter": "rukrasnov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11802802859,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1705318675121,
+        "rshares": 2865743759,
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1708370487,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 240939573,
+        "voter": "gottod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 570074959,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7160262860,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 399143272,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2839205289091,
+        "rshares": 12987519532,
+        "voter": "logicwins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 235633387,
+        "voter": "hanno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 102723261419,
+        "rshares": 350361322,
+        "voter": "r3b37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8273541325,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 104866231144,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1453154289,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 408980570,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17682694261,
+        "rshares": 235474350,
+        "voter": "mazzaneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 1827915010,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 33087660059,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274966694,
+        "rshares": 240031646,
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2347565634738,
+        "rshares": 8875408008,
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510987855,
+        "rshares": 235661413,
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1759819007,
+        "rshares": -240333753,
+        "voter": "phuocsim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 26195832780,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 14473739170,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25830030559,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363833141690,
+        "rshares": 537351543,
+        "voter": "wojooo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3288381181,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 258070573,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 4692425081,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84104019612,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239689633,
+        "voter": "ripexz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -376076725935,
+        "rshares": 234592637,
+        "voter": "jamique"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 2456113284,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692822335938,
+        "rshares": 229711964,
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3662471,
+        "rshares": 239086107,
+        "voter": "ibeyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 6791005950,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 11864195113,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 6131226904,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 18779239474,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549388274509,
+        "rshares": 1992096822,
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15850485128,
+        "rshares": 4405666697,
+        "voter": "deadloop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1215490422294,
+        "rshares": 5844362550,
+        "voter": "inti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4601273074,
+        "rshares": 254024586,
+        "voter": "licianek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 149368383295,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 13333004595,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1456542211,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1172088990,
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26442156052,
+        "rshares": 5968161933,
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200835346,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6731469625,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1351490919959,
+        "rshares": 12701757033,
+        "voter": "substance"
+      },
+      {
+        "percent": "0",
+        "reputation": 10910231620999,
+        "rshares": 277530511,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12248503488,
+        "rshares": 749090420,
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 391587960,
+        "rshares": 204669482,
+        "voter": "pizarrojesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 8643387438,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 51623937057,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 992215238,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118779815,
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 21969020834,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34507940819,
+        "rshares": 595197487,
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5045722000,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 187096397373,
+        "rshares": 149637322,
+        "voter": "teia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172953944203,
+        "rshares": 1216029463,
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 17344594034,
+        "voter": "angor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4282571209,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158788211039,
+        "rshares": 2988502587,
+        "voter": "loewan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1861971243,
+        "rshares": 276817993,
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7947869919,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 179910154045,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 357938237,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1033153794528,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47365374,
+        "rshares": 181079553,
+        "voter": "ianvaughan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 918911822347,
+        "rshares": 528470842,
+        "voter": "aleco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117875563,
+        "voter": "valkir81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817267563963,
+        "rshares": 15694880977,
+        "voter": "steemedbroccoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 17043832502,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 165521214,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1639613775527,
+        "rshares": 2946897680,
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5792218123,
+        "rshares": 1518428878,
+        "voter": "boity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 35209974404,
+        "rshares": -126987527,
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3118106567,
+        "rshares": 112740514,
+        "voter": "sllockes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17493057977,
+        "rshares": 311064378,
+        "voter": "krassvs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078296488269,
+        "rshares": 2159001014,
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 5785415084,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 247327953874,
+        "rshares": 195811507,
+        "voter": "innerexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 496208892,
+        "rshares": 117074773,
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59110845037,
+        "rshares": 175703647,
+        "voter": "turretkilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1849155799051,
+        "rshares": 2876726818,
+        "voter": "crypto.owl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 203037808685,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 173066031,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 117013137,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 12589604473,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5143473734,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2972768949,
+        "rshares": 117327347,
+        "voter": "tklinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131194405091,
+        "rshares": 3313398970,
+        "voter": "overlord"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 459170283182,
+        "rshares": -300785948,
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 615406581,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 314792076,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 17144601973,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15872861414,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526503358940,
+        "rshares": 2318927905,
+        "voter": "anon.news"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 646330460,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 1255524871,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230402080,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 2515077363,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 239266696,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4292618600,
+        "rshares": 116360217,
+        "voter": "kukuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112498145,
+        "voter": "tuppu91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5711413280,
+        "rshares": 134416011,
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 427093789,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2977035695,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27855371709889,
+        "rshares": 34395328042,
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 157514413,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3821319838891,
+        "rshares": 20990748319,
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 5596136858,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -469690438,
+        "rshares": 435533857,
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11506198408,
+        "rshares": 117385102,
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 209082900599,
+        "rshares": 272289480,
+        "voter": "karchersmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26059897,
+        "rshares": 113500096,
+        "voter": "peace77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177484158355,
+        "rshares": 76809298881,
+        "voter": "ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 219824678620,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 488829491,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 58993378905,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18318392845,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15461414574,
+        "rshares": 106608430,
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1805608597,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 1580113648,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 25847116022,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5243422,
+        "rshares": 112595631,
+        "voter": "im2hard2resist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 2819175239,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 3721016208,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3045078021,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 73734761820,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 10656358989,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 913005014,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 328735209616,
+        "rshares": 1782126949,
+        "voter": "gaitan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7772862051,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2975376827,
+        "rshares": 66778067,
+        "voter": "dras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 1334955560,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4306793943,
+        "rshares": 109986570,
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65341032,
+        "voter": "ladeiafr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493258919,
+        "rshares": 65444875,
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 192101250,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 827559373,
+        "voter": "merej99"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 585115000042,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 15285736731,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 3679188122176,
+        "rshares": -6602930413,
+        "voter": "najoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3793696193,
+        "rshares": 65255531,
+        "voter": "douglasrherron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 19606865230,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 16956284188,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8300135915,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 13210619967,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16945948625,
+        "rshares": 65373514,
+        "voter": "rjarmon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958503,
+        "rshares": 61344206,
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 122068688,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 118578167,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 190566920,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3602804983584,
+        "rshares": 4243869059,
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 21464239330,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60819457705,
+        "rshares": 75999211,
+        "voter": "shaerox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3715674298536,
+        "rshares": 8391266213,
+        "voter": "mrweed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2806306672700,
+        "rshares": 64925456,
+        "voter": "denn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 332067508,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178440469678,
+        "rshares": 122650466,
+        "voter": "belgorogdmitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1560160637,
+        "rshares": 32402400556,
+        "voter": "tikal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 710731872,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 1976759708,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1252343433,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5446779285,
+        "rshares": 64920623,
+        "voter": "mr-anderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 812896951,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5469988436993,
+        "rshares": 17449741801,
+        "voter": "r0achtheunsavory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1520432126093,
+        "rshares": 3377785978,
+        "voter": "spiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63245124,
+        "voter": "breastsono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3209909513,
+        "rshares": 20361449685,
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 147557970,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 666229621,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163705995,
+        "voter": "adc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4914371585,
+        "rshares": 65146782,
+        "voter": "ajareselde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28427048731,
+        "rshares": 11377231920,
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1692800631124,
+        "rshares": 2696012606,
+        "voter": "hrottie"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 22149484172,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61639012,
+        "voter": "bonus1602"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1875888695,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2015798675,
+        "rshares": 349060440,
+        "voter": "bitcoindon23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40103426445,
+        "rshares": 77113695,
+        "voter": "danilathemasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 877691020,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7567372889,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 125365589,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 4433662398,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "0",
+        "reputation": 73944659327428,
+        "rshares": 700194274,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 147867259,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27438553635,
+        "rshares": 4559264999,
+        "voter": "blocksurf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112984103,
+        "rshares": 653009919,
+        "voter": "haley-liz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12969824499,
+        "rshares": 62019780,
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 63501809,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63396741,
+        "voter": "aiaconelli707"
+      },
+      {
+        "percent": "10000",
+        "reputation": 971138,
+        "rshares": 63395918,
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 58465169,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1900541345,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 641706818,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60818394,
+        "voter": "kojektea"
+      },
+      {
+        "percent": "0",
+        "reputation": 8749882391690,
+        "rshares": 744261148,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": 230964609,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 1599302189,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57209648142,
+        "rshares": 3790738716,
+        "voter": "dv8silencersteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2461770643,
+        "rshares": 63246427,
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16903801181,
+        "rshares": 7013888258,
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 2108123426,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 21624247635,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 177703525,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 430813147,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 88542079780,
+        "rshares": 94035076,
+        "voter": "ninjaboon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 3862280709,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 606096537951,
+        "rshares": 825186326,
+        "voter": "kdugar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23266490918,
+        "rshares": 72470774,
+        "voter": "agrawalrohit1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80947204062,
+        "rshares": 27278230959,
+        "voter": "dowha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 3305432410,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 65028083,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 553100399,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3578630226,
+        "rshares": 64119004,
+        "voter": "jupiter.zeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -752010553427,
+        "rshares": 1943836237,
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 6504510560,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 62373416,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2739523879,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36325725,
+        "rshares": 62479088,
+        "voter": "just-me-nobody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373631604819,
+        "rshares": 502206413,
+        "voter": "sharper333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80723007188,
+        "rshares": 664730807,
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9371670886,
+        "rshares": 64053985,
+        "voter": "tolgasak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15097834744,
+        "rshares": 54983603,
+        "voter": "efrageek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 113089000,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 64006701,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705177068813,
+        "rshares": 291582909,
+        "voter": "jtoubia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 100437770,
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 746690081,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 54300455,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 8751917059,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23206755125,
+        "rshares": 62542956,
+        "voter": "kana"
+      },
+      {
+        "percent": "0",
+        "reputation": 31215012571,
+        "rshares": 790357703,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8633178908,
+        "rshares": 59560024,
+        "voter": "andrey000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7250270199,
+        "rshares": 58850431,
+        "voter": "trimpy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 524021704,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 588703041,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 411377435651,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90145056711,
+        "rshares": 119505043,
+        "voter": "sirwagginston"
+      },
+      {
+        "percent": "10000",
+        "reputation": -584610310041,
+        "rshares": 64672968,
+        "voter": "erotic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2051850885932,
+        "rshares": 69981308,
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234726497,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60637775,
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83638535,
+        "rshares": 60566656,
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1158711475,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 60521896,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 685971508,
+        "rshares": 59404268,
+        "voter": "lucasnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -277998787,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27504418847,
+        "rshares": 78840073283,
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 2813206335,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13147662,
+        "rshares": 60336688,
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 2311894727,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 241826833,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63704154867,
+        "rshares": 71213188,
+        "voter": "hutch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 417896642,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24003660,
+        "rshares": 59989087,
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 294269657262,
+        "rshares": 110882929,
+        "voter": "jaggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1125810373,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 599588088,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 59908156,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 109781085,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28120669,
+        "rshares": 59837209,
+        "voter": "chrisremus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 2012644058,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 59824180,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 6861320744353,
+        "rshares": -304371474,
+        "voter": "anarchyhasnogods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59547267,
+        "voter": "andrew21w"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3934561602,
+        "rshares": 59521667,
+        "voter": "dave-mohican"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 133222141,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 106960350,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 59855735,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3077370360823,
+        "rshares": 136150988,
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44679463800,
+        "rshares": 5214999573,
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 57565034,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 841764781,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 905566,
+        "rshares": 59115407,
+        "voter": "ejosev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2834815402,
+        "rshares": 59049216,
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111174011,
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351191377036,
+        "rshares": 70389547,
+        "voter": "zakharsmirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26471610,
+        "rshares": 56695901,
+        "voter": "gosteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1054185349,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 17182681895,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 9337355845,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 300847113,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 67898302,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -300111851,
+        "rshares": 399837706,
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63845074863,
+        "rshares": 1850437029,
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6945828193,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 25426770744,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58525745813,
+        "rshares": 59810146,
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4775359646971,
+        "rshares": 449613087,
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1688297092,
+        "rshares": 58064383,
+        "voter": "libertyminded"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 58984750,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 200209705,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 60680583,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 66567281,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 68532961,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9570070658,
+        "rshares": 58806132,
+        "voter": "capehost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 7844013650,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21467555148,
+        "rshares": 60893633,
+        "voter": "tcstix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57445547225,
+        "rshares": 80039263,
+        "voter": "alexalbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6382951558,
+        "rshares": 58993287,
+        "voter": "jurisnaturalist"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -538163035070,
+        "rshares": -54323980,
+        "voter": "rysabi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5881944684,
+        "rshares": 59261081,
+        "voter": "disletti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 57283554,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25773560575,
+        "rshares": 64184750,
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17390154,
+        "rshares": 57549944,
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1802656474490,
+        "rshares": 1701639624,
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2688695430,
+        "rshares": 59196527,
+        "voter": "rgla216"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 200326837006,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "0",
+        "reputation": 2484336960082,
+        "rshares": 55537337,
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182781392,
+        "rshares": 58606938,
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 59044569,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1230516,
+        "rshares": 58582901,
+        "voter": "herbertflores"
+      },
+      {
+        "percent": "10000",
+        "reputation": 970572315676,
+        "rshares": 50476255,
+        "voter": "fiat19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 894851,
+        "rshares": 58398424,
+        "voter": "oliv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 60092482,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15692079038,
+        "rshares": 75596244,
+        "voter": "pery"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8680921051,
+        "rshares": 592998202,
+        "voter": "bennytremble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1107674703,
+        "rshares": 58558284,
+        "voter": "alex1994"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2405909145226,
+        "rshares": 2795636168,
+        "voter": "xbananax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 459441131,
+        "rshares": 57155862,
+        "voter": "sinner2winner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34004319054,
+        "rshares": 66067014,
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865434814444,
+        "rshares": 59991526,
+        "voter": "ptmikesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716083654011,
+        "rshares": 57698673,
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 1177495059,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 589293675197,
+        "rshares": 137097811,
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4346098256,
+        "rshares": 2479630826,
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39279686642,
+        "rshares": 60744703,
+        "voter": "jusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 61681826,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 60588978,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53741835953,
+        "rshares": 194058019,
+        "voter": "zrc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58172886,
+        "voter": "nullpointer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2426698255,
+        "rshares": 58145581,
+        "voter": "tylerg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101814429368,
+        "rshares": 67716447,
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 59050884,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272429773,
+        "rshares": 59284524,
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 289788537,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 61422695,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153076232,
+        "rshares": 56909672,
+        "voter": "konstantinrf"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30862157954,
+        "rshares": 58035992,
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77767196646,
+        "rshares": 76074009,
+        "voter": "adnanefs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8652306644,
+        "rshares": 50027958,
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19091993730,
+        "rshares": 61922359,
+        "voter": "kirby1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16261261524,
+        "rshares": 18184610664,
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21167134650,
+        "rshares": 60043805,
+        "voter": "genzai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118587240,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 55452158,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7454996083,
+        "rshares": 59241410,
+        "voter": "erob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 59482963,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 735839549,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 53394118,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18234699449,
+        "rshares": 58186044,
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57844972,
+        "voter": "freemanmccoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 17186561644,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55885794784,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 39484524724,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84601036,
+        "rshares": 773922739,
+        "voter": "kasecucuzza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10684992176630,
+        "rshares": 71380097,
+        "voter": "quinneaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5296652630527,
+        "rshares": 14872611192,
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 902211,
+        "rshares": 56609375,
+        "voter": "alanslaug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51171516723,
+        "rshares": 64281289,
+        "voter": "myvilz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 364408983,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 57664781,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 57653356,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57652422,
+        "voter": "patrickulrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 4553068392,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57620009,
+        "voter": "sfateev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1115296338676,
+        "rshares": 86267182,
+        "voter": "freeinthought"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2402508418,
+        "rshares": 58004860,
+        "voter": "jones-wills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 196799154,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4386763010,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 448323753,
+        "rshares": 291086336,
+        "voter": "trimtab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339886160,
+        "rshares": 54256199,
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176135418881,
+        "rshares": 79719071,
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 7085277650,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 54561850,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1681782448716,
+        "rshares": 297512605,
+        "voter": "exoexo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 8549581647,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 58449865,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804735971045,
+        "rshares": 59804320,
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 57173176,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 141175939237,
+        "rshares": 115279794,
+        "voter": "koningsbruggen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 452142815,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 57729316,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54987076112,
+        "rshares": 55717566,
+        "voter": "socalguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56169240,
+        "voter": "ertinfagor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2284064858,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6716765571,
+        "voter": "alasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14582441571,
+        "rshares": 419652844,
+        "voter": "marz.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740011830,
+        "rshares": 57193795,
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 353119892,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1488797,
+        "rshares": 57169840,
+        "voter": "earnings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51013445,
+        "rshares": 56024009,
+        "voter": "darwilliam"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17751314058,
+        "rshares": 57099237,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66311335718,
+        "rshares": 54835021,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 378486516,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14565129670,
+        "rshares": 335535004,
+        "voter": "neurosploit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156450786,
+        "rshares": 56860845,
+        "voter": "notorious4life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 629095349859,
+        "rshares": 1235057220,
+        "voter": "victor-smirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 55961578,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121961200382,
+        "rshares": 486184889,
+        "voter": "hej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10121332649,
+        "rshares": 57032457,
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135537419,
+        "rshares": 56770550,
+        "voter": "dobermansden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 800035,
+        "rshares": 56767767,
+        "voter": "venetor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56762567,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5724645,
+        "rshares": 56761820,
+        "voter": "esraulgil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 56184814,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56749063,
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 55620764,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20920557,
+        "rshares": 54500387,
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1137548074,
+        "rshares": 55737590,
+        "voter": "kingsjack123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56705083,
+        "voter": "kamisaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1246651487,
+        "rshares": 56864664,
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 275001369,
+        "rshares": 54319587,
+        "voter": "sile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1688587641,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 201362230,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 871723041,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55379722,
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 55340759,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 550680214413,
+        "rshares": 157546256,
+        "voter": "kevbonneau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 11257010710,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26897821824,
+        "rshares": 65212139,
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 99156770,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55261899,
+        "voter": "shakimclark7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327621924,
+        "rshares": 55259368,
+        "voter": "pumpndumptrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949895649943,
+        "rshares": 136828832,
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1603239948,
+        "rshares": 55543546,
+        "voter": "kralizec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56332547,
+        "voter": "murph785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 394487282,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1576645269,
+        "rshares": 56288884,
+        "voter": "phusionphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19272336927,
+        "rshares": 152591420,
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93821903009,
+        "rshares": 56224562,
+        "voter": "dennislee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56208181,
+        "voter": "omars3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 470889239,
+        "rshares": 56137183,
+        "voter": "upshot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56126260,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136191934687,
+        "rshares": 54304778,
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56051583,
+        "voter": "maestro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42790439089,
+        "rshares": 51626433,
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 53939047,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 673915909724,
+        "rshares": 1434361093,
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": -6734925555,
+        "rshares": 54839161,
+        "voter": "cyborg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136256524,
+        "rshares": 55931162,
+        "voter": "sweeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54813939,
+        "voter": "craftercrafter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 55903826,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2459082,
+        "rshares": 55894632,
+        "voter": "djmagrobel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27324223075,
+        "rshares": 64241966,
+        "voter": "tyrannyunmasked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30965802380,
+        "rshares": 65870847,
+        "voter": "russ512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37531793657,
+        "rshares": 58810758,
+        "voter": "bobworks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54690280,
+        "voter": "eef87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 256088885,
+        "rshares": 54660184,
+        "voter": "nevid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 51374607,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 54910567,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119788937,
+        "rshares": 54594928,
+        "voter": "thomasdh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55676046,
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1923827715,
+        "rshares": 56185313,
+        "voter": "kinchent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 50406805,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4702037886,
+        "rshares": 56634879,
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 55171651,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20839933826,
+        "rshares": 58614624,
+        "voter": "edniredo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3933689675127,
+        "rshares": 47462900247,
+        "voter": "ummjackson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113271884921,
+        "rshares": 85225954,
+        "voter": "ethereumnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267108721,
+        "rshares": 761529483,
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1694198168,
+        "rshares": 55872960,
+        "voter": "luvtolook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 50096233,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2504507,
+        "rshares": 55525348,
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138501388,
+        "rshares": 55498559,
+        "voter": "peteyates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55486361,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53481180877,
+        "rshares": 55456592,
+        "voter": "unblogd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55420308,
+        "voter": "naokiohno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 55407469,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3074503409423,
+        "rshares": 999968844,
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55388667,
+        "voter": "surfkid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865011,
+        "rshares": 53844705,
+        "voter": "reza9090"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 70864781,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55305082,
+        "voter": "gratitude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35525606700,
+        "rshares": 55290988,
+        "voter": "rasfos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55252692,
+        "voter": "bradgarratt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 471891378,
+        "rshares": 55237172,
+        "voter": "renijra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58659918189,
+        "rshares": 76879588,
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54129624,
+        "voter": "occultreviews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21326690,
+        "rshares": 55160756,
+        "voter": "rockabilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55138616,
+        "voter": "ehkbd396vgls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55131842,
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3448291,
+        "rshares": 55126911,
+        "voter": "jusjayce19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55113519,
+        "voter": "mrstraume92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 859154846,
+        "rshares": 55102522,
+        "voter": "ingwald"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172617333471,
+        "rshares": 54012416,
+        "voter": "morningdoodle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7805684953,
+        "rshares": 52918124,
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1824527596237,
+        "rshares": 52911110,
+        "voter": "forcestaff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 55052571,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557026783,
+        "rshares": 55038370,
+        "voter": "petertahoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54996833,
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54977054,
+        "voter": "bitbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -32546858309,
+        "rshares": 54957779,
+        "voter": "kam1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53870477,
+        "voter": "jensk92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12368054643,
+        "rshares": 54942327,
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54941471,
+        "voter": "aharmlessspider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700129,
+        "rshares": 54937147,
+        "voter": "vanessagomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 559572250,
+        "rshares": 52778255,
+        "voter": "o627492o"
+      },
+      {
+        "percent": "10000",
+        "reputation": 580482162746,
+        "rshares": 54923082,
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2797191,
+        "rshares": 53845766,
+        "voter": "reza9898"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 143366278,
+        "voter": "dereremit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 841198,
+        "rshares": 53836674,
+        "voter": "missagandonian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53826294,
+        "voter": "toopoorforsf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54899345,
+        "voter": "warock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54880208,
+        "voter": "smduchess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288672343,
+        "rshares": 53798418,
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2184996,
+        "rshares": 54873574,
+        "voter": "peacefulpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54863076,
+        "voter": "milohdz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54861623,
+        "voter": "pirosb3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54860980,
+        "voter": "sammiedata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 856838,
+        "rshares": 53762419,
+        "voter": "yoyoyoram"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29099060923,
+        "rshares": 54834816,
+        "voter": "ripper234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 52683284,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20614019,
+        "rshares": 54826051,
+        "voter": "holdthedoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8518576343,
+        "rshares": 54813538,
+        "voter": "bexir.oborael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 51563976,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54766433,
+        "voter": "teekay79"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 54763174,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53679390,
+        "voter": "hg8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54736573,
+        "voter": "mikebroemmel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54706268,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622370,
+        "voter": "waverider"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19167887439,
+        "rshares": 54693928,
+        "voter": "tazouka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 835515368056,
+        "rshares": 52547166,
+        "voter": "digitalbrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1666032,
+        "rshares": 51470815,
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54675427,
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 737348426612,
+        "rshares": 54670057,
+        "voter": "lifeworship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3330241441,
+        "rshares": 54668641,
+        "voter": "endergirl197"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -54663894,
+        "voter": "zanovosib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54663364,
+        "voter": "alexseeker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54661520,
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22804640137,
+        "rshares": 54657249,
+        "voter": "jomo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54656951,
+        "voter": "noam32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53577545,
+        "voter": "j0oboi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565135,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53555002,
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": -80436159,
+        "rshares": 54609325,
+        "voter": "dapathfinder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56635602,
+        "rshares": 54598809,
+        "voter": "steemhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54592999,
+        "voter": "dal5ton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 236015276,
+        "rshares": 53522017,
+        "voter": "sungminz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -304515584476,
+        "rshares": 52447972,
+        "voter": "olivianakano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 507964430,
+        "rshares": 50305873,
+        "voter": "steemninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54037838,
+        "voter": "redrohx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80764047,
+        "voter": "niklaszantner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155927730,
+        "voter": "drakmail"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 5743108025054,
+    "beneficiaries": [],
+    "body": "![SteemyLoginLogo3xca352.png](https://www.steemimg.com/images/2016/08/15/SteemyLoginLogo3xca352.png)\n\n# Introducing Steemy - Native Mobile apps for STEEM! \n---\nWe've been hardcore fans of the STEEM social network since its launch.  As full-time mobile developers, we've been passionately building a genuinely *compelling* experience on iOS and Android for the STEEM network!  Today, we're excited to announce **Steemy** and show off some screenshots.  While you can't download the app in the app store just yet, our public beta is around the corner and we'd love to hear from you. Thanks and STEEM ON!   \n\n(We've included a short youtube clip of the app in action as further proof of the app's existence..see end of post)\n\n\n# Features\n---\n\n- On-device transaction signing - your private keys never leave the device\n- Master Password or Import Key login options\n- Remote push notifications for replies, up votes, follows and more\n- WYSIWYG, markdown and html editors with offline saving\n- Easily import photos from your mobile device and include them in your posts\n- Advanced blockchain searching capabilities to find relative content in new ways\n- Night mode and other theming options\n- Our backend uses our own full STEEM nodes - we don\u2019t rely on congested public endpoints\n- Open source signing components\n- more super-secret, mobile-specific features to be announced shortly ;)\n\n# iOS Screenshots\n---\n\n![IMG_1962b40b2.png](https://www.steemimg.com/images/2016/08/15/IMG_1962b40b2.png)\n\n![IMG_19548a086.png](https://www.steemimg.com/images/2016/08/15/IMG_19548a086.png)\n\n[![IMG_195501d5b.png](https://www.steemimg.com/images/2016/08/15/IMG_195501d5b.png)]\n\n[![IMG_19567a603.png](https://www.steemimg.com/images/2016/08/15/IMG_19567a603.png)]\n\n[![IMG_195792032.png](https://www.steemimg.com/images/2016/08/15/IMG_195792032.png)]\n\n\n# Android Screenshots\n---\n![Screenshot_20160815-115508414f2.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-115508414f2.png)\n\n![Screenshot_20160815-11550536f6f.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-11550536f6f.png)\n\n![Screenshot_20160815-1155007f489.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-1155007f489.png)\n\n![Screenshot_20160815-11545556c4a.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-11545556c4a.png)\n\n\nhttps://youtu.be/kHbOHuXQWg4",
+    "body_length": 2367,
+    "cashout_time": "2016-08-22T17:42:09",
+    "category": "steemit",
+    "children": 220,
+    "created": "2016-08-15T17:42:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemy\",\"steemapp\",\"\"],\"links\":[\"https://youtu.be/kHbOHuXQWg4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T06:15:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 255613028723179,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "10210.727 HBD",
+    "percent_hbd": 10000,
+    "permlink": "introducing-steemy-fully-native-ios-android-apps-for-steem",
+    "post_id": 820430,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM",
+    "title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 29371660718992,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 626688862368,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7541985881734,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 28250693080765,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14535044782590,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 42083246216937,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1133069631465,
+        "rshares": 31847138620682,
+        "voter": "val-a"
+      },
+      {
+        "percent": "3300",
+        "reputation": 176979684007,
+        "rshares": 12129844794373,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 141334158275,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6501698817206,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3184405078685,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5964451869724,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 377613420717,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6587340634773,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 21021670276047,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 107265275406,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 914194154206,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1696732608212,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 848100954032,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "2000",
+        "reputation": 36749432321730,
+        "rshares": 190998153566,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314473003984,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "9500",
+        "reputation": 9800209121307,
+        "rshares": 6341532830813,
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3225532244711,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3089099678,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3749306954,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 702699870,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52583120400,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1655857695,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213411217,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 118099525848,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4682326090828,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 55159847445,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 410598457989,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 369519216224,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2725398518844,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 103933614,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 868177892490,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 121788005926,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 22176529762,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6640715268,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9133456319,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2340432057,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5035968695274,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1207153314956,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 289693067053,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 73168546803,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1041591238835,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 256885763576,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 27150156207,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621280543,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 347055943371,
+        "rshares": -380477515,
+        "voter": "grumlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 881648242604,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 916108066,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 390512580501,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 23491351924,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 44105800633,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 39278159313,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 24354135360,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 24109850169,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287735144,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6863537479759,
+        "rshares": 38487571811,
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 23370045186,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 34806312513,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419065653830,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 74984746517,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 14881591366,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 7026975987,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 143378204944,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 2701197436,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 80185430181,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14658768392,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 12841893140,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2879550090,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3675361198293,
+        "rshares": 16002620385,
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 6087528729,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 111109401524,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7357295907,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3989971308,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 479406057689,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8157474500,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 81433947515,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 481919923,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 483152352,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 3575902533,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5561218268,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45576499097,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 5045406568403,
+        "rshares": -26021570751,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2134929320,
+        "voter": "gekko"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 10710927129,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "5800",
+        "reputation": 122177444407384,
+        "rshares": 983531206593,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "0",
+        "reputation": 5215828628480,
+        "rshares": 174482630,
+        "voter": "generalizethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 265817348263,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3490194440,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2131669640,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 60401498368,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508314471,
+        "rshares": 615158664,
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 16339743366,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 627954645291,
+        "rshares": 4189423849,
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5499486863,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1346484060,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7717615190,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 59008577002,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": -360088797540,
+        "rshares": 1449074419,
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11952915931943,
+        "rshares": 103662560303,
+        "voter": "amartinezque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 59545420659,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 52578937654,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 63506777703,
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 60877390332151,
+        "rshares": 198536945712,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2159282570,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19196399674,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16325478562,
+        "rshares": 1669689053,
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 17925026964,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3144640411,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 320893770481,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29598207247,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1378524288638,
+        "rshares": 6288437247,
+        "voter": "pauls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 20335313309,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 431296721253,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 308253869,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 93660898228,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 208027011364,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24758930252,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15284484773,
+        "rshares": 369143537,
+        "voter": "localether-com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40437708116,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 184776707493,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 407364415403,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 400573725,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "100",
+        "reputation": 200733663789408,
+        "rshares": 46773183364,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771738440035,
+        "rshares": 4257916968,
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 25145167004,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1700742023,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 376786089,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 249749342276,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 332790679144,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 57383225078,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5092263832878,
+        "rshares": 12879515910,
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1225278048760,
+        "rshares": 3220048026,
+        "voter": "pangur-ban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 188534761998,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 3058274795,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 3866605471,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 146251416776,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 47356062427,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2636635441463,
+        "rshares": 6306835193,
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4225748527,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13378221325,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398461524,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 80383013685,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27452772,
+        "rshares": 896058523,
+        "voter": "caster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212451198738,
+        "rshares": 427191549,
+        "voter": "magdalena"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 15857384273210,
+        "rshares": -212564126213,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 906072792,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1733934646,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 250992002529,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 3959389322,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1378940549,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 41160442049,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 107938878503,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5512912408,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 194945682861,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "4800",
+        "reputation": 48542961182602,
+        "rshares": 697280912421,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2797012370034,
+        "rshares": 1951954554,
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 41086701167,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 16832536493,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 892471262,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 26904424817,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 30660670620,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44591565205,
+        "rshares": 31277440014,
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 2355888986,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 70686349526,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 5418333042,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2532021807,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 3209579481,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 3903239525,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6565993697,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 9457876156,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 22978329984,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2909305052193,
+        "rshares": 5670368834,
+        "voter": "dailyfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6053064579803,
+        "rshares": 26010273262,
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24257927977,
+        "rshares": 273976358,
+        "voter": "michaelelliot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5670611695,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 2722052728,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 262266700,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 153669812037,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8488956388,
+        "voter": "cannav"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 336763673779,
+        "rshares": -159843656074,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4932749135,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 275430185693,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 2579151404,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 668633470533,
+        "rshares": 3704365763,
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 74071631096,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 2021136309,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 4996136409,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1260650049067,
+        "rshares": 1070392003,
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 21460033258,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4904202838,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13090894039053,
+        "rshares": 65597288684,
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250120664,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 222529448,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247349335,
+        "rshares": 310292244,
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51582783676,
+        "rshares": 9108149297,
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25223316549,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4710470024,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 2722271184,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10569711712,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 128745271341,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 112700770870,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9824421122,
+        "rshares": 50157804,
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 61890023762,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 18250295914,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 4975060803,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91531121710,
+        "rshares": 290611180,
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223653606222,
+        "rshares": 4409532994,
+        "voter": "buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71339012754,
+        "rshares": 9375412184,
+        "voter": "rnevet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 251776157,
+        "voter": "andreaalexandria"
+      },
+      {
+        "percent": "10000",
+        "reputation": -207495429319,
+        "rshares": 1000466151,
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 2866228751,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 231502490670,
+        "rshares": 616522482,
+        "voter": "suchnewb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1296880853,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 237323110200,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176551047359,
+        "rshares": 306347753,
+        "voter": "citizen"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -2499740471746,
+        "rshares": -28712012369,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 283197729,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 281009593849,
+        "rshares": 1749384136,
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1426692983,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17392286084616,
+        "rshares": 67813427095,
+        "voter": "steemingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8516005869,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 38458304245,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9110368141,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 243980711,
+        "voter": "dzweta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502465820159,
+        "rshares": 220755605120,
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 247802909,
+        "voter": "yopdog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38421201873,
+        "rshares": 37319559413,
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17167233442,
+        "rshares": 7898664059,
+        "voter": "hammurabi"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 16716901497,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10577700327,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3891722,
+        "rshares": 194059874,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 214961025,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 198934724,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 107934854792,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 7225951969,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 657552887015,
+        "rshares": 5464568050,
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3181612569,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20695600899,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 14993168311,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 1125370836,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 968292878,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2993850661147,
+        "rshares": 15484021629,
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1460919521,
+        "rshares": 239146029,
+        "voter": "alanstruna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 963454351109,
+        "rshares": 1311813223,
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 268810206,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 3600291701,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4101011103,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 1490014650,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3220112352,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 242779787,
+        "voter": "nana.gaisie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41464485265,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 877664820,
+        "rshares": 237252980,
+        "voter": "nosebridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 64319533899,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 12709307055,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1781936449,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1724220774,
+        "rshares": 236983940,
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 341415775183,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81669523671,
+        "rshares": 257634805,
+        "voter": "medge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116027572942,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 2645118888,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 7914038038,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 236307043,
+        "voter": "bobkillaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 3707781752,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 58745331543,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1030211519,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 241764375,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 329569379,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 254105623479,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 72253302821,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13392468465,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3510659678,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9613474948,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2351802084,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": -342084222038,
+        "rshares": 241061237,
+        "voter": "yousaywhat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 217720229,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 7296928755,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 4629657881925,
+        "rshares": -10854983463,
+        "voter": "kuriko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1030252,
+        "rshares": 133837412435,
+        "voter": "vattle.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 1251820074,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1930940424,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128870786992,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17682694261,
+        "rshares": 7017748710,
+        "voter": "mazzaneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2026472033,
+        "rshares": 6336924386,
+        "voter": "abharana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25700558035,
+        "rshares": 225841258,
+        "voter": "christianus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 52528001735,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 26735117210,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7154568164,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4108378906,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3687623379,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 148525300554,
+        "rshares": 14661265975,
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 263376582,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 4812356236,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900427911,
+        "rshares": 164300913,
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1612340975,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 2419194667,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 9820680090,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 12356863400,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 413673656,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 1243378929,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9709066337974,
+        "rshares": 22078191754,
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3984899014,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 8810481536,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41016280414,
+        "rshares": 229383471,
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 156643330877,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 107453336,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 190272836585,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14188308708,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1783202708175,
+        "rshares": 2724355096,
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 30448536910,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 21769840829,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 21820253393,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8237456317,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 7504758811,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2352380220223,
+        "rshares": 2319288677,
+        "voter": "metalcrypto86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200835346,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7304632447,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860699,
+        "rshares": 119084761,
+        "voter": "selectorsam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900694208703,
+        "rshares": 6638810695,
+        "voter": "cryptobro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 12798355616,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1107579084929,
+        "rshares": 2686642307,
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012334414044,
+        "rshares": 2655581111,
+        "voter": "sanbir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66209975694,
+        "rshares": 813016915,
+        "voter": "stealthstrike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 9192468589,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 410310254,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5723274143,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 2903590583,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 957269436,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 2428403763,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 11440429105,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852406580,
+        "rshares": 105463635,
+        "voter": "ggabi.loper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361552742284,
+        "rshares": 117780376,
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261378365712,
+        "rshares": 683944752,
+        "voter": "reilag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118407417,
+        "voter": "franco8i"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118387131,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1861971243,
+        "rshares": 271603264,
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 118709679,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 11756961995,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 125398548,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 952336459854,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 1968403637,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 27645618252,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6569802222,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 29233515561,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 115682991,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1107953639,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 248342793,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 248715968,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144087185,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144901897,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82655604,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725570292123,
+        "rshares": 2825188863,
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1871324,
+        "rshares": 557480846,
+        "voter": "rfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8258071015,
+        "rshares": 120035163,
+        "voter": "thurgoodsf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 7672090685,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 1780364718,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327313183062,
+        "rshares": 895396868,
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 6309606122,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56797048,
+        "rshares": 117092140,
+        "voter": "rhesusnegative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 301670232,
+        "rshares": 117022265,
+        "voter": "smospider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 211828434616,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27988491601746,
+        "rshares": 2564768081,
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 571266069,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4349566430,
+        "voter": "sacode"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 233614471908,
+        "rshares": -1086973767,
+        "voter": "blueciruit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1680810817776,
+        "rshares": 8910944152,
+        "voter": "ungratefulchump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 8453974521,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1342445073,
+        "voter": "pump"
+      },
+      {
+        "percent": "0",
+        "reputation": 9611048410314,
+        "rshares": 370395974,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614199054,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872592195,
+        "rshares": 230677258,
+        "voter": "automatedkings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2675034626,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1877148833,
+        "rshares": 230211441,
+        "voter": "pedrostar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 273138571,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 221510561,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 136066020,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 1994391082,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1277366753949,
+        "rshares": 16644917173,
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74716626,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 147425730,
+        "rshares": 204637998,
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3720753029,
+        "rshares": 200753691,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5711413280,
+        "rshares": 5592218178,
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 913533919783,
+        "rshares": 1576799653,
+        "voter": "maykor15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20907441599,
+        "rshares": 471916544,
+        "voter": "hermes7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3156926690,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176296837750,
+        "rshares": 10397840432,
+        "voter": "npl77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81930668,
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129497685240,
+        "rshares": 1329793586,
+        "voter": "jj888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142453259746,
+        "rshares": 7244054963,
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 112996238,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 172082853,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85836030324,
+        "rshares": 19639269533,
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2034974638910,
+        "rshares": 179979763,
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 101853977,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 16506886013,
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 842422204,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49215329,
+        "rshares": 3419058842,
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": -163191866500,
+        "rshares": 390683767,
+        "voter": "ecbanks24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 60181562333,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 68147110627,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1346175861647,
+        "rshares": 6690020263,
+        "voter": "comealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1173275022,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1806374110,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112689140,
+        "voter": "haroon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636630493304,
+        "rshares": 1031990117,
+        "voter": "jumpman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3427179893,
+        "rshares": 123100917,
+        "voter": "blysards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 25934469216,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 218471399,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3032967716,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 71832585370,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1823153221,
+        "rshares": 112786171,
+        "voter": "mms2209"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 816082452,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 110203683,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 4715017029,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 8710090850955,
+        "rshares": -28576672558,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192578386836,
+        "rshares": 67226131,
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1655024167,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50234451,
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697263449295,
+        "rshares": 1398411520,
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493258919,
+        "rshares": 65444875,
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 4336038090799,
+        "rshares": -10506218318,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14986975493,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 8922794730,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8256303990,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4969663436,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28165521,
+        "rshares": 63874606,
+        "voter": "contrariandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 1945461176,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 369818210,
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 104627795,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 3914025612,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 28843454658,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7195700476,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 1844020325,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 35971384414,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2310905839,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 940702512,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64698128,
+        "voter": "libertyprime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1337997296,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 180458407,
+        "rshares": 60765484,
+        "voter": "shanejonas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451282059200,
+        "rshares": 3410817191,
+        "voter": "veralynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 156192449,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 902392181167,
+        "rshares": 838773537,
+        "voter": "nick-sinard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4549076794,
+        "rshares": 382253852,
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125303266593,
+        "rshares": 62961881,
+        "voter": "krystalov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39744649494,
+        "rshares": 4509216404,
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1960902083,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164191748705,
+        "rshares": 463158359,
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1266524277,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7536445563,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63754743,
+        "rshares": 63983387,
+        "voter": "ilyaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 17518509987,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119511450,
+        "voter": "jobez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 37411286303,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 2715069395,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 298397221413,
+        "rshares": 136051451,
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9955023637,
+        "rshares": 66036998,
+        "voter": "fruityloan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 135512598,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4547627460,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1505940814,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81444006110,
+        "rshares": 105641483,
+        "voter": "jonasontheroof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 253589014,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 70372255,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1940001484,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 654944784,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404167627983,
+        "rshares": 6602889863,
+        "voter": "randolphrope"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 441596088,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 231234269,
+        "rshares": 63131244,
+        "voter": "strikeback"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63105810,
+        "voter": "loot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5325247938,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 158538851,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 755269723009,
+        "rshares": 1569591768,
+        "voter": "dvcoolster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65912656284,
+        "rshares": 91028993,
+        "voter": "zakorus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19725881015,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2781997984559,
+        "rshares": 5305737521,
+        "voter": "veryscience"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 345599778,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2751128831351,
+        "rshares": -1923316586,
+        "voter": "virtashare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1585788854,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 142230453,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 624706301594,
+        "rshares": 1125488046,
+        "voter": "bythenumbers432"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 225472016,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 757683349,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4237797,
+        "rshares": 61178779,
+        "voter": "mithridates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 593072231,
+        "rshares": 60462106,
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 7109032370,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 62069775,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 99784253208,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51670338162,
+        "rshares": 64990311,
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112658358,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51749350,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54755777,
+        "voter": "ttrof59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510854583971,
+        "rshares": 1683376942,
+        "voter": "stylo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 93417260,
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61150289,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1132289846563,
+        "rshares": 5601989526,
+        "voter": "ioc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26311363874,
+        "rshares": 65668582,
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16364537900,
+        "rshares": 62381376,
+        "voter": "darkstarartphoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705177068813,
+        "rshares": 291582909,
+        "voter": "jtoubia"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 472834678103,
+        "rshares": -206547387,
+        "voter": "orca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286385675205,
+        "rshares": 75778117,
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 60333839,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 71432076,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 59447794,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2116950747,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13584977360,
+        "rshares": 63518658,
+        "voter": "r2d2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 454499082507,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670524723858,
+        "rshares": 1128280936,
+        "voter": "xjwf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840329,
+        "rshares": 60754042,
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 613709190,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1429700840,
+        "rshares": 58273476,
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60637775,
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1136632065,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 60521896,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 113457626,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 133395581,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 7238782656,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2594661721428,
+        "rshares": 4011025966,
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 2361857541,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 935109865,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18320721614,
+        "rshares": 60440126,
+        "voter": "kulsumabdullah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1529946663,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 8062679482,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 399073890,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 242393394,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 539814268751,
+        "rshares": 398216470,
+        "voter": "manicmidnight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 61761105176,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24003660,
+        "rshares": 59989087,
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1711099278,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 57640568,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58678076,
+        "voter": "iqz33m2p35qxmjlh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1459736390,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 1290489831,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 295472992623,
+        "rshares": 1150585474,
+        "voter": "iamrohitkgupta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59607682,
+        "voter": "hhdelosrios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 59648980,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 125228813,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 25496980450,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 284649156,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 58111904,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 54381971,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24984832476,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56903682,
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2834815402,
+        "rshares": 59590162,
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3858824926,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310309073633,
+        "rshares": 1771658987,
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250645133,
+        "rshares": 59009965,
+        "voter": "christiansenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657367578,
+        "rshares": 58271682,
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1293667456,
+        "rshares": 59369550,
+        "voter": "clintb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58999787,
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11562530675,
+        "rshares": 57832232,
+        "voter": "li-enfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 50900989690,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1075269056,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59126308,
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56864468822,
+        "rshares": 59198033,
+        "voter": "mckeever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6477814701,
+        "rshares": 60132105,
+        "voter": "buchmanster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179991301994,
+        "rshares": 135090120,
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 310534407,
+        "voter": "pokerdude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 301654384,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 6624044845,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61929785979,
+        "rshares": 57801418,
+        "voter": "redlikecherry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 70147043,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7880148903461,
+        "rshares": 10448612590,
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1536451865,
+        "rshares": 59434449,
+        "voter": "adam173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23627342873,
+        "rshares": 62281168,
+        "voter": "damon225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 22937444047,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 3839771700,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -81696430360,
+        "rshares": 70063032,
+        "voter": "henriquez147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3342551943665,
+        "rshares": 290158450,
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2127021697,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101524085,
+        "rshares": 58897154,
+        "voter": "purplelama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 56671622,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 390205958,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2858869091,
+        "rshares": 58101921,
+        "voter": "stevenlytle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318687464222,
+        "rshares": 59093671,
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92948461,
+        "rshares": 58864493,
+        "voter": "shamballa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 98476097506,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 75016463,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1442671093,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11978201723,
+        "rshares": 58922012,
+        "voter": "beto91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2831572719,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58821982,
+        "voter": "jdlly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73481598898,
+        "rshares": 75633464,
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 14666750896,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191046668,
+        "rshares": 58732483,
+        "voter": "embraceurdialect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 58452606,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444134697,
+        "rshares": 58702646,
+        "voter": "davidmwy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58661763,
+        "voter": "swamp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 238443408197,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57475981,
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56325928,
+        "voter": "exnor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 19279116340,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41188539478,
+        "rshares": 418397623,
+        "voter": "aviator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 59044569,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158323958,
+        "rshares": 57402401,
+        "voter": "morantis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 132241472,
+        "rshares": 58510718,
+        "voter": "bonnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58466450,
+        "voter": "will.isles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 784318201,
+        "rshares": 51603666,
+        "voter": "shurik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227546496944,
+        "rshares": 159620877,
+        "voter": "smokerscorner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 65658965,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2587308443,
+        "rshares": 57546502,
+        "voter": "solielj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4533929087960,
+        "rshares": 5521838461,
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 623839624378,
+        "rshares": 153400469,
+        "voter": "steemlinks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34004319054,
+        "rshares": 67514229,
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57126389,
+        "voter": "javichino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3411235440678,
+        "rshares": 325158374,
+        "voter": "caleballen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447916605,
+        "rshares": 57101795,
+        "voter": "with-a-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4346098256,
+        "rshares": 2430385941,
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58237833,
+        "voter": "joeoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1597059869,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58236714,
+        "voter": "meannah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57082904,
+        "voter": "silvereagle1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20919704572,
+        "rshares": 56377370,
+        "voter": "deejayehn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 57723051,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644312,
+        "rshares": 58207543,
+        "voter": "jonathan-m-e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57063327,
+        "voter": "isaiah.sellassie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118704463,
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5076201786,
+        "rshares": 58201551,
+        "voter": "andyg89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43894114387,
+        "rshares": 336474373,
+        "voter": "metafzx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2089975091323,
+        "rshares": 4114411994,
+        "voter": "silverbug2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77327834214,
+        "rshares": 87656954,
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 13128724991,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13172247110,
+        "rshares": 60075109,
+        "voter": "allbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1456922840,
+        "rshares": 58353019,
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364291223,
+        "rshares": 56156330,
+        "voter": "eslopez92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263257839975,
+        "rshares": 62202585,
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 4456406474,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 62650201,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 60344715,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4595623910,
+        "rshares": 58336904,
+        "voter": "margas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 56887954,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17655222820,
+        "rshares": 1453468817,
+        "voter": "djdmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": -32328156283,
+        "rshares": 57366185,
+        "voter": "denisdiaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16261261524,
+        "rshares": 18927636504,
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465077793,
+        "rshares": 111149438,
+        "voter": "culain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118894339,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 60290047,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 74181133,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116203882,
+        "rshares": 56799795,
+        "voter": "drdsp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 645486275140,
+        "rshares": 1317394072,
+        "voter": "jchiogna"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 227415344771,
+        "rshares": -57103495,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1631502042,
+        "rshares": 58243271,
+        "voter": "mstudemeyer13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 60672622,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1082135170,
+        "rshares": 57909399,
+        "voter": "starbuck"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 678073020489,
+        "rshares": -1191464587,
+        "voter": "ihatelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 760690935,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225752062,
+        "rshares": 57895914,
+        "voter": "ancapfictionist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150536937083,
+        "rshares": 65295768,
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99387698429,
+        "rshares": 51569182,
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1507484335,
+        "rshares": 58087665,
+        "voter": "cwensor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57851525,
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 30835769243,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 56141359441,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 38712657934,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 90480826,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 57813247,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103763051875,
+        "rshares": 58084465,
+        "voter": "dubloon135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325308438373,
+        "rshares": 194987675,
+        "voter": "wizwom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199082444376,
+        "rshares": 56648554,
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 999712431,
+        "rshares": 57815945,
+        "voter": "jacobt82001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62993708145,
+        "rshares": 57793445,
+        "voter": "jparthum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5189976,
+        "rshares": 56633088,
+        "voter": "djpeezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45439132822,
+        "rshares": 59864488,
+        "voter": "malxdrakon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7189192,
+        "rshares": 57744177,
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 154271894,
+        "rshares": 57735457,
+        "voter": "georgelj2809"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387438670668,
+        "rshares": 445170292,
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": -133934474688,
+        "rshares": 58956403,
+        "voter": "rahnawnjudah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57714863,
+        "voter": "mihonik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 398583502,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57634564,
+        "voter": "edges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1932319,
+        "rshares": 57620942,
+        "voter": "matuap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23832539793,
+        "rshares": 57959938,
+        "voter": "cwalton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 3551428796,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628485,
+        "rshares": 57579747,
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 2307183228,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 8757355958,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599908904317,
+        "rshares": 151076186,
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7123091417,
+        "rshares": 58729218,
+        "voter": "autonomygarden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 396528937,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 345769558625,
+        "rshares": 56382245,
+        "voter": "courtneydael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 692494558,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5660084164,
+        "rshares": 56260077,
+        "voter": "korpzhe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11310688069,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 702323560,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 1819060324,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28419215374,
+        "rshares": 1044924584,
+        "voter": "mister-t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083886659611,
+        "rshares": 83071393,
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 33130662998,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 1839378622,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3749750818,
+        "rshares": 56270887,
+        "voter": "logos1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214213925,
+        "rshares": 57391613,
+        "voter": "nickfost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57363928,
+        "voter": "freewilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57209928,
+        "voter": "peacefulrebel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 466867123,
+        "rshares": 57204051,
+        "voter": "nbragg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 647817952097,
+        "rshares": 57192660,
+        "voter": "evolka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 7953608598,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 56056661,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17751314058,
+        "rshares": 57099237,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 55429263,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 2291259750,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57066598,
+        "voter": "sparks42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 502113380,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57035814,
+        "voter": "michaelmillman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56993755,
+        "voter": "adam.metz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9773671265,
+        "rshares": 59131755,
+        "voter": "camille101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1818363378287,
+        "rshares": 1424517451,
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10523402,
+        "rshares": 56807433,
+        "voter": "yoopercharged"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 57145820,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80500300321,
+        "rshares": 55689461,
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 373540743,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56782755,
+        "voter": "howverydroll345"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6064514,
+        "rshares": 54555750,
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25644393,
+        "rshares": 55667728,
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 6192411522,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136085046245,
+        "rshares": 58052065,
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3970810,
+        "rshares": 55678770,
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 54536747,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56762567,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 967751032,
+        "rshares": 56911312,
+        "voter": "theunicornking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56714481,
+        "voter": "jim-brown-ancap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54504542,
+        "voter": "etheom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18293093647,
+        "rshares": 56697846,
+        "voter": "paulpuk2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6195252284,
+        "voter": "vtmdmd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775448580,
+        "rshares": 55579083,
+        "voter": "mrmike3rd7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286714325990,
+        "rshares": 59410526,
+        "voter": "hurtinalbertin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1246651487,
+        "rshares": 54634677,
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 167718520,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3610309756,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1029594046,
+        "rshares": 56616688,
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10560859,
+        "rshares": 56603168,
+        "voter": "mipeleon75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56542957,
+        "voter": "gates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1840903324,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56524504,
+        "voter": "rktonny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1042156961,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 677688371,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37330767510,
+        "rshares": 56514286,
+        "voter": "snowcrash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6671012929,
+        "rshares": 53152469,
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80747623295,
+        "rshares": 29198108129,
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 55624422,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 51543183,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56422434,
+        "voter": "cowa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 124272106,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73376503650,
+        "rshares": 3521145459,
+        "voter": "cryptobiker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 966857371343,
+        "rshares": 55226664,
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 56504986,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982285480,
+        "rshares": 55390353,
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5865231,
+        "rshares": 56303040,
+        "voter": "monachusgladio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 1377124723,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6019545,
+        "rshares": 54089689,
+        "voter": "nakimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54087003,
+        "voter": "arnoldjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45888815550,
+        "rshares": 59806970,
+        "voter": "justme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55100682,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56185424,
+        "voter": "bigdungi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4186834226,
+        "rshares": 56939399,
+        "voter": "bighammerfitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737630,
+        "rshares": 53952590,
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6334668426,
+        "rshares": 56333279,
+        "voter": "gsdalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 55047915,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 470889239,
+        "rshares": 56137183,
+        "voter": "upshot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55025746,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 3467690888,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3521631459073,
+        "rshares": 53870359,
+        "voter": "betamusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18912504878,
+        "rshares": 59537615,
+        "voter": "forest-revealed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54948766,
+        "voter": "nima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56040530,
+        "voter": "narukh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42790439089,
+        "rshares": 65161675,
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 58715628,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 7558931184,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 66620548,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3385681534,
+        "rshares": 56825764,
+        "voter": "owlkhan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53759061,
+        "voter": "inscrutable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55940023,
+        "voter": "metasintactic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 180465011,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22152614116,
+        "rshares": 61688723,
+        "voter": "traceystark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6049046,
+        "rshares": 55833071,
+        "voter": "shadowcl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55818733,
+        "voter": "manoelmet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 1812426354,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 55155287,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290042862358,
+        "rshares": 55733795,
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 1520333821,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54632424,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 55713891,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 50351260,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247818520980,
+        "rshares": 111566248,
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2498083480,
+        "rshares": 65508674,
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 1719016794,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55486361,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708267266,
+        "rshares": 765866264,
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55420493,
+        "voter": "sjshah91"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -54333635,
+        "voter": "naokiohno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 142885947,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3690735303,
+        "rshares": 55365453,
+        "voter": "asuna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288944056440,
+        "rshares": 55364295,
+        "voter": "dianailuma"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 75079357,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32457729298,
+        "rshares": 488438452,
+        "voter": "venusdehilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16608213399,
+        "rshares": 917614377,
+        "voter": "ateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58659918189,
+        "rshares": 96766264,
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36906711114,
+        "rshares": 67411713,
+        "voter": "hrmbean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 1032808600,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25061971509,
+        "rshares": 52991351,
+        "voter": "q1248"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3835867777,
+        "rshares": 55227560,
+        "voter": "hereisflaco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53977402,
+        "voter": "kyushoargentina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51815820,
+        "voter": "michivollgas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52876405,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 321473400567,
+        "rshares": -56357833,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": -20844689,
+        "rshares": 54966469,
+        "voter": "harmcc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53008000460,
+        "rshares": 54658310,
+        "voter": "allyouneedtoknow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4383462062,
+        "rshares": 55148206,
+        "voter": "christheaudioguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5899608841,
+        "rshares": 55361572,
+        "voter": "elmarco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12368054643,
+        "rshares": 55302249,
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": -13647790364,
+        "rshares": 52783907,
+        "voter": "urbanchick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52671889,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 265907545,
+        "rshares": 54929304,
+        "voter": "colsen6990"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53833366,
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": -195878223866,
+        "rshares": 98657026,
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288672343,
+        "rshares": 328879505,
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 815192,
+        "rshares": 54857075,
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 87523682,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20477968943,
+        "rshares": 54156428,
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 53961789,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 54781771,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 783025089624,
+        "rshares": 54771140,
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 68392068,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54706268,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641341984,
+        "rshares": 54658188,
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50377764,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 55107256764,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54641612,
+        "voter": "lucasjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 53531883,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 50307404,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53478598,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6483658953,
+        "rshares": 53466942,
+        "voter": "doze49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 51291400,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269520578215,
+        "rshares": 60867005,
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5014250342169,
+        "rshares": 53422608,
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35890220,
+        "rshares": 54485560,
+        "voter": "mvp-lineup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54480026,
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33107217,
+        "rshares": 54476490,
+        "voter": "adpt2apocalypse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 360515928440,
+        "rshares": 54452240,
+        "voter": "rare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51951433,
+        "rshares": 54448999,
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 55668201,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50196187,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9796683054,
+        "rshares": 55048791,
+        "voter": "arshakuny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371982243,
+        "rshares": 1291962125,
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6995999694,
+        "rshares": 54293577,
+        "voter": "ultiphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80020231,
+        "rshares": 54232102,
+        "voter": "ofmiceandmud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 55579105,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 53825023,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062482,
+        "rshares": 53122477,
+        "voter": "balaji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 243094069757,
+        "rshares": 54179475,
+        "voter": "zonpower"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 54165586,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 53092299,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5156839136,
+        "rshares": 53393524,
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54094307,
+        "voter": "afmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 334396784386,
+        "rshares": 54067756,
+        "voter": "btc-echo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 538020212,
+        "rshares": 54049299,
+        "voter": "rantanplan41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54046214,
+        "voter": "assmuffin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 51915099,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52973293,
+        "voter": "linktyp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1455592982586,
+        "rshares": 50846073,
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 235434198,
+        "rshares": 52948298,
+        "voter": "alwayzgamez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54003963,
+        "voter": "mayoite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 54002407,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 690842371,
+        "rshares": 719075583,
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 50812926,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1243192377,
+        "rshares": 53980388,
+        "voter": "magedmohamed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2694517747,
+        "rshares": 53975648,
+        "voter": "cbro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32819947524,
+        "rshares": 51844560,
+        "voter": "sic-savidicus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4182086,
+        "rshares": 50785178,
+        "voter": "dartagnons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53946248,
+        "voter": "v-dawg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74558454,
+        "rshares": 51817146,
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2007874792,
+        "rshares": 52873523,
+        "voter": "monkeytraveller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 52870480,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85320565457,
+        "rshares": 53922131,
+        "voter": "lilli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53890758,
+        "voter": "brazine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52157712,
+        "rshares": 52820822,
+        "voter": "borntobealiveent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75159533,
+        "rshares": 53875371,
+        "voter": "cryptvs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53871803,
+        "voter": "dilmacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53868707,
+        "voter": "goldenage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164294739,
+        "rshares": 53865200,
+        "voter": "martexcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53858270,
+        "voter": "gnumix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697120038,
+        "rshares": 52800946,
+        "voter": "shotgunzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53855728,
+        "voter": "neolus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53850546,
+        "voter": "herbdata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31531275,
+        "rshares": 53845942,
+        "voter": "mikee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52784773,
+        "voter": "faberium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52780229,
+        "voter": "aritanas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12243286755,
+        "rshares": 53830217,
+        "voter": "libertyism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53810517,
+        "voter": "thunderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339174070,
+        "rshares": 53809906,
+        "voter": "selbstbestimmt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53805242,
+        "voter": "angelus.silesius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53805106,
+        "voter": "unknown"
+      },
+      {
+        "percent": "10000",
+        "reputation": -222925250,
+        "rshares": 53803120,
+        "voter": "shakewell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4878508275,
+        "rshares": 53780945,
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 221161944,
+        "rshares": 53772596,
+        "voter": "deef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53772177,
+        "voter": "amazingjfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69131953,
+        "rshares": 52700881,
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3458035642,
+        "rshares": 52688025,
+        "voter": "joktan"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -53719671,
+        "voter": "t39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 52657220,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 187186683,
+        "rshares": 52655957,
+        "voter": "johndunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53706374,
+        "voter": "cucumber1234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2004604707,
+        "rshares": 53688546,
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27442387,
+        "rshares": 53687949,
+        "voter": "atomicdonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53687522,
+        "voter": "jessequach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 180846474,
+        "rshares": 53681814,
+        "voter": "floppycatfish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53680380,
+        "voter": "saayeel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 52626708,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53669117,
+        "voter": "madi512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178300437,
+        "rshares": 53666720,
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53649984,
+        "voter": "gaetano.caimano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4606585,
+        "rshares": 52596518,
+        "voter": "yommama88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2766909606,
+        "rshares": 53642160,
+        "voter": "asapptransport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53631416,
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11309508,
+        "rshares": 52573075,
+        "voter": "thecryptonews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837692,
+        "rshares": 53612299,
+        "voter": "shashank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35362050236,
+        "rshares": 52547970,
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": -787008248635,
+        "rshares": 53596897,
+        "voter": "poliniex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2793047656,
+        "rshares": 53596426,
+        "voter": "friendster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176228976143,
+        "rshares": 7694988105,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53559945,
+        "voter": "gabru77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203967873,
+        "rshares": 52476240,
+        "voter": "bitcointalos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2489612946,
+        "rshares": 52345240,
+        "voter": "dennisd96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13272662643,
+        "rshares": 52365896,
+        "voter": "infowarfare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 438148358,
+        "rshares": 53068723,
+        "voter": "hardworx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 221475776781,
+        "rshares": 51939361,
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51812858,
+        "voter": "carlolima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6256065244,
+        "rshares": 52561293,
+        "voter": "stuartbolton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2093855721226,
+        "rshares": 50922340,
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 520312941,
+        "rshares": 50061486,
+        "voter": "yhnkp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156191221,
+        "voter": "dayan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 152406517,
+        "voter": "james93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3828608244,
+        "rshares": 155365809,
+        "voter": "wakeupworldnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155582400,
+        "voter": "light4u"
+      }
+    ],
+    "author": "dollarvigilante",
+    "author_reputation": 67427595157518,
+    "beneficiaries": [],
+    "body": "<html>\n<p><center>https://www.steemimg.com/images/2016/08/18/TheGreatSteemitDebate96620.jpg</center></p>\n<p>When I first arrived on Steemit about two weeks and $50,000 ago, I was shocked at what I had stumbled upon.</p>\n<p>I posted about my success on the site and countless people called it a scam.</p>\n<p>I responded, \"Usually a scam is where you lose money, not make money.\"</p>\n<p>Those who replied had no response to this. &nbsp;Many would just repeat, \"This is a scam and you are a scammer!\"</p>\n<p>Confused, I began to look into these allegations of Steemit being a scam... and perhaps the worst designed scam of all time, since all it does is give money to people who produce good content.</p>\n<p>All roads seemed to lead to one man: Tone Vays. &nbsp;When I pushed the people alleging Steemit was a \"scam\" or a \"ponzi scheme\" enough they eventually would retort, \"Just listen to what Tone Vays says.\"</p>\n<p>Tone is actually a friend of mine. &nbsp;He's been on my show Anarchast twice and spoke at the last two Anarchapulco (http://anarchapulco.com) events.</p>\n<p>So, getting a hold of him wasn't a problem and he agreed to a debate/conversation on Steem and Steemit.</p>\n<p>And, you can see the debate exclusively here on Steemit (until the end of the upvoting period the video is unlisted on Youtube):</p>\n<p><center>https://www.youtube.com/watch?v=L9PWO8flSp4</center></p>\n<p>We got into every aspect of Steemit from the technical details to the big picture of how it could be a paradigm shift in how social media is done online.</p>\n<p>You may be surprised to see how it turns out!</p>\n<p>As a note, many anti-Steem people will be down voting the video and posting negative comments on Youtube once it goes live. &nbsp;You, as a Steemer, get the opportunity to give it the \"thumbs up\" and post positive comments before the troll brigade arrives.</p>\n<p>If you do enjoy our debate, please make sure to give it a like on Youtube... and, as always, follow me here on Steemit for more exclusive content to come.</p>\n<p><center>https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/12/Steemitbio98756.jpg</center></p>\n</html>",
+    "body_length": 2149,
+    "cashout_time": "2016-08-26T01:33:21",
+    "category": "steem",
+    "children": 327,
+    "created": "2016-08-19T01:33:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"steemit\",\"cryptocurrency\",\"bitcoin\"],\"image\":[\"https://www.steemimg.com/images/2016/08/18/TheGreatSteemitDebate96620.jpg\",\"https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/12/Steemitbio98756.jpg\"],\"links\":[\"http://anarchapulco.com\",\"https://www.youtube.com/watch?v=L9PWO8flSp4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T03:34:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 257718658721337,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "8595.315 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-great-steemit-debate-tone-vays-vs-jeff-berwick-ponzi-scheme-or-paradigm-shift",
+    "post_id": 881442,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Great Steemit Debate: Tone Vays vs. Jeff Berwick \"Ponzi Scheme or Paradigm Shift?\"",
+    "title": "The Great Steemit Debate: Tone Vays vs. Jeff Berwick \"Ponzi Scheme or Paradigm Shift?\"",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@dollarvigilante/the-great-steemit-debate-tone-vays-vs-jeff-berwick-ponzi-scheme-or-paradigm-shift"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 40809782845,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7542003454455,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 29539384271838,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 17316773744554,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 27577490493786,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14535088010597,
+        "voter": "summon"
+      },
+      {
+        "percent": "5000",
+        "reputation": 13270505121655,
+        "rshares": 33500841043005,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 134712196038,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758982709299,
+        "rshares": 13928590353,
+        "voter": "luigi1111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7129940743437,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2958125501253,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 232614078525,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8911449447841,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223387419724,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 680084487752,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 20610650025064,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1949290306948,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4520043626161,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 5063803683192,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "0",
+        "reputation": 358840960832,
+        "rshares": 33934652164,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "7500",
+        "reputation": 36749432321730,
+        "rshares": 669205204395,
+        "voter": "liondani"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9800209121307,
+        "rshares": 2117732339514,
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 1853552687,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1937516926143,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2249701327,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 421636809,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3806710282548,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5916225437424,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 31563806994,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 32940724153,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 474793116528,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 993561057,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 128048841,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8980249791516,
+        "rshares": 244290674504,
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 118108432369,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1886208124106,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33428576420,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 55159847445,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 16445515988,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 474369482221,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2592434908071,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 106012286,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "5600",
+        "reputation": 854893586973,
+        "rshares": 508306390900,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 124551070886,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 724454198454,
+        "rshares": 145174176328,
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6640715268,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9339107692,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5154965524769,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1181695604772,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 312589671567,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 74632222461,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1041606289175,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 262031771889,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 372782047,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "500",
+        "reputation": 147478489309626,
+        "rshares": 71522741942,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 550741794,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2681760969007,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 359274583756,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 823992255636,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3991861275580,
+        "rshares": 49089709744,
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 27498854159,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4909504649121,
+        "rshares": 64442392757,
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254955012957,
+        "rshares": 10708139271,
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 24180936173,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 191590999906,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 67419834921,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 172645308,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 20072731737,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6863537479759,
+        "rshares": 40057651680,
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21527783969006,
+        "rshares": 136700693544,
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 25811639276,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777785858082,
+        "rshares": 3173957234,
+        "voter": "cheolwoo-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419067913518,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 100000796919,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 3794623721,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146245769043,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 2765714523,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78581721577,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 23697552830,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 90134927155,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14658768392,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1307793552141,
+        "rshares": 17275050657,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 12841911076,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 162781876831,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 19588607305,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2879550090,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4743131139239,
+        "rshares": 19685646715,
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 6209279303,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 113331589554,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 14440050381,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5073271124,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7213333581,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3911736576,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 81436955754,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 464205201,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 3575902533,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35537325381339,
+        "rshares": 993314065104,
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 812941284185,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11372617606769,
+        "rshares": 113346630048,
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 7168556894,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24359506041,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 96739570982,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45576499097,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 26021570751,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2177627907,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 337544048306,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3997942209174,
+        "rshares": 39467408523,
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3127039384,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2149581894,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6703300627334,
+        "rshares": 21495939803,
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 16339743366,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5499522662,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107613513332,
+        "rshares": 454435729,
+        "voter": "nasato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1320082412,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 89618566626,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 5134667074,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 60190093689,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 15608814574,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 63506777703,
+        "voter": "asch"
+      },
+      {
+        "percent": "7500",
+        "reputation": 60877390332151,
+        "rshares": 292596381659,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2159280461,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19196543129,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46690451470,
+        "rshares": 934691204,
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 61961984040,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1808575623,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 17925026964,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1095245594450,
+        "rshares": 49772004066,
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 46598492022,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7564896202,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3082998313,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 297976861016,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97233234488,
+        "rshares": 417889273,
+        "voter": "argsolver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 947361945,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775122446878,
+        "rshares": 48194159666,
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 20742019576,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 47232304194,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 431409897830,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 307353766229,
+        "rshares": 18021502490,
+        "voter": "btcturbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 463562817,
+        "rshares": 616761858,
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 300547523,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 223318444965,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6727667046210,
+        "rshares": 163123415015,
+        "voter": "help-yourself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 97924399479,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 181155851329,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 528388738750,
+        "rshares": 6370879631,
+        "voter": "thread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9751234633,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 350187172,
+        "voter": "arjoona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1667394140,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1544049507187,
+        "rshares": 13824574016,
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 154664486800,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 244960026023,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 346977724597,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 232464045595,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55088452759,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5092263832878,
+        "rshares": 12879677231,
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1225278048760,
+        "rshares": 3156909829,
+        "voter": "pangur-ban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 70843097684,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -577089724709,
+        "rshares": 9414464572,
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 31627364194,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1324373944,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124940717370,
+        "rshares": 427446856,
+        "voter": "antyivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 3119494081,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30409765924218,
+        "rshares": 317285691013,
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816177,
+        "rshares": 2908355651,
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 4143192803,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 93238329271,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 402450595981,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4142890713,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13378239231,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678483517048,
+        "rshares": 568145544950,
+        "voter": "yan-kovalenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398461524,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 80383400292,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 132125358726,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 731278348,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9131956116299,
+        "rshares": 130402402417,
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1649930720,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 4038577108,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1327941697,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 41160442049,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 137721329373,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 695320075574,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5512912408,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 183483180375,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "4800",
+        "reputation": 48542961182602,
+        "rshares": 697280912421,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1663156465,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 672000979602,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23500413189,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5266542711,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 691754975787,
+        "rshares": 1756215081,
+        "voter": "acec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 45132314104,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 261328854278,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2797012370034,
+        "rshares": 1990993645,
+        "voter": "danilo-cuellar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 214872656532,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 18035050135,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 28361926955,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 70687082586,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2848698466,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 348687284294,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8409140581,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1024771873,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4454390055101,
+        "rshares": 22965302308,
+        "voter": "kristina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17575615969,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 34308896741,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6700134111,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 9144592991,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2181554739322,
+        "rshares": 14276065946,
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774378945062,
+        "rshares": 14224025044,
+        "voter": "jamiecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 908929098218,
+        "rshares": 1442771971,
+        "voter": "dtsddace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257004179787,
+        "rshares": 747355721,
+        "voter": "jshii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8489513742,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255855422,
+        "voter": "russle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 19257162375,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 8433685605,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 159843656074,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 263549200,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4932767075,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1402029831983,
+        "rshares": 13875090308,
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 392424265528,
+        "rshares": 430676433,
+        "voter": "romait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 145538718151,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 4996136409,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1260650049067,
+        "rshares": 1070392003,
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4808853589,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250296280,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 166898141,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247349335,
+        "rshares": 310292244,
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48904928624,
+        "rshares": 253118639,
+        "voter": "brockton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 106083895889,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4710936335,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 13144887297,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 131375640558,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 104034859858,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9824421122,
+        "rshares": 70216003,
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570848703227,
+        "rshares": 13192142952,
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91531121710,
+        "rshares": 284912922,
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 65912453200,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1296880853,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 237324453474,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -2499740471746,
+        "rshares": -28712012369,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 302506665,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7942137484293,
+        "rshares": 26183359325,
+        "voter": "missjessica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 265940683567,
+        "rshares": 589197515,
+        "voter": "iamjmgx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 41120340476,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17820220099,
+        "rshares": 1337203621,
+        "voter": "btcshare7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30320285478,
+        "rshares": 12464772295,
+        "voter": "thisisgentleman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10577753089,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 525687920,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 114522838972,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 982969728338,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 103438944598,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549279741905,
+        "rshares": 10437039232,
+        "voter": "becerra18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 213479126,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 309808815,
+        "rshares": 4463547529,
+        "voter": "yun093"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 536550051,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6556012064,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41264965831,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 14993168311,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1790749753102,
+        "rshares": 5470296821,
+        "voter": "jpdimensions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 108882562319,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 263539417,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 3789657417,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4279501396,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18394373356,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3864808120,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79027340053,
+        "rshares": 283561946,
+        "voter": "mirrax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119704978026,
+        "rshares": 4873795179,
+        "voter": "jamessmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41464485265,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12081983,
+        "rshares": 252140293,
+        "voter": "dedazenia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6502882556,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33586252036,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 914559062,
+        "rshares": 507555254,
+        "voter": "wbe4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 3852641818,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7943557430,
+        "rshares": 264057784,
+        "voter": "theboccet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1724220774,
+        "rshares": 236983940,
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17918567116,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 756734123357,
+        "rshares": 1468192746,
+        "voter": "decrypt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 327788757474,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5410832727305,
+        "rshares": 34153347254,
+        "voter": "alexfortin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81669523671,
+        "rshares": 262892658,
+        "voter": "medge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9859494596,
+        "rshares": 1234428621,
+        "voter": "chrisj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 113753084831,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 23893727517,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 3796062270,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 61143708829,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 987415199,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 199100074,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77829333771,
+        "rshares": 128761902028,
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 336400723,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 246631928671,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 72361008835,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77538782364,
+        "rshares": 303507576,
+        "voter": "ostomdamasceno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3510731249,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9614118741,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1462854660873,
+        "rshares": 6791699913,
+        "voter": "gregm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2351934852,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 411766150,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474301437057,
+        "rshares": 3552208860,
+        "voter": "robinlight-cbd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8911872385291,
+        "rshares": 43452793031,
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2087820513398,
+        "rshares": 128233149416,
+        "voter": "gbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1670036281,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128866815599,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1453226197,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2026472033,
+        "rshares": 6336924386,
+        "voter": "abharana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 186398428192,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 26727861175,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239785153,
+        "voter": "miltersen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7154568164,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25839451323,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 67769833086,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4195791223,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 148525300554,
+        "rshares": 14661301672,
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 258212335,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84252253264,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1648868921,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3019670194,
+        "rshares": 240120981,
+        "voter": "yaremi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2096076988,
+        "rshares": 239427456,
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 1243378929,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9709066337974,
+        "rshares": 22078281396,
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41016280414,
+        "rshares": 238746062,
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 19950257190,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 166437805838,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 119947910,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 194078293317,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 13620877578,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1783202708175,
+        "rshares": 2724386046,
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1487064903,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 32724419379,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 120836098,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 22444836988,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 515780569,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 21949664306,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1173619706300,
+        "rshares": 7725997711,
+        "voter": "manipulable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 196897399,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7161404359,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860699,
+        "rshares": 116749766,
+        "voter": "selectorsam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 13083167579,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66209975694,
+        "rshares": 813016915,
+        "voter": "stealthstrike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 9192468589,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 51624642918,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5723549314,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 985503736,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 87587175539,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34507940819,
+        "rshares": 595378235,
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4322495797,
+        "rshares": 119877072,
+        "voter": "skybean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 236974099,
+        "rshares": 118628090,
+        "voter": "weasley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 11188424918,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 72427927194,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136985133709,
+        "rshares": 1638616949,
+        "voter": "pitbull808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852406580,
+        "rshares": 117181817,
+        "voter": "ggabi.loper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361552742284,
+        "rshares": 117780376,
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4203042780,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116065815,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1845821936,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3415496053078,
+        "rshares": 3336184862,
+        "voter": "dmitriybtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 107071475,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 11526556340,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 360944545,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 127957702,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 972675204911,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4065162386,
+        "rshares": 174394273,
+        "voter": "adrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7037261206,
+        "rshares": 117008975,
+        "voter": "cryptocoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2069779393,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 29969784949,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 50913015771,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 3961488659,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 7672090685,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35209974404,
+        "rshares": 129871373,
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327313183062,
+        "rshares": 795919582,
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8339943873,
+        "rshares": 464205446,
+        "voter": "rfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 480822555060,
+        "rshares": 702085087,
+        "voter": "renuccio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 183001482568,
+        "rshares": 219067652,
+        "voter": "sporklin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207505405339,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 11458018403,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4349566430,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19671891232,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1342445073,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 18234914500,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 28062844639,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35734446154,
+        "rshares": 225530779,
+        "voter": "defiant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614207849,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5366021,
+        "rshares": 278180569,
+        "voter": "k0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2496525517,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26925921,
+        "rshares": 230250142,
+        "voter": "caterpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 226031185,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 18489537303,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22504728466704,
+        "rshares": 64108599902,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 254510731,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20907441599,
+        "rshares": 481354875,
+        "voter": "hermes7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3095131708,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2865139821445,
+        "rshares": 2171091136,
+        "voter": "lukmarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 251615009,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85836030324,
+        "rshares": 19639269533,
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3702085260958,
+        "rshares": 18212822554,
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110854264127,
+        "rshares": 2733172814,
+        "voter": "mikeinfla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2642781889634,
+        "rshares": 6361849352,
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 59002129745,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 69538853733,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18327684284,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59131994286,
+        "rshares": 915590461,
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1104461112,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212959420968,
+        "rshares": 10031838646,
+        "voter": "michiel"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 15209255017,
+        "rshares": -117670298,
+        "voter": "emike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1842501592,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 85009956236,
+        "voter": "nicknick"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 163853549,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11013694611,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21698735,
+        "rshares": 112450703,
+        "voter": "arslan7544"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15911605746,
+        "rshares": 1588481152,
+        "voter": "galagan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 841585029,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112407757,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1439465905530,
+        "rshares": 79979291850,
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 8710090850955,
+        "rshares": -28016345645,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65341032,
+        "voter": "ladeiafr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493258919,
+        "rshares": 64161643,
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 604356859725,
+        "rshares": 2550973962,
+        "voter": "pdogg147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14687339313,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 11898939912,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 18019145810,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8302314815,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8255606883,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76675738120,
+        "voter": "n628"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4969663436,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7564464865541,
+        "rshares": 16175287986,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": -655701032,
+        "rshares": 103670600,
+        "voter": "btctoken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2076661741,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 261654970918,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 581028303,
+        "rshares": 65096057,
+        "voter": "ixess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 102302733,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 11879460728,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 28848672500,
+        "voter": "xtester"
+      },
+      {
+        "percent": "5000",
+        "reputation": 181872789178,
+        "rshares": 312827436886,
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7342762527,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 36709288679,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4651888553,
+        "rshares": 66055068,
+        "voter": "imagery"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 965457842,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451282059200,
+        "rshares": 2407863510,
+        "voter": "veralynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 144664677,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6680796918,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1960902083,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 185994089,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46067925183928,
+        "rshares": 194216372729,
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361409840466,
+        "rshares": 147832214,
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1056504274649,
+        "rshares": 10942490178,
+        "voter": "trending"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164191748705,
+        "rshares": 463298646,
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62821466,
+        "voter": "goode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 878675358,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29845491058,
+        "rshares": 68301025,
+        "voter": "ragnaroek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63935048,
+        "voter": "dida"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119511450,
+        "voter": "jobez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 5190804801,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 135512598,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63514042,
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 66249742,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81444006110,
+        "rshares": 103570081,
+        "voter": "jonasontheroof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 247825627,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 68992407,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 641845888,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 27703275897,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135368634,
+        "rshares": 90723926,
+        "voter": "doapsauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 231234269,
+        "rshares": 61893377,
+        "voter": "strikeback"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 16857833809,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 651909928,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 20120398635,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 342724480,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5108049297663,
+        "rshares": 2124173187,
+        "voter": "milaoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 16052923265,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 65299443,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 344790469,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 1280174526,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 6815418926,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 97613252166,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18005755634,
+        "rshares": 62638410,
+        "voter": "rmach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191533186325,
+        "rshares": 65159126,
+        "voter": "laissezfairedr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15099093363137,
+        "rshares": 39884338567,
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 428085677,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 738916113,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26311363874,
+        "rshares": 65668582,
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 11346824643,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 472834678103,
+        "rshares": -206547387,
+        "voter": "orca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 60333839,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648377040631,
+        "rshares": 1719224371,
+        "voter": "lorddominik007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 34916625603,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 13704329227,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 19367124818,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 491548661449,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 853512288,
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840329,
+        "rshares": 60754042,
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 71513734,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 601675676,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59448799,
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1159920856,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 59335193,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 102334329,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 379094484288,
+        "rshares": 5226952946,
+        "voter": "hackfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 2267737142,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26878598,
+        "rshares": 82017595,
+        "voter": "steemitgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18320721614,
+        "rshares": 60440126,
+        "voter": "kulsumabdullah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1529946663,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36514411336,
+        "rshares": 72406042,
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 399091815,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24003660,
+        "rshares": 59989087,
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1677548311,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59851638,
+        "voter": "iqz33m2p35qxmjlh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1502694409,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 56305110,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 1274921218,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 1253519725,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 18146080250,
+        "rshares": -58862795,
+        "voter": "icecreamyolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630154656,
+        "rshares": 131945050,
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 130557698,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3077370360823,
+        "rshares": 133870095,
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21156422,
+        "rshares": 59295031,
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1081293784,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 53199754,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 23874395477,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6857528917,
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106518260,
+        "rshares": 59034779,
+        "voter": "siouxp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 22198393217,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 141721000,
+        "voter": "djohnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657367578,
+        "rshares": 58271682,
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57842929,
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1086456676,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 21273149419,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179991301994,
+        "rshares": 135090120,
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 316745095,
+        "voter": "pokerdude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 67029397,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 21193870671,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58525745813,
+        "rshares": 61250665,
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2213838909,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101524085,
+        "rshares": 57742308,
+        "voter": "purplelama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 382554861,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318687464222,
+        "rshares": 86776756,
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3485898605376,
+        "rshares": 53093203,
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 100445619456,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57701920,
+        "voter": "eggsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824556048979,
+        "rshares": 3699497031,
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11978201723,
+        "rshares": 57766678,
+        "voter": "beto91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2834169935,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17203965465,
+        "rshares": 59174678,
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 14379167545,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 58452606,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17390154,
+        "rshares": 57549944,
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1802656474490,
+        "rshares": 2273253020,
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 243415630536,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58625501,
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3522918145,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1016973254,
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 68338923,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716083654011,
+        "rshares": 58852647,
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4346098256,
+        "rshares": 2479985654,
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1565744970,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1759357936,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 57723051,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116376925,
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43894114387,
+        "rshares": 329744886,
+        "voter": "metafzx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77327834214,
+        "rshares": 77138119,
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 14255210406,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13172247110,
+        "rshares": 60075109,
+        "voter": "allbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1456922840,
+        "rshares": 58353019,
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 61506308,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 58025713,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 74198022,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19459523,
+        "rshares": 56804463,
+        "voter": "bchandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116203882,
+        "rshares": 57935790,
+        "voter": "drdsp"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 227415344771,
+        "rshares": -50251076,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60366373217,
+        "rshares": 71785589,
+        "voter": "raseukinapobri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 745775427,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150536937083,
+        "rshares": 64015459,
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15805181807,
+        "rshares": 70801862,
+        "voter": "darkflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 29370398017,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 54010781884,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199082444376,
+        "rshares": 114217355,
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5189976,
+        "rshares": 56633088,
+        "voter": "djpeezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 388075364,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 120710577,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 8458401362,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54247105,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57634564,
+        "voter": "edges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 4664683919,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23832539793,
+        "rshares": 57959938,
+        "voter": "cwalton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 3410976758,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60022998820,
+        "rshares": 75655345,
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 2230389348,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 470891454,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39757245,
+        "rshares": 56400985,
+        "voter": "keltone7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 54561850,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 756859781,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11781966738,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1908300,
+        "rshares": 57442114,
+        "voter": "joshualoha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 56314596,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 35079310640,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 1765803477,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 59747952,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56199787,
+        "voter": "tyler.maroney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57197319,
+        "voter": "richerandthinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740011830,
+        "rshares": 57193795,
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 7953608598,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17751314058,
+        "rshares": 57099237,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66311335718,
+        "rshares": 55954103,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17162148962652,
+        "rshares": 111648770940,
+        "voter": "corbettreport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 2449986166,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 871187772,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55896856,
+        "voter": "purpleliz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36071616720,
+        "rshares": 234273389,
+        "voter": "aslammotala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5541539730,
+        "rshares": 56927947,
+        "voter": "locky192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14685550969,
+        "rshares": 213566092,
+        "voter": "ajaub1962"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56895840,
+        "voter": "dagobert1988"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3461529,
+        "rshares": 56870052,
+        "voter": "safalta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 381164023,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136085046245,
+        "rshares": 59338144,
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3970810,
+        "rshares": 55678770,
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78520035785,
+        "rshares": 51427729,
+        "voter": "pierce-the-veil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 54536747,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55649576,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 118471153,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 57565305,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53392204,
+        "voter": "etheom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6073776749,
+        "voter": "vtmdmd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1803333869,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1062027558,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835399333,
+        "rshares": 1780564916,
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80747623295,
+        "rshares": 27621186563,
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 55624422,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 51543183,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9117389449,
+        "voter": "delasage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 966857371343,
+        "rshares": 56331197,
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 55397045,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982285480,
+        "rshares": 56498160,
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6019545,
+        "rshares": 56297431,
+        "voter": "nakimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55100682,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737630,
+        "rshares": 55053663,
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 51745040,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 53925231,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1326576646,
+        "rshares": 56367187,
+        "voter": "mrbtcnorway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136191934687,
+        "rshares": 61931553,
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224957724402,
+        "rshares": 55376960,
+        "voter": "mikebartolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55910218,
+        "voter": "craftercrafter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 164423677,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22152614116,
+        "rshares": 62922497,
+        "voter": "traceystark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 3003135902,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3198489,
+        "rshares": 55760868,
+        "voter": "mamma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290042862358,
+        "rshares": 52455337,
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 1411738548,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4665549142,
+        "rshares": 51475676,
+        "voter": "happiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247818520980,
+        "rshares": 116119972,
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 67504133,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29018448461,
+        "rshares": 54790972,
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4669203996,
+        "rshares": 55063536,
+        "voter": "rich-oth-hegy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708267266,
+        "rshares": 799164797,
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 142885947,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 55407469,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3690735303,
+        "rshares": 55365453,
+        "voter": "asuna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288944056440,
+        "rshares": 54278721,
+        "voter": "dianailuma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 52461041,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 73607213,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16608213399,
+        "rshares": 1022457396,
+        "voter": "ateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58659918189,
+        "rshares": 96766264,
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": -9818989087,
+        "rshares": 54107746,
+        "voter": "aylinsita1990"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 1061341779,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289857340733,
+        "rshares": 78423731,
+        "voter": "gabosh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 321473400567,
+        "rshares": -55252777,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10106986124,
+        "rshares": 53886433,
+        "voter": "popovych"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54935924,
+        "voter": "maloneyj55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1028933999,
+        "rshares": 55112820,
+        "voter": "akamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173060154,
+        "rshares": 51773568,
+        "voter": "outchemy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -195878223866,
+        "rshares": 102809415,
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29099060923,
+        "rshares": 62045545,
+        "voter": "ripper234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 53724029,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 53961789,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 67051047,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53633596,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93718663,
+        "rshares": 54627131,
+        "voter": "growhempcolorado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 53518515,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14183245,
+        "rshares": 53509595,
+        "voter": "cjohn171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267516181499,
+        "rshares": 3677273797,
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50259847,
+        "voter": "lopezem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6483658953,
+        "rshares": 50258926,
+        "voter": "doze49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54509442,
+        "voter": "andrela888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 53428542,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5014250342169,
+        "rshares": 53422608,
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51951433,
+        "rshares": 53381371,
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 54437501,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5252754993,
+        "rshares": 52296609,
+        "voter": "lynchiandream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9796683054,
+        "rshares": 56149767,
+        "voter": "arshakuny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371982243,
+        "rshares": 1293989245,
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14069242560,
+        "rshares": 52201176,
+        "voter": "unlonely-soul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50050365062,
+        "rshares": 54287119,
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1243780278579,
+        "rshares": 56112063,
+        "voter": "lloydy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2526687,
+        "rshares": 54257335,
+        "voter": "tyagananda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 54752612,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 56350803,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 523553844040,
+        "rshares": -61188152,
+        "voter": "siren"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 54165586,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7766373,
+        "rshares": 399395426,
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 990069795,
+        "rshares": 50888187,
+        "voter": "santiagomaicon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 334396784386,
+        "rshares": 53007604,
+        "voter": "btc-echo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52973293,
+        "voter": "linktyp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1455592982586,
+        "rshares": 50846073,
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 235434198,
+        "rshares": 52948298,
+        "voter": "alwayzgamez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 54002407,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 690842371,
+        "rshares": 733457095,
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1243192377,
+        "rshares": 52921949,
+        "voter": "magedmohamed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23817229390,
+        "rshares": 51837159,
+        "voter": "thecentreofitall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74558454,
+        "rshares": 51817146,
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2007874792,
+        "rshares": 52873523,
+        "voter": "monkeytraveller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 51814320,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 53927890,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": -33565569210,
+        "rshares": 52794336,
+        "voter": "bitcoin-c"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6880595844755,
+        "rshares": 51716742,
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3109944038,
+        "rshares": 52747840,
+        "voter": "aaronfaulkner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 778128895,
+        "rshares": 53800800,
+        "voter": "breive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4878508275,
+        "rshares": 51671889,
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69131953,
+        "rshares": 53754899,
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52699680,
+        "voter": "elwray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3458035642,
+        "rshares": 52688025,
+        "voter": "joktan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53719897,
+        "voter": "diglos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52663787,
+        "voter": "bit20009"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52653307,
+        "voter": "cucumber1234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52653169,
+        "voter": "oneareis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12168350651,
+        "rshares": 52648311,
+        "voter": "elex-free"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52627823,
+        "voter": "saayeel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178300437,
+        "rshares": 51562143,
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4941295,
+        "rshares": 53664609,
+        "voter": "billybob1978"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53662617,
+        "voter": "harmal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4606585,
+        "rshares": 52596518,
+        "voter": "yommama88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 53643296,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53641293,
+        "voter": "technoprenerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11309508,
+        "rshares": 52573075,
+        "voter": "thecryptonews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837692,
+        "rshares": 52561077,
+        "voter": "shashank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35362050236,
+        "rshares": 52547970,
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2793047656,
+        "rshares": 52545515,
+        "voter": "friendster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53593069,
+        "voter": "phillips094"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53491420,
+        "voter": "bkc888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7013912618,
+        "rshares": 53489709,
+        "voter": "daniel31oh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52433838,
+        "voter": "ochnudemus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53474283,
+        "voter": "barbosabarros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53425836,
+        "voter": "weltomat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21009066,
+        "rshares": 51636060,
+        "voter": "tony1980"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16746618,
+        "rshares": 837946004,
+        "voter": "gustafx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108412302232,
+        "rshares": 148984272,
+        "voter": "robyneggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158302137,
+        "voter": "thehellenic"
+      }
+    ],
+    "author": "rogerkver",
+    "author_reputation": 6880595844755,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hello everyone,&nbsp;</p>\n<p>I'm <a href=\"http://rogerver.com/\">Roger Ver,</a> &nbsp;the first person in the world to start investing in Bitcoin startups, and current CEO of <a href=\"https://bitcoin.com\">Bitcoin.com</a>.&nbsp;</p>\n<p><img src=\"http://i.imgur.com/3FNBBDg.png\" width=\"415\" height=\"350\"/></p>\n<p>I've been involved with Bitcoin for nearly 6 years now, and somehow ended up with the nickname Bitcoin Jesus in the process due to my spreading of Bitcoin.&nbsp;</p>\n<p>Recently I have become frustrated by Bitcoin's slowness in being allowed to scale. &nbsp;&nbsp;I've also been hearing about Steemit everywhere I go, and even gave the interview that led to the &nbsp;<a href=\"https://steemit.com/life/@wadepaterson/20-questions-with-roger-ver-exclusive-interview\">#1 trending post</a> on Steemit a few days ago, so I decided to join and give it a try myself.</p>\n<p>A few of the investments I made in the Bitcoin space were:</p>\n<p>Bitinstant (The founder Charlie Shrem is now on Steemit as well)</p>\n<p>Blockchain.info</p>\n<p>Bitpay.com</p>\n<p>Kraken.com</p>\n<p>Ripple.com</p>\n<p>and many many more.</p>\n<p>More recently I've invested in:</p>\n<p>Arcade City</p>\n<p>Bitcoin Hive Mind</p>\n<p>Purse.io</p>\n<p>Shapeshift</p>\n<p>Z-Cash</p>\n<p>Proof that this is me: <a href=\"https://twitter.com/rogerkver/status/766506616212422656\">https://twitter.com/rogerkver/status/766506616212422656</a></p>\n<p>I look forward to interacting with all of you.</p>\n<p><img src=\"http://i.imgur.com/KkgqZQO.png\" width=\"441\" height=\"449\"/></p>\n</html>",
+    "body_length": 1550,
+    "cashout_time": "2016-08-26T05:51:27",
+    "category": "bitcoin",
+    "children": 165,
+    "created": "2016-08-19T05:51:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"bitcoin\",\"steemit\",\"blockchain\",\"crypto-news\",\"introduceyourself\"],\"image\":[\"http://i.imgur.com/3FNBBDg.png\",\"http://i.imgur.com/KkgqZQO.png\"],\"links\":[\"http://rogerver.com/\",\"https://bitcoin.com\",\"https://steemit.com/life/@wadepaterson/20-questions-with-roger-ver-exclusive-interview\",\"https://twitter.com/rogerkver/status/766506616212422656\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T23:05:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 238796957446616,
+    "parent_author": "",
+    "parent_permlink": "bitcoin",
+    "pending_payout_value": "7761.984 HBD",
+    "percent_hbd": 10000,
+    "permlink": "roger-ver-the-world-s-first-bitcoin-investor-is-now-on-steemit",
+    "post_id": 884258,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Roger Ver, The World's First Bitcoin Investor Is Now On Steemit!",
+    "title": "Roger Ver, The World's First Bitcoin Investor Is Now On Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/bitcoin/@rogerkver/roger-ver-the-world-s-first-bitcoin-investor-is-now-on-steemit"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7701837753129,
+        "voter": "steempty"
+      },
+      {
+        "percent": "2000",
+        "reputation": 32455846463901,
+        "rshares": 5823223289778,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28856884642,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 17160816910921,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 28953541303516,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14547336326574,
+        "voter": "summon"
+      },
+      {
+        "percent": "6000",
+        "reputation": 1133069631465,
+        "rshares": 19173086771024,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36397201856301,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27004834032159,
+        "rshares": 523209859113,
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 6494994045116,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8734342195365,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3217492843525,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2113909540069,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 385275367044,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6526641115931,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 686916796256,
+        "voter": "justin"
+      },
+      {
+        "percent": "7500",
+        "reputation": 16685610555705,
+        "rshares": 15266506030327,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 114648721029,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5509668787593,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1801375474680,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4013461219142,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "300",
+        "reputation": 20297981245452,
+        "rshares": 263313289259,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 831377823016,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 5092941139205,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1730949081938,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 983614769029,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 941624281611,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320803097294,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26776677752355,
+        "rshares": 140564637234,
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3711497348,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 2017868196098,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4505104858,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 844049061,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 5137952298596,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1511131021901,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "2000",
+        "reputation": 31405352060596,
+        "rshares": 1180186560117,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49280708331375,
+        "rshares": 6424900984970,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 63671701174,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 489679769336,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1989370733,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256231639,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 35232415432,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 526603117192,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 21635638792,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 16707749943,
+        "voter": "lee5"
+      },
+      {
+        "percent": "2000",
+        "reputation": 83941319998,
+        "rshares": 995184116060,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1296140376589,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 375036656736,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 277099247349,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 163579086563,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1058272950040,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 260764961553,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 28645408954,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 746241245,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1128457502,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2740864640273,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 398734312852,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 413996974225,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5154121875287,
+        "rshares": 80291525937,
+        "voter": "jwest40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 41263978983,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254955012957,
+        "rshares": 10708139271,
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179829390709,
+        "rshares": 16881617985,
+        "voter": "fusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 221803349479,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 24382521789,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 191879419757,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 31224460724,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345493555,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23508015643,
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 25822874684,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19514295474,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8369502790,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11383294959,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11006097418580,
+        "rshares": 47967904750,
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 34135273435,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15489998769,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 4507281491,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 2910759571,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 70700571381,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 11641008838,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1307793552141,
+        "rshares": 17286430239,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 27045449429,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 19708748689,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32994008304403,
+        "rshares": 139665622759,
+        "voter": "nkdk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2909817369,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404519920935,
+        "rshares": 3571542504,
+        "voter": "kenmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3675361198293,
+        "rshares": 16323350124,
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20782518987,
+        "rshares": 602160610,
+        "voter": "densmirnov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 143767493035,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23979714471574,
+        "rshares": 185057434770,
+        "voter": "bleepcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 4566753140,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3989971308,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8103615210,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83069716766,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 473678777,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 3505804131,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 846663097670,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 95011958367,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45577715078,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2180122005,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 339818649005,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 32572743966,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1301693008,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 1036791286,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 2749330985,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 7846049897,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59222171979,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508314471,
+        "rshares": 621723313,
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 627954645291,
+        "rshares": 4275566771,
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 91180613952,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 59036980626,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1686985722639,
+        "rshares": 8261302297,
+        "voter": "censor-this"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 53512145788,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1405273950,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 19582075879,
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 60877390332151,
+        "rshares": 241917731658,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1802078645,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11116495785,
+        "rshares": 665646849,
+        "voter": "sevcsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 18820748839,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1095245594450,
+        "rshares": 48845598533,
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 39576458828,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7565442776,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3144658279,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 374976195980,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29598242908,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97233234488,
+        "rshares": 417889273,
+        "voter": "argsolver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5915352264,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 30566007919,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 367487528647,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 54012010,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 89589440770,
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 588403658678,
+        "rshares": 1294186808,
+        "voter": "kingnuze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2741602475985,
+        "rshares": 34397044523,
+        "voter": "shelly-dawson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 12704036075,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 97993215762,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10601845480,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 320560278167,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 393483610,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700029514,
+        "rshares": 3333074114,
+        "voter": "ian-harris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10670510335642,
+        "rshares": 62216205767,
+        "voter": "robsteady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1702432312,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 53414980582,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 347273614551,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 232704094529,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51186441680,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1225278048760,
+        "rshares": 3095183308,
+        "voter": "pangur-ban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61288399197,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525238421,
+        "rshares": 73472882252,
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 30997380355,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 73823190382,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 198085799180,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1119818391,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 3058658221,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 20053300731,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 440042031018,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 47363944808,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2636635441463,
+        "rshares": 6310451846,
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13379608456,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398746305,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 74996203281,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2025139208,
+        "rshares": 823427901,
+        "voter": "marc-e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6877012376448,
+        "rshares": 128282569319,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212451198738,
+        "rshares": 418647718,
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23205643019,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 1012367636,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4669645809271,
+        "rshares": 50059780247,
+        "voter": "lat-nayar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9131956116299,
+        "rshares": 130531436689,
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1807730967,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1965310336,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 42126510918,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7967572146571,
+        "rshares": 50378426085,
+        "voter": "business"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 24050593190,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5295814286,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8450404673,
+        "rshares": 304955387,
+        "voter": "oleim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 77322172342,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4581391356317,
+        "rshares": 10722105720,
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13821321667,
+        "rshares": 730949195,
+        "voter": "christoph3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 42979569905,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 699299009701,
+        "rshares": 1301136994,
+        "voter": "jo-stonellord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 14292862687,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 31928150278,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 862610149295,
+        "rshares": 5600834646,
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23892211348234,
+        "rshares": 79355597600,
+        "voter": "mctiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 25602552413,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1060721272008,
+        "rshares": 3488814854,
+        "voter": "dasan-oneia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26564452802341,
+        "rshares": 259170410065,
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 5965331513,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 47737752185,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8410325946,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1035240870,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17686464289,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 32917705051,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6845186921,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 6009952641,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7460461625516,
+        "rshares": 16462772935,
+        "voter": "blackmask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860741683952,
+        "rshares": 14523044195,
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 54638558078,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2181554739322,
+        "rshares": 14275978947,
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 989400621,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 65241387908,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5523543514,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 257176203,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 64269449237,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 178269793041,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 199783607,
+        "voter": "russle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 19309932923,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 2934681027,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891519743447,
+        "rshares": 3694345845,
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 59170608083,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 305383894375,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 56858506791,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 3263429070,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4326745509,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 12167637067,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1260650049067,
+        "rshares": 1091799843,
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 26181863516,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 14900824178,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 1112682112,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25159784622,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 11617246469,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65825957212,
+        "rshares": 1931708270,
+        "voter": "rambogoham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20214447028,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14143289171,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 8352569072,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 64622813111,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 49613688462,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17910661583686,
+        "rshares": 211343722457,
+        "voter": "guerrint"
+      },
+      {
+        "percent": "10000",
+        "reputation": -207495429319,
+        "rshares": 1053102176,
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 514830460,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 281009593849,
+        "rshares": 1749881233,
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 132975478,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1278881680,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217622810430,
+        "rshares": 1465953187,
+        "voter": "ryno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 42687421355,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 361667920,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9484456427,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 558709358124,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17593748718,
+        "rshares": 290336079,
+        "voter": "arvydas"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 18993024590,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 9523813831,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 107524886467,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 215273578,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 197364561,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 91781758,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1297301132,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1254755309769,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 113488329314,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47264506487,
+        "rshares": 2100589421,
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3119332871,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20364661706,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 120250195509,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 526098452,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6556772480,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41265585425,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15607684591,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53188074337,
+        "rshares": 252800015,
+        "voter": "ikrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 538303885,
+        "rshares": 2311841348,
+        "voter": "inversion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1011156146,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 12469072176,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 46651208289,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 963454351109,
+        "rshares": 1788632591,
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 3907832959,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4435044610,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 746992789,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18395944324,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3704344618,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13730027994,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 105338815147,
+        "rshares": -348416306,
+        "voter": "toddl984"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 40651909692,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 139585380608,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34266563271,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55868714455,
+        "rshares": 9565398960,
+        "voter": "revulv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1357468911,
+        "rshares": 14720575910,
+        "voter": "guywinfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2377467033356,
+        "rshares": 13646355689,
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 66680819356,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 2146935020,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19452026139,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1724220774,
+        "rshares": 241723619,
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 11879449999,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 443114909,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 786431662143,
+        "rshares": 2118768684,
+        "voter": "jvper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4382037912,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 23911812732,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 59973035756,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 237023898,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8457766961,
+        "rshares": 246163734,
+        "voter": "cfredditz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 5992515758,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 72825239087,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 7422586101,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3648208151,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9778146441,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1944463968,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81023970006,
+        "rshares": 281615876,
+        "voter": "abreding"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 548138272,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1723891003,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8817431113,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128880567452,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 760427851,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 13609526487,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 44676050153,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 173616476189,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 28819290538,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 14938735893,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 94213787390,
+        "rshares": 3470465356,
+        "voter": "gkealy2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 18156323085,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 76634496404,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314706128732,
+        "rshares": 419836782,
+        "voter": "bigedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3393706338,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 148525300554,
+        "rshares": 14661390373,
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 253048089,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 4829745817,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 79368063156,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51478739136,
+        "rshares": 36690959049,
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3917118934,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4617586503531,
+        "rshares": 7360377531,
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 12378201549,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 6133562800,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37781640679,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549388274509,
+        "rshares": 2611037703,
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2418236690,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 1690038043,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 4479953032,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 19950468955,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 171071970476,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3262871450,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14487556641,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1783202708175,
+        "rshares": 3317411245,
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1487698167,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 25199895584,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26442156052,
+        "rshares": 5969728908,
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200835346,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7310392492,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 2757325251,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 9094911091,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 14899127196,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12248503488,
+        "rshares": 742853747,
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10620466262,
+        "rshares": 4525843385,
+        "voter": "drako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 13791144395,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 2149401879,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116450799,
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 1545856973,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 28810651196,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 10439807966,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 57684134706,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172953944203,
+        "rshares": 1229736687,
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852406580,
+        "rshares": 119525453,
+        "voter": "ggabi.loper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361552742284,
+        "rshares": 468614122,
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 109207679,
+        "voter": "grxcii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118488703,
+        "voter": "pheebsta10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 770957927,
+        "rshares": 1467248924,
+        "voter": "mexfogel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81378202134,
+        "rshares": 152086865,
+        "voter": "pandawabright"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1847540689,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1446410332,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 109399116,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7955943632,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 201852079622,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 365453057,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1034600134986,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2281332059,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 918911822347,
+        "rshares": 607858445,
+        "voter": "aleco"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6526595015,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4829743185,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1871324,
+        "rshares": 557480846,
+        "voter": "rfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80801736359,
+        "rshares": 160533005,
+        "voter": "mikeoleksyuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2499894223848,
+        "rshares": 1434579953,
+        "voter": "vanessavi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 10142951597,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 8261359054,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 113716843,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2366647046610,
+        "rshares": 13686417210,
+        "voter": "fleuri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113827022329,
+        "rshares": 318594148,
+        "voter": "dob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 220678004669,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 194472298,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 10887040300,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116884886,
+        "voter": "blackhole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 120531704,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 560064773,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1067201766,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5163053882,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4358484175,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 9194541120,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1499533080300,
+        "rshares": 2930236240,
+        "voter": "crystaljenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 772704577,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19735640,
+        "rshares": 113878851,
+        "voter": "steemerman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20511474710,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1371423113,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 444120240,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1628464721748,
+        "rshares": 5169819326,
+        "voter": "evak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35521215713,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18547656613,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1203192685557,
+        "rshares": 1748691174,
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201338440700,
+        "rshares": 320208626,
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 640153824,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 712675579,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230437999,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 19042416678,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49126087,
+        "rshares": 229982778,
+        "voter": "yuthavithi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 2151031302,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2557225302857,
+        "rshares": 5506799908,
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3104612658,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111533799,
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85836030324,
+        "rshares": 20038927283,
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 11330409402,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2034974638910,
+        "rshares": 243319698,
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11506198408,
+        "rshares": 115083433,
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26059897,
+        "rshares": 113500096,
+        "voter": "peace77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4097455608,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 227580587819,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2493302761715,
+        "rshares": 5241222862,
+        "voter": "saulius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3686222494,
+        "rshares": 115662469,
+        "voter": "emule"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 60189659770,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1665681200140,
+        "rshares": 518356090,
+        "voter": "kaykunoichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 71380922534,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18399823614,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 166458482,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1842626655,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2097768843,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 31716527720,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 3376540653,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 1092509963,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 62667293651,
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 2719729090,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 93599143533,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91760173763,
+        "rshares": 427142533,
+        "voter": "jordanbelfort"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2580067408929,
+        "rshares": 4942984228,
+        "voter": "spookypooky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11047526514,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1823153221,
+        "rshares": 113431670,
+        "voter": "mms2209"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 867299760,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12599764,
+        "rshares": 112380478,
+        "voter": "donnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9172160397,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116577441888,
+        "rshares": 137673054,
+        "voter": "nimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1439465905530,
+        "rshares": 100617808977,
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 2133825754,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 295915630,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64403142,
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697263449295,
+        "rshares": 1401887091,
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 41816773984,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446292867297,
+        "rshares": 1280330768,
+        "voter": "lomomo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 15040878769,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 169809405,
+        "voter": "efficienthash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24799731791,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 17666554990,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 23684645594,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7564464865541,
+        "rshares": 16505109741,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2403063642,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 18097832765,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2784680282,
+        "rshares": 65691069,
+        "voter": "cmpl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 22129014576,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2099664493,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65130153,
+        "voter": "temaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 45340794167,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 1107514628,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15740563557,
+        "rshares": 106989064,
+        "voter": "usnewspress"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 557050759,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 25169080473,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3715674298536,
+        "rshares": 8392653309,
+        "voter": "mrweed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2806306672700,
+        "rshares": 2722066764,
+        "voter": "denn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 28978999542,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 39063631921,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2346111920,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 64812629,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 144042539115,
+        "rshares": 452908460,
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1776876128,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312105976,
+        "rshares": 99385451,
+        "voter": "bajekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125578657155,
+        "rshares": 115471166,
+        "voter": "lizzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7182659281,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 197262936523,
+        "rshares": 68422047,
+        "voter": "etheroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 84584516899,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28427048731,
+        "rshares": 22114298611,
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 2001444810,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3653299044116,
+        "rshares": 100833891,
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 989801091,
+        "rshares": 70516052,
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 75678928,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053978638105,
+        "rshares": 3010971197,
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475920141542,
+        "rshares": 236937927,
+        "voter": "riosparada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 9284716779,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 9767221144,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 50705968711,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 2906079176,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 7615472731,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4315583388038,
+        "rshares": 1964016148,
+        "voter": "tanata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 138664054,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 3135424146,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63514042,
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1753607137,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166646264775,
+        "rshares": 1590260750,
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 198862560,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 469365302,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15299200938,
+        "rshares": 315295432,
+        "voter": "jonaswakefield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13386319310,
+        "rshares": 70956487,
+        "voter": "dudu-hoffman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5290668357,
+        "rshares": 63982095,
+        "voter": "paddman08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 386813325,
+        "rshares": 63123286,
+        "voter": "zmb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 1632051144,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 5294363455,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 259354123,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 935972275,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 20327414401,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 1151058494,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1075556952,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 60157817,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1074787723323,
+        "rshares": 1589383556,
+        "voter": "salva82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36901445492,
+        "rshares": 73920437,
+        "voter": "olgasudneva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 16104905196,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4539446626,
+        "rshares": 61520114,
+        "voter": "shafutinsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 1450336768,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4829784286,
+        "rshares": 4274024399,
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": -752010553427,
+        "rshares": 1888462302,
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 27246024916,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2578560185,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5911779089,
+        "rshares": 63199313,
+        "voter": "ltyadigg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36156947252,
+        "rshares": 113993481,
+        "voter": "suprsape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53052064715,
+        "rshares": 82821863,
+        "voter": "davidduckwitz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3462968534090,
+        "rshares": 5762318927,
+        "voter": "bitminter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 524477533,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 62214076,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 10875609052,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 518406141,
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 2089597288,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55772073,
+        "rshares": 1085739741,
+        "voter": "klos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 532795616,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 8906577056,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7297087216805,
+        "rshares": 5041786231,
+        "voter": "pjheinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 36090778568,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61298216,
+        "voter": "steemitlotto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2124229364,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20187310361,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 547050150288,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 3123974246,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18105338219923,
+        "rshares": 11132776179,
+        "voter": "kafkanarchy84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 39487473889,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 5920422740,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": -52839282898,
+        "rshares": 198789863,
+        "voter": "crezyliza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 70111504,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967602172,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1137367989,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 54588377,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 113457626,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2594661721428,
+        "rshares": 4036791974,
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1907537255,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642604166438,
+        "rshares": 107802364,
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 368630602,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 539814268751,
+        "rshares": 398467249,
+        "voter": "manicmidnight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 436540984,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156837664557,
+        "rshares": 92248087,
+        "voter": "how2steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1202307835,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1678685466,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 60143295,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 116840140,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1670901280,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 58651156,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 1412211762,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630154656,
+        "rshares": 2191235220,
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 133239622,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 1419429308,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3077370360823,
+        "rshares": 141072083,
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 681710135312,
+        "rshares": 1343245807,
+        "voter": "wroman0207"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1171610651,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26112430490,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1577690024,
+        "voter": "dubravko1982"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2834815402,
+        "rshares": 59590162,
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657367578,
+        "rshares": 59437116,
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 11422902868,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 306589797,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 13551218758,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -300111851,
+        "rshares": 391997751,
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6677684036,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 14938786539,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 4741375316,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3342551943665,
+        "rshares": 426251811,
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 59390673,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318687464222,
+        "rshares": 90932755,
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 4602578287,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9969442529,
+        "rshares": 9600143964,
+        "voter": "stephenfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 14683969417,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1678237446,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 53935001,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17390154,
+        "rshares": 57549944,
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 59044569,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1037841461,
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 68338923,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8680921051,
+        "rshares": 593032678,
+        "voter": "bennytremble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63529538,
+        "rshares": 58330329,
+        "voter": "optionwiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58330329,
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716083654011,
+        "rshares": 58852647,
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27611265089,
+        "voter": "loro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1802938038,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2685557,
+        "rshares": 57080451,
+        "voter": "silvernut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 4227794807,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31060848452,
+        "rshares": 63806640,
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 14006341166,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13695586,
+        "rshares": 58125911,
+        "voter": "camkirk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 4456621006,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5178721808894,
+        "rshares": 5253893581,
+        "voter": "survivalist.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 62650201,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30862157954,
+        "rshares": 58035992,
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 572181327,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57991172,
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8937216350,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892152735,
+        "rshares": 58989042,
+        "voter": "stanceu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 309785199,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227415344771,
+        "rshares": 55961425,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1631502042,
+        "rshares": 58243271,
+        "voter": "mstudemeyer13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 60779888,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "0",
+        "reputation": 17676358821986,
+        "rshares": 137666522,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150536937083,
+        "rshares": 73120144,
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 283980791,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55635937026,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1759028197,
+        "rshares": 57818188,
+        "voter": "nwoinfowarrior"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 39489667887,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 170963497,
+        "rshares": 239178839,
+        "voter": "simplyshad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 545808703,
+        "rshares": 6492208840,
+        "voter": "ready4freddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 451471714,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186924852752,
+        "rshares": 56914802,
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 5186491305,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 4116966609,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 951940523,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4396320571,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628485,
+        "rshares": 54192703,
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339886160,
+        "rshares": 378085300,
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11730597586,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 848896285,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11312783503,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 320143763,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 22473833620,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2178495821,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 59747952,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214213925,
+        "rshares": 56266287,
+        "voter": "nickfost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1403887000,
+        "rshares": 55093845,
+        "voter": "dubaicoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 878260,
+        "rshares": 56208655,
+        "voter": "jaredwilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740011830,
+        "rshares": 52708007,
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 647817952097,
+        "rshares": 1185253359,
+        "voter": "evolka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 14854347662,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2497221434587,
+        "rshares": 3163655199,
+        "voter": "jaytaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57124548,
+        "voter": "zomb13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 66516918,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 3513785267,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61867195769,
+        "rshares": 335226369,
+        "voter": "ban485"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 4293039608,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 955867575745,
+        "rshares": 885324395,
+        "voter": "mxu111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56898436,
+        "voter": "angiebeee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 388822791,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 54547175,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10121332649,
+        "rshares": 56714993,
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 614675726259,
+        "rshares": 1050210209,
+        "voter": "zazeem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 56762737,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 608069551,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7306624703593,
+        "rshares": 7400149977,
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66712446374,
+        "rshares": 59543295,
+        "voter": "reaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 1554100236,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10560859,
+        "rshares": 54383435,
+        "voter": "mipeleon75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48699492408,
+        "rshares": 86833062,
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 352639183151,
+        "rshares": 5558839611,
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 798785891,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56511342,
+        "voter": "babubibek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56434536,
+        "voter": "xebb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896571460055,
+        "rshares": 1282363031,
+        "voter": "russianark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 721763322143,
+        "rshares": 2040988610,
+        "voter": "thedashtimes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73376503650,
+        "rshares": 14651014244,
+        "voter": "cryptobiker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 53181164,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 416932669,
+        "voter": "guille"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 1984106620,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2475531,
+        "rshares": 56174541,
+        "voter": "muhammadali"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 481038733,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56143941,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15391412,
+        "rshares": 56120321,
+        "voter": "jhonione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 8397464499,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 465773082,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56051583,
+        "voter": "maestro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 204310554,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57977501,
+        "rshares": 779648908,
+        "voter": "gerasim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 52949075,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 2687198677,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2046502382,
+        "rshares": 54634263,
+        "voter": "bigcash4ken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247818520980,
+        "rshares": 647531901,
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 1942287818,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7586670074,
+        "rshares": 55309603,
+        "voter": "knoble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55486361,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 126710234,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 26327909435,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 375432765,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1527134893374,
+        "rshares": 640876177,
+        "voter": "michaelmcdermott"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 2857005564,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7805684953,
+        "rshares": 56724504,
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53990613,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 168766640,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 152610437601,
+        "rshares": 82814845,
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52794249,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54910034,
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5837148,
+        "rshares": 53827976,
+        "voter": "elmercaducoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 783025089624,
+        "rshares": 189152630,
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 69306015,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3090583312974,
+        "rshares": 396258915,
+        "voter": "geke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54706268,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52521499,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 49860524912,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 57485736,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 54744688,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5287336450,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 53576902,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53400199,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10310484518,
+        "rshares": 55968897,
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5033439632,
+        "rshares": 55155480,
+        "voter": "anonymouswriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": -94118777810,
+        "rshares": 55414127,
+        "voter": "lizasoberano"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 54165586,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 53109574,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 54472545,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 52870213,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 538020212,
+        "rshares": 54049299,
+        "voter": "rantanplan41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30137433,
+        "rshares": 51876993,
+        "voter": "techtological"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 53988734,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207506656,
+        "rshares": 51982993,
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23817229390,
+        "rshares": 53162680,
+        "voter": "thecentreofitall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 106605560,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17391399824,
+        "rshares": 56926583,
+        "voter": "kinghabib786"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80920831153,
+        "rshares": 53497847,
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5441700948,
+        "rshares": 54354587,
+        "voter": "mobilebestdeal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 1863327080,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35362050236,
+        "rshares": 53598929,
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 619923193031,
+        "rshares": 424941174,
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 53578816,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7370152734,
+        "rshares": 52571606,
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 53322730,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 51136493,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 52153025,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 154843320822,
+        "rshares": -119435462,
+        "voter": "idmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 53139024,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 15385007964,
+        "voter": "mtaplits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 754971430,
+        "rshares": 53080953,
+        "voter": "wisdomx44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2474314,
+        "rshares": 52013554,
+        "voter": "ascares"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1671824,
+        "rshares": 52011740,
+        "voter": "watchoutharam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1010743139109,
+        "rshares": 56041254,
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1242108322,
+        "rshares": 51943433,
+        "voter": "cometa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189363957513,
+        "rshares": 52970036,
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64941758686,
+        "rshares": 62284508,
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019761604717,
+        "rshares": 52908518,
+        "voter": "fenglosophy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7277317446677,
+        "rshares": 9781530661,
+        "voter": "yangyang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3903604642,
+        "rshares": 53635316,
+        "voter": "jimcruz22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 106825085,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 571399437,
+        "rshares": 52829494,
+        "voter": "slipperyicarus13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 51766777,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3507512667936,
+        "rshares": 51762401,
+        "voter": "jhermanbeans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 444900926552,
+        "rshares": 52714603,
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80941118,
+        "rshares": 52698373,
+        "voter": "macnus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401434936,
+        "rshares": 52690275,
+        "voter": "monster87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451747,
+        "rshares": 52687862,
+        "voter": "sargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2774163763,
+        "rshares": 52684475,
+        "voter": "mariekk"
+      },
+      {
+        "percent": "10000",
+        "reputation": -393894082,
+        "rshares": 51627435,
+        "voter": "adges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84715240387,
+        "rshares": 50587334,
+        "voter": "regeneration"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52647284,
+        "voter": "newk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3990908,
+        "rshares": 52634630,
+        "voter": "rls89zx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770495048,
+        "rshares": 51589136,
+        "voter": "bertolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 806042,
+        "rshares": 52618436,
+        "voter": "joep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52616779,
+        "voter": "damncourier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51581842,
+        "voter": "legal.homicide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4882548,
+        "rshares": 51564823,
+        "voter": "irosariov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 821808,
+        "rshares": 51564466,
+        "voter": "victorizwekov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35518227,
+        "rshares": 51563349,
+        "voter": "awinkle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52561613,
+        "voter": "steemwiki.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51527891,
+        "voter": "kumin84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51525325,
+        "voter": "mlbuczy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52542326,
+        "voter": "ico-board"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197832234,
+        "rshares": 52508752,
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52477821,
+        "voter": "apolonxviii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51421479,
+        "voter": "damm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52428551,
+        "voter": "adaydreamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3385955943,
+        "rshares": 51384632,
+        "voter": "saifer87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10990916065,
+        "rshares": 51383543,
+        "voter": "mr189"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176182187,
+        "rshares": 52392989,
+        "voter": "marketanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52365029,
+        "voter": "jhebertnexus7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2438959,
+        "rshares": 52360280,
+        "voter": "viktorvol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 207968680,
+        "voter": "max78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457580144,
+        "rshares": 52314503,
+        "voter": "soul.ripper.ittu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413165,
+        "rshares": 51273719,
+        "voter": "cryptomaje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 66048721,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843039218853,
+        "rshares": 173634017,
+        "voter": "ziogio"
+      }
+    ],
+    "author": "steve-walschot",
+    "author_reputation": 42741727265739,
+    "beneficiaries": [],
+    "body": "# Our beta is now live! Start accepting STEEM anywhere you want!\n\nAfter countless hours of not sleeping to focus on Steempay, together with @cass who made an amazing UI for Steempay, we're finally able to launch our beta version.\n\nSome parts may still be raw and not yet 100% completed, but the functionality is!\n\n# http://steempay.io\n\nhttps://sc-cdn.scaleengine.net/i/1deff02237d662af32a8948289ffeff6.png\n\nTodo list within the next 48h\n\n - Add more buttons to the generator\n - Publish the Github to public\n - Start creating the shopping cart plugins (WOO first)\n\n\n----------\n# What's next?\n\nSteempay is just the beginning of many projets to follow. There are still some legal aspects to cover, but Steempayments (Steempay's umbrella group) will most likely start processing transactions on it's own servers. This would make it possible for simple, clean merchant solutions like **BitPay** provides, mobile wallet solutions like **Blockchain** to increase the usability of steem worldwide, and many more.\n\n----- \n\n# Raw documentation until Github is public\n\n# Donation vs payment\n\nWhen choosing to receive **donations**, the user is free to send any amount of any currency. To set the donation option, simple use `amount=0` in your parameters. Set currency to either `SBD` or `STEEM` since it's irrelevant for the end user. The user will receive a message to send any amount to your address.\n\nFor fixed amounts, called **payments**, set the `amount` and `currency` to the values required for you. \n\n**WARNING: Make sure to use 3 decimals!** (AMOUNT.000) when generating a payment. This has multiple reasons, including future expantion of Steempay.io.\n\n# Button generator\n\nhttps://sc-cdn.scaleengine.net/i/15a4c07dacbb7652d27f04c9d8e71a58.png\n\nSee https://steempay.io/generate \nCurrently there is only 1 default button available but that will change in the next couple of hours.\n\nThe generated button looks like this (this actually works!)\n<a href='https://steempay.io/payment?&receiver=steve-walschot&amount=0&currency=0&callback=www.steemit.com'>\n<img src='https://steempay.io/img/steempay-sbd--button@2x.png'>\n</a>\n\n\nSome of the proposals by @cass\n\nhttps://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/06/60c7b81e93d59950ebe4e27aff1a823d.png\n# Requesting a new payment\n\nA new payment is created by passing URL or DATA parameters to steempay.io. This means you could send raw HTTP requests, or stay on your own website and send the data via AJAX calls or JSON request.\n\nFollowing parameters are **required**:\n\n - receiver \n - amount \n - currency\n\nFollowing parameters are **optional** ***but recommended***\n\n - callback\n\n## ! IMPORTANT !\nAmount : **Make sure to use 3 decimals!** (AMOUNT.000) This has multiple reasons, including future expantion of Steempay.io\n\nCallback: Get's called on success. You can use this to post a success message or handle data on your server/website if needed.\n\n# Handle callbacks\n\nSet the `callback` parameter with your desired url. Always use `http://` to start your url.\n\nIf a callback URL has been provided, steempay will `post`  the unique paymentID to your URL.  A simple php script can catch the the callback and verify the payment a last time (recommended). \n\nexample.php\n```\n<?php\nif (isset($_GET['payid'])) {\n\t// Payment is success, confirm once again\n\t\n\t$url = \"http://steempay.io/payment/verify?payid=\" . $_GET['success'] . \"& receiver=YOUR_USERNAME&amount=1.000&currency=SBD\";\n\t\n\t$json = file_get_contents($url);\n\tif (json_decode($json->status) && json_decode($json->success) == \"success\") \n\t{\n\t\t// Payment is double verified, do whatever needed now.\n\t}\n}else{\n\t// Some error occured\n    echo $_GET['message'];\n}\n```\n\nVerification is possible via `http://steempay.io/payment/verify?payid=XXX&receiver=XXX&amount=XXX&currency=XXX`.\n\nThe returned main parameters are\n\n - **success** *boolean*\n - **message** *Message about the success status*\n - **payid** *unique serverside generated ID*\n\nThe full response is given below (if success)\n\n    {\"status\":\"success\",\"success\":true,\"message\":\"Payment completed with fixed amount (0.001 SBD).\",\"block\":4306279,\"trx_id\":\"58c415fe70fe7d953e30997b78551415c7e4d190\",\"payid\":\"Re3Hbl1ekAeSwVtzKS\",\"amount\":\"0.001 SBD\",\"timestamp\":\"2016-08-22T14:55:15\"}\n\n\n----\n### Beta version - What this means\n\n\n> Alpha version describes a development status that usually means the first complete version of a program or application, which is most likely unstable, but is useful to show what the product will do to, usually, a selected group\u2014and is also called preview version; the beta version is usually the last version before wide release, often tested by users under real-world conditions.\n\nBugs could still occur, but all payments are made directly to the blockchain, so transactions are always safe from errors.\n\n# Thank you community\n\nI would like to pay my eternal respect to this community, and give a big applause to @cass for the amazing UI and the time he put in this project, and also @roelandp for giving me good advice on how to lower the server's load.\n\nhttps://sc-cdn.scaleengine.net/i/ddc698fcd6c7c0f1c232ce3dfba514bf1.png\n\nhttps://sc-cdn.scaleengine.net/i/6f1b07d917dcfa939592d2406f3cbbb3.png",
+    "body_length": 5191,
+    "cashout_time": "2016-08-29T22:01:51",
+    "category": "steempay",
+    "children": 136,
+    "created": "2016-08-22T22:01:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steempay\",\"steemit\",\"steem\",\"steempayments\",\"development\"],\"users\":[\"cass\",\"roelandp\"],\"image\":[\"https://steempay.io/img/steempay-sbd--button@2x.png\",\"https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/06/60c7b81e93d59950ebe4e27aff1a823d.png\"],\"links\":[\"https://steempay.io/payment?&receiver=steve-walschot&amount=0&currency=0&callback=www.steemit.com\",\"http://steempay.io/payment/verify?payid=\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-22T22:10:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 238615833753017,
+    "parent_author": "",
+    "parent_permlink": "steempay",
+    "pending_payout_value": "7669.880 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steempay-io-v1-0-1-live-accept-steem-sbd-anywhere-button-generator-included",
+    "post_id": 941828,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "STEEMPAY.IO v1.0.1 LIVE! Accept Steem/SBD anywhere! Button generator included!",
+    "title": "STEEMPAY.IO v1.0.1 LIVE! Accept Steem/SBD anywhere! Button generator included!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steempay/@steve-walschot/steempay-io-v1-0-1-live-accept-steem-sbd-anywhere-button-generator-included"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 446491524573,
+        "rshares": 941731279,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7630664486754,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 26546851529009,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28860901543,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26275719549142,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 399415745083,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14697797604728,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40261538120634,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36399158476733,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7287284495784,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 219042566758,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3218865983058,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 385464769392,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6527288225551,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 629235972940,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 107368706156,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1202364403012,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 2778620786382,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 788303906273,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4624143270559,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1012546698102,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 948645888607,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320894214580,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3094227321,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 2018308331283,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3755919142,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703611913,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 5895452407610,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53261625751,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5461062957,
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5248796936,
+        "voter": "jen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 31020409685,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 435835894301,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25224828032,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1658434658,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213555429,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8980249791516,
+        "rshares": 251650600185,
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 12302450425,
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4645434442291,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 15486432504,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322742522737,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2539528091657,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 4677672750501,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1288478836630,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 364488541490,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 76269518609,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1064112656314,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 261059857577,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 15879310527,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622043795,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 947518714,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2706369432682,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 758092952414,
+        "rshares": 6901450215,
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 391300852031,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5116325730997,
+        "rshares": 1759901644,
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3991861275580,
+        "rshares": 49087071558,
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 47676868957,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2294989396894,
+        "rshares": 15744448168,
+        "voter": "cryptoprometheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 282481919881,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6218388754,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287957469,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 22851068453,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 26339332178,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 81271314308,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 28827731919,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13857797589,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2858514112,
+        "rshares": 569109365,
+        "voter": "frxdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 51569034114,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 3381707663,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 10283360038,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 25990954524,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2968414276,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3675361198293,
+        "rshares": 16325220071,
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 6963898563,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 468329075252,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8112324606,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83561852958,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 10788357562,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24290958657,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2181695613,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 339902561070,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1696048914135,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 233102958062,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 7456570912,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 15513837266,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5394181231,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 141860095137,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7722626018,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396875428337,
+        "rshares": 1630869950,
+        "voter": "mookid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 59046327388,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1686985722639,
+        "rshares": 8089463236,
+        "voter": "censor-this"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1011606523,
+        "voter": "coar"
+      },
+      {
+        "percent": "0",
+        "reputation": 161089556767,
+        "rshares": 1647918993,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 491733834025,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2164048830,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46690451470,
+        "rshares": 934691204,
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1702188822,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 41463145095,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 375485571343,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5794630789,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 342876699663,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 818564943128,
+        "rshares": 6176350844,
+        "voter": "motivational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 90078948,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 232932917905,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 12457434054,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8330279054423,
+        "rshares": 63707549495,
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 31690136419,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -2683858617900,
+        "rshares": -8838503984,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 73021925789,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 354956224005,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257181187,
+        "rshares": 352209566,
+        "voter": "jabravo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 344356380936,
+        "rshares": 1231798069,
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 8706722974,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1376656930605,
+        "rshares": 5489887265,
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 53417323094,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 376432512152,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 111873962064,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 20273054154,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 56613707223,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -577089724709,
+        "rshares": 43936012834,
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4620523428308,
+        "rshares": 19944193958,
+        "voter": "minfon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61288297136,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 32282987109,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 211066627674,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 117389810764,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 250779134032,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 449244898326,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48314646957,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4225748527,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13381225324,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 75015159271,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23672766314,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9131956116299,
+        "rshares": 128017998380,
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1372538034,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 186181525556,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 673023307194,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23620081773,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5359058455,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "3500",
+        "reputation": 598181152117,
+        "rshares": 70382421728,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4581391356317,
+        "rshares": 10606399776,
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 354175466732,
+        "rshares": 367993454,
+        "voter": "alextsvirko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2727866888,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 36251103104,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 3803302124,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2296189896,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 35110341502,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6447225666,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4394946495,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 3930145143,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 920884829152,
+        "rshares": 1233769087,
+        "voter": "phanie90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2085539735789,
+        "rshares": 1963122914,
+        "voter": "rowbvp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 176517920920,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 18420587434,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 142479249108,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642153385789,
+        "rshares": 1174733183,
+        "voter": "stupidteenboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 3178114846,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 4163072671,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 11629950938,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3893522363454,
+        "rshares": 231222031627,
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 26189252148,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4916727099,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13090894039053,
+        "rshares": 70050996082,
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5020716018,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250697653,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 1724889475,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 108665344051,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25440234426,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 13382892819,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 129978663055,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257546332,
+        "rshares": 252518634,
+        "voter": "avantyris785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 49613914926,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 20715599247,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25437941218,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 83555712,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 361720448,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9298606221,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657547218546,
+        "rshares": 6187628336,
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "3800",
+        "reputation": 4667991454724,
+        "rshares": 216627523583,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 536841739867,
+        "rshares": 2126899035,
+        "voter": "obfuscate-me"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 77739321482,
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 19130291257,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10583075740,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 103574158909,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 213368336,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 197468232,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 86951139,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1230306794251,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 119931099578,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 8501400238,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3185202465,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7878946500,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41265637686,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 245149849,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 14190084617,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 210282477056,
+        "rshares": 279828314,
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 158558212807,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 269516049,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4356428789,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4446869322,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3549473866,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 144657204853,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33597624083,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 399687388945,
+        "rshares": 246503487,
+        "voter": "fintekneeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1621656248557,
+        "rshares": 5487522068,
+        "voter": "mastertrader777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 81193986566,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 15047061152,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 2181125028,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3728295687,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57622403315,
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 57587125095,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 344216939,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 18563733049,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8640015168,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11804173407,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1705318675121,
+        "rshares": 2923324702,
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 722979920,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7028930352,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8998707956,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128897415203,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1396236934,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17787390532,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 35572192110,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 41117209832,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 5581133833,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 22827120414,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 120162058,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75155947399,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4460619227,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2595832893,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 9297731115,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3773408670,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9261130965,
+        "rshares": 240861118,
+        "voter": "m34ndy0u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1450587245,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84785197552,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51478739136,
+        "rshares": 36691375796,
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3921772813,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10589572085,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 6133928089,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37786807870,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817588332083,
+        "rshares": 2670183399,
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 189803128958,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 198815487354,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 131930031,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 50745949960,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 7915132341,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2352380220223,
+        "rshares": 2371757513,
+        "voter": "metalcrypto86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200835346,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7310496375,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 16418209916,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 792476477,
+        "rshares": 118997456,
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 8272759658,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 145088625,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3429908815,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 32840277809,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 50446860889,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4205952736,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 22490571930,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1931724325,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 897000392259,
+        "rshares": 469444219,
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1417716803,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 107071475,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 8120745406,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 180766867333,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 130516856,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37347150,
+        "rshares": 118191498,
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1014720738596,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 1638021515,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6533566864,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 37104363071,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 2526892289,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5651142,
+        "rshares": 117518172,
+        "voter": "burtnyy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725570292123,
+        "rshares": 3073348452,
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 55609255744,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9223165225,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3860903638,
+        "rshares": 118110720,
+        "voter": "kamirus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 190746623,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1073927278,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5163105975,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 898853087,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35557408613,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 6043552466,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15778369711,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201338440700,
+        "rshares": 348055214,
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 634677740,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 6627911515,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "2500",
+        "reputation": 17698439393799,
+        "rshares": 4966581120,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1277366753949,
+        "rshares": 16359584188,
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 265859568,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 32802459469,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176296837750,
+        "rshares": 10607133925,
+        "voter": "npl77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 4266663174,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 10878913683,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -469690438,
+        "rshares": 435708310,
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4179769209,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137150233782,
+        "rshares": 122951400,
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8543172549,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 750360616481,
+        "rshares": 711696098,
+        "voter": "cybercodetwins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 551563663183,
+        "rshares": 335450273,
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 692722967,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3427179893,
+        "rshares": 125562936,
+        "voter": "blysards"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 1693612096,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3690715185,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 4668432597,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 2977376953,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 111012764140,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11060114610,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1823153221,
+        "rshares": 113431670,
+        "voter": "mms2209"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 714975270,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 51359081888,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7804620168,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 4909898227,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1439465905530,
+        "rshares": 100621269618,
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 2133895656,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192578386836,
+        "rshares": 75908853,
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 301833943,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 41323733064,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 516171402732,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24803457022,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 16960531436,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8258629596,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4882606765,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 19746665322,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 25379157632,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26985239652,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27000068578,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "2000",
+        "reputation": 18027204457681,
+        "rshares": 4686531546,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3500",
+        "reputation": 5776723480371,
+        "rshares": 81445607576,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 20404007761,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 7608055360,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "3700",
+        "reputation": 206355094166,
+        "rshares": 3338294019,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 15842330986,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 31910148976,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 8964678925,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "3500",
+        "reputation": 97845484474,
+        "rshares": 13274553574,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 418252412559,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1579699570,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 180458407,
+        "rshares": 50651622,
+        "voter": "shanejonas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 155802538,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26997864488,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26997159973,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26994977927,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26993476889,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26991282056,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26990193303,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28427048731,
+        "rshares": 22114403402,
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 42489259779,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39744649494,
+        "rshares": 16142463064,
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 989801091,
+        "rshares": 70516052,
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053978638105,
+        "rshares": 3071190621,
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601536515,
+        "rshares": 64088762,
+        "voter": "donnablacktail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 9285793397,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5608801378,
+        "rshares": 65105820,
+        "voter": "korose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 48612921342,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 63775516,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 77473387847,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3100",
+        "reputation": 1851205309677,
+        "rshares": 1012260894,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 374581913,
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 235921562,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 71461631,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1785678779,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 62650809,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -257389679751,
+        "rshares": 100809807,
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 28303329252,
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8826323850,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91384020663,
+        "rshares": 63082929,
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 253851679,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19541417328,
+        "rshares": 62864549,
+        "voter": "alejoshy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 1088539665,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 20915742890,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "3400",
+        "reputation": 4195733833721,
+        "rshares": 1697398641,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1173918713,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 61385527,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1555626413,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 649597112137,
+        "rshares": 62539910,
+        "voter": "jfelton5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 15480226673,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 1512118630,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4829784286,
+        "rshares": 4274024399,
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2256397676,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 710891266725,
+        "rshares": 81481591,
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257190613,
+        "rshares": 62300623,
+        "voter": "nhuberfeely"
+      },
+      {
+        "percent": "3600",
+        "reputation": 730408370151,
+        "rshares": 183175490,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 64006701,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 5549884244,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 11322866467,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 32936248663,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2085306269,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 554142063,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 586268356840,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218198619612,
+        "rshares": 163702640,
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 44719852844,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83638535,
+        "rshares": 60566656,
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 54588377,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 113457626,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13147662,
+        "rshares": 60336688,
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 2021838220,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3440154807,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2510155648,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 1945712531,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4218808165,
+        "rshares": 60713021,
+        "voter": "krishbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 5933699497,
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213488752136,
+        "rshares": 123199538,
+        "voter": "nelkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1205296670,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 202747295,
+        "rshares": 59958658,
+        "voter": "mgd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1694357387,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 56605454,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 791158815026,
+        "rshares": 140126974,
+        "voter": "spalser"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 53959064,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 2832905693,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 217084653,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26984764634,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 59648980,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 16498891421,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 224437021,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 39959999159,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2921148382,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 381954099,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26672558843,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 941542283,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 182784126217,
+        "rshares": 151908779,
+        "voter": "letsgo.asino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305959994445,
+        "rshares": 218436997,
+        "voter": "freerubens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3757912509,
+        "rshares": 53628399,
+        "voter": "alphabit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2834815402,
+        "rshares": 59590162,
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 310843991,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3244771590977,
+        "rshares": 46099719842,
+        "voter": "albensilverberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 15592330951,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 4377285201,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 58226150,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318687464222,
+        "rshares": 90932755,
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 2380044342,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2995790342,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 10644392346,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14701563258,
+        "rshares": 77909231,
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 59797501,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 59044569,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 68338923,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28397805329,
+        "rshares": 57686991,
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23296483960,
+        "rshares": 58283876,
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2322269215556,
+        "rshares": 61577027,
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 4325283932,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 195118598,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1527616438386,
+        "rshares": 13472124826,
+        "voter": "antoinev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 62540266,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8349370222,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11923402406,
+        "rshares": 57131220,
+        "voter": "hotgirlktm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16261261524,
+        "rshares": 18931402331,
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 657881264,
+        "rshares": 58078172,
+        "voter": "dcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 246917049,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41221286829,
+        "rshares": 2625089602,
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150536937083,
+        "rshares": 74582547,
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 57813247,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1805922,
+        "rshares": 57789562,
+        "voter": "frankfriendly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 545808703,
+        "rshares": 6492226260,
+        "voter": "ready4freddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 57683187,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 649448205,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 5202403828,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 4217367409,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339886160,
+        "rshares": 378298430,
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11500654084,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254157559022,
+        "rshares": 173536408,
+        "voter": "justyna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11938411155,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 1941925835,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2711414,
+        "rshares": 56318766,
+        "voter": "suz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 26584702950,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 25411200606,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2136857314,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1595948373990,
+        "rshares": 2300578574,
+        "voter": "liquidrainbowx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 97421272,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96018554976,
+        "rshares": 215371673,
+        "voter": "kita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 62245792,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 60247981,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14762167320947,
+        "rshares": 36265063494,
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 7619175185,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 56883857,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56749063,
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 879417837,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48699492408,
+        "rshares": 87104967,
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 2703939308,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 57894807,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818977100,
+        "rshares": 55971428,
+        "voter": "jimking001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55803830,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26491323630,
+        "rshares": 56340092,
+        "voter": "mercosity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 644939263,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 53942218,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3521631459073,
+        "rshares": 4472747649,
+        "voter": "betamusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 67679386,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 173705520,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 9907002500,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129741556,
+        "rshares": 55982050,
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 56267680,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 3048578115,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 55222754,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 50351260,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26786197501,
+        "rshares": 62018150,
+        "voter": "giselletje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 97810726,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276225890,
+        "rshares": 55410689,
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 26856814801,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1527134893374,
+        "rshares": 603258997,
+        "voter": "michaelmcdermott"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53099160,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 3005615324,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 346099916175,
+        "rshares": 154391429,
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 55192267,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 53034981,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 498489025358,
+        "rshares": 470399270,
+        "voter": "monattalent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 175780152,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53871683,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 52393318,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 54971826,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 63856110,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25713525688,
+        "rshares": 52841577,
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641341984,
+        "rshares": 54658188,
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53593366,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 53602103,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59354601485,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267516181499,
+        "rshares": 3677273797,
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53458617,
+        "voter": "joseph1117"
+      },
+      {
+        "percent": "10000",
+        "reputation": 353288883728,
+        "rshares": 53369320,
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371982243,
+        "rshares": 1294007075,
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 514384460,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1455592982586,
+        "rshares": 520406986,
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 52943536,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207506656,
+        "rshares": 54104748,
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39083745,
+        "rshares": 53968679,
+        "voter": "bobbrasil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2007874792,
+        "rshares": 53031074,
+        "voter": "monkeytraveller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 130434883,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52826202,
+        "voter": "kbregu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 1958906475,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53631416,
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10341114686313,
+        "rshares": 15100509688,
+        "voter": "robinhoodwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7370152734,
+        "rshares": 53623038,
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58562334246,
+        "rshares": 53604743,
+        "voter": "jakeawake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 52710031,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 50092741,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 50066904,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 9229831703,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64941758686,
+        "rshares": 66618246,
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 50852949,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 60249241,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451747,
+        "rshares": 51654766,
+        "voter": "sargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5766569295559,
+        "rshares": 52603451,
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 399936191,
+        "rshares": 51501667,
+        "voter": "sike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197832234,
+        "rshares": 51479169,
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396934417378,
+        "rshares": 52470232,
+        "voter": "justallen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 860350269,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50405458,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972344082,
+        "rshares": 50368568,
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3385955943,
+        "rshares": 52412324,
+        "voter": "saifer87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54957783711,
+        "rshares": 50353356,
+        "voter": "takemyfive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37017310378,
+        "rshares": 51339379,
+        "voter": "jeffreykauffman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125300438974,
+        "rshares": 52353519,
+        "voter": "felipe1alexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6215412,
+        "rshares": 50279703,
+        "voter": "talos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959133,
+        "rshares": 52324894,
+        "voter": "faissal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9560708,
+        "rshares": 50255013,
+        "voter": "rjv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811382585,
+        "rshares": 52254529,
+        "voter": "ross001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127354956,
+        "rshares": 51207930,
+        "voter": "abhinavsolan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52211132,
+        "voter": "arche416"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 52159157,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51121901,
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": -6697604264,
+        "rshares": 50083306,
+        "voter": "kairat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865080474552,
+        "rshares": 52124582,
+        "voter": "frajer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2577729396,
+        "rshares": 50076010,
+        "voter": "funthing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15610174724,
+        "rshares": 50039213,
+        "voter": "wolfclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": -519870545601,
+        "rshares": 50024358,
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": -159993241351,
+        "rshares": 52065485,
+        "voter": "clips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1218589182,
+        "rshares": 50009457,
+        "voter": "smolofaguess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1654538,
+        "rshares": 50000886,
+        "voter": "levlupsfamily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19993849,
+        "rshares": 51009490,
+        "voter": "codeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 309120726,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118194583220,
+        "rshares": 52013777,
+        "voter": "kclement"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -50983830,
+        "voter": "amdj30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50983001,
+        "voter": "thistruthisfree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50977373,
+        "voter": "cobizig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50973868,
+        "voter": "tagonist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51991682,
+        "voter": "sboehm4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51987939,
+        "voter": "olblueyez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51986809,
+        "voter": "bizarroworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50960646,
+        "voter": "donal1682"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51974334,
+        "voter": "werty1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51968647,
+        "voter": "superpuffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50937964,
+        "voter": "michelleshaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601633300,
+        "rshares": 50924850,
+        "voter": "shaolinmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51900403,
+        "voter": "malibu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 50878690,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51875429,
+        "voter": "linzgraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99160090205,
+        "rshares": 51813325,
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1423888772,
+        "rshares": 51809372,
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51788323,
+        "voter": "francis-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51780689,
+        "voter": "raasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108718912,
+        "rshares": 51774444,
+        "voter": "steven15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1601583,
+        "rshares": 50743270,
+        "voter": "drinkout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9050222935,
+        "rshares": 52030157,
+        "voter": "neophonic"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -51060649,
+        "voter": "ssedmaker"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 17701690051649,
+    "beneficiaries": [],
+    "body": "<center>[![thumbfinal2.jpg](https://s19.postimg.org/89t73ydjn/thumbfinal2.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nThe @steemdrive billboard campaign continues to power throughout the world, with the next site targeted being Chicago, USA. \n\nThe first official Steem blockchain crowdfunded billboards are already fully flighted in Durban, South Africa with two digital boards in flight since our last report and details of the print billboard to follow in an upcoming post. \n\nSteemit.com, the social media platform front-end for the Steem blockchain, was founded in the United States by Ned Scott and Dan Larimer (of [Bitshares](http://www.bitshares.org)]. The @steemdrive billboard campaign team is proud to launch this initiative to once again crowdfund a billboard, but this time in the USA, the home of Steem(it)!\n\nWe are proud to introduce Nolan Jacobson as our youngest campaign liaison, someone who has truly impressed us with his determination and spunky ideas. Our campaign is fortunate to have him aboard and is our pleasure to hand over to him to present the Chicago campaign he assisted in organising.  \n\nThank you Nolan for your good work and kind words!\n\n[![signature.png](https://s19.postimg.org/56ul3axar/signature.png)](http://www.steemit.com/@steemdrive)\n\n# Introduction \u2013 Nolan Jacobson\n------------------------------\n\n<center>[![14123948_320909574911079_1188490028_o.jpg](https://s19.postimg.org/xz3txsvmb/14123948_320909574911079_1188490028_o.jpg)](http://www.steemit.com/@theprophet0)</center>\n\nFellow Steemian\u2019s, my name is Nolan Jacobson ( @theprophet0 ), I am 15 years of age; an entrepreneur and over-achiever. I am excited to say that I am the Chicago liaison for the @steemdrive campaign. \n\nSome of you may be saying to yourselves, you\u2019re 15 and you\u2019re an entrepreneur? Yes, I recently created [\u201cThe Steem Store\u201d](https://www.steemit.com/steem/@theprophet0/introducing-the-steem-store-a-store-where-the-only-payment-method-is-steempayments-created-by-the-15-year-old-steemit-guru) it is a store that uses [steempay.io](http://steempay.io/) as the sole payment method to buy Steem/Steemit merchandise. The products I will be selling are different from all the other Crypto/Steem markets and I am looking forward to promote Steemit any way I can through my store and other collabs like @steemdrive. \n\nBut, enough about my business; you have no idea how much \u201cdrive\u201d I have to promote Steemit! I can tell you that I devote myself 100% to all projects I work on; no matter if they are a success or not! Speaking of which, let us get into the Chicago/O\u2019Hare International Airport Billboards!  \n\nWouldn\u2019t that be great, to bring the first Steemit Billboard in America to my hometown, that is home to over 2,700,000 citizens and has more than 50 million visitors every year! You may be thinking, why put up a billboard advertising an online platform? Well, I couldn\u2019t have said it better than Ricardo Goncalves, the founder of the @steemdrive billboard campaign. \n\nIn his replies to comments on previous posts, Ricardo doesn\u2019t classify the billboard campaign as a replacement for online marketing, but rather sees it as a supplementary and supportive initiative. He likes to use the analogy of Coca-Cola, indicating that they are omnipresent and top-of-mind; their ads are on billboards, vehicles, coffee shops, TV, and anything else you can name!\n\nPeople may not click on an online banner immediately, they could consider it is a scam or an internet gimmick, however if they saw it on a billboard previously, it gives it some \"real world\" validity. If a company is spending on a billboard, the public sees them as more legitimate, especially because of the price tag and impact they make. \n\nThe important thing about the campaign is that the community comes together and the billboards lift spirits, for example if you are in the car with your kids and drive past the billboard, your kids may say, _**\"Dad, look it\u2019s Steemit!\"**_, can internet advertising do that?\u201d In my opinion, that is such a great explanation, props to Ricardo! Anyhow, let\u2019s get right into this fantastic billboard drive!\n\n# Chicago\n-------------\n<center>[![views_of_the_beautiful_chicago_640_01.jpg](https://s19.postimg.org/x9gg7p5oz/views_of_the_beautiful_chicago_640_01.jpg)](http://www.steemit.com/@steemdrive)\n[Image Credits]( http://izismile.com/2012/12/27/views_of_the_beautiful_chicago_33_pics.html)</center>\n\nChicago! Everybody around the world has heard about this city! It is the third largest city in the United States. Chicago is home to many amazing sport teams including, The Chicago Cubs, The Chicago Blackhawks, The Chicago Bulls, The Chicago Fire, and The Chicago Bears. \n\n**\u201cChi-town\u201d**, as the citizens of Chicago call it, is also home to the second-tallest building in the United States, The Willis Tower! If you weren\u2019t aware, Chicago is sort of split into 77 different \u201ccommunity areas\u201d if you will; with the North Side and South Side being the two main ones. \n\nThe North Side of Chicago is home to the Chicago Cubs, home of over 1,300,000 people, and the median age is right around 34 years. \n\nThe South Side, on the other hand, is home to the Chicago Bulls, home of just over 861,000 people, and the median age is the same at around 34 years also. ([Information reference](http://www.point2homes.com/US/Neighborhood/IL/Chicago/))\n\n# O\u2019Hare International Airport\n------------------\nRight outside O\u2019Hare International Airport is the killer spot for a billboard in my eyes! According to [Wikipedia](https://en.wikipedia.org/wiki/O%27Hare_International_Airport), O\u2019Hare International Airport is the busiest airport in the world, since 2013, when it beat out Hartsfield-Jackson Airport in Atlanta. \n\n### The Busiest International Routes to and from ORD (2015)  are listed below:\n\n1.\tLondon | Passengers \u2013 1,029,216\n2.\tToronto | Passengers \u2013 843,372\n3.\tTokoyo | Passengers \u2013 712,579\n4.\tFrankfurt | Passengers \u2013 622,743\n5.\tMexico City | Passengers 493,747\n\n(Data Source: [Wikipedia](https://en.wikipedia.org/wiki/O%27Hare_International_Airport)) \n\nAfter seeing that many international travelling passengers; I would say that Steemit could get a ton of global attention in addition to domestic exposure.\n\n# Crime in Chicago\n------------------------\n\nSadly, crime is everywhere in the filthy world we live in. This year, Chicago has been in the thoughts of many; there have been 2,743 people shot to this day, of those 2,378 people shot, 2318 of those people were wounded, and 465 of them were homicides. \n\nThese are just despicable numbers. As of April 1st 2016, murder rates are up 72% and shootings are up more than 88%. ([Information source](http://heyjackass.com/))\n\nAccording to the Chicago Police Department, the disturbing rise in violence is driven by gangs and mostly contained to a handful of pockets on the city's South Side. Gangs are truly a scourge on our city, little kids these days are being recruited, joining at such a young age and sadly some are even being recruited out of elementary school. \n\n# Why do kids join gangs?\n---------------------\n\nHere are a couple risk factors that can lead children and adolescents to join a gang.\n\n\u2022\tThey see the people in gangs have a lot of money.\n\n\u2022\tThey have no positive role models or mentors.\n\n\u2022\tThey have a sense of hopelessness about the future because of limited educational or financial opportunity.\n\n# How can Steemit help these problems?\n-----------\n\nI will answer the bullet points listed above with statements in which Steemit can help these awful problems:\n\n\u2022\tOn Steemit, you get paid for just simply writing content. You don\u2019t have to risk your life every day to make money; in fact it\u2019s just the opposite!.\n\n\u2022\tIn the Steemit community everybody has a positive attitude! Negativity won\u2019t last on Steemit. In fact, Steemit is a good environment for every one of every age! Ricardo is my role model, who shows there are positive role models and mentors on Steemit!\n\n\u2022\tWith Steemit there are never worries about limited education or lack of financial opportunity because every day you are on Steemit, you learn something new. Steemit actually has a great impact on your education! \n\n# How Steemit will benefit Chicago\n-----------------------\n<center>[![views_of_the_beautiful_chicago_640_05.jpg](https://s19.postimg.org/6pnv5k55f/views_of_the_beautiful_chicago_640_05.jpg)](https://postimg.org/image/3vkps42z3/)\n [Image Credits]( http://izismile.com/2012/12/27/views_of_the_beautiful_chicago_33_pics.html)</center>\n\nJoining Steemit is a very positive alternative to joining the gangs; as you can see from reading the above. It actually may help children get out of gangs as they find out that they can make money without risking their life every day. \n\nAlso, with there being a young crowd in Chicago who are literate to smart phones and computers, I believe that Steemit will flourish and have a positive impact on the citizens of Chicago! \n\n# The Billboard Options, Are You Choosing Chicago or O\u2019Hare?\n-------------------------\nThe reality is that unless this post hits a very high figure, we will only be able to obtain one billboard and there are two billboard options we have selected that we need your help with. In the comments section of this post we need you to simply vote on comment #1 or #2 depending on which billboard you would prefer seeing incase we don\u2019t receive enough funds for both. _(Remember to first vote on the main post)_\n\nI will be showing you both of the options from a distance. (The artwork is done by me, keep in mind I am a rookie. This is NOT the final artwork) Also, keep in mind that the 1st billboard is located on the Tri-State Tollway and is located next to O\u2019Hare International Airport. The 2nd billboard is near the South Side of Chicago.\n\n## Option #1 - O\u2019Hare\n\n<center>[![newpng.png](https://s19.postimg.org/fktattjbn/newpng.png)](https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638)</center>\n\nThis DIGITAL bulletin gets prime exposure to traffic headed to O'Hare Airport. This affluent section of DuPage County is considered to be the fastest growing in the United States. Only 50 feet from the toll-way, this sign has excellent exposure to nearly 60,000 daily commuters to Metro-Chicago from the upscale northern suburbs.\n\n**Panel #:** 70082\n**Location:** TRISTATE (I-294) E/S .5 MI N/O NORTH\n**Lat/Long:** [41.9136/-87.9193](https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638)\n**Panel Size:** 20' 0\" x 60' 0\"\n**Weekly Impressions:** 552637 per spot (based on 18+ years of data)\n\n## Option #2 - Chicago South\n\n<center>[![newsteemitlife.png](https://s19.postimg.org/7th6904k3/newsteemitlife.png)](https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917)</center>\n\nLocated on the Tri-State Tollway in Chicago's South Side, this DIGITAL sign delivers traffic coming from the far-south suburbs and NW Indiana heading west to Joliet on I-80 and north to locations such as Midway Airport on I-294. This is one of the heaviest interstate truck-traffic areas in the country.\n\n**Panel #:** 70051\n**Location:** TRISTATE (I-294) N/S W/O HALSTED\n**Lat/Long:** [41.5787/-87.6430](https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917)\n**Panel Size:** 20' 0\" x 60' 0\"\n**Weekly Impressions:** 378483 per spot (based on 18+ years of data)\n\n# Why I chose these billboards\n--------------------\n\nI chose these billboards for a couple reasons\u2026\n\n1.\tWith O\u2019Hare International Airport being so close to each billboard, I think that is a killer location as O\u2019Hare International Airport is the busiest airport in the world.\n\n2.\tLots of traffic on the Tollway which means when people are backed up, they will look at the billboard.\n\n3.\tThe Billboards are available to see 24/7.\n\n4.\tO\u2019Hare International Airport attracts a ton of local and international visitors. With that being said it will get global exposure.\n\n5.\tIMHO, there is no better place to start a billboard campaign in the United States than Chicago!\n\n------------------------\n\n## @steemdrive in the Media:\n\n+ http://bitcoinhub.co.za/new-social-media-platform-steemit-set-to-take-south-africa-by-storm/\n\n+ https://coincheck.com/en/blog/1845\n\n+ [Beyond Bitcoin E166 2016-07-29](https://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts#t=30:07)\n\n+ [Beyond Bitcoin E169 2016-08-19](https://soundcloud.com/beyond-bitcoin-hangouts/e169-beyond-bitcoin-dollarvigilante-talks-steem-blockpay-ico-grc-hangouts-steem-billboard-campaign#t=2:21:51)\n\n-------------------\n\n## Campaign Partners:\n\n<center>[![beyondbitcoin.jpg](https://s19.postimg.org/qj95pqxar/beyondbitcoin.jpg)](http://www.steemit.com/@officialfuzzy)</center>\n\n\n--------------------\n\n\n<center>[![blocktrades.jpg](https://s19.postimg.org/sf0jenbir/blocktrades.jpg)](http://www.blocktrades.us)</center>\n\n\n--------------------\n\n\n<center>[![blockpayfinal.jpg](https://s19.postimg.org/ek28w6h3n/blockpayfinal.jpg)](http://www.blockpay.ch)</center>\n\n\n\n---------------------\n\n## <center>Witness @delegate.lafona (liaison and campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @smooth.witness (campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @liondani (campaign supporter)</center>\n\n---------------------\n\n## @steemdrive Supports the Following Initiatives:\n\n+ @robinhoodwhale ([info link here](https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed))\n\n+ @steemcleaners\n\n+ [thesteemstore.com](https://www.thesteemstore.com/password)\n\n+ [steempay.io](http://steempay.io)\n\n----------------------\n\n## Terms and Conditions:\n\nSteem Dollar payout funds raised from this Steemit post shall be primarily allocated to the **Chicago billboard campaign**, and/or any other billboard site or @steemdrive public project where funds may be required in and paid in accordance with the general campaign terms and conditions.\n\nNed Scott of Steemit, Inc. approved the use of the domain steemit.life on artwork, which will point to a referral link for campaign tracking, otherwise not possible if steemit.com was advertised.\n\nAll images are either royalty free, public domain, supplied by the billboard agencies or paid for by the campaign or liaison, credits will appear beneath any other image sources.\n\n-----------------------\n\n## Direct Donations:\n\n+ A special thank you to Fuzzy from [Beyond Bitcoin]( https://steemit.com/@officialfuzzy) hangouts for pledging to donate 200 SBD to the campaign.\n\n+ Another unexpected surprise pledge from @smooth in comment below, of 2000 SBD!!! Smooth you are a legend! \n\n+ 25 SBD received from @smailer , thank you for helping make history my friend!\n\n+ Confirmation received of 200 SBD from @liondani , we are truly blessed today, thank you so much for your support.\n\n+ Thank you to  @bhavnapatel68  for a 25 SBD contribution, our team salutes you!\n\n<center><a href='https://steempay.io/payment?&receiver=steemdrive&amount=0&currency=0'><img src='https://steempay.io/img/donate.png'></a></center>\n\n-----------------------\n\n## Funding Requirements:\n\nThe billboards are each the same cost per 4 week rental, taking into consideration the \"voters 25% haircut\", the 50% split into SBD, 20% SBD liaison pay and a 15% allowance for SBD peg variance and other charges; the pre-payout campaign value required to successfully fund one billboard for 4 weeks is approximately 10 500 dollars _(double this for both billboards)_.   \n\n**REMEMBER TO VOTE (WITH FULL POWER!) FOR THE MAIN POST AND THEN VOTE ONE FAVOURITE BILLBOARD LOCATION!**\n\nWe achieved a pre-payout value of just under 27 000 dollars on our first South African campaign, let us now see what America can do! \n\nThe @steemdrive team thanks you for your support thus far and hope you will support us once again, **bringing \"Steem powered\" billboards to Chicago, USA!!!**",
+    "body_length": 16385,
+    "cashout_time": "2016-08-31T16:22:21",
+    "category": "steemit",
+    "children": 160,
+    "created": "2016-08-24T16:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"life\",\"crypto-news\"],\"users\":[\"steemdrive\",\"theprophet0\",\"delegate.lafona\",\"smooth.witness\",\"liondani\",\"robinhoodwhale\",\"steemcleaners\",\"smooth\",\"smailer\",\"bhavnapatel68\"],\"image\":[\"https://s19.postimg.org/89t73ydjn/thumbfinal2.jpg\",\"https://s19.postimg.org/xz3txsvmb/14123948_320909574911079_1188490028_o.jpg\",\"https://s19.postimg.org/x9gg7p5oz/views_of_the_beautiful_chicago_640_01.jpg\",\"https://s19.postimg.org/6pnv5k55f/views_of_the_beautiful_chicago_640_05.jpg\",\"https://s19.postimg.org/fktattjbn/newpng.png\",\"https://s19.postimg.org/7th6904k3/newsteemitlife.png\",\"https://s19.postimg.org/qj95pqxar/beyondbitcoin.jpg\",\"https://s19.postimg.org/sf0jenbir/blocktrades.jpg\",\"https://s19.postimg.org/ek28w6h3n/blockpayfinal.jpg\",\"https://steempay.io/img/donate.png\"],\"links\":[\"http://www.bitshares.org\",\"https://www.steemit.com/steem/@theprophet0/introducing-the-steem-store-a-store-where-the-only-payment-method-is-steempayments-created-by-the-15-year-old-steemit-guru\",\"http://www.point2homes.com/US/Neighborhood/IL/Chicago/\",\"https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638\",\"https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917\",\"https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed\",\"https://steempay.io/payment?&receiver=steemdrive&amount=0&currency=0\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T11:35:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 227968562806338,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "7005.305 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream",
+    "post_id": 968983,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
+    "title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 38451193659,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83122046,
+        "rshares": 17385412095137,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7688659622029,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 29652173029568,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28854853175,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 39486167539961,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36385063290586,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2049642827168,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1582895535608,
+        "rshares": 73272768589,
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "6600",
+        "reputation": 27004834032159,
+        "rshares": 346085143111,
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 17422262223173,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 6946368014897,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8832433017411,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3246757738413,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 384932387105,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6720670302195,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 115693124003,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1944790367140,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4895804718369,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 33307827345,
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 954858040877,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 803566613810,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320669746586,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3085197652,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1975747200682,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3744410921,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 708979370,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3372697687234,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1438694033657,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52275677031,
+        "voter": "bue"
+      },
+      {
+        "percent": "0",
+        "reputation": 3745363549909,
+        "rshares": 1281552306,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1653869296,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213274356,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 32550511782,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5309145361747,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1129010306514,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 304829401415,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 70877943888,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 716694338266,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 252087376835,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10210285256,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 613532784,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 893835290,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2672477130289,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 398157135647,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 17069621824,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 44104332762,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 94216559894,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287509506,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8864087428,
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 26315706357,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "100",
+        "reputation": 76633033946568,
+        "rshares": 14800880014,
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 89038138941,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 26838106632,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1339573287588,
+        "rshares": 10271411415,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 116313551950,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 91924984138,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 16989625299,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32994008304403,
+        "rshares": 142021953735,
+        "voter": "nkdk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2907626165,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3828884985898,
+        "rshares": 58847956204,
+        "voter": "lovelace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3989110433,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1845145940128,
+        "rshares": 67269861861,
+        "voter": "idealist"
+      },
+      {
+        "percent": "6000",
+        "reputation": 4931834878069,
+        "rshares": 15263430960,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2766508550901,
+        "rshares": 29123911687,
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 473678777,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 94838484142,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45574888424,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2177251712,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 337331566741,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "6000",
+        "reputation": 5414208804644,
+        "rshares": 20041361318,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3342907840,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4599317604,
+        "rshares": 2164745847,
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 73767981753,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9206411638386,
+        "rshares": 98635020280,
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 58992402649,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178873113861,
+        "rshares": 4702449999,
+        "voter": "xav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 54214633364,
+        "voter": "tosch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1450853172,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 339984285,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29017585900,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775122446878,
+        "rshares": 47246284590,
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 580523246157,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 315960216,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18522213380,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2272340357792,
+        "rshares": 218111827316,
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 222779231297,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 11474193919,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8330279054423,
+        "rshares": 64330796457,
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329767399573,
+        "rshares": 1613095208,
+        "voter": "arskiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 26145560412,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 95985729250,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 344356380936,
+        "rshares": 1231561594,
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4260826979219,
+        "rshares": 7935608077,
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 504962385,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57302509663422,
+        "rshares": 412671917575,
+        "voter": "the-alien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 290189917167,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55062940846,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 18924572691,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61260862795,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -453869065378,
+        "rshares": 8398468481,
+        "voter": "somedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 971544329,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 107568962014,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 3119386171,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19854078940,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 435396351969,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13557964207046,
+        "rshares": 80388659823,
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 47317933373,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1445317942,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4225748527,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13377007401,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 80341870005,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19574669,
+        "rshares": 713614971,
+        "voter": "menace.coin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1551377063,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 118983805142,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 20674508047,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 44252149522,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 216869687795,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 636117083,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 25241493318,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012910736351,
+        "rshares": 10527048441,
+        "voter": "vladon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26564452802341,
+        "rshares": 386335737081,
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 3474673641,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 50184326192,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 4733608063,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1691789720,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 5756639361,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 35716570141,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6829924943,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 427801121477,
+        "rshares": 565346205,
+        "voter": "nadejde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 250811301,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 13311207958,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4014763201,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 4090541230,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 127433544240,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3116292841,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36391001943292,
+        "rshares": 165872891302,
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 266349543845,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10490437282665,
+        "rshares": 18675405646,
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11666102,
+        "rshares": 746630589,
+        "voter": "stalnionis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 2098337565,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 3804121527,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 668633470533,
+        "rshares": 3704365763,
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 253533017,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 146610995479,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 6985662723,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1260650049067,
+        "rshares": 1048586169,
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 17680389230,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 21098879051,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5172309447,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 245031826,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2638289178,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25550006177,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 6020292061,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12808729996,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 4015098030,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20017085495,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 133969627073,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 56214004774,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 5072625846,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9081117484953,
+        "rshares": 29530036864,
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 49579926408,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 4227326061,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 470865866,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25692821957,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 273706533,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 415946152,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 38500990109,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223278762484,
+        "rshares": 16470022526,
+        "voter": "jazzka"
+      },
+      {
+        "percent": "6000",
+        "reputation": 19111656178138,
+        "rshares": 31369317052,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10574593346,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3891722,
+        "rshares": 363404265,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "6000",
+        "reputation": 9142611234,
+        "rshares": 406327478,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3871042,
+        "rshares": 372534009,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13191361,
+        "rshares": 246089730,
+        "voter": "alex2649tw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978354715302,
+        "rshares": 13093257174,
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727668809534,
+        "rshares": 4158546853,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38925032909,
+        "rshares": 836023833,
+        "voter": "alkemix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3146121037,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 188957990,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 536550051,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6427173743,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41263112632,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 240342989,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1670378553,
+        "rshares": 244459106,
+        "voter": "sairji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 302485212431,
+        "rshares": 532244432,
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1026390089,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43291626440,
+        "rshares": 252407179,
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97646232305,
+        "rshares": 239429308,
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2993850661147,
+        "rshares": 17625843355,
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "5000",
+        "reputation": 25849925929525,
+        "rshares": 54345146257,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18394247275,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3783115811,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 40651190846,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 78889019157,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1546897172,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19068212733,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 348108726622,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 11395824102,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3059156583,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1245155906,
+        "rshares": 3077393881,
+        "voter": "kaneen74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 23376052723,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 53925388822,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 241764375,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 12628644739,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 179196273146,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 10360143599,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2348727450,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2556620116,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8453400920,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 3684539967,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13378446228,
+        "rshares": 487886612,
+        "voter": "charles-d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 26196706184,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25830549400,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 55406335361,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 6734695477,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 148525300554,
+        "rshares": 14373754719,
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 258070573,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 4795024069,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84104965081,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 7615150102,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817588332083,
+        "rshares": 2670183399,
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 7858101339,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 116919592,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 9511446677,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1398571760,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1011214030,
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 24615216974,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7161298409,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12248503488,
+        "rshares": 734402373,
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 485646625,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5034293849,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 972760038,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116450799,
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 1971723463,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 275405933257,
+        "rshares": 290205209,
+        "voter": "sagar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19038668222,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116065815,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1928511507,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 111726756,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19590958,
+        "rshares": 118283572,
+        "voter": "theleximus1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 148183514305,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24394944,
+        "rshares": 115837887,
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "6000",
+        "reputation": 10519849768972,
+        "rshares": 12293168978,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 143874373,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 32878858013,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 115682991,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 44705463796,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 115387959,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 23187314517,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 211677715438,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27988491601746,
+        "rshares": 1444157412,
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4538359177,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18558854696,
+        "rshares": 123258754,
+        "voter": "streem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 776294423,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1156777476755,
+        "rshares": 2440982239,
+        "voter": "marriedbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73386813,
+        "rshares": 226734950,
+        "voter": "aleksandra28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 6009180650,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 13073623412,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2405047992,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230402080,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 2070076420,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 7116967446,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "6000",
+        "reputation": 147425730,
+        "rshares": 383206253,
+        "voter": "fnait"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3720753029,
+        "rshares": 375933865,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 32514332248,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 405419067,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3821319838891,
+        "rshares": 20990784022,
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34240178,
+        "rshares": 111995622,
+        "voter": "dushyant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5652176856,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2493302761715,
+        "rshares": 5116087046,
+        "voter": "saulius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 57817214351,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1665681200140,
+        "rshares": 509338382,
+        "voter": "kaykunoichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1733966276,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 23834093727,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2480041506,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 4757360328,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 72289125531,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 10212393410,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21698735,
+        "rshares": 112450703,
+        "voter": "arslan7544"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 786742077,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 6402218596,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 1230387590,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 2033912739,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192578386836,
+        "rshares": 62220152,
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 64056721,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14386644371,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 10892926265,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8300226776,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 12986522188,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8093308679,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4871794356,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2074751088,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1412252219445,
+        "rshares": 2593793851,
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 1653680090,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 25867914835,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32372239,
+        "rshares": 63671033,
+        "voter": "play"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64906381,
+        "voter": "crowdfundvibe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2369229878,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1431883444,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": -84745859,
+        "rshares": 64649163,
+        "voter": "holwylb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 63300522,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059781550,
+        "rshares": 63242540,
+        "voter": "impigrum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4549076794,
+        "rshares": 382253852,
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3591043,
+        "rshares": 64298241,
+        "voter": "crisstaken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601536515,
+        "rshares": 62743518,
+        "voter": "donnablacktail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3394759517,
+        "rshares": 5534757981,
+        "voter": "tannukas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7418993028,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98165336756,
+        "rshares": 89782930,
+        "voter": "jefflee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 21005913988,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 200157889,
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62268668,
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 172287577,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 57105514,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17896389,
+        "rshares": 63362435,
+        "voter": "oluwen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1762897311,
+        "rshares": 62368657,
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7853197446,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 1631288233,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 4831441172,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2461770643,
+        "rshares": 62006301,
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61704615,
+        "voter": "gatorjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 169623708,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10320676912,
+        "rshares": 61598061,
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19617748220,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 174221367,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2685807725,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 597889009267,
+        "rshares": 69558111,
+        "voter": "sarita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 969829,
+        "rshares": 62069093,
+        "voter": "giannicapasso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263793010310,
+        "rshares": 149453758,
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 110871569,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5297329962603,
+        "rshares": 3954589158,
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 89034260,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 2048624792,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 54300455,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7661878703,
+        "rshares": 60903916,
+        "voter": "thoth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 31647211554,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978686892,
+        "rshares": 60467503,
+        "voter": "leraakulenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 577231315,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 459420482396,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 995507831,
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 26642706254,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 5047027984,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38037060915,
+        "rshares": 69850863,
+        "voter": "bitfish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60676805,
+        "voter": "elmariac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379898572,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1429700840,
+        "rshares": 60651985,
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 60521896,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 196915807,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 2813505777,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 835908919,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692776457,
+        "rshares": 79642959,
+        "voter": "steemcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3439090381,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89368060,
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 199289634,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419194490202,
+        "rshares": 122271574,
+        "voter": "truthmomma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 576074830,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 56384147,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50271542021,
+        "rshares": 59183580,
+        "voter": "vegeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 50439994,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 58479392,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58423044,
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41046442348,
+        "rshares": 62574066,
+        "voter": "ktbaeohana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1297778556911,
+        "rshares": 61805391,
+        "voter": "cehuneke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3463887645084,
+        "rshares": 7644756825,
+        "voter": "garywilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59236965,
+        "voter": "dauwken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 858943654,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 901378583777,
+        "rshares": 1592329786,
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3936001425,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26471610,
+        "rshares": 56695901,
+        "voter": "gosteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 33542477932,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 300847113,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 69441445,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7880148903461,
+        "rshares": 9951404773,
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 22543917173,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59043906563,
+        "rshares": 71103152,
+        "voter": "dasfarm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 205069063,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2763355474,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 53804048,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100538074328,
+        "rshares": 57570619,
+        "voter": "tsbloyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1255927681,
+        "rshares": 57875249,
+        "voter": "andyseo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25773560575,
+        "rshares": 64184750,
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 410676451,
+        "rshares": 58787702,
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 200332810318,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56332233,
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 58914198,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34004319054,
+        "rshares": 64745673,
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 893390250,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 57583148,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 55320371,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263257839975,
+        "rshares": 62202585,
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 2909500506,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 62361130,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 183777633,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 56887954,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17655222820,
+        "rshares": 1453468817,
+        "voter": "djdmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1442187004,
+        "rshares": 56930391,
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 74072122,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 713159404291,
+        "rshares": 153933584,
+        "voter": "groovedigital"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 61826880,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7174766783,
+        "rshares": 59464308,
+        "voter": "lukie257"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5728419472436,
+        "rshares": 2412812207,
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 38710389758,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44144427219,
+        "rshares": 60206256,
+        "voter": "rainmnz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 55403417,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 98950105,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 365799797,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4387236391,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57549632,
+        "voter": "felixblanco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 281743750,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 59105066,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 232544963,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214277678030,
+        "rshares": 69012539,
+        "voter": "decentro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 111221218,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2147020967,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 606649786815,
+        "rshares": 58094402,
+        "voter": "lapants"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 377617397,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 54842347,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 1467546651,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10121332649,
+        "rshares": 57747508,
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50084618,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 246572435,
+        "rshares": 55628200,
+        "voter": "tocos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 621946161,
+        "rshares": 56911596,
+        "voter": "courtneybelyea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20920557,
+        "rshares": 54500387,
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3603226178,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329465840,
+        "rshares": 56611081,
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1511945712631,
+        "rshares": 913919467,
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1915680741,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1017211703,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 890717617,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 56447574,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896571460055,
+        "rshares": 1282363031,
+        "voter": "russianark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327621924,
+        "rshares": 56364556,
+        "voter": "pumpndumptrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 9444303420,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982285480,
+        "rshares": 55390353,
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19272336927,
+        "rshares": 277212432,
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174215430182,
+        "rshares": 187358259,
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737630,
+        "rshares": 55053663,
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6334668426,
+        "rshares": 51749039,
+        "voter": "gsdalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 51745040,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 53925231,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3954457383539,
+        "rshares": 53893867,
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42790439089,
+        "rshares": 55560454,
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1749890,
+        "rshares": 54898534,
+        "voter": "roadie73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54861931,
+        "voter": "dirtyjr101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440270276,
+        "rshares": 55937830,
+        "voter": "luigimendi89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55919448,
+        "voter": "minisupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 131370012,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5202217,
+        "rshares": 54767752,
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110864068340,
+        "rshares": 77889825,
+        "voter": "powercouple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61924173,
+        "rshares": 55786422,
+        "voter": "mathewrush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 55155287,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55675902,
+        "voter": "kenyan"
+      },
+      {
+        "percent": "10000",
+        "reputation": -242007231380,
+        "rshares": 62901999,
+        "voter": "avemend"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 4702037886,
+        "rshares": -55524391,
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54468075,
+        "voter": "prestonslove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 53433189,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2504507,
+        "rshares": 51170419,
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 55407469,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 54258724,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53122101,
+        "voter": "jimwhipple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61903571255,
+        "rshares": 55143258,
+        "voter": "jessicalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29636187142,
+        "rshares": 63417242,
+        "voter": "haizuru-ishida"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 55018737,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 75687607,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54996833,
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 93233347,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288672343,
+        "rshares": 335457095,
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 53758453,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 755669106,
+        "rshares": 53731875,
+        "voter": "protrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20477968943,
+        "rshares": 54806372,
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 52638225,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 53689387,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51488252,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53603360,
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53594242,
+        "voter": "otis13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53589726,
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50351227,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5323658,
+        "rshares": 51363851,
+        "voter": "rafej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50207083,
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33107217,
+        "rshares": 53408323,
+        "voter": "adpt2apocalypse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54464024,
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51951433,
+        "rshares": 53381371,
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -141407968658,
+        "rshares": 53362659,
+        "voter": "promaxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53360048,
+        "voter": "arkana"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -487558380270,
+        "rshares": -51218846,
+        "voter": "cooldemos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53333238,
+        "voter": "donzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 252269790,
+        "rshares": 51191809,
+        "voter": "ladyboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53324358,
+        "voter": "pampers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53298526,
+        "voter": "tweek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 932570039,
+        "rshares": 53278513,
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21974595275,
+        "rshares": 54340900,
+        "voter": "cristine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53264688,
+        "voter": "mallamahesh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 935727204,
+        "rshares": 54254783,
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 830944,
+        "rshares": 53180419,
+        "voter": "alexanderem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53168377,
+        "voter": "kelsee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 52104910,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50983830,
+        "voter": "amdj30"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 17701690051649,
+    "beneficiaries": [],
+    "body": "<center>[![thumb_96.jpg](https://s19.postimg.org/cc8s49gnn/thumb_96.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nThe @steemdrive billboard campaign continues its world dominance of grand outdoor advertising for the promotion of Steemit, the blockchain based social media platform. Electronic billboards are already playing 15 second advertising loops in the _\u201cground zero\u201d_ city of Durban, South Africa as reported in [our last proof of flight post](https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa). Furthermore, the 20M x 5M print billboard is currently in production, with official updates to follow.\n\nAs promised, we will be engulfing all countries around the world with Steemit billboards for as long as we have the fantastic support of the Steemit community behind the @steemdrive campaign. \n\nThe next target location is Auckland, New Zealand; hometown of fellow Steemian, and @steemdrive liaison, Shayne Shiells; who an active member of the community and deserving of maximum support for his campaign, take it away Shayne\u2026      \n\n<center>[![intro.jpg](https://s19.postimg.org/vu80xy2z7/intro.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nHi fellow Steemians, most of you know me as @cryptoiskey, I recently joined Steemit on the 4th of July 2016, which already seems like a lifetime ago. \n\nI have a background in 3D Animation and Design and have been developing for a virtual world since 2007. \n\nWhen I believe in something I like to invest myself 100% with no exceptions and I believe heavily in Steemit and the direction it is moving. \n\nIn order to ensure Steemit's success, I believe _**we all need to do our part to bring Steemit to the world in whatever way we can**_. I have started promoting Steemit on the beaches of California which you can view [here](https://steemit.com/steemit/@cryptoiskey/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag). \n\nVenice beach was a great success and I will continue promoting Steemit on the California coast when I can, but for now I am excited to introduce the power of Steemit to my home country of New Zealand. \n\nI was born in Auckland and know the city very well. It is the perfect fit to start a Steemit billboard campaign and hope you will support this endeavor. The city of Auckland in New Zealand is a prime location for billboard displays,  let me explain why.\n\n<center>[![auckland.jpg](https://s19.postimg.org/fx4nnhl77/auckland.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nAuckland is the transportation central for the entire country. There are 1.4 million residents, not including the extended Auckland regions. Auckland holds 33% of the total New Zealand population.\n\nAuckland's cosmopolitan dominance in New Zealand is very visible with 40% of the population being born overseas.\n\nHaving a large mix of ethnic groups in one area means many of their family members are still overseas, this will intensify the exposure to other countries, by utilizing a faster chain effect. People are always excited spreading the Steemit word, which I am sure is a valid advantage.\n\nNew Zealand also attracts tourists from all over the globe, with 3 million international visitors landed in Auckland In 2015. Many of these international travelers are from a younger generation seeking high-octane adventures and publishing their experiences via social media. Steemit blogging is a perfect fit and a billboard in the right location can take advantage of this demographic.\n<b></b>\n### Below are the available Billboard locations.\n\n<center>[![bill-loc.jpg](https://s19.postimg.org/klp8wezrn/bill_loc.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nYou will notice the 2 black arrows. These are 2 locations I think can take advantage of Aucklanders and International visitors.\n\n### Billboard 1 - Nelson St.\n\nThis first billboard is located on Nelson St. in city central and is perfect for the visitor demographic as well as Aucklanders. What I like about this billboard is its position in relation to the stop lights. It really stands out between the 2 buildings. It will also take advantage of the \"stop time\".\n\n<center>[![a112-original.jpg](https://s19.postimg.org/j7xm140ib/a112_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a112-steemit-added.jpg](https://s19.postimg.org/m4kn1e6c3/a112_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Nelson St. proposed artwork concept</center>\n\n+ Size 6M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,676,161\n\n### Billboard 2 - Great South Road, Penrose.\n\nThis billboard takes advantage of dual traffic flows. One of the traffic flows contains 3 lanes of busy traffic. The viewing time is extended because of the sheer volume of stop lights. The billboard is heavily illuminated at night as to peek interest 24 hours a day.\n\n<center>[![a215-original.jpg](https://s19.postimg.org/vewr4xh1v/a215_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a215-steemit-added.jpg](https://s19.postimg.org/todq3fzir/a215_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Great South Road, proposed artwork concept</center>\n\n+ Size 12M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,119,333\n\nAll of the billboards locations in Auckland have great statistics and a rotation campaign would definitely work well.\n\n### The main reasons I like the two aforementioned billboards are:\n\n1. The locations take full advantage of stop lights which I believe is a key factor for driver awareness.\n2. The statistics are very high in both locations.\n3. They both are visible at night time giving them 24 hour exposure.\n\nAuckland is a great starting point to gather some statistics and see how the New Zealand market responds to the Steemit billboards. New Zealand is very touristic and if placed correctly it is possible to take advantage of certain cities at specific times of the year (The seasonal charge of tourists). Tourists = Global.\n\nThe @steemdrive team thanks you for your support thus far and hope you will support us once again, bringing Steem powered billboards to New Zealand. \n<center>[![auckland.jpg](https://s19.postimg.org/w9jaqyowj/backpackers.jpg)](http://www.steemit.com/@steemdrive)</center>\n<center>Remember to `VOTE`, `SHARE` and `FOLLOW`.</center>\n<hr>\n\n<hr>\n\n**Terms and Conditions:**\nSteem Dollar payout funds raised from this Steemit post shall be primarily allocated to the New Zealand billboard campaign, and/or any other billboard site or @steemdrive public project where funds may be required in accordance with the general campaign terms and conditions.\n\nNed Scott of Steemit, Inc. approved the use of the domain steemit.life on artwork, which will point to a referral link for campaign tracking, otherwise not possible if steemit.com was advertised.\n\n**Previous Campaign Links:**\nhttps://steemit.com/money/@steemdrive/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\n\nhttps://steemit.com/steemdrive/@steemdrive/steemdrive-the-last-mile-for-27k-billboard-campaign-and-vote-of-thanks\n\nhttps://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts. _(Ricardo Goncalves' @steemdrive interview with Beyondbitcoin Hangouts, FFWD to around 30 minutes)_\n\nhttps://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa",
+    "body_length": 7564,
+    "cashout_time": "2016-08-23T17:08:12",
+    "category": "steemit",
+    "children": 131,
+    "created": "2016-08-16T17:08:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"life\",\"crypto-news\"],\"users\":[\"steemdrive\",\"cryptoiskey\"],\"image\":[\"https://s19.postimg.org/cc8s49gnn/thumb_96.jpg\",\"https://s19.postimg.org/vu80xy2z7/intro.jpg\",\"https://s19.postimg.org/fx4nnhl77/auckland.jpg\",\"https://s19.postimg.org/klp8wezrn/bill_loc.jpg\",\"https://s19.postimg.org/j7xm140ib/a112_original.jpg\",\"https://s19.postimg.org/m4kn1e6c3/a112_steemit_added.jpg\",\"https://s19.postimg.org/vewr4xh1v/a215_original.jpg\",\"https://s19.postimg.org/todq3fzir/a215_steemit_added.jpg\",\"https://s19.postimg.org/w9jaqyowj/backpackers.jpg\"],\"links\":[\"https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa\",\"https://steemit.com/steemit/@cryptoiskey/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag\",\"https://steemit.com/money/@steemdrive/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T17:08:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 213555656400500,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6946.259 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails",
+    "post_id": 837346,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28560646020990,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7482556785929,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 28500529484938,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28861497571,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26281954419455,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36311210447453,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7166026055876,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1952023119009,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 223622830143,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3219053436696,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223711383698,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1891888493603,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 385490772199,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6660806624932,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 644872704857,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 21056224196689,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 109811462347,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5592889929391,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1331500596037,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 2971712347474,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 788439749051,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4741928221840,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1042789136478,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320910536892,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 298439892868,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26776677752355,
+        "rshares": 150974882552,
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3094958749,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1978763283401,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 188726834829,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3756869472,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 696667695,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6205822781772,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53368139638,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 447105757472,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1658807994,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213558827,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 57377779906,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11582933910,
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 16454870033,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 354810038737,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2610613139094,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 4920502200246,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1298767962589,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 77826446010,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1103353876382,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19375061925,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622137125,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 952752774,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 133823792161,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 57735896918,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 271580911771,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 24457406223,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 117775730214,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287967645,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23360528643,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 156331317403,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 30028887416,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 846567310,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 122932345282,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419153264932,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146329460364,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 92134911246,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87363750745142,
+        "rshares": 491429125793,
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 12171946152,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8205257677,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7376079047,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 496464544971,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8604717232,
+        "rshares": 488113402,
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 2536344757,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83563754477,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 494066880,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 483152352,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7019430473955,
+        "rshares": 27107941615,
+        "voter": "thedarkestplum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 5279958080,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5794429408,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24807749053,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 753324601733,
+        "rshares": 632575314,
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 33981858008,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2138917267,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 333258124752,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1822716613,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 709269164837,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7186758,
+        "rshares": 469151600,
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 238835403910,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 1037066661,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3278084856,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 4513554139,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2575954627,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 93497060455,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1320082412,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 12821562761,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 60231338472,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 430142790,
+        "voter": "andygreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 12917304110,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 54934580320,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2164103772,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19197407164,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46690451470,
+        "rshares": 916363925,
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 88219347090,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1808575623,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23606790995,
+        "voter": "adiron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2510175673478,
+        "rshares": 25390353862,
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 356811839971,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 941862703,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 46830338583,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 389678169642,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 210288745,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18893760500,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 238913090540,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12534214352,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 36600014121,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 4228175909,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 184861284858,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10426284702,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "1300",
+        "reputation": 71931696380,
+        "rshares": 535085293398,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 380442035664,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 393705031,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 33023351643,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 8965344275,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 386047698,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 237713566789,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14734236654427,
+        "rshares": 40404123620,
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 232978192774,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53477284457,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 65989046107177,
+        "rshares": 11145820184,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -577089724709,
+        "rshares": -44817963557,
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525238421,
+        "rshares": 73473919997,
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 6346333852,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 252446375719,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 449382000083,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48315528635,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4142890713,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398746305,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23208949584,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 137985366901,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 878968825,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1978185015,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1877846106598,
+        "rshares": 29070319535,
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 888899843,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 184432921500,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3230046914,
+        "rshares": 312416918,
+        "voter": "karen-butler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5819225195,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9526338532,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686498651829,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 88591858942,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 43941298443,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 42303411287,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31652499116,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7225093759945,
+        "rshares": 8809731014,
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2491601864,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1053452529,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17686586033,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6850246528,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 666311365,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768666239960,
+        "rshares": 1330833785,
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 199195319,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 257330035,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 179431212147,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 10331014347,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71529342539,
+        "rshares": 281936472,
+        "voter": "levent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 158350575079,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49604795295009,
+        "rshares": 327066986883,
+        "voter": "heiditravels"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35050443507276,
+        "rshares": 71797696542,
+        "voter": "lauralemons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4623260663,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 12983117279,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 668633470533,
+        "rshares": 3668746861,
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 12524021131,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 255780948,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 17222069029,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48904928624,
+        "rshares": 263450012,
+        "voter": "brockton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 108706222887,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 27333283527,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12849240363,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20214638094,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 177047609596,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257546332,
+        "rshares": 247567288,
+        "voter": "avantyris785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44761293560,
+        "rshares": 25082666401,
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1271451816,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 622499323834,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 23836049644,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29118885298,
+        "rshares": 260812970,
+        "voter": "timotron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36430343311,
+        "rshares": 324623687,
+        "voter": "linkku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6834453208,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 117089682,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1517090750,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8556925261,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 50711088707,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657547218546,
+        "rshares": 6187628336,
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "5300",
+        "reputation": 4667991454724,
+        "rshares": 296259416092,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "1000",
+        "reputation": 19111656178138,
+        "rshares": 6380319546,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10583703247,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 105707948711,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 66692894,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 61722414,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 67628664,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 138275474797,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47264506487,
+        "rshares": 2034990010,
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 657552887015,
+        "rshares": 5464993770,
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 75123114815,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20792709556,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 132713955488,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 42524854450,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 233332478,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7724431416,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40456948638,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 47586138538,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4916037950,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4541919146,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 18546431924,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4114526773,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2097337325719,
+        "rshares": 2779591474,
+        "voter": "dogguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41465366167,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34271202700,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 89898065783,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 2066815364,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 111493899868,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3950290272,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 2703937851,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 52788198003,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 5871791528,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 72880524614,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11593149040,
+        "rshares": 1926255301,
+        "voter": "pictorians"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 10389851075,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11804275143,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1002116424,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 435049318,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 95226627916,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2194815720,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128898123725,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 711889903,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 15670441941,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 35579793979,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363559672427,
+        "rshares": 500190013,
+        "voter": "symbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 55005576626,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239794058,
+        "voter": "bertrandlarsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 5732294213,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 94213787390,
+        "rshares": 3470465356,
+        "voter": "gkealy2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 21789794318,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 117805939,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75156404322,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373156105,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2654767174,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3486436311,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1479598990,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11884657622,
+        "rshares": 488668862,
+        "voter": "dogesteam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1666826621,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2096076988,
+        "rshares": 239427456,
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10380243347,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2468349025,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 19985593184,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 207309669205,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 131930031,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 17915463078,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14491972528,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1783202708175,
+        "rshares": 3614719442,
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 55202612813,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1882211,
+        "rshares": 119216508,
+        "voter": "fhc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8238510887,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 196897399,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7167153309,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3311854486,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 6939038250,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 792476477,
+        "rshares": 116664172,
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 132755337797,
+        "rshares": 159387199,
+        "voter": "xondra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 882957752,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 69117647542,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 139166640,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 4230519365,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5146311248,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 29396971145,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 12751039508,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 58982208172,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172953944203,
+        "rshares": 1193934954,
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4290470633,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 22490762180,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1847751264,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1477067328,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 111726756,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 180857883770,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 371626273,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37347150,
+        "rshares": 115874018,
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1035551247781,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24394944,
+        "rshares": 118154645,
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 1834631674,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "1000",
+        "reputation": 10519849768972,
+        "rshares": 2042770630,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 36376826540,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4829965030,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 128989941,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 54497070629,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 180672937,
+        "rshares": 117485406,
+        "voter": "rizkypramudyacj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 4752851001,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117256810,
+        "voter": "satoshi-pie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351138837,
+        "rshares": 117386180,
+        "voter": "coinmaster4you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 662320934570,
+        "rshares": 383990423,
+        "voter": "ladypenelope1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 1441891046,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2997941608767,
+        "rshares": 3848926356,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 500209723,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 48416597910,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 194720511,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 560201253,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1606242116192,
+        "rshares": 4745090234,
+        "voter": "bakingengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 459170283182,
+        "rshares": 305479433,
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 773013655,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 21354066670,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1371841629,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 22357507116,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 36689320416,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 16714610807,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1858859747,
+        "rshares": 231783321,
+        "voter": "mancoba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 721544015,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 6108537397,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 20900104387,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1277366753949,
+        "rshares": 16686827613,
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 9367718298,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 265198657980,
+        "rshares": 291479339,
+        "voter": "nickjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 3298056386,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114503443,
+        "voter": "pavelwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 11332592813,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 129041365,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4015856691,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 18023925988,
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2642781889634,
+        "rshares": 7728159790,
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5611522689,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137150233782,
+        "rshares": 134661057,
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49215329,
+        "rshares": 3494211723,
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 60191451364,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59131994286,
+        "rshares": 915590461,
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 35115130291,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 4452605468,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 817190717,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8269753940,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1733155392278,
+        "rshares": 1283492958,
+        "voter": "littlekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5617594846,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 56527569,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 32857206160,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89039117574,
+        "rshares": 16805040088,
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 904824367,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 56215794,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23813778042,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4980258900,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 25980126700,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111834001286,
+        "rshares": 1448457001,
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1412252219445,
+        "rshares": 2593878902,
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 122387390,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 24953376046,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 3097487092,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 555412571,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9331242455,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 39987681467,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2299239749,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2266655599,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2710167448,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3331328741,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63993548,
+        "voter": "mdrollette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 9547109560,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 71226045,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 52804255512,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 10678437690,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 63775516,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 54508506063,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2291086633,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2487177895,
+        "rshares": 63594681,
+        "voter": "accripteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 63054380,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1941159098,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 851124018,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 62650809,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 56647554,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 54641038,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1762897311,
+        "rshares": 63616030,
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 265460209,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 1185094354,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 646216243,
+        "rshares": 62928860,
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 54217761,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3842203000,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1791518365740,
+        "rshares": 1622895683,
+        "voter": "bebecitosfotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 54077897,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1271830358,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 16134755266,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 58277489,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28124094739,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2256397676,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 4573566381,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34809197,
+        "rshares": 60856079,
+        "voter": "lordgothmog"
+      },
+      {
+        "percent": "10000",
+        "reputation": -478832843459,
+        "rshares": 80383749,
+        "voter": "oldas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692505456,
+        "rshares": 62735564,
+        "voter": "gamingdiamond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15099093363137,
+        "rshares": 41491353618,
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 54896152,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 60994192,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 1620631385,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 11132558343,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3537992772642,
+        "rshares": 38874009222,
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54313084,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61506849,
+        "voter": "virusmedia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60288627,
+        "voter": "atrickpay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 531133173,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20099956352,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 565686689,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218198619612,
+        "rshares": 163702640,
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1005947450655,
+        "rshares": 113571840,
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 118544994,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 4249171547,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1183575116,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1160968192,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 58148489,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 113457626,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 440611150126,
+        "rshares": 2275142374,
+        "voter": "zhenghao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60372902,
+        "voter": "sorenpeterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13147662,
+        "rshares": 59153616,
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 2021855541,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2459952535,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 1910105759,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 769468612,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54220781,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039566,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54216305,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53034852,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54209199,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 202747295,
+        "rshares": 58782998,
+        "voter": "mgd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 60143295,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 505219265255,
+        "rshares": 369270285,
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1939562492,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 56305110,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 4918684548,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52651308,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 243293537,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 58479392,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59591505,
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 215635569,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2864397330,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 434038749,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1171610651,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24452621045,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59155266,
+        "voter": "byjk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272243468446,
+        "rshares": 154348848,
+        "voter": "johnster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3860921107,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 23609188750,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58988588,
+        "voter": "jeandepatch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1065292847,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 20247416717,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 313754430,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 7266496467,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 31303265003,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 834505,
+        "rshares": 57803967,
+        "voter": "jacobberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 15253787265,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 59390673,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 390205958,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1041384471,
+        "rshares": 2724160806,
+        "voter": "kovaiensko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 127117428940,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 2332908402,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 68186803,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1466342803,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 3118899280,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56301289091,
+        "rshares": 58768736,
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6522837445845,
+        "rshares": 1350024143,
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1237196261,
+        "rshares": 59010539,
+        "voter": "jonnybh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616880283688,
+        "rshares": 1426439906,
+        "voter": "jms21y"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 53935001,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41538912131,
+        "rshares": 69407495,
+        "voter": "voluntaryv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53853911,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4392040691,
+        "rshares": 58806042,
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 66998944,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": -280015312321,
+        "rshares": 57126874,
+        "voter": "jamesart63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3299759894,
+        "rshares": 58246339,
+        "voter": "aletoledo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117598348160,
+        "rshares": 399407280,
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1597148004,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 4420043710,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31060848452,
+        "rshares": 63806640,
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23294106,
+        "rshares": 58167598,
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101814429368,
+        "rshares": 86244910,
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2166664728,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272429773,
+        "rshares": 59284524,
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1556727823,
+        "voter": "daniel82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8948882183,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19091993730,
+        "rshares": 59494031,
+        "voter": "kirby1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 329605745,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 863227677,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2565438843,
+        "voter": "colinklein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 904518,
+        "rshares": 57889196,
+        "voter": "braincramp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99387698429,
+        "rshares": 69187216,
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 65995086,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57851525,
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908980564,
+        "rshares": 56694448,
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 57291321440,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5296652630527,
+        "rshares": 17676446808,
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 57683187,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676296097,
+        "rshares": 71882929,
+        "voter": "jonimipidici"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 5101854383,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 4376868684,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4310439355,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 448323753,
+        "rshares": 291103732,
+        "voter": "trimtab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11731150067,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11938480285,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2711414,
+        "rshares": 57445142,
+        "voter": "suz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961187,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 394895431999,
+        "rshares": 64535087,
+        "voter": "billjoyce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 6880894762,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 64782545,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736149094898,
+        "rshares": 2187971989,
+        "voter": "epiphany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1788849014,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89481141,
+        "rshares": 2626923465,
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 59148765,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4153056043,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57055494,
+        "voter": "scottmacquarrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 188039052,
+        "rshares": 644113013,
+        "voter": "magickalmalia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 52842496,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3547713333727,
+        "rshares": 1505318589,
+        "voter": "victoriart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53613607,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 56883857,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 388822791,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 458900119,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 5752411757,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 57565305,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56748177,
+        "voter": "apisme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6800116,
+        "rshares": 56723778,
+        "voter": "iamjen2692"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54362089,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835399333,
+        "rshares": 1780564916,
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 88085099,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5806504909,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 17055789147,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55197242,
+        "voter": "rubellitefae"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 1790814851,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56241383,
+        "voter": "flame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52915101,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55803830,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 657838048,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56143941,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 10416848697,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 67679386,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 170299530,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1011034976,
+        "rshares": 54999958,
+        "voter": "tommyboyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55841289,
+        "voter": "schooliskul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52545761,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 172475666464,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 723656520969,
+        "rshares": 6670382961,
+        "voter": "wwworld4us"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 55824224,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247818520980,
+        "rshares": 798157427,
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988835724525,
+        "rshares": 380988979,
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267108721,
+        "rshares": 2080731309,
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2055544209,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 54523663,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52242652,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318865,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25805152289,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2738998255,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 3005632256,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55171849,
+        "voter": "gateguy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52988378,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 53110243,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289857340733,
+        "rshares": 106744904,
+        "voter": "gabosh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 336266884,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 124568714,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 152610437601,
+        "rshares": 131693793,
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45942905295,
+        "rshares": 56243769,
+        "voter": "frankcorvus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15999809,
+        "rshares": 54909082,
+        "voter": "simonpeter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53893947,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 70796991,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80321606780,
+        "rshares": 85114506,
+        "voter": "deptawesomebeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 275718770,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 162033495767,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 53602103,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59354601485,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122191520146,
+        "rshares": 56122994,
+        "voter": "ivanba12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5014250342169,
+        "rshares": 1943114183,
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 514384460,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 448934323,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 484970407,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 54171765,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 55105511,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039974,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1101487626,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 52943536,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4494788585,
+        "rshares": 52931611,
+        "voter": "steem4fobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 53988734,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 114358571,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80920831153,
+        "rshares": 56789009,
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 699258478694,
+        "rshares": 51753853,
+        "voter": "wildmanhowling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20872774,
+        "rshares": 52807746,
+        "voter": "jeancarlos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5441700948,
+        "rshares": 53288811,
+        "voter": "mobilebestdeal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11985197441,
+        "rshares": 55160066,
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 1920835613,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 50462875,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 619923193031,
+        "rshares": 416608994,
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10912705118,
+        "voter": "ksc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81189294320,
+        "rshares": 53779499,
+        "voter": "iampluto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 51725998,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 66687457,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1611149452,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7428004729,
+        "rshares": 54251507,
+        "voter": "privacyissues"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1010743139109,
+        "rshares": 487124980,
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189363957513,
+        "rshares": 53580348,
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64941758686,
+        "rshares": 68605362,
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 828920570,
+        "rshares": 52873008,
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 106825085,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 59067883,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3365616,
+        "rshares": 51706051,
+        "voter": "parisgraffiti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691146274,
+        "rshares": 52874902,
+        "voter": "steeme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151906532077,
+        "rshares": 52533117,
+        "voter": "stardust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84715240387,
+        "rshares": 71059082,
+        "voter": "regeneration"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 1152598967,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 52601465,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3275734,
+        "rshares": 52596228,
+        "voter": "harini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52594800,
+        "voter": "randomguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 821773,
+        "rshares": 51562286,
+        "voter": "pusio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52415837,
+        "voter": "koek-10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2454253,
+        "rshares": 52412604,
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 315096245,
+        "rshares": 52405628,
+        "voter": "vapecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124036083402,
+        "rshares": 416142579,
+        "voter": "clayboyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 52159157,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52144339,
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2577729396,
+        "rshares": 51351904,
+        "voter": "funthing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 51077428,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": -159993241351,
+        "rshares": 54103453,
+        "voter": "clips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1611034,
+        "rshares": 52064045,
+        "voter": "coertli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19265611,
+        "rshares": 50996649,
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50962513,
+        "voter": "greenrain225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3479793549,
+        "rshares": 51930368,
+        "voter": "iotaissham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 51896264,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 264508777365,
+        "rshares": 51587349,
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1423888772,
+        "rshares": 51981765,
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7237106152,
+        "rshares": 51799295,
+        "voter": "pegasus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50765381,
+        "voter": "raasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108718912,
+        "rshares": 50759259,
+        "voter": "steven15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2807726188,
+        "rshares": 51767735,
+        "voter": "feedmycrash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16065524765,
+        "rshares": 50727124,
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 50726329,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51732076,
+        "voter": "petro.keay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51713637,
+        "voter": "amineminou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106202842802,
+        "rshares": 51711324,
+        "voter": "jimcropper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51706631,
+        "voter": "ayoubbakkali"
+      },
+      {
+        "percent": "10000",
+        "reputation": 807866,
+        "rshares": 51703468,
+        "voter": "constclayton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51700456,
+        "voter": "nkhank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51699892,
+        "voter": "jcdobber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682081,
+        "voter": "janefluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51692910,
+        "voter": "alenapimenova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51689337,
+        "voter": "willi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 600667224252,
+        "rshares": 50674199,
+        "voter": "mrabdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51663210,
+        "voter": "jesseanieto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51655833,
+        "voter": "aminemouleloued"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598154,
+        "rshares": 50639011,
+        "voter": "adilking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51646760,
+        "voter": "likeaboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51636074,
+        "voter": "btcdude007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51635173,
+        "voter": "taoist-water"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87876527,
+        "rshares": 51614826,
+        "voter": "playingwithfire"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -50595887,
+        "voter": "hotosaynmcti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51573486,
+        "voter": "sudo82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1758180524,
+        "rshares": 50529587,
+        "voter": "hafelaffe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51535237,
+        "voter": "pero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51495204,
+        "voter": "bryanplymale"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11864741487,
+        "rshares": 50479785,
+        "voter": "patience"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50478780,
+        "voter": "artur154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51478830,
+        "voter": "kiryck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19683971,
+        "rshares": 50368151,
+        "voter": "lucif3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1571090,
+        "rshares": 50274929,
+        "voter": "antonindc"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50326964582800,
+    "beneficiaries": [],
+    "body": "[![IMG_0491.jpg](https://s15.postimg.org/xvlt4ug2j/IMG_0491.jpg)](https://postimg.org/image/6l0hwxd5j/)\n\nThere is no fool proof way to prepare for prison. \n\nOn March 30th I self surrendered to Lewisburg Federal Prison Camp after I was sentenced to two years for aiding and abetting an unlicensed money transmitting business, for which I am guilty. \n\nIn my case, the only things I could do to prepare myself for was the idea that for the foreseeable future I won\u2019t be around. But I was optomistic because the only way to get through it, is to fully embrace it and take it head on. Which is what I did. \n\nOn March 5th 2015, about 30 days before my self surrender, I wrote this on my blog: \n> I\u2019ve been dreading writing this blog post, and since I\u2019ve written it, it\u2019s been sitting as draft for a few weeks. Never the less, it\u2019s time I get on with it.  On March 30th, I\u2019ll be self surrendering to Lewisburg Federal Prison Camp in Pennsylvania. It\u2019s been a long hard fight, from getting arrested at JFK airport while landing home, to solitary confinement and being under house arrest the for the past 14 months. When the government indicted me and requested 30 years, I kept my head up with the help of friends, family, and the Bitcoin community. While some distanced themselves, most stood by and fought. I owe my life to those people. Of course I don\u2019t look for sympathy, I did the crime and I will do the time. They say those who stand by you in the bad times, deserve to be with you in the good times. Good times are coming and I look forward to it.\n\nOptimism. No matter how sad I was feeling, I needed to stay positive with my head up, because once I fell into a spiral of self pity and depression, there is no coming out. \n\n[![IMG_0491.jpg](http://charlieshrem.com/wp-content/uploads/2015/03/46044187-best-place-prisons-lewisburg-1.jpg\n)](https://postimg.org/image/6l0hwxd5j/)\n\nSo I started taking notes from other people who have been to Lewisburg and finding out everything  could prepare myself for. \n\n- Keep books/newspapers under 13oz. Keep it to 4 per package. \n- USA Today delivery, dropped off directly. \n- Always use Amazon for books. \n- Bring list of people to communicate with - Name/Mailing Address/ Email Address/ Phone number \n- Every month 300 minutes for the phone maximum, Nov/Dec 400 minutes. \n- Email/Phone busiest mostly after dinner. \n- Get a watch \n- $360 a month is max you can spend on commissary, not including phone and email. \n- Buy sneakers. \n- Try to get education job \n- Dont gamble \n- Get there 8:45am. Then complete strip search, then temporary clothes, then medical intake, then sign forms and meet a counselor. \n- Corlinks app for iPhone, becomes like instant messaging. Can print emails. \n- Write physical letters. Stay optimistic. \n\nBut what was prison going to be like? What was my day going to consist of from waking up until I go to sleep? No one could answer these questions except for me. I needed to accept that I was going to be in prison, and going to use the time wisely. \n\nThere was a lot to do. What do I do with my email account, how do I secure my Bitcoin wallet, how do I keep my phone number. How will I maintain a relationship with my family? What is prison going to be like? All these questions were burning in my head and I couldn't find anything online to help me. \n\nThis is going to be a Steemit series on before, during, and after prison. I will post pictures, letters, diaries, notes and things I wrote while inside. \n\nFeel free to post your questions you want to see answered, I plan on answering them all to the best of my ability in the following posts. \n\nFollow me to read Part 1 \n\n-Charlie",
+    "body_length": 3653,
+    "cashout_time": "2016-09-01T13:27:45",
+    "category": "story",
+    "children": 124,
+    "created": "2016-08-25T13:27:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"story\",\"life\",\"bitcoin\"],\"image\":[\"https://s15.postimg.org/xvlt4ug2j/IMG_0491.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T13:47:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 224241713529877,
+    "parent_author": "",
+    "parent_permlink": "story",
+    "pending_payout_value": "6734.784 HBD",
+    "percent_hbd": 10000,
+    "permlink": "a-geek-in-prison-a-life-series-by-charlie-shrem-preamble",
+    "post_id": 980918,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "A Geek in Prison - A Life Series by Charlie Shrem (Preamble)",
+    "title": "A Geek in Prison - A Life Series by Charlie Shrem (Preamble)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/story/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-preamble"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1915876518994,
+        "rshares": 713694473613,
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7510416793191,
+        "voter": "steempty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 32455846463901,
+        "rshares": 16068038584703,
+        "voter": "smooth"
+      },
+      {
+        "percent": "7000",
+        "reputation": 8151223409709,
+        "rshares": 12121187556689,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 380238459022,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14423169571983,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2964461167125,
+        "rshares": 24441826462,
+        "voter": "fluffypony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40109771813296,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "8000",
+        "reputation": 1133069631465,
+        "rshares": 25361221604821,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36315643031728,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7301117381798,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6708153542567,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3188638339756,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2192945558805,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5805534380317,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 416499138441,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 428017035820,
+        "rshares": 83480665113,
+        "voter": "friend5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 118407999549,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5276642752065,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 33636924304,
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 904017482934,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1065829957154,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 898197979211,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320971980307,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26776677752355,
+        "rshares": 155072915746,
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098777463,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3761916316,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697256115,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7161304385550,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6014751263291,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 481270665604,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53931551747,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660705255,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213653566,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8980249791516,
+        "rshares": 251693031997,
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 58224067107,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11695227908,
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35385015759603,
+        "rshares": 208750877849,
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 742681097805,
+        "rshares": 7272920270,
+        "voter": "idolhacked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2325164637164,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1087292508827,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6578113570,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "5000",
+        "reputation": 83941319998,
+        "rshares": 2837705244235,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1331357925773,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158487994237,
+        "rshares": 50192262014,
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 411703831404,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 748581030023,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23744414677575,
+        "rshares": 3142621730120,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1829863145814,
+        "rshares": 714930245307,
+        "voter": "marginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 80699573707,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1112860804811,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 258877600254,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 16216414939,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2369366055877,
+        "rshares": 74773141631,
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622667151,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29394786822950,
+        "rshares": 177857184063,
+        "voter": "markopaasila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4075717838613,
+        "rshares": 23553651897,
+        "voter": "wpalczynski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4274366756028,
+        "rshares": 419118498950,
+        "voter": "cob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967098399,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2662200007484,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 758092952414,
+        "rshares": 6901758743,
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392088507901,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "2500",
+        "reputation": 72112139588726,
+        "rshares": 213932632106,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 93860680998,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4746039308773,
+        "rshares": 34051846969,
+        "voter": "mkultra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 348813313946,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 301410060777,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31488210815,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 196162501190,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59130509872662,
+        "rshares": 549442905324,
+        "voter": "kencode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74299604102,
+        "rshares": 3495643148,
+        "voter": "spartako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 66151857717,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288128811,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5047240025934,
+        "rshares": 61972121116,
+        "voter": "jbrukh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 22985615692,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6863537479759,
+        "rshares": 39186628279,
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23047108317,
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 14177042732,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19159296155,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 86224617301,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 917952755,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 77078667225,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 554084160,
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411007912273,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15188075143,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146340616729,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3284244800,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 73280882046,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 92152855019,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1307793552141,
+        "rshares": 17125250994,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34347753869675,
+        "rshares": 215245786468,
+        "voter": "camilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 47972534221,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 174353582975,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5380704535,
+        "rshares": 167617331918,
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 17987503188,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17743856658,
+        "rshares": 517192604,
+        "voter": "lourenc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8205736006,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 4871366502,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83669612037,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1427571994880,
+        "rshares": 11622634708,
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 8927741511,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 19479953917,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 25772740263,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423408785434,
+        "rshares": 403958066598,
+        "voter": "bitacer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 95038880661,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46956211114,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 36487878350,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2098966754,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 334011056190,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1880661234,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 928388769,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3510970719,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 4523170231,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2771996934,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 18727152340,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 627954645291,
+        "rshares": 4070573315,
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11059776879,
+        "rshares": 2352510904,
+        "voter": "luxiano-valdez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 75378682458,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107613513332,
+        "rshares": 463524444,
+        "voter": "nasato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9206411638386,
+        "rshares": 96949402252,
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1346484060,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1625201395,
+        "rshares": 435824983,
+        "voter": "isyevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 59122859137,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 60742936680,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 23370028390,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 55212372520,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1017842258,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73936687046,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 553356305581,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1430749837,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 905649649370,
+        "rshares": 4963867901,
+        "voter": "animalrobot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8502334967170,
+        "rshares": 24748489415,
+        "voter": "gridcoinman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 140996602583,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 202548692,
+        "rshares": 415175441,
+        "voter": "kewde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 17061428112,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1095245594450,
+        "rshares": 57959167372,
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7452144426,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2510175673478,
+        "rshares": 26729047043,
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3147716497,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 351470606838,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 13608775698,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 46018261282,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 383066566,
+        "voter": "maylong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 307353766229,
+        "rshares": 18085245154,
+        "voter": "btcturbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18898229445,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 12917828173,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24308802296,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 365694018,
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 4509938929,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 80852317272,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5632828,
+        "rshares": 360501004,
+        "voter": "zunaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 201826128557,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9826512260,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 354206844,
+        "voter": "saroj-bhatta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271169855471,
+        "rshares": 543977846,
+        "voter": "dbrock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 342081119,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771738440035,
+        "rshares": 4271166951,
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 298240843889,
+        "rshares": 745829352,
+        "voter": "malacandrahyoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 37473030840,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1709265172,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 52893188787,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 250251214796,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 369711427119,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14734236654427,
+        "rshares": 40559498042,
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62345041692781,
+        "rshares": 289583466317,
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51869215030,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65989046107177,
+        "rshares": 576767994200,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12940198679,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525238421,
+        "rshares": 73476436941,
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816177,
+        "rshares": 2908408613,
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8995772525,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 62432961225,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48667624415,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4889928179,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398746305,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 80699408448,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6877012376448,
+        "rshares": 127102932429,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21383864845,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 533816739,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 239336324601,
+        "rshares": 1021838886,
+        "voter": "ashley-toth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1987962484,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 5411805833,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2160151824,
+        "rshares": 319691598,
+        "voter": "gary-wood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30097018787,
+        "rshares": 321645695,
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 673161259,
+        "rshares": 542199014,
+        "voter": "hackecon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 42979703654,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 155004173769,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1222010452191,
+        "rshares": 3457734437,
+        "voter": "antizvuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 658789233,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7263761479745,
+        "rshares": 130590733852,
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 189545314722,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1429359370177,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17979881,
+        "rshares": 306061039,
+        "voter": "mcandrews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9720265816,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19196715690053,
+        "rshares": 97826496492,
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686881767918,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217222224,
+        "rshares": 300434933,
+        "voter": "knopki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 97983029101,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 256959483430,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2734348852,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 30072878297,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 42318258991,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6874854410,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 32318554954,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18458799241134,
+        "rshares": 46174191043,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 66670031086,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 70688369106,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 7014130249,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 367651854679,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 7909802888,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1062917569,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3398987186,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17687129809,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632946346,
+        "rshares": 28959157027,
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 43719154102,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 16128483738,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": -781106253,
+        "rshares": 289162489,
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 1009609549,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43284860812,
+        "rshares": 269948463,
+        "voter": "willbed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17543161793,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3584203,
+        "rshares": 263465578,
+        "voter": "jepeto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 353570419,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 261201772,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774378945062,
+        "rshares": 15861008437,
+        "voter": "jamiecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 230286299005,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 9856964632,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 19984735139,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1812831591,
+        "rshares": 258815574,
+        "voter": "lsully311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3187095322,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1236097211640,
+        "rshares": 2449644301,
+        "voter": "juansgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18965164896,
+        "rshares": 260424224,
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 24517238299,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 305498139352,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4542608039,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5631846675,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 249240602,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 146383438265,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 8409886307,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713883205883,
+        "rshares": 3205624469,
+        "voter": "cryptoclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 251831549,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 18333306648,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247349335,
+        "rshares": 310292244,
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": -778200365287,
+        "rshares": 327668379,
+        "voter": "rodomonte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 124482562937,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51582783676,
+        "rshares": 9109684802,
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 31283202239,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5945858323,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10156514623,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129516230177,
+        "rshares": 310534090,
+        "voter": "freemanit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 135307922245,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 220025712831,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 10501734857,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17910661583686,
+        "rshares": 209442228322,
+        "voter": "guerrint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1285715500,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 29866371275,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8672589523,
+        "rshares": 266065805,
+        "voter": "nurev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 328962154,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7942137484293,
+        "rshares": 26594793962,
+        "voter": "missjessica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -5336248799,
+        "rshares": 241242032,
+        "voter": "alibaba987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6768804868,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 229781794,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 79453170464,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12165590095,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "4800",
+        "reputation": 4667991454724,
+        "rshares": 321778767569,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 464544867972,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 1645695260,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10585423374,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 604839764,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 105799873038,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 1265314431,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1370626015309,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 143974807152,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56256651602417,
+        "rshares": 88157160491,
+        "voter": "alexbeyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 90966672055,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14094648142,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 133875475196,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7880126960,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41267074393,
+        "voter": "wesam"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 302485212431,
+        "rshares": -609755122,
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131860560605,
+        "rshares": 302505871,
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 22593623327,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5181663,
+        "rshares": 222257214,
+        "voter": "joseph.kalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4486491494,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 516511761,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 18567193433,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 61948097883,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 243368872,
+        "voter": "ozbay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4023608719,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2998864621,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960032418529,
+        "rshares": 2931171309,
+        "voter": "felipemachado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 13848695970,
+        "voter": "wobblealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119704978026,
+        "rshares": 4971395546,
+        "voter": "jamessmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41067162104,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6504456266,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 32286496779,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1357468911,
+        "rshares": 14720610748,
+        "voter": "guywinfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2056512184,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 94805049013,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17930289726,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1083433205978,
+        "rshares": 8694742669,
+        "voter": "greenhatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 10951350049,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35852140375,
+        "rshares": 250632924,
+        "voter": "dangermouse117"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 455011454,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4183876292,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57622676142,
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 14647693329,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6592407938,
+        "rshares": 855479492,
+        "voter": "deruwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24443545057,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 52805276639,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1396330239,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 6129221694,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77829333771,
+        "rshares": 142888646733,
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 30881468844,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 80563394374,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13451802691,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8169007561,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20688723324,
+        "rshares": 244706827,
+        "voter": "satoshi-nakamoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 235543115,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3721643899,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 39496477589,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 391108686204,
+        "rshares": 4665441702,
+        "voter": "morpheustitania"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 378576826,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 95267898665,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17580205,
+        "rshares": 240330371,
+        "voter": "piqdesigns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 9037656827,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1425274480,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 541784069,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 45247833539,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 266034633420,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2347565634738,
+        "rshares": 9908576759,
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79506270733,
+        "rshares": 273607958,
+        "voter": "joiflores"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 41361612181,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 712858826800,
+        "rshares": 6973342226,
+        "voter": "andrewsanderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6928808028,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562058685,
+        "rshares": 239842298,
+        "voter": "capetown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239732013,
+        "voter": "jwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 19728020453,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 115914608081,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373524020,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1452681946,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2096076988,
+        "rshares": 239427456,
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12696760695,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12569029210,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2818420851,
+        "voter": "ani22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40018503599,
+        "rshares": 3449406742,
+        "voter": "kimmar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 200334652700,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 3003762640,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 4127387114,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 13110910227,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 20009856419,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 252341146186,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14307494636,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1553704823,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 58699636063,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 123371166,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 19632980259,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1482891198,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2447003361,
+        "rshares": 957933973,
+        "voter": "stimmedmarine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8241172753,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14544132145555,
+        "rshares": 9773953552,
+        "voter": "pcste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 12528459891,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7310750390,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 618489338521,
+        "rshares": 1760042037,
+        "voter": "gfxmotion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119052939,
+        "voter": "patrickgamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182174607,
+        "rshares": 311209174,
+        "voter": "olinzodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2277845741,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116503038,
+        "voter": "kattokassinen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 69120731893,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 7960988445,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 151010610,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 884407671803,
+        "rshares": 838471644,
+        "voter": "sovereignbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 118855870,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 65267663923,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361552742284,
+        "rshares": 459882281,
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 22491309496,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16950633154,
+        "rshares": 20496448079,
+        "voter": "mynewsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2970166898462,
+        "rshares": 12644262391,
+        "voter": "hagie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116058250,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3716018750,
+        "rshares": 3872206737,
+        "voter": "sokal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1492718093,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 102459876,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7414159,
+        "rshares": 118280841,
+        "voter": "mpili"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632564148,
+        "rshares": 5202360626,
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 990217556,
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100161586091,
+        "rshares": 2223413258,
+        "voter": "slava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203600904607,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 384838496,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115941835,
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 995693826153,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101628344707,
+        "rshares": 804229760,
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2752169711,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 25060686207,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4927592739,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628934912826,
+        "rshares": 81028785405,
+        "voter": "thebear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949931929645,
+        "rshares": 2651227609,
+        "voter": "moksha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 55611498658,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 17996858564,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9224124607,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58265386995,
+        "rshares": 3720019704,
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570594013620,
+        "rshares": 1668636401,
+        "voter": "cogliostro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 13502377471,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56797048,
+        "rshares": 117092140,
+        "voter": "rhesusnegative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 212104094711,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 633329337,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116884886,
+        "voter": "blackhole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2501806576,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 571610409,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1089072756,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5163358675,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116498073,
+        "voter": "grin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1990690663,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 934635179,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20950491482,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 702710547,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17522846242,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1203192685557,
+        "rshares": 1758235206,
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 568826885,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526503358940,
+        "rshares": 2427472681,
+        "voter": "anon.news"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 16944711171,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 32598223972,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 108154560,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2987660536,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1712093376924,
+        "rshares": 8517785126,
+        "voter": "alphabeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1567856396,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5918792289,
+        "rshares": 518479647,
+        "voter": "beenasty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8561737881023,
+        "rshares": 18324457251,
+        "voter": "pixielolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1359446513,
+        "rshares": 114300588,
+        "voter": "mcbowler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27613595491,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4100960070,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 238898910625,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 95067572559,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18453239435,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 551563663183,
+        "rshares": 453440568,
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1318034402,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708244710393,
+        "rshares": 4266744129,
+        "voter": "nzoomed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 300077814,
+        "rshares": 159836858,
+        "voter": "simondarling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2368539478,
+        "voter": "belkins"
+      },
+      {
+        "percent": "0",
+        "reputation": 8806485920347,
+        "rshares": 770849175,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1483559041,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 5646105389,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11454886978,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 921263691910,
+        "rshares": 657874013,
+        "voter": "tkembo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1150750202,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 52589126246,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8760917118,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5476861182,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1439465905530,
+        "rshares": 102660670192,
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5388847118,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2405411059,
+        "rshares": 156246825,
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192578386836,
+        "rshares": 173065237,
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997522731083,
+        "rshares": 1413824795,
+        "voter": "hypno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 2131270928,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 2076218286,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 16113899489,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 68467941552,
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61374667649460,
+        "rshares": 175196484089,
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 25321317985,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 130522396758,
+        "rshares": 54188338320,
+        "voter": "sextusempiricus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8303415935,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4982300887,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7157520017,
+        "rshares": 66443823,
+        "voter": "adamcleary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22643138,
+        "rshares": 65200234,
+        "voter": "spider333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111834001286,
+        "rshares": 1477798313,
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3800326295,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 142236537,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 4673772256,
+        "voter": "darknet"
+      },
+      {
+        "percent": "3000",
+        "reputation": 97328985094,
+        "rshares": 1626684615,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319893324917,
+        "rshares": 75554886,
+        "voter": "nessacute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9815814914,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 37015923837,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 3926378593,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22613377010,
+        "rshares": 67952487,
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2312262673,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1588149895,
+        "rshares": 63757881,
+        "voter": "whileoutsanch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61586173363,
+        "rshares": 918302233,
+        "voter": "dextersl2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13232220,
+        "rshares": 64574212,
+        "voter": "chaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3209909513,
+        "rshares": 24348042529,
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64436981,
+        "voter": "apophene"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150617632004,
+        "rshares": 2830076827,
+        "voter": "tommycoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 774137084,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7204798505,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 527810072,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 86805821471,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 148353341,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053978638105,
+        "rshares": 3071427725,
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98938671458,
+        "rshares": 100197144,
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 12506580284,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10573617057,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12414539968,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10083212488,
+        "rshares": 63829521,
+        "voter": "dedushkadiesel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 63775516,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 101013364369,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 3868999991,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27438553635,
+        "rshares": 4559264999,
+        "voter": "blocksurf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62311076,
+        "voter": "vaselechek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166646264775,
+        "rshares": 1694556443,
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1361293312,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63371590,
+        "voter": "parasew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3294123210,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232818496155,
+        "rshares": 63023553,
+        "voter": "elportugal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57172819258,
+        "rshares": 73203091,
+        "voter": "kentbarrett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 513642753210,
+        "rshares": 62361397,
+        "voter": "willybot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 21454932294,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62749059,
+        "voter": "cam4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1791518365740,
+        "rshares": 1855848001,
+        "voter": "bebecitosfotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 17609822356,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 8875422422,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 12234722005,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2045551831,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2798458785,
+        "rshares": 63437792,
+        "voter": "tommycordero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396514667430,
+        "rshares": 174017038,
+        "voter": "florentina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51670338162,
+        "rshares": 73511263,
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 355190711980,
+        "rshares": 63470280,
+        "voter": "melissag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15099093363137,
+        "rshares": 44142065641,
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312224301489,
+        "rshares": 15797065680,
+        "voter": "solar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1006547,
+        "rshares": 61909232,
+        "voter": "sarahchamberlain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1132289846563,
+        "rshares": 81581183778,
+        "voter": "ioc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 5367840937,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61094018,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465514128051,
+        "rshares": 3166784508,
+        "voter": "teambitwala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 3810190494,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 2089597288,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61512399,
+        "voter": "rancemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7297087216805,
+        "rshares": 5346914183,
+        "voter": "pjheinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58940020,
+        "voter": "pullman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3657922,
+        "rshares": 61323939,
+        "voter": "titan792008"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 72875398,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2316925791,
+        "rshares": 138794665,
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2378617269,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20511573197,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2030605555462,
+        "rshares": 2227318061,
+        "voter": "johnvibes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 577430096,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 596331323988,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 45144987876,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5584825445,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 122575003,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60707991,
+        "voter": "jerical13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1336993907,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1429700840,
+        "rshares": 59462731,
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60637775,
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1099988133,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58005337,
+        "voter": "sorenpeterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 3289237473,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5677060140,
+        "rshares": 66925733,
+        "voter": "telasius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211816282,
+        "rshares": 60280769,
+        "voter": "mukulgupta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2460033425,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642604166438,
+        "rshares": 114540011,
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 7307781732,
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24003660,
+        "rshares": 59989087,
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3574394769,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20152481527,
+        "rshares": 61909418,
+        "voter": "igorterleg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4231846058,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 2206248999,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 61917877,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2457922376,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 3992220834,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59606898,
+        "voter": "picch10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 65916262,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 60654881,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 59819698,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21156422,
+        "rshares": 59295031,
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 925612937,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1901768348741,
+        "rshares": 687510337,
+        "voter": "enric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5923135639,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59000955,
+        "voter": "truthloveliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232524934,
+        "rshares": 58987369,
+        "voter": "redchurch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58984995,
+        "voter": "anesthetize"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1087363894,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59126308,
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 42186510292,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12118741180,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179991301994,
+        "rshares": 182816069,
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 37674957343,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12087620090,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6570350375,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2845719983,
+        "rshares": 58916638,
+        "voter": "layl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59041598,
+        "voter": "jholmesland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2703011,
+        "rshares": 58897371,
+        "voter": "panegyric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 57240693,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661051278414,
+        "rshares": 575433634,
+        "voter": "wearechange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20354742896,
+        "rshares": 65964429,
+        "voter": "dbecker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3485898605376,
+        "rshares": 527856348,
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1400671466,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17203965465,
+        "rshares": 59174678,
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58800111,
+        "voter": "soriano336"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56301289091,
+        "rshares": 58768736,
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58731493,
+        "voter": "johnr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232065582536,
+        "rshares": 200400668,
+        "voter": "andrewmeyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 88460782368,
+        "rshares": 87484250,
+        "voter": "dawnlindholm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57548737,
+        "voter": "mwhite20653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7887834338344,
+        "rshares": 13916976223,
+        "voter": "kushfreeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 410676451,
+        "rshares": 58787702,
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1802656474490,
+        "rshares": 4657915040,
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57459187,
+        "voter": "andrewindsor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 11378295056,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 58900136,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41538912131,
+        "rshares": 69407495,
+        "voter": "voluntaryv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3601401598,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58484280,
+        "voter": "will.isles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57295162,
+        "voter": "johnm862"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1037909150,
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 236439691,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8226370900,
+        "rshares": 58363282,
+        "voter": "suprepachyderm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49690574411,
+        "rshares": 76372055,
+        "voter": "dreadedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124908359782,
+        "rshares": 105504128,
+        "voter": "cactusclef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58330329,
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58325149,
+        "voter": "intrepidca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10614920699,
+        "rshares": 236254009,
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28397805329,
+        "rshares": 61576570,
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320177842090,
+        "rshares": 3891288314,
+        "voter": "herbic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118704463,
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58203627,
+        "voter": "youngrebel420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5788018857372,
+        "rshares": 6251029123,
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 306233011,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58110252,
+        "voter": "cheritto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 69053635,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907554,
+        "rshares": 58083507,
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2212541835,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 108985507,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16584325132,
+        "rshares": 58057909,
+        "voter": "adamkoessler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 55750195,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57991172,
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6190294,
+        "rshares": 10485735178,
+        "voter": "stiant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 695752519,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20458047767,
+        "rshares": 62955132,
+        "voter": "texkitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3416732751,
+        "rshares": 58712210,
+        "voter": "freemarketkev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1206557596,
+        "rshares": 57935125,
+        "voter": "barrydutton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 65437126,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22989460811,
+        "rshares": 36284342258,
+        "voter": "anonymario"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3614919579,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57896578,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57865236,
+        "voter": "diazrodolfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48912400347,
+        "rshares": 305954884,
+        "voter": "shanelohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3835217954,
+        "rshares": 58559046,
+        "voter": "lilbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5728419472436,
+        "rshares": 12023352743,
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 84506034257,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 284047862,
+        "rshares": 57826043,
+        "voter": "matt525"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 39490923433,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 57813247,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31070649225,
+        "rshares": 65820418,
+        "voter": "agkimbrough"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57787001,
+        "voter": "subabu2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199082444376,
+        "rshares": 136373506,
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7788315865,
+        "rshares": 58035101,
+        "voter": "aaronjwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5296652630527,
+        "rshares": 18030044401,
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 58837441,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7189192,
+        "rshares": 57744177,
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387438670668,
+        "rshares": 641422439,
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 86449664,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 9128338819,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186924852752,
+        "rshares": 70769855,
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4397523492,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29355882,
+        "rshares": 1727731920,
+        "voter": "dennisoosterwaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60022998820,
+        "rshares": 3775183559,
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899166,
+        "rshares": 56418311,
+        "voter": "jozefntou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899434,
+        "rshares": 57563833,
+        "voter": "clout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11731453609,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59729622616,
+        "rshares": 69339129,
+        "voter": "freeradical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9696481439,
+        "rshares": 58404009,
+        "voter": "haulin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12308514975,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57434315,
+        "voter": "sarahlohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2910543944,
+        "rshares": 57784645,
+        "voter": "cryptoshow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2225351430,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11155258131837,
+        "rshares": 9716678365,
+        "voter": "tftproject"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 7076868967,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57323783,
+        "voter": "tyler.maroney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2266295655,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133411660608,
+        "rshares": 109805573,
+        "voter": "maxfuchs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112713507556,
+        "rshares": 105235082,
+        "voter": "cryptoshaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 21453821075,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": -5234825984,
+        "rshares": 57138336,
+        "voter": "jayzeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89481141,
+        "rshares": 2626923465,
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 107899577,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 3991952727,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6795759787822,
+        "rshares": 1173293238,
+        "voter": "aggroed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4495545312501,
+        "rshares": 7376126377,
+        "voter": "adamkokesh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1329813882691,
+        "rshares": 57010230,
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59741874574,
+        "rshares": 69943474,
+        "voter": "expatlove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 56883857,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1818363378287,
+        "rshares": 3200676204,
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 273487730,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11352667511018,
+        "rshares": 5812055555,
+        "voter": "canadian-coconut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80500300321,
+        "rshares": 81876495,
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25644393,
+        "rshares": 55667728,
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136085046245,
+        "rshares": 177291520,
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3970810,
+        "rshares": 54565194,
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55653025,
+        "voter": "marcabela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 51349284,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 215062466,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 57565305,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71073572115,
+        "rshares": 54514749,
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 54508349,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7402303856,
+        "rshares": 1623601924,
+        "voter": "grm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18293093647,
+        "rshares": 57744493,
+        "voter": "paulpuk2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 222694943448,
+        "rshares": 695173467,
+        "voter": "armenarmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131421134,
+        "rshares": 56690664,
+        "voter": "ritherz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56667362,
+        "voter": "rsafier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13849967,
+        "rshares": 56666317,
+        "voter": "jessexcruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 2981807583,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269774223718,
+        "rshares": 56989069,
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329465840,
+        "rshares": 56611081,
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 352639183151,
+        "rshares": 5558924936,
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 2716492929,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1651777832,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835399333,
+        "rshares": 1810437987,
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56559977,
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 19955840397,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972369433984,
+        "rshares": 2653697396,
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2175675775,
+        "rshares": 497003791,
+        "voter": "lapingvino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370540745897,
+        "rshares": 531825542,
+        "voter": "jacobtothe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 56504986,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2691693294,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55803830,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19512256979,
+        "rshares": 58292186,
+        "voter": "jaredandanissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 836954421307,
+        "rshares": 1303577131,
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 658806283,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 15432445921,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229065282410,
+        "rshares": 1016370830,
+        "voter": "richhersey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8859041042380,
+        "rshares": 37888516101,
+        "voter": "natureofbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 173705520,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1173419907,
+        "rshares": 55935622,
+        "voter": "pwn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 640042713,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 164186785700,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 53155012,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247818520980,
+        "rshares": 856290008,
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 73840725,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23181600649,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 91697951,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1632387086,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54251121598,
+        "rshares": 56233744,
+        "voter": "melody24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52015504,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4592050223,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": -3391257106,
+        "rshares": 786544090,
+        "voter": "artsuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4836979493,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55070425,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2548312,
+        "rshares": 54971412,
+        "voter": "knarly327"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 140568307,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53008000460,
+        "rshares": 55496299,
+        "voter": "allyouneedtoknow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53871683,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45942905295,
+        "rshares": 60248566,
+        "voter": "frankcorvus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 580482162746,
+        "rshares": 1138182954,
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 858129,
+        "rshares": 53843398,
+        "voter": "falvar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 58673229,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 51301791,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 387594274,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 71464098,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25713525688,
+        "rshares": 54998376,
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53593366,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 269318651744,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267516181499,
+        "rshares": 3895505283,
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 74968074,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10408522028,
+        "rshares": 50188356,
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5186278337,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 772992838,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54468203,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50050365062,
+        "rshares": 58508489,
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1243780278579,
+        "rshares": 1795498402,
+        "voter": "lloydy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33637169873,
+        "rshares": 61109696,
+        "voter": "sressler"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 54165586,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5841611491,
+        "rshares": 55136065,
+        "voter": "darrenciccone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3306534575,
+        "rshares": 59953198,
+        "voter": "odakan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119198828550,
+        "rshares": 150871901,
+        "voter": "inwoxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6814892232024,
+        "rshares": 16895327783,
+        "voter": "vermillion666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4494788585,
+        "rshares": 53990243,
+        "voter": "steem4fobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 53988734,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79067525892,
+        "rshares": 90189758,
+        "voter": "pineconeutopia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 52871755,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 176715413,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16551727136,
+        "rshares": 677977313,
+        "voter": "mrdeleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6880595844755,
+        "rshares": 57446042185,
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1030128184,
+        "rshares": 652628483,
+        "voter": "kharn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2004604707,
+        "rshares": 52635830,
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11985197441,
+        "rshares": 54597407,
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 588792209,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53457978,
+        "voter": "enriquesl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125276467194,
+        "rshares": 122099128,
+        "voter": "gymrat73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 53764231,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 51109965,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1126822037371,
+        "rshares": 64984913,
+        "voter": "steemwelcome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52128361,
+        "voter": "wallacepoewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 1098383476,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 127157537,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691146274,
+        "rshares": 52874902,
+        "voter": "steeme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5911498033,
+        "rshares": 53553781,
+        "voter": "rutheniumjuice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119510650,
+        "rshares": 50637038,
+        "voter": "silversurfer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14820051763,
+        "rshares": 53600124,
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 2164577727,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 52785710,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52601101,
+        "voter": "lumpen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 671878599746,
+        "rshares": 380538171,
+        "voter": "j96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 313749878680,
+        "rshares": 2009874413,
+        "voter": "gamgam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52553508,
+        "voter": "akaskew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1644724,
+        "rshares": 52534351,
+        "voter": "fogzen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197832234,
+        "rshares": 52629759,
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 60952512,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474417539,
+        "rshares": 52290443,
+        "voter": "freestategirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 52468652,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271467561,
+        "rshares": 52131186,
+        "voter": "elena2101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 51077428,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22546106632,
+        "rshares": 52763087,
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 50878690,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51761290,
+        "voter": "kileysplace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51743648,
+        "voter": "jtm12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 136773607,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2059477350,
+        "rshares": 52099663,
+        "voter": "iamron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 52182120,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51486529,
+        "voter": "masterdavidjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34325917,
+        "rshares": 51444715,
+        "voter": "steff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264229413597,
+        "rshares": 51436620,
+        "voter": "rossulbricht"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493364866,
+        "rshares": 51419037,
+        "voter": "alexiwotan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1800841,
+        "rshares": 10707310991,
+        "voter": "shiva777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 564755466,
+        "rshares": 51406339,
+        "voter": "madikantia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11222113294,
+        "rshares": 53426834,
+        "voter": "lightobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": -806965645794,
+        "rshares": 179606030,
+        "voter": "spinx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976227761,
+        "rshares": 50716411,
+        "voter": "afroditta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 50182215,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9050222935,
+        "rshares": 53070760,
+        "voter": "neophonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 473792942,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136868986514,
+        "rshares": 56445299,
+        "voter": "lloyddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1727940,
+        "rshares": 50849010,
+        "voter": "paulsemmelweis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 619759284,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4534968,
+        "rshares": 50591037,
+        "voter": "davejot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396872137163,
+        "rshares": 50514135,
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 851668694627,
+        "rshares": 50429294,
+        "voter": "mqtodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13228503,
+        "rshares": 50301743,
+        "voter": "simonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50266197,
+        "voter": "bagr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 953808309891,
+        "rshares": 50264692,
+        "voter": "melisalerue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7031497,
+        "rshares": 50258414,
+        "voter": "mardvin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108680928,
+        "rshares": 50249362,
+        "voter": "giselledelgado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53885992,
+        "rshares": 50236261,
+        "voter": "digitalauthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50214587,
+        "voter": "amymclain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1646438,
+        "rshares": 50213203,
+        "voter": "bumnumbum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50211558,
+        "voter": "kuyawa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062585138,
+        "rshares": 50207017,
+        "voter": "houck68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50194749,
+        "voter": "tothemoonguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50182946,
+        "voter": "glennith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50176856,
+        "voter": "csuatx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50174389,
+        "voter": "freecaledonia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50162823,
+        "voter": "dbenrosen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50113481,
+        "voter": "regulus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50093637,
+        "voter": "jetsettasean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50067553,
+        "voter": "muppetcakes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4344578302,
+        "rshares": 78311792,
+        "voter": "cianosapatti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75487046,
+        "rshares": 162089082,
+        "voter": "simbafire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151702140,
+        "voter": "carod"
+      }
+    ],
+    "author": "rossulbricht",
+    "author_reputation": 6264229413597,
+    "beneficiaries": [],
+    "body": "Hi you all! Ross and I are so pleased that I\u2019m here and part of this innovative community and technology. I\u2019m glad to have the chance to tell my story directly to you -- to fill you in on the past three years of my life and my battle to free Ross.\n<center>https://www.youtube.com/watch?v=2Yw2Vy4x-KQ</center>\n\nMy son Ross Ulbricht -- a peaceful, idealistic humanitarian \u2013was  tried and sentenced to double life without parole for all non-violent charges relating to his role in the Silk Road website. Silk Road was a free market experiment: a voluntary, anonymous marketplace that operated on the tor network using the crypto currency bitcoin. Many things, both legal and illegal, were exchanged, although there were restrictions of things considered harmful by the administration. For example, there was no child porn, murder-for-hire or stolen goods on the site. Drug sales were permitted, with marijuana the main product that was bought and sold.\n\nSince Ross\u2019 arrest it\u2019s been a David and Goliath fight against the US government. The investigation, pre-trial events, trial and sentencing are so rife with abuse and corruption that it\u2019s impossible to cover everything. Here are some major issues:\n\n<center> http://i.imgsafe.org/49dec2fca2.png</center>\n\n\nIt\u2019s been a wild and crazy three years to say the least. Since Ross\u2019 arrest I\u2019ve strived to the limits of my strength to direct attention beyond the sensationalism to the important precedents and issues at stake in this case and how they impact our freedoms in the digital age. In addition to Ross\u2019 release, my goal is to shine a light on the alarming loss of our liberty while raising funds to defend Ross. (Any payments from here go 100% to Ross\u2019 defense). This is basically my life now, with some down time sprinkled in.\n\nThings weren\u2019t always like this, and I often shake my head wondering how I got here! Before Ross\u2019 arrest I was the gracefully aging mother of two beautiful, well-adjusted adults, hoping for grandchildren and planning the rest of my life. I had pretty much retired from freelance writing and was continuing to work with Kirk, Ross\u2019 dad, in our business, Casa Bambu. (We rent bamboo houses that Kirk built to vacationers, off grid in the Costa Rican rainforest). One day I led a relatively tranquil life and the next I was falling, like Alice through the looking glass, into a bizarre world of the dark web, encrypted communications, digital currency, and the drug war. A right-brained, tech-resistant ex- hippie, I had only owned a smart phone for a month, had never been on twitter and barely heard of bitcoin (and only from Ross). When Ross was arrested I suddenly -- and urgently -- had to become adept at social media, public relations, fundraising, pgp, bitcoin and criminal law.  \n\nIt was urgent because I had to save my beloved son.\n\n<center>https://i.imgsafe.org/31d2386203.jpg</center>\n<center>Ross and Lyn shortly before his arrest</center>\n\nSo now my life is dominated by the fictional entity Dread Pirate Roberts (DPR) and I\u2019ve been on a crash course to do whatever it takes to free Ross: blog, comment, tweet, follow, unfollow, like, unlike, friend, unfriend, defend, raise funds, encrypt, decrypt, build websites, write press releases, give speeches, give interviews, challenge journalists, translate legalese, learn digital-speak \u2013 and now post on steem.it.  I have twitter followers all over the world, from Russia to Spain, from Australia to India.  I\u2019ve been called a jedi, a storm trooper, Dread Mother Roberts, a hero, a \u201cleading internet freedom activist and social media pro\u201d and a badass (fondly, by the lawyer).  Also some nasty things on the internet, but I\u2019m getting a thick skin.\n\nThe learning curve has been steep. Sensationalistic media; aggressive prosecutors; biased judges; cruel prison staff \u2013 the opponents are formidable and ruthless. But there have also been invaluable allies, like many of you, and that plus divine intervention has gotten us this far.  I have made so many courageous, generous, amazing friends on this journey. They are people I never would have met and it has enriched my life, given me hope. I\u2019ve often thought that the past three years would have been some of the most interesting, purposeful and exciting of my life except that Ross is in prison and that makes them the most traumatic, painful and difficult as well. As long as he\u2019s in there, I will not \u2013 cannot -- rest.\n \n <center>https://i.imgsafe.org/31d247242c.jpg</center>\n<center>Lyn speaking at porcfest.</center>\n\nThis journey has taken me from a prison in interior Brooklyn to an interview in a multimillion dollar Soho loft (on the same afternoon); from high priced attorney offices to clandestine meetings; from a freedom festival in New Hampshire to trudging through Austin streets hanging posters at SXSW (and then speaking there the following year).  Never having addressed audiences, I\u2019ve now spoken at numerous events, both in the US and Europe (including Porcfest, FreedomFest and the national Libertarian convention); appeared on a range of TV, radio and podcast shows, including Reason TV, CNN, HuffPost Live, Infowars and Fox; and given many interviews with both major and alternative media , including the New York Times, Wall Street Journal, Forbes and The Guardian. Along with Ross, I am prominently featured in the documentary Deep Web.\n\n Never in my wildest dreams would I have believed this would be my fate. \n\nPursuing American justice is expensive and the challenge is great, but I\u2019m fueled by a mother\u2019s love and now a righteous anger at government abuse. I have seen first-hand how prosecutors lie and obstruct. I have visited the prison with other families, desperate to see loved ones, the children tearfully clinging to their fathers. I personally know non-violent people rotting their lives away in captivity.  My perspective has changed forever.\n\nBesides my love for Ross and resistance to tyranny, a crucial thing that keeps me going is my faith in God. I have faced some of the darkest places in my mind, fear gripping me, my thoughts screaming, \u201cYou can\u2019t do this! They\u2019re too big!\u201d Yet I find peace and hope when I can turn the burden over and take on that day\u2019s fight once again. I have felt God\u2019s hand in this throughout, in many ways, large and small. There has been the unlikely but perfect timing of events; the right people arriving at the right time; doors opening when all seemed closed; the impossible occurring against all odds. I pray each day that God will use me, Ross and this situation for good and that it will shine a spotlight on evil. And of course that Ross will be out of that cage, in freedom where he belongs. \n\nThis is a bigger, more far reaching story than one man or website.  There are vital issues at play, ones that impact us all and are worth fighting for. We are in unchartered territory in the courts. Decisions and precedent made now, with the Silk Road case and others, will have far-reaching impact on freedom, innovation, fair trials and privacy.\n\n<center>https://www.youtube.com/watch?v=SF8gR7jAG2U&amp;list=PLPefjTxHVZSo-zoK-Bap56eihCqhBn75N&amp;index=55</center>\n<center>The Unfairness of the Silk Road trial in 3 minutes</center>\n\nWe are at a crossroads in history. The question and challenge is which road will we take: the one to freedom and innovation, or the one to government intrusion, expansion and control. It is up to us to make sure we take that freedom road.\n\nPlease help us! Of course, please upvote this post. You can also go to FreeRoss.org for lots of other ways to support our battle. You can donate; play the art game; purchase at our store; volunteer; and spread the word on social media and to your network. Everything helps. We\u2019re just one family and some friends. We need you!",
+    "body_length": 7766,
+    "cashout_time": "2016-09-06T18:02:09",
+    "category": "introduceyourself",
+    "children": 282,
+    "created": "2016-08-30T18:02:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduceyourself\",\"bitcoin\",\"crypto-news\",\"blockchain\",\"\"],\"image\":[\"https://img.youtube.com/vi/2Yw2Vy4x-KQ/0.jpg\",\"http://i.imgsafe.org/49dec2fca2.png\",\"https://i.imgsafe.org/31d2386203.jpg\",\"https://i.imgsafe.org/31d247242c.jpg\",\"https://img.youtube.com/vi/SF8gR7jAG2U/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=2Yw2Vy4x-KQ\",\"https://www.youtube.com/watch?v=SF8gR7jAG2U&list=PLPefjTxHVZSo-zoK-Bap56eihCqhBn75N&index=55\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T18:02:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 244476897311799,
+    "parent_author": "",
+    "parent_permlink": "introduceyourself",
+    "pending_payout_value": "6070.234 HBD",
+    "percent_hbd": 10000,
+    "permlink": "lyn-ulbricht-mother-of-silk-road-political-prisoner-ross-ulbricht-is-now-on-steemit",
+    "post_id": 1059265,
+    "promoted": "22.000 HBD",
+    "replies": [],
+    "root_title": "Lyn Ulbricht, mother of Silk Road political prisoner Ross Ulbricht, is now on Steemit!",
+    "title": "Lyn Ulbricht, mother of Silk Road political prisoner Ross Ulbricht, is now on Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduceyourself/@rossulbricht/lyn-ulbricht-mother-of-silk-road-political-prisoner-ross-ulbricht-is-now-on-steemit"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "2200",
+        "reputation": 145171381514207,
+        "rshares": 6922183932612,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1915876518994,
+        "rshares": 706429250997,
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 683938703320,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7479463844416,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 27828666281640,
+        "voter": "smooth"
+      },
+      {
+        "percent": "76",
+        "reputation": 85602977273,
+        "rshares": 28860495550,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "7600",
+        "reputation": 8151223409709,
+        "rshares": 12786861120583,
+        "voter": "rainman"
+      },
+      {
+        "percent": "1300",
+        "reputation": 13270505121655,
+        "rshares": 9023446503005,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36397373397113,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 141818638675,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6641444515469,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3154404748553,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2281549903877,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5973298312536,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2023763520847,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 377720948083,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6659837873399,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 20631488841469,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 109788753375,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 788455174655,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 964379558972,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 947421964949,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314512840484,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6151437083534,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3093334843,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 2017925286683,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 222537813552,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3754789393,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703475396,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 5724368034385,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53137830986,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1658013141,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213534945,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4736752143041,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 52218823073,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 334430500354,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2605485575465,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1018852084615,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 133141763543,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 23258311702,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 1253102785,
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9378186987,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2378288906,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 4876677355763,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1270713688667,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158487994237,
+        "rshares": 50700543234,
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 316865769543,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1063510949082,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19375061925,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621926043,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 945621921,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "5000",
+        "reputation": 96486114508046,
+        "rshares": 1401345159025,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 398800345776,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 24885886844,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 57391316269,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1268313655180,
+        "rshares": 43931243501,
+        "voter": "steem-samiam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 47393557314,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 23905734896,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 195795326282,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59130509872662,
+        "rshares": 526990051506,
+        "voter": "kencode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 31963639473,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287928458,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 14752095026,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 26334671341,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13374545824,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11383539436,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419142761116,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 4226306800,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 10621080265,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9876029403,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 26515283737,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 120712992,
+        "rshares": 1330561508,
+        "voter": "radium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 20105460780,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1170046963301,
+        "rshares": 19632066917,
+        "voter": "asabovesobelow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2968241073,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 13852108133,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23979714471574,
+        "rshares": 185057785089,
+        "voter": "bleepcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7079759587,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 550477645406,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 7598338802,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83559440336,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1427571994880,
+        "rshares": 11732306695,
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 3505804131,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 25782486468,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46561764125,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 753324601733,
+        "rshares": 620171876,
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2181678350,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 333074552981,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1301693008,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 735199491898,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 243820192333,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 9615018672,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 90793723562,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 14575585602,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5394181231,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 56678268779,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": -360088797540,
+        "rshares": 1478055908,
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 60740817621,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 51795662037,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1442033435,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 18820970414,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3971811465,
+        "rshares": 9015561830,
+        "voter": "gore84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1808575623,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 43345645383,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7565442776,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3144658279,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 390387754876,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29018039705,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 20143388957,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 367586070487,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 463562817,
+        "rshares": 641935811,
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 105087343,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2741602475985,
+        "rshares": 33722592670,
+        "voter": "shelly-dawson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 232917867193,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 32331614806,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 9794017928,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 96071780159,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 275735989322,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9355788371,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 393483610,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1376656930605,
+        "rshares": 5599597935,
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1544049507187,
+        "rshares": 14101189846,
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 153442181309,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 53415154875,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 361465202656,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14734236654427,
+        "rshares": 38726406082,
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53468635512,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 65989046107177,
+        "rshares": 11092319903,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 107351862996,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -577089724709,
+        "rshares": -43939196830,
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 202452494735,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 6622838493,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48313481310,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1427331868,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13379695865,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 390927750,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 78200524813,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212451198738,
+        "rshares": 384472394,
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23671537292,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 135081256703,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 989698715,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1652465742,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1529447073,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 189905156067,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7263761479745,
+        "rshares": 128011603993,
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5412926953,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 195132600383,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9715858098,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336479285649,
+        "rshares": 1009129279,
+        "voter": "linda-correia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6200536920826,
+        "rshares": 73238071080,
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 22642711049,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 75505158596,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "3600",
+        "reputation": 598181152117,
+        "rshares": 70382368661,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 236394701387,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 43880608153,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 354175466732,
+        "rshares": 353273716,
+        "voter": "alextsvirko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2299144158,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 36247072134,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 385795472,
+        "rshares": 398189629,
+        "voter": "bitcoinci"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 32271897166,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "2500",
+        "reputation": 2758500001611,
+        "rshares": 1130085927,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5718626,
+        "rshares": 272975170,
+        "voter": "nandubatchu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7225093759945,
+        "rshares": 8809731014,
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "2500",
+        "reputation": 1019011681813,
+        "rshares": 1539575358,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17686464289,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "2500",
+        "reputation": 2445708956667,
+        "rshares": 1872024762,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6447225666,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17884419490,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 258038667,
+        "voter": "glongsword"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5549288917,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "2500",
+        "reputation": 1691376287481,
+        "rshares": 1305807949,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 257227726,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 55589028787,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 180456147723,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 11875561247,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 5003761665,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 305420202111,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 3201066866,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4239939661,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "2500",
+        "reputation": 1160886081198,
+        "rshares": 1236981224,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 11356893247,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 96621922891,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 2786712068,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1518920448581,
+        "rshares": 13063927882,
+        "voter": "zer0sum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 11195249107,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 255641896,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 17573233452,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 108664840131,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 26251840494,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 41491017728,
+        "voter": "menta"
+      },
+      {
+        "percent": "2500",
+        "reputation": 1035952800698,
+        "rshares": 1305541527,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794373773056,
+        "rshares": 3000374699,
+        "voter": "sune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 19818085321,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192903029542,
+        "rshares": 249278368,
+        "voter": "bitnation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132624811923,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 59664940482,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 8188793208,
+        "voter": "manoami"
+      },
+      {
+        "percent": "2500",
+        "reputation": 2237331858240,
+        "rshares": 1374934307,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1296880853,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1188956981766,
+        "rshares": 3831874109,
+        "voter": "cultura.bitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 18625201566,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 99803591,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 45357972392,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "4100",
+        "reputation": 4667991454724,
+        "rshares": 209304394343,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502465820159,
+        "rshares": 176723339400,
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91432229392,
+        "rshares": 7294951838,
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1073334156,
+        "rshares": 203368027,
+        "voter": "eleny"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 19062423687,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 249902943,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 9735737970,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 105430614362,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 201818980,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 185029276,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 91781758,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1389884823,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 23803437375,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1230200541433,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 114494010865,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4043983730848,
+        "rshares": 14453472947,
+        "voter": "mrgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20772112172,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 119694437750,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 228375364,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7724423278,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40456456299,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131860560605,
+        "rshares": 310614038,
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1011928429,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 47584232455,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 210282477056,
+        "rshares": 274756561,
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 269516049,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4250251084,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3140827201,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41465314144,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6504386735,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33595457817,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 69588040355,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 2146935020,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 341869487463,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147722466499,
+        "rshares": 16167200942,
+        "voter": "gubbes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 11642631206,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116042637236,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4163933643,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 11178715901,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 23914228039,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 5444988936,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 58774029297,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1336657794,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 6242409341,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77829333771,
+        "rshares": 142866879416,
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2432538531735,
+        "rshares": 10092635994,
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852532944,
+        "rshares": 222572819,
+        "voter": "hankrearden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 18921183647,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 74293313126,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 379942370,
+        "rshares": 240811407,
+        "voter": "further"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277346650991,
+        "rshares": 406075645,
+        "voter": "danroseman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1278593310,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 424017401,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 1627422564,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1776188313,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 123830592496,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 760427851,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 13889124722,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 42649348762,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 34050707220,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 5428797463,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 18156323085,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 76635842145,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93841383,
+        "rshares": 239631118,
+        "voter": "b3ql"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4460619227,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2883968092,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3772827914,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 82674928929,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450160710165,
+        "rshares": 2024368082,
+        "voter": "chahredine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1564225891,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3919795576,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241600128334,
+        "rshares": 9586837464,
+        "voter": "kewpiedoll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 6133562800,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37784668918,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 1657276786,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3884351402,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 19559283290,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 180160095466,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 134622481,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 14714959156,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14487783974,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 38612891000,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 8676354241,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200835346,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7023710433,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3018666497,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 8015169058,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12248503488,
+        "rshares": 745854948,
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66209975694,
+        "rshares": 829277253,
+        "voter": "stealthstrike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 880672766,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 51626373165,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 2192389917,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 139166640,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5247325797,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 27185361304,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 10188454550,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 58843386985,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361552742284,
+        "rshares": 468614122,
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4290054352,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 2236861513,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58955670,
+        "rshares": 118570696,
+        "voter": "ang3l"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 2015498934,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1446649799,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 116382038,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7793676242,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 990217556,
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 201905142945,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 130516856,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1014507377653,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2216174484,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6119645566,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 146751860,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1515224255,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 251784157,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 252162143,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146009061,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 146834278,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 83752831,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 519358333,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117468770,
+        "voter": "frederic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80801736359,
+        "rshares": 157385299,
+        "voter": "mikeoleksyuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 9944070193,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9030711284,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 1413618673,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2997941608767,
+        "rshares": 3419121784,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 212027123415,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 194472298,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5061817531,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 12586959157,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 880742172,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11528968508,
+        "voter": "christer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1344532464,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 21814528149,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 36233439815,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17624786034,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201338440700,
+        "rshares": 320208626,
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 658544220,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 5855434921,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230437999,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "2500",
+        "reputation": 17698439393799,
+        "rshares": 4966578738,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 387577476,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1893083643,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 201062818,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 19197946361,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 258790635,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 75850432,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 247311783844,
+        "rshares": 972126330,
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3042553840,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 394166341,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114503443,
+        "voter": "pavelwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85836030324,
+        "rshares": 19646007140,
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 11104221496,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 115458064,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11506198408,
+        "rshares": 117385102,
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177484158355,
+        "rshares": 76809956970,
+        "voter": "ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2493302761715,
+        "rshares": 5346047320,
+        "voter": "saulius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49215329,
+        "rshares": 3422988481,
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18041177081,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 161019589,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 623377036,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1818392318,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 737196198,
+        "rshares": 113050353,
+        "voter": "zviad"
+      },
+      {
+        "percent": "0",
+        "reputation": 8806485920347,
+        "rshares": 738164701,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2092700,
+        "rshares": 112623695,
+        "voter": "manoello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 912115681,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 4449404159,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13512127,
+        "rshares": 323933505,
+        "voter": "handytxg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 740103470,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8715971347,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116577441888,
+        "rshares": 224875028,
+        "voter": "nimble"
+      },
+      {
+        "percent": "10000",
+        "reputation": -3869849219,
+        "rshares": 109273807,
+        "voter": "djdma"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 53835780,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 53473560,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "1700",
+        "reputation": 10771708337101,
+        "rshares": 182154675489,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14740647774,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24305968077,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2355944747,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34175383,
+        "rshares": 216184081,
+        "voter": "elizabetemaia"
+      },
+      {
+        "percent": "2100",
+        "reputation": 18027204457681,
+        "rshares": 5858161031,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111834001286,
+        "rshares": 1448355018,
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2310491262,
+        "voter": "rich77"
+      },
+      {
+        "percent": "3600",
+        "reputation": 5776723480371,
+        "rshares": 87702162337,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63853091,
+        "voter": "temaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1412252219445,
+        "rshares": 2645669728,
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 48741294915,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "3900",
+        "reputation": 206355094166,
+        "rshares": 3814796047,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 359477747983,
+        "rshares": 62626270,
+        "voter": "neddykelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15740563557,
+        "rshares": 104891240,
+        "voter": "usnewspress"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 554509675,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 26691090105,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 8511528501,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2806306672700,
+        "rshares": 2666678886,
+        "voter": "denn"
+      },
+      {
+        "percent": "3600",
+        "reputation": 97845484474,
+        "rshares": 13274544729,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 39864468084,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 437361066728,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1938969324440,
+        "rshares": 5329070321,
+        "voter": "jrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55688051,
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 821396070,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3331328741,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "1700",
+        "reputation": 3016325652890,
+        "rshares": 14995230080,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1962337691,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 52029263,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053978638105,
+        "rshares": 3010971197,
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1216260648,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 8312562774,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 9284839213,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 17602567468,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 50097876151,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 2859848923,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 7496577959,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 67568463517,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3100",
+        "reputation": 1851205309677,
+        "rshares": 1012260894,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1754163688,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 222258155,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 971138,
+        "rshares": 63395918,
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 67258005,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1940903935,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 815416741,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 63903825,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 53884258,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 53370316,
+        "voter": "ciao"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": 2553748642,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -451593763871,
+        "rshares": 3290816312,
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16903801181,
+        "rshares": 7097870277,
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 275412658,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 51753317,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3610487734,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 20386421402,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "3500",
+        "reputation": 4195733833721,
+        "rshares": 1838698246,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 51619811,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 14120825033,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36901445492,
+        "rshares": 72471016,
+        "voter": "olgasudneva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 16118200901,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 65299443,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 1542361003,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 56658670,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4237797,
+        "rshares": 62402354,
+        "voter": "mithridates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 27267079036,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2148800154,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 710891266725,
+        "rshares": 81481591,
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 355190711980,
+        "rshares": 61981794,
+        "voter": "melissag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504842566410,
+        "rshares": 1356909062,
+        "voter": "nords"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15099093363137,
+        "rshares": 41123664470,
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 52400873,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "3700",
+        "reputation": 730408370151,
+        "rshares": 183165970,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 584355455,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 1045750162,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3537992772642,
+        "rshares": 38104987573,
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339316349435,
+        "rshares": 61941561,
+        "voter": "robertm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2083108612,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 564207268489,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5355855458,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17071371161,
+        "rshares": 230214770,
+        "voter": "mefisto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4281559138,
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 3820411843,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1019995449,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 55775081,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": 63851643,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2594661721428,
+        "rshares": 3957724815,
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1907537255,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 1907219589,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51860909,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51856300,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 60143295,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 791158815026,
+        "rshares": 142929513,
+        "voter": "spalser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4214397707,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1671278894,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 56305110,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 390435125,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21156422,
+        "rshares": 58132384,
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1171610651,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 25558722803,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 905566,
+        "rshares": 59115407,
+        "voter": "ejosev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3860139459,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 23445129567,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166185808108,
+        "rshares": 81867436,
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1086581417,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 11657206613,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -300111851,
+        "rshares": 399837706,
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 16209332888,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 4012004713,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 55897104,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 4694629853,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 108383645696,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 60997682,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9969442529,
+        "rshares": 9834824669,
+        "voter": "stephenfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 3117945800,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 14396905191,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1903578632,
+        "rshares": 57641564,
+        "voter": "ssashem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14701563258,
+        "rshares": 77909231,
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 59797501,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30440869324,
+        "rshares": 65634121,
+        "voter": "donniet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 221599082639,
+        "rshares": 522568543,
+        "voter": "chuckwilliams37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34004319054,
+        "rshares": 62595147,
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27611265089,
+        "voter": "loro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131634164273,
+        "rshares": 57038921,
+        "voter": "nestorstable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 14006444144,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263257839975,
+        "rshares": 62202585,
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2209407646,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1322091931,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 63791071,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 367284869879,
+        "rshares": 475298950,
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56854090,
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8741192850,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 328713963,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 59588125,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 6057447566,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57896578,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99387698429,
+        "rshares": 62326616,
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 39187076499,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908980564,
+        "rshares": 57828337,
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55639758390,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 38715855098,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887625476110,
+        "rshares": 6306571855,
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199082444376,
+        "rshares": 139100977,
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10684992176630,
+        "rshares": 398965806,
+        "voter": "quinneaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 1481751770,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 55421101,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95130269,
+        "rshares": 57627470,
+        "voter": "arifsh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 4128192202,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4396337937,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6332865841,
+        "rshares": 268014205,
+        "voter": "davincij15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11548449730,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 437813370,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19024951,
+        "rshares": 57438778,
+        "voter": "just-some-guy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 22473896630,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 92890050,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1405874215,
+        "rshares": 57204141,
+        "voter": "ejossev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 14864293396,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 63760368,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1818363378287,
+        "rshares": 1761091660,
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90062656329,
+        "rshares": 58052761,
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 335454957,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 19141924368,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 57565305,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 222694943448,
+        "rshares": 587782107,
+        "voter": "armenarmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263967015,
+        "rshares": 55571888,
+        "voter": "cahuillan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 1318555345,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 2597902472,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1062276050,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835399333,
+        "rshares": 1780564916,
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972369433984,
+        "rshares": 2600834067,
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 56504986,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174215430182,
+        "rshares": 191228077,
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 657838048,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 52841356,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 6739280357,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 673915909724,
+        "rshares": 1965283988,
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 415010893,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6049046,
+        "rshares": 55833071,
+        "voter": "shadowcl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 723656520969,
+        "rshares": 6666784239,
+        "voter": "wwworld4us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 55704120,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 54729631,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21117528052,
+        "rshares": 55623213,
+        "voter": "david.posavec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7586670074,
+        "rshares": 55309603,
+        "voter": "knoble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54440171,
+        "voter": "seedovlife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55486361,
+        "voter": "totosky"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 2908933665034,
+        "rshares": -116847616,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 26328029417,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 652863483,
+        "rshares": 54298949,
+        "voter": "satoshigraphics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3016471993,
+        "rshares": 54854247,
+        "voter": "heswaik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 2917967886,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55131842,
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 221607742,
+        "rshares": 55098227,
+        "voter": "zelious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7805684953,
+        "rshares": 56724504,
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 53027864,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 187955826,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 152610437601,
+        "rshares": 82814845,
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12368054643,
+        "rshares": 52049175,
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 858129,
+        "rshares": 54920266,
+        "voter": "falvar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53833366,
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 815192,
+        "rshares": 54857075,
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 783025089624,
+        "rshares": 189152630,
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 69408815,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142829147182,
+        "rshares": 384435764,
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54706268,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837704,
+        "rshares": 52540818,
+        "voter": "abdology8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 253778225,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 118752738701,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 54674145,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 48882867560,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 22659904713,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775425280,
+        "rshares": 54724884,
+        "voter": "claudiu23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122191520146,
+        "rshares": 55308387,
+        "voter": "ivanba12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 54744688,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5287388828,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 5252754993,
+        "rshares": -54431164,
+        "voter": "lynchiandream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50050365062,
+        "rshares": 53239706,
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 482662445,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 310635750,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 54165586,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 53109574,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1008313152,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30137433,
+        "rshares": 52935707,
+        "voter": "techtological"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207506656,
+        "rshares": 51982993,
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53953933,
+        "voter": "joeblack"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 23817229390,
+        "rshares": -57844180,
+        "voter": "thecentreofitall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 104515255,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17391399824,
+        "rshares": 56926583,
+        "voter": "kinghabib786"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 1741189054,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 1790356171,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 619923193031,
+        "rshares": 416608994,
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 52526039,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1044015789,
+        "rshares": 53728163,
+        "voter": "ryanrock"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1586176027,
+        "rshares": -53368919,
+        "voter": "seirffejpilihp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 52277186,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 53764231,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 154843320822,
+        "rshares": -121824171,
+        "voter": "idmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 53139024,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 168347936,
+        "rshares": 52078091,
+        "voter": "shadowz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27553964160,
+        "rshares": 51026675,
+        "voter": "t-bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38177377,
+        "rshares": 53089601,
+        "voter": "maximsm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4431779617,
+        "rshares": 50928727,
+        "voter": "kdm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1010743139109,
+        "rshares": 52744709,
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189363957513,
+        "rshares": 52970036,
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51925513,
+        "voter": "kimbo-spice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64941758686,
+        "rshares": 62284508,
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81818528799,
+        "rshares": 72135701,
+        "voter": "pickoum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6178069956,
+        "rshares": 52943719,
+        "voter": "davidcbennett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5615306,
+        "rshares": 52936794,
+        "voter": "dykstranet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": -36825561985,
+        "rshares": 50838989,
+        "voter": "thegeekway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019761604717,
+        "rshares": 52908518,
+        "voter": "fenglosophy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 828920570,
+        "rshares": 51836282,
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 104730476,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 53018255,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1652581,
+        "rshares": 52716255,
+        "voter": "semen887"
+      },
+      {
+        "percent": "10000",
+        "reputation": 444900926552,
+        "rshares": 1587774556,
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151906532077,
+        "rshares": 52533117,
+        "voter": "stardust"
+      },
+      {
+        "percent": "10000",
+        "reputation": -393894082,
+        "rshares": 52659984,
+        "voter": "adges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6447867236,
+        "rshares": 52627469,
+        "voter": "saintmichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9397769,
+        "rshares": 52625290,
+        "voter": "dwightmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 52601465,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52596527,
+        "voter": "jamsterdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 821808,
+        "rshares": 51564466,
+        "voter": "victorizwekov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 51510730,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197832234,
+        "rshares": 52508752,
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50405458,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4801747358,
+        "rshares": 52454485,
+        "voter": "viljo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52415837,
+        "voter": "koek-10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -538332704054,
+        "rshares": 52415708,
+        "voter": "flashbhai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2454253,
+        "rshares": 51384906,
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2438959,
+        "rshares": 51333608,
+        "voter": "viktorvol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52347870,
+        "voter": "max78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52345932,
+        "voter": "scottrsykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52342725,
+        "voter": "desade9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51312398,
+        "voter": "yazata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 457580144,
+        "rshares": 51288728,
+        "voter": "soul.ripper.ittu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474014758,
+        "rshares": 52270318,
+        "voter": "adamasbane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2148251225,
+        "rshares": 52262398,
+        "voter": "develcuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174392265,
+        "rshares": 51236019,
+        "voter": "nicklin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 144438594,
+        "rshares": 52252018,
+        "voter": "rolbox1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52247234,
+        "voter": "jdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 662783681857,
+        "rshares": 52240873,
+        "voter": "ekklesiagora"
+      },
+      {
+        "percent": "10000",
+        "reputation": 828186806,
+        "rshares": 52240010,
+        "voter": "davinchee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35296836,
+        "rshares": 51194377,
+        "voter": "ardzreil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 109853423,
+        "rshares": 51187437,
+        "voter": "leopard66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2077803079,
+        "rshares": 51171292,
+        "voter": "rajesh93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2412569,
+        "rshares": 52149842,
+        "voter": "vashiruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52144339,
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271467561,
+        "rshares": 52131186,
+        "voter": "elena2101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52103325,
+        "voter": "steven938"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 52098977,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15610174724,
+        "rshares": 50039213,
+        "voter": "wolfclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 301590767,
+        "rshares": 52053707,
+        "voter": "blur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19993849,
+        "rshares": 52029680,
+        "voter": "codeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19683971,
+        "rshares": 50368151,
+        "voter": "lucif3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51086148,
+        "voter": "homepage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80388747576,
+        "rshares": 375739407,
+        "voter": "judithgpordon"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50326964582800,
+    "beneficiaries": [],
+    "body": "[![Screen Shot 2016-08-23 at 10.30.23 AM.png](https://s4.postimg.org/xd0wl8t9p/Screen_Shot_2016_08_23_at_10_30_23_AM.png)](https://postimg.org/image/gp9eiqyi1/)\n\nRecently I've found myself in a Twitter storm of anti-Steemness. How? I have no idea. It has been focusing on different aspects of Steem, but I'd like to focus on one right now. \n\nWe've all seen it before. The fated Bitcointalk Announcements (Altcoins) sub, where scamcoins, altcoins and the like come to live and (hopefully not) die. \n\n[![Screen Shot 2016-08-23 at 10.28.12 AM.png](https://s15.postimg.org/7cwmvy2x7/Screen_Shot_2016_08_23_at_10_28_12_AM.png)](https://postimg.org/image/fieou3r5z/)\n\nIf you look a little closely, there is an announcement for Steem - An Experiment Proof of Work on March 24th\n\n[![Screen Shot 2016-08-23 at 10.33.29 AM.png](https://s15.postimg.org/t81ttmqkb/Screen_Shot_2016_08_23_at_10_33_29_AM.png)](https://postimg.org/image/mucqqdlo7/)\n\nThen on May 9th, the official Steemit platform was announced. \n\n[![Screen Shot 2016-08-23 at 10.34.57 AM.png](https://s9.postimg.org/3tpjiuv73/Screen_Shot_2016_08_23_at_10_34_57_AM.png)](https://postimg.org/image/8flnr7gq3/)\n\nWhat happened during those 2 months has been one of the biggest arguments of people calling Steem a scam.\n\nSteem as a company and its founders mine a large stake of Steem themselves between that time period, giving themselves one of the largest stakes in Steem. \n\nDoes that make it a Scam? I don't think so. Here is why. \n\nI am more sensitive to the plight of companies trying to get off the ground and how hard it is to stay on the right side of the law. I believe the way Ned and Dan launched Steem was the one of the only kosher ways to do it. (I am no legal expert)\n\nTake a look at Dan's article on the subject: https://bytemaster.github.io/article/2016/03/27/How-to-Launch-a-Crypto-Currency-Legally-while-Raising-Funds/ \n\nHe writes that there are 4 bullet points must be satisfied for a blockchain launch to be considered legal: \n\n1. Do not pre-allocate any currency to yourself or others. \n2. Do not sell currency directly to others\n3. Aways sell through a regulated exchange.\n4. Complete the currency and protocol prior to launch.\n\nOne of Tone's biggest arguments is that on march 24th there was not enough information given for people to mine Steem and the lack of transparency. However Dan addresses that: \n\n\"A startup that attempts to comply with all of the FinCEN regulations AND all of the Bitcoin community cultural regulations finds itself in a pickle. If you reveal enough information about your product with enough warning then the market will speculatively place a high value on your tokens. The higher the value the market places on the tokens, the more capital is wasted on a computational competition to acquire the tokens.\"\n\nI tend to agree with this. \n\nIn working on my own project in the past I realized that if I launched a token and announced it, many people would mine it making the value go up very quickly and my inability to mine enough for the company to fund development. \n\nWhy is it a bad thing that Steem and its founders mined so many in the beginning? Wouldn't you want the founders and the company to have enough money to further development of the platform thus making everyone else's Steem value worth more? Everyone who has Steem or Steem Power has an economic interest in furthering the project. \n\nhttp://coinjournal.net/wp-content/uploads/2016/05/760x384xSteemit-Blockchain-Social-Media-Platform.png.pagespeed.ic.eiGIrIqXEY.jpg\n\n Playing devils advocate here. It is rumored that Satoshi Nakamoto owns a very large percentage of Bitcoin due to the fact that many of the earliest coins have not moved. I don't think thats a bad thing, he deserves those coins as the creator of Bitcoin. His development has brought us one of the most important technologies of our lifetime. https://bitslog.wordpress.com/2013/04/17/the-well-deserved-fortune-of-satoshi-nakamoto/ \n\nI concede the white paper is very long and may not be perfect. Steem is new and experimental. However I don't think we should throw a project under the bus because of that. Besides, what financial investment is required to participate? NONE! \n\nLet's try to be a bit more objective in our arguments \n\n-Charlie",
+    "body_length": 4271,
+    "cashout_time": "2016-08-30T15:02:21",
+    "category": "steem",
+    "children": 228,
+    "created": "2016-08-23T15:02:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"steemit\",\"bitcoin\"],\"image\":[\"https://s4.postimg.org/xd0wl8t9p/Screen_Shot_2016_08_23_at_10_30_23_AM.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T01:00:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 203203226434945,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "5503.740 HBD",
+    "percent_hbd": 10000,
+    "permlink": "was-the-launch-of-steem-a-scam-or-the-only-legal-way-thoughts-on-steem-by-charlie-shrem-a-week-later",
+    "post_id": 951971,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Was the Launch of Steem a Scam or the Only Legal Way? - Thoughts on Steem by Charlie Shrem a Week Later",
+    "title": "Was the Launch of Steem a Scam or the Only Legal Way? - Thoughts on Steem by Charlie Shrem a Week Later",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@charlieshrem/was-the-launch-of-steem-a-scam-or-the-only-legal-way-thoughts-on-steem-by-charlie-shrem-a-week-later"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 27835652679638,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28860686161,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "5700",
+        "reputation": 8151223409709,
+        "rshares": 9759512446707,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 25601983150446,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 407403416903,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 13832704121489,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 34617610074801,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 138515538496,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2204525366940,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 219042729842,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "5100",
+        "reputation": 8272495818727,
+        "rshares": 3341735165702,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3218973585910,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 268453416528,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1934012348246,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 385479745468,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6394078261764,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 629235972940,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 20638075702790,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 107349543567,
+        "voter": "sandra"
+      },
+      {
+        "percent": "1000",
+        "reputation": 8358591595454,
+        "rshares": 562878375836,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1245312176546,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 2778635536390,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "1000",
+        "reputation": 20297981245452,
+        "rshares": 663291822480,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 765302273864,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4624171130175,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1019501241310,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 928728486930,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320903608851,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "8100",
+        "reputation": 9800209121307,
+        "rshares": 5533174715192,
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3353563577807,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5638817326573,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2475099676,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 2017971477559,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3004405407,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562845898,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 5889947095210,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5950245272052,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 42570823964,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5461062957,
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5248796936,
+        "voter": "jen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 31020409685,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 435835894301,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25224828032,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1326622300,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170838887,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 35859413725,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 12302450425,
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35385015759603,
+        "rshares": 206704905856,
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 15486432504,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 334640357759,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322503949727,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2607274757947,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1019017863163,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 835402539,
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 4893939747932,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1322671847814,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 332798234225,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 693759818138,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1063727690764,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 250745356011,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 497598219,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 756593183,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2650972026699,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5116325730997,
+        "rshares": 1759901644,
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 47676868957,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230356427,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23343617867,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19136722201,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 221001369462,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8369520210,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 51656273617,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 2677185233,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146328925242,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 10964198563,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 24928149553,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 120712992,
+        "rshares": 1575664944,
+        "voter": "radium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3675361198293,
+        "rshares": 16005117717,
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3991934644,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 495799930418,
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 3040793590,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 81923385253,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 483689967,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35537325381339,
+        "rshares": 993850916624,
+        "voter": "hipster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770646007378,
+        "rshares": 4293694728,
+        "voter": "sunjata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 747222360841,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5667478170,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46562129831,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2138900343,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 326306458627,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 33272741544,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 11185447891,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3997942209174,
+        "rshares": 40377979203,
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 735488834421,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 894486600,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 2512648201,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 7456570912,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "3100",
+        "reputation": 15755437221598,
+        "rshares": 4417014412,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1346484060,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 16066796093,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 37901956514,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 503760742628,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1802874785,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1737651089,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 46172535299,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 375484353628,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 9690694569,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5794630789,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 38006510341,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 364199573539,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11009812099,
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6671389270,
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4883865230,
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7062934147,
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 463562817,
+        "rshares": 604174881,
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 75062388,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6457716310,
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4314647835,
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 609780550802,
+        "rshares": 141944533,
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 232932917905,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5801302394,
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4524255424,
+        "voter": "aizen12"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 9316260956,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 76864953680,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10655437915,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 354821050906,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 377989485,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51193374426,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488865370830,
+        "rshares": 824937471,
+        "voter": "sunnyray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 109603724041,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 63499073022,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 31649987362,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 198124856972,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30409765924218,
+        "rshares": 324215393049,
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325340968,
+        "rshares": 5393018224,
+        "voter": "hulu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13118848357,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212451198738,
+        "rshares": 401560056,
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 215300652343,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23207814758,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 137886331123,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 839092389,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9131956116299,
+        "rshares": 127984817808,
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1735608906,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1960155455032,
+        "rshares": 3962235656,
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 195139760695,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9716865303,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 250148458597,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 36255986907,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 4725860991,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6438287054,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2543780350,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 7828545715,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6850177271,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 6648633577,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 63947287396,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5460682839,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2085539735789,
+        "rshares": 1963122914,
+        "voter": "rowbvp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 49801944916,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 7400392900,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 142479249108,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 5003779123,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 291252803332,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 2796935369,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5172861988,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 11629263110,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454055212995,
+        "rshares": 814731555,
+        "voter": "gidlark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 2740150537,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 255711606,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 106534651031,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 13656030064,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5459568709,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2909746448,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 10816028013,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9786117166130,
+        "rshares": 16792440757,
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 5749772405,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 631124453294,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 20702456342,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 100166814,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 41580494718,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 354627891,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9484578345,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502465820159,
+        "rshares": 30927136868,
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 77739321482,
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 19111656178138,
+        "rshares": 7648177668,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 14678165405,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10794737255,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 576970770,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 103573992299,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 2362495481,
+        "voter": "owdy"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 80750143,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 74030160,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 86951139,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 119931099578,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727668809534,
+        "rshares": 4384446548,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20369435247,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7724457353,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 27620730117,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4244660722,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4263811283,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10446852017,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 140003960582,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33597624083,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4375757989,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 81193129339,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 2006635026,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629304079354,
+        "rshares": 19450212630,
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3946693289,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 9651259451,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3779872763249,
+        "rshares": 20917390648,
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 25412786301,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 5743095106,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 74308889288,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8294398224,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 523349272991,
+        "rshares": 7150803581,
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 833993131,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 669199844401,
+        "rshares": 10477869672,
+        "voter": "mun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4997362589971,
+        "rshares": 80934685858,
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 126370014905,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 14744519662,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 37596284875,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 56031907222,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2620486879029,
+        "rshares": 1603706079,
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 5577368046,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 22826836494,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3472052072,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9261130965,
+        "rshares": 236138351,
+        "voter": "m34ndy0u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3766713545,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1560786654602,
+        "rshares": 2576487922,
+        "voter": "algimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 9956305307,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 12378812279,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37784721165,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 197549883674,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 4392521170,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 198815487354,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 15513146396,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14488219448,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 123354556,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 23717363765,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26442156052,
+        "rshares": 5969710753,
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 9961792896,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6880369404,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 792476477,
+        "rshares": 116664172,
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 3757933693,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 8441591488,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 142840277814,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19179223293,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 3494540064,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 29664819265,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54051855495,
+        "rshares": 141272122,
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 55486763448,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1637766275,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1446649799,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 102416193,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 180719308044,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1014531556634,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 1506979794,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 28332153949,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 918911822347,
+        "rshares": 611119466,
+        "voter": "aleco"
+      },
+      {
+        "percent": "1000",
+        "reputation": 10519849768972,
+        "rshares": 2449020989,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1496765841,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 246188953,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 246558540,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 142764415,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 143571294,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81891657,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 464689035,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4926547069,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 3744297608,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35209974404,
+        "rshares": 130660676,
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327313183062,
+        "rshares": 1125906881,
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 203379252830,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 898853087,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1371841629,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 22279717300,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 16703368893,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201338440700,
+        "rshares": 348055214,
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 634491670,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 750786472,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 6497952466,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 378979697,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 196594755,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1277366753949,
+        "rshares": 16686775872,
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 248439009,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74164867,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1712093376924,
+        "rshares": 6497618988,
+        "voter": "alphabeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67422364209,
+        "rshares": 3480194424,
+        "voter": "mpa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 795985769,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "5000",
+        "reputation": -469690438,
+        "rshares": 213582505,
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 115458064,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4179404720,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8375659361,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 551563663183,
+        "rshares": 335450273,
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 658028584,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 970335831,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 3035416204,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 791569216,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1977162029930,
+        "rshares": 1708472880,
+        "voter": "litrbooh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 408161802,
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 586934083,
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8261587165,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 228038852,
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 476230500,
+        "voter": "bento01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2975376827,
+        "rshares": 66778067,
+        "voter": "dras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 887519432562,
+        "rshares": 1616980498,
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 52489886,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34161947158,
+        "rshares": 220394920,
+        "voter": "tecno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 40694225526,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 8940351822,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 1039949488,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 53473560,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14740647774,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61374667649460,
+        "rshares": 152718771639,
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 876981522843,
+        "rshares": 5075610665,
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65253293,
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24803457022,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65245958,
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65213169,
+        "voter": "kotaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2357530541,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2092972280,
+        "rshares": 65185445,
+        "voter": "dwyane36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84167375,
+        "voter": "bento06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 20196989182,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1554832442,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 39673780208,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 554902696,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 29303599378,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 8512229635,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 35373276964,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 49990182598,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 897628539,
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2624726217,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1480305110,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 63300522,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51891139,
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 104482094,
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6902547688,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 107694872,
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1962337691,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 10618591854,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 48585677668,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 2859918214,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "5000",
+        "reputation": 121552056346,
+        "rshares": 353166122,
+        "voter": "ezel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 9185814268,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 151302584,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740133117502,
+        "rshares": 2112472683,
+        "voter": "natalymaty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 838358212,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 30216573006,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 31890380219,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 52502611,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10679422443,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -451593763871,
+        "rshares": 3292124265,
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1710319,
+        "rshares": 61796362,
+        "voter": "drmedwurst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3229201950,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 14609991628,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1641825025256,
+        "rshares": 5380970465,
+        "voter": "agent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91384020663,
+        "rshares": 63082929,
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 1088539665,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 20420574535,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 184448304,
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61335111,
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1943068087,
+        "rshares": 61600623,
+        "voter": "lennon15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4521044040322,
+        "rshares": 3989933844,
+        "voter": "zivile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 911038415,
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 743622257,
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 220181169,
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 15797662269,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 756408464,
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56946314,
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 56658670,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 26872961926,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 62373416,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2310121430,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 986973663,
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 710891266725,
+        "rshares": 79883913,
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 109103456501,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1091976246,
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 334054376,
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 3793330400,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36905135907,
+        "rshares": 12700869762,
+        "voter": "nomorealex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52952823,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155262514,
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74403086,
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 749322915,
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34134092,
+        "rshares": 61654952,
+        "voter": "ip0000h"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 751877578,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 11321546921,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23206755125,
+        "rshares": 62973882,
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 32936248663,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 577231315,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218198619612,
+        "rshares": 160492784,
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87826064077,
+        "rshares": 69785710,
+        "voter": "mata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 376862910,
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83638535,
+        "rshares": 59379075,
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 267015963,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 126784257,
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2108445433,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 729002481,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87954530186,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 446425368,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1728244534,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 57784735,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 791158815026,
+        "rshares": 142929513,
+        "voter": "spalser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 115895044,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1759911127,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 52786041,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2169915147,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 2950943431,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 17241825011,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 181061225,
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 27227235953,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 902739935,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305959994445,
+        "rshares": 214153918,
+        "voter": "freerubens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657367578,
+        "rshares": 59437116,
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 13721363389,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318687464222,
+        "rshares": 89149760,
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1494980155,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 3056860795,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 11212891787,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14701563258,
+        "rshares": 76381599,
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1802656474490,
+        "rshares": 2395737848,
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 589293675197,
+        "rshares": 1615806108,
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 4325283932,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 14006819763,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4403814537511,
+        "rshares": 17107407588,
+        "voter": "takethecannoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5178721808894,
+        "rshares": 5151404973,
+        "voter": "survivalist.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8347266720,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 131449821,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 288067508,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 40024769876,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 1517045010,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 56552144,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53116957,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 5097617971,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 4050470844,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11784388460,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4856527764,
+        "rshares": 57665403,
+        "voter": "m12r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 1941692156,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 446621889,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 24433846736,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4052375309,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9357899502,
+        "rshares": 56456709,
+        "voter": "virgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 55768488,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 381198814,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 879417837,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48699492408,
+        "rshares": 86833062,
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 931863998,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 57894807,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818977100,
+        "rshares": 55971428,
+        "voter": "jimking001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15391412,
+        "rshares": 55019922,
+        "voter": "jhonione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 69060598,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 415317850,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 2808817235,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58077570820,
+        "rshares": 66710967,
+        "voter": "bmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 78381272391,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 180881760,
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2150495964,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 95892869,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276225890,
+        "rshares": 54324205,
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 26330210589,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 3005615324,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55131842,
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7805684953,
+        "rshares": 56724504,
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 860435,
+        "rshares": 55067873,
+        "voter": "whispershaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 125165821,
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 196460169,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 152610437601,
+        "rshares": 80076884,
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12368054643,
+        "rshares": 53133533,
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 53724029,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 51559314,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 63856110,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 53576902,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10310484518,
+        "rshares": 53774038,
+        "voter": "thekao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39668460,
+        "rshares": 53188832,
+        "voter": "angryredbarber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41818829,
+        "rshares": 54200695,
+        "voter": "dooglet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 54138620,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1096299728,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1455592982586,
+        "rshares": 530589272,
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18081706207,
+        "rshares": 52192153,
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207506656,
+        "rshares": 53043871,
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 127717490,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52826202,
+        "voter": "kbregu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 1829632070,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3493374201,
+        "rshares": 53613334,
+        "voter": "paxmagnus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51495343,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52540627,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 9048854610,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27553964160,
+        "rshares": 52068036,
+        "voter": "t-bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38177377,
+        "rshares": 51007656,
+        "voter": "maximsm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 50852949,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": -36825561985,
+        "rshares": 50838989,
+        "voter": "thegeekway"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 59067883,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451747,
+        "rshares": 52687862,
+        "voter": "sargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5766569295559,
+        "rshares": 51572011,
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50405458,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959133,
+        "rshares": 51298916,
+        "voter": "faissal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9560708,
+        "rshares": 52306238,
+        "voter": "rjv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8090444870,
+        "rshares": 50175527,
+        "voter": "acura-tech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20563719,
+        "rshares": 51190706,
+        "voter": "whydoitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50099463,
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51111890,
+        "voter": "pitt34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52003506,
+        "voter": "amdj30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50977373,
+        "voter": "cobizig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50968568,
+        "voter": "olblueyez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50949654,
+        "voter": "superpuffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601633300,
+        "rshares": 50924850,
+        "voter": "shaolinmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 51896264,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1423888772,
+        "rshares": 50793502,
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148745502,
+        "voter": "roger.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153163711,
+        "voter": "kmichaelkills"
+      }
+    ],
+    "author": "jesta",
+    "author_reputation": 38947133984552,
+    "beneficiaries": [],
+    "body": "One thing I get asked for a lot on steemstats.com is historical data. The problem I ran into was in the way steemstats was designed - everything is loaded in real time from the blockchain. I needed a way to store and retrieve data based on time and date - [steemdb.com](https://steemdb.com) (steem database) is the concept I ended up with, which will allow all of us to use this data.\n\nBefore I go further, **this post will be split into two parts**: the first part is for everyone and outlines the benefits [steemdb.com](https://steemdb.com) brings to steem users; and the second part for the developers interested in learning and/or contributing.\n\nAlso - **This is a super early alpha, it might crash :)**\n\n# Introducing steemdb.com, the website\n\nsteemdb is about being able to look at data in different ways, as well as back historically in time, using techniques that aren't currently available through the steem blockchain. It also serves as a playground for new ideas and experiments. It's a block explorer at heart, but doesn't feel like your typical explorer.\n\nI'd invite you to check out my account overview here:\n\n[https://steemdb.com/@jesta](https://steemdb.com/@jesta)\n\nor you can even continue reading this post via steemdb:\n\n[https://steemdb.com/steemdb/@jesta/steemdb-com-open-source-blockchain-explorer-and-data-playground-alpha-release](https://steemdb.com/steemdb/@jesta/steemdb-com-open-source-blockchain-explorer-and-data-playground-alpha-release)\n\n### Currently steemdb allows you to do the following things:\n\n- View detailed account information + historical charts\n- View detailed information about posts\n- View the current witnesses + mining queue\n- Search for accounts using the box in the upper right\n- (Experiment #1) Browse posts by creation date, filter by tag, sorted by either votes or payouts\n\n**You currently can't do anything that requires a login** - steemdb is all about exploration for the time being.\n\nThis post is going to get long, so for those of you who need a TLDR, I'd invite you to scroll through the small gallery of images below that show the various pages available.\n\n---\n\n## Account View\n\nExample: [https://steemdb.com/@jesta](https://steemdb.com/@jesta)\n\nThe account view breaks down the different components of an account into separate tabs and tries to make the information easy to digest. You can look at anyone's account with this detail. It also charts and shows historical data for some areas of information to track changes over time. It's not mean to be a replacement to steemstats, but a tool that steemstats could link to to learn about others.\n\n**Much of this data will be available on steemstats.com in the near future**. I'll also hopefully be providing some public APIs of the same thing for everyone else to use. This is all dependent on how optimized I can make the data and how much the infrastructure would cost to scale.\n\n![Imgur](http://i.imgur.com/sYfxZMo.png)\n\n---\n\n## Post View\n\nExample: [https://steemdb.com/steemstats/@jesta/steemstats-0-3-4-new-live-post-inspector-and-incoming-witness-votes](https://steemdb.com/steemstats/@jesta/steemstats-0-3-4-new-live-post-inspector-and-incoming-witness-votes)\n\nThis was my take on how I'd want to explore the data behind a post. It's not interactive at this point, but already provides a bit more insight than we have here on steemit. It features the content broken out into a tabular view based on data aspect, and a sidebar that shows you about the author, other things they've written, and other meta information.\n\nI've also included buttons on each post to quickly view it on steemit.com, just in case you discover something you'd like to vote on or respond to.\n\n![Imgur](http://i.imgur.com/tWkzLnJ.png)\n\n---\n\n## Witness View\n\n[https://steemdb.com/witnesses](https://steemdb.com/witnesses)\n\nThis section is a mirror of the witness page on [https://steemd.com/witnesses](https://steemd.com/witnesses). It displays information important to the witnesses and miners on the steem network.\n\n![Imgur](http://i.imgur.com/sLRUPdx.png)\n\n---\n\n## Posts by Date (Experiment #1)\n\nExample: [https://steemdb.com](https://steemdb.com) (the current homepage)\n\nThis section was designed as an experimental view of data on the blockchain. This was my first attempt at organizing the data on steem in a more \"content silo'd\" fashion to see how it could be browsed.\n\nI plan on doing a number of experiments on different ways to view the content in an attempt to help determine the best way to present it. My thought is that I'll be able to move a lot faster (since it's a database, not a blockchain) and help prototype what sort of things we may see here someday on steemit.com.\n\nCurrently, the posts page is set to:\n\n- **Grouping**: It's grouped by the `creation date`. You only view one day at a time, and can go forwards and backwards in time.\n- **Sorting**: Posts by default are sorted by payouts which can be changed to votes.\n- **First Tag Priority**: If you click on a tag, if will only show you posts where that is the **first tag**.\n\nIt's pretty interesting to go back in time and view what was popular on specific dates. It's even more interesting when you pick a tag, and then paginate by date. I've found a few posts that I never would have seen by doing this.\n\n![Imgur](http://i.imgur.com/BMfi8Ko.png)\n\n---\n\n![Imgur](http://i.imgur.com/wLnw4eT.png)\n\n---\n\n## What's next for steemdb.com (the website)?\n\nThe short version is more historical data, charts, APIs and ways to view the data that exists on the blockchain.\n\nOne of the biggest goals with steemdb is to help people learn about all the various aspects of the steem platform. steemstats.com has the same goal, but just from a very different angle. steemstats.com is about someone specific, and steemdb.com is about everyone in general.\n\nOver time, I think that these two projects will integrate with each other more and more.\n\nThe steemdb platform will also be used to show the community alternate ways that the content here on steem can be presented. I plan on trying out a bunch of interfaces you're likely familiar with to see what works best and what the community would like.\n\nI feel the best way to actually garner feedback is with a prototype, so I plan on delivering them, hopefully with the help of others! \n\nSpeaking of which...\n\n---\n\n# Introducing aaroncox/steemdb - the code\n\nhttps://github.com/aaroncox/steemdb\n\nLet me start by saying I most definitely followed the mantra of \"do things that don't scale\" for this prototype. If I never updated this code ever again, it wouldn't be scalable to the size that I believe steem can achieve. In fact I don't even know how the servers will hold up with the announcement and general usage of the site. Gotta love these alpha versions!\n\n**It's also not really that easy to use yet**! The reasons for this are: \n\n- It's 2 weeks old\n- I used technologies I didn't have to learn\n- I'm learning the best ways to retrieve the data from the blockchain\n\nJust like steem itself, if you're going to get involved, you're going to have to be able to figure how things work without documentation (for now). Learn to ask questions - lots of them.\n\nI'd invite you to join the #steemdb channel on steemit.chat, as I'll try to focus any interested parties there. If you join to promote your posts... you're gonna get the evil eye.\n\n### The technologies behind steemdb currently\n\nTechnology stack was chosen based on technologies I've used recently, not what's best. I'm still working full time on other projects and steem is still only a portion of my time each week. So if I needed a hammer, and all I could find was a rock, I used it.\n\nThat doesn't mean these technologies can't change and be adapted. Remember, it's an alpha and an experiment...\n\nCurrently these are the components that make up the project:\n\n1. **Data Storage**: MongoDB. Say what you will about it, but I was able to throw blocks of json at it, index it, and then begin querying/aggregating it.\n2. **The Website**: Powered by PHP7/nginx, using the Phalcon 3 framework, and a small collection of composer packages. On the frontend it uses semantic-ui for UI and plottable.js for charts. It connects to MongoDB as well as directly to the steem blockchain (very lightly).\n3. **The Services**: Written in Python3, and powered by Piston, these services act as the synchronization tools between the blockchain and the database.\n\nAll of this is encapsulated in a variety of docker containers that's controlled through `docker-compose`.\n\n### Future direction of the project\n\nSince this is the first release, a firm direction hasn't been set in stone. I'd like to see a number of improvements, as well as some optimizations, to really firm up it's core.\n\nRight now off the top of my head, I believe it's immediate future includes:\n\n- Some build processes to help manage js/css dependencies. It's very manual right now. You'll actually find a nice symlink from the public folder into the bower components.\n- Cleaning up the synchronization scripts so they don't store quite so much data. Right now there's a lot of duplicate data, including posts, so the database is huge. Luckily disk space is cheap right now, and the project is still rather limited.\n- The charts aren't in the best of places. The JS is actually stored in a volt file simply because docker was fighting me by corrupting my JS files.\n- Most of the aggregation queries should be moved out of the controllers and into the appropriate models for reusability. There's very little duplicate code right now, but it might get out of hand if that pattern continues.\n\nThere are also some loftier goals of removing the frontend from PHP, and using something like react. This would make the PHP layer purely an API for the frontend to interact with.\n\n### How do I run the damn thing?\n\nI will get a full development environment guide up in the coming weeks. It's going to take a **LOT** of disk space and some patience for the setup. You're going to have to build your own entire database version of the 4+ million blocks in the blockchain. Currently, completely unoptimized, it's consuming `21.943GB` of disk space on my server.\n\nIf this is something you're interested in - the first step I'd take in getting started is setup a local steemd instance and synchronize the entire blockchain to a local computer/server. It just so happens I wrote a [guide on a web instance of steemd](https://steemit.com/steem/@jesta/building-a-high-availability-steemd-node-for-web-apis) a few weeks ago. I'd start there.\n\nThe first step of running steemdb is going to be letting the services run for like 6-12 hours as it creates your database.\n\n---\n\n# Wrapping things up\n\nI'm pretty excited about this project, being able to query the database for pretty much any bit of information is like having a super power. I will do my best to keep the community up to date of changes, digest feedback, and help shape it into another great tool for the community to use.\n\nPhilosophically, steemdb is what I'd consider to be the 3rd and final part of the trinity of projects I've been working on:\n\n- steemstats: All about you and your data\n- steemdb: Aggregate information about everyone and everything\n- steempress: Taking your data and letting you start your own website\n\nThese projects combined will hopefully form a powerful open source combination to help contribute to the overall steem ecosystem. steempress is up next in the list of priorities, with two new themes to implement and a few projects that have expressed interest in using it to power their ideas.\n\nAs a current developer, backup witness, writer and normal guy - I hope to continue being a meaningful part of this community far into the future. Thank you all for your support!",
+    "body_length": 11740,
+    "cashout_time": "2016-08-31T05:23:54",
+    "category": "steemdb",
+    "children": 64,
+    "created": "2016-08-24T05:23:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemdb\",\"steemstats\",\"steem\"],\"links\":[\"https://steemdb.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T05:25:54",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 223663706973705,
+    "parent_author": "",
+    "parent_permlink": "steemdb",
+    "pending_payout_value": "5197.257 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemdb-com-open-source-blockchain-explorer-and-data-playground-alpha-release",
+    "post_id": 962335,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "steemdb.com - open source blockchain explorer and data playground (alpha release)",
+    "title": "steemdb.com - open source blockchain explorer and data playground (alpha release)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemdb/@jesta/steemdb-com-open-source-blockchain-explorer-and-data-playground-alpha-release"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 6789532482826,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1442806323876,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26912615943374,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314859374093,
+        "rshares": 119594441708,
+        "voter": "penambang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14826127825444,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40456922981920,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "2100",
+        "reputation": 13270505121655,
+        "rshares": 14173433335794,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27004834032159,
+        "rshares": 509030769141,
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 6999103958043,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 6563167020214,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9097053092647,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3217022515040,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 385186345581,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6722611883692,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 650958720590,
+        "voter": "justin"
+      },
+      {
+        "percent": "5400",
+        "reputation": 16685610555705,
+        "rshares": 11130235338866,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 104827428238,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1757593609964,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4046069584472,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 892442023232,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4845493916675,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1594941929014,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 910630825771,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 955078546275,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320770974260,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9800209121307,
+        "rshares": 3312907770981,
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3372981702853,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2471447156,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1937586517415,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 202646163126,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2999700170,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562186630,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3802501210976,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5929318032162,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 42106543833,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 453309373225,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1324781813,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170731788,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 118129108333,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34612931967,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 53880737032,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 474589944807,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 305019038127,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 166037258931,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1003949591482,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 15746313058,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 497044136,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 268787058152,
+        "rshares": 26766569998,
+        "voter": "rimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 734329420,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 21529122283,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 26160926667,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 131670002235,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 27498854159,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 281974836940,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230193744,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14352320176,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 108327039206,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 14881642993,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78582393172,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 13977008360,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 156401112117,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87363750745142,
+        "rshares": 476169398867,
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 18021970767,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81300407183,
+        "rshares": 546651195,
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 520709810424,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 7650612775,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 482274281,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 3505786797,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 846156504690,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5566053815,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 44664969115,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2050540352,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 339762881128,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 10045439962,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 15885861606,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 93698479708,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 434030418,
+        "voter": "yoona-lee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594921720930,
+        "rshares": 4023048939,
+        "voter": "mrkhuffins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2677033396,
+        "rshares": 413203765,
+        "voter": "cortegam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 7831790050,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 51642167127,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 2102642741,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 60250019872,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 395587018305,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2159288891,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16325478562,
+        "rshares": 1669689053,
+        "voter": "brian-lukassen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3144658279,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 313321841136,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 101040524971,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 431469957372,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 354491950,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 588403658678,
+        "rshares": 1294186808,
+        "voter": "kingnuze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 193176124353,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 11298470733,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238101508714,
+        "rshares": 10493959254,
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 44361054998,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 31192844516,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 92164140686,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9346126115,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 424361548272,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "100",
+        "reputation": 200733663789408,
+        "rshares": 46773236664,
+        "voter": "stellabelle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700029514,
+        "rshares": 3267719720,
+        "voter": "ian-harris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7796967076,
+        "rshares": 362255617,
+        "voter": "adrimaug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1669034099,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 377072977,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 347082255408,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 52795134733,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 75036626178,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 116736028111,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 3119494081,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19659075136,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 78776214214,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6877012376448,
+        "rshares": 129496475834,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23659023352,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 132142487726,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 732569491,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 267861211112,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 40337233208,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 119105913267,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 569037931,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23103657571,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1152226827309,
+        "rshares": 12339963893,
+        "voter": "tocode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5266542711,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 51016110934,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 219346109005,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13821321667,
+        "rshares": 716031864,
+        "voter": "christoph3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 41106720338,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2525540242,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 14428040108,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 29105923553,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20692382318966,
+        "rshares": 241700257480,
+        "voter": "mauricemikkers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98586802505,
+        "rshares": 363639358,
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26564452802341,
+        "rshares": 311897239830,
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 5800191517,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 45644662296,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8409193129,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 9146365770,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 42217454099,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 427801121477,
+        "rshares": 577234926,
+        "voter": "nadejde"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 1019490436,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 322845836,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 61099645784,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8490823640,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544044850677,
+        "rshares": 16220207303,
+        "voter": "eindbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4932785001,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 280939219619,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4617949057,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 850076768507,
+        "rshares": 117200595687,
+        "voter": "joshbreslauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 550545019366,
+        "rshares": 956499846,
+        "voter": "cuckoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 5016083436,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 22039154330,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 245427937,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "5000",
+        "reputation": 213668684615,
+        "rshares": 111266128,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4900077078,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12629401520,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 12498874545,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 17854262394,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 4875559587,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91531121710,
+        "rshares": 284912922,
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 64620383869,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 10211833851,
+        "rshares": -1296880853,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 31786439187,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 254936408,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1982022900,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103553440323,
+        "rshares": 9039390798,
+        "voter": "imjustsayintho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1456501318,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 41176869994,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9482596852,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91432229392,
+        "rshares": 7150449948,
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38421201873,
+        "rshares": 36628711156,
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 16723585117,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 537097998,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12755003778,
+        "rshares": 320286208,
+        "voter": "onthewayout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 101166211496,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 1581318590,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3891722,
+        "rshares": 181968057,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 201573439,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 186538229,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 241513668,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 713529357997,
+        "rshares": 958214999,
+        "voter": "cousteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20302534096,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6556154685,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 245149849,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 27453480728,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1028811183,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 963454351109,
+        "rshares": 1312003067,
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 18591349633,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 263539417,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4025876756,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 118192816262,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34259977988,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 3852695264,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1820674198,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 12111904102,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 443114909,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24395385549,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 59944812577,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 965949651,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 227542942,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3071116454,
+        "rshares": 376052332,
+        "voter": "mysonjosh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 523349272991,
+        "rshares": 6864553332,
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9409724222,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2576891078,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2087820513398,
+        "rshares": 128233553422,
+        "voter": "gbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1670036281,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 333585543,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 186400988330,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2347565634738,
+        "rshares": 9877058661,
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 52547655683,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 20464529544,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2620486879029,
+        "rshares": 1132492003,
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 8581082828,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3687829510,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 82600248298,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3372933854,
+        "rshares": 240158818,
+        "voter": "maximaug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 2247725724,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 18785586180,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 1268246507,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 185878286817,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3508912972,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 163174319449,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 13088301252,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14474771175,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 33608863146,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 118370055,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 23751943105,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 24286771198,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26442156052,
+        "rshares": 5968439188,
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 7654853987,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7304650346,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116718568,
+        "voter": "patrickgamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2022133808333,
+        "rshares": 12703866376,
+        "voter": "krystox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 13367551271,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 3902383427,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 434187809,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5891987414,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 136205648,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4322495797,
+        "rshares": 117526541,
+        "voter": "skybean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 38744801871,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 10685710348,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 67919004974,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100070552,
+        "rshares": 118503353,
+        "voter": "maksim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2110839599820,
+        "rshares": 49063710701,
+        "voter": "orm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 107071475,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 8277602354,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 368310760,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 932147071373,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1217965675,
+        "rshares": 369513278,
+        "voter": "queiroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2069779393,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 918911822347,
+        "rshares": 593521455,
+        "voter": "aleco"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6161647808,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817267563963,
+        "rshares": 15503964044,
+        "voter": "steemedbroccoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 29238814584,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117695273,
+        "voter": "skunik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 611865137,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 113080200,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 7096709870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35209974404,
+        "rshares": 127324876,
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 1871665472,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 164314623649,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 3944969275,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15403904348,
+        "rshares": 118465573,
+        "voter": "takahan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 878015575,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20071791175,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 420733851,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 18608581502,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35497369232,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614251752,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 222230929,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2565964006,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230437999,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 13756999268,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "3000",
+        "reputation": 147425730,
+        "rshares": 191885048,
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3720753029,
+        "rshares": 188243510,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5711413280,
+        "rshares": 5706345080,
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2971326440,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81930668,
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 9465546842,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114359635,
+        "voter": "saturn14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2034974638910,
+        "rshares": 186902061,
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 98458844,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20324923696,
+        "rshares": 3259575173,
+        "voter": "talyvale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4095939810,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 16506886013,
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 59005064575,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 160613724,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1035432293,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": -489147116791,
+        "rshares": 104226163,
+        "voter": "jlwk0lb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218495912662,
+        "rshares": 2003359761,
+        "voter": "extricati0n"
+      },
+      {
+        "percent": "5000",
+        "reputation": -4779249072914,
+        "rshares": 109236400,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 2626075025,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11013922819,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 714072146,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 51208430933,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 105795536,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5400423706,
+        "rshares": 112783042,
+        "voter": "kdllac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43235837956,
+        "rshares": 134428987,
+        "voter": "jasmine-l"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 1995558588,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1671136875,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50234451,
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 2242471321,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89039117574,
+        "rshares": 16474889425,
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14990501670,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 11898780158,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8093732238,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2295692409,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771092702547,
+        "rshares": 2073278318,
+        "voter": "roy.batty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 4304414236,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 388918755,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 30076052434,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7510738974,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 445773791893,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23856803561,
+        "rshares": 64910257,
+        "voter": "elena000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1277855986,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2337037146737,
+        "rshares": 7323618776,
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163705995,
+        "voter": "adc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 52776160274,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 648011849462,
+        "rshares": 914967097,
+        "voter": "behfar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 72396496,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7385785487,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62681420,
+        "voter": "dida"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 37422386259,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 634476772,
+        "rshares": 106997975,
+        "voter": "xaviorfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1652465471,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 69114542,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1823929112,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 654944784,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135368634,
+        "rshares": 88945026,
+        "voter": "doapsauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61868441,
+        "voter": "loot"
+      },
+      {
+        "percent": "10000",
+        "reputation": -451593763871,
+        "rshares": 3219489475,
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 753893495,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19725881015,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849623403126,
+        "rshares": 682176282,
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 7591032124,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 102045022160,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725736773651,
+        "rshares": 137053476,
+        "voter": "sc-steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52952823,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 95812574,
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 60333839,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 34231891592,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 517544757,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 59335193,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87497032,
+        "rshares": 59271464,
+        "voter": "jayseedubya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1643997345,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 60143295,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 1375200085,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 842554356,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630154656,
+        "rshares": 2191235220,
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 13892949353,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 290607398,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1126347692,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24992183908,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 841764781,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 21737003114,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 7844170198,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61929785979,
+        "rshares": 58957446,
+        "voter": "redlikecherry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 65470574,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 17369954295,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 14093182160,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 59621658,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2688695430,
+        "rshares": 59196527,
+        "voter": "rgla216"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 894851,
+        "rshares": 58398424,
+        "voter": "oliv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1759357936,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 1082375952,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116376925,
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58172886,
+        "voter": "nullpointer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1456922840,
+        "rshares": 56064665,
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 61506308,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 367284869879,
+        "rshares": 505255598,
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 59227338,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 56887954,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4571225815,
+        "rshares": 57916296,
+        "voter": "sondick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 97538694,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227415344771,
+        "rshares": 57103495,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60366373217,
+        "rshares": 71785589,
+        "voter": "raseukinapobri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 66388356,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 55546061,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 398583502,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 2230796881,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 54561850,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 771996977,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135018071312,
+        "rshares": 56254941,
+        "voter": "blackeyed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 34104885344,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -17751314058,
+        "rshares": -55979644,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61867195769,
+        "rshares": 330468459,
+        "voter": "ban485"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 1143356780,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14565129670,
+        "rshares": 328824304,
+        "voter": "neurosploit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 629095349859,
+        "rshares": 1235292685,
+        "voter": "victor-smirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 51543289,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 327801060,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10121332649,
+        "rshares": 57959312,
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 53423752,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 56762668,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1020379418,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 169935476,
+        "rshares": 56479517,
+        "voter": "thp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80747623295,
+        "rshares": 26833252891,
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 56759615,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 50422679,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 50965282,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 501837884,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55025746,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57977501,
+        "rshares": 664326833,
+        "voter": "gerasim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54584359,
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 818442,
+        "rshares": 54562849,
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 66126498,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29018448461,
+        "rshares": 54790972,
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 139222205,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20160059807,
+        "rshares": 53179466,
+        "voter": "klents"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54184182,
+        "voter": "gastlep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 1369324712,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 603051505131,
+        "rshares": 279945692,
+        "voter": "steemboost"
+      },
+      {
+        "percent": "10000",
+        "reputation": -195878223866,
+        "rshares": 103734794,
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142829147182,
+        "rshares": 374138873,
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54545639,
+        "voter": "jibranludwig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 55668201,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5252754993,
+        "rshares": 50162053,
+        "voter": "lynchiandream"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 53103516,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7766373,
+        "rshares": 383419609,
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 990069795,
+        "rshares": 50888187,
+        "voter": "santiagomaicon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 538020212,
+        "rshares": 54049299,
+        "voter": "rantanplan41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 50756885,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 54338594,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80920831153,
+        "rshares": 52817078,
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3652443205,
+        "rshares": 52618631,
+        "voter": "cgfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178300437,
+        "rshares": 52614432,
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82295009498,
+        "rshares": 52568783,
+        "voter": "g33kspeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116742197,
+        "rshares": 53610490,
+        "voter": "stckpkr7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52378271,
+        "voter": "weltomat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52373262,
+        "voter": "bondarenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53366320,
+        "voter": "karazia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7370152734,
+        "rshares": 51249560,
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 833254,
+        "rshares": 53328263,
+        "voter": "dponce80"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52281058,
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 53322730,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53316516,
+        "voter": "okan31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13906758,
+        "rshares": 50140903,
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50245473,
+        "voter": "rony"
+      }
+    ],
+    "author": "roelandp",
+    "author_reputation": 57643429300793,
+    "beneficiaries": [],
+    "body": "For a while I have been tinkering with the idea to combine Steem Transfer Memo's to automated processes and do more with the Steem Blockchain <code>write/post</code> possibilities in a useful manner.\n\n Up to now I had only been making apps which are certainly fun (imho), and display <code>read</code> data from the Steem Blockchain, but that all changed today... <b>Introducing RadioSteem.com</b>\n\n<a href=\"http://radiosteem.com\"><img src=\"https://s4.postimg.org/f9qgiy9kd/radiosteem.png\"></a>\n\n<h2>RadioSteem - Consensus Radio Station</h2> By using the possibility of attaching a memo users can supply a request to have their favorite tracks added to the random playlist of the radio station. \n\nWhenever a new track gets added it will (only once) play directly. New tracks are added every 6 minutes and crossposted on @radiosteem 's blog. \n\nCurrently the radiostation is in 'aggregation' modus and randomly plays all added tracks. \n\nOver the weekend I will flip to 'consensus/vote'-based picks for the hourly random playlist instead of 'fishing' from all tracks added. You can simply bring your vote on @radiosteem 's blog which lists all tracks added to the playlist. \n\nI have prepared the 'playlist' items on @radiosteem 's blog with special <code>json metadata</code>, you could inspect individual posts on <a href=\"http://steemd.com/@radiosteem\">Steemd.com</a> to see that metadata!\n\n<h2>How to play Radio Steem:</h2>An icecast streaming server (mp3) is broadcasting on the interwebs and you can play this in your browser, iTunes, VLC, Sonos, laptop, phone, etc. \n- Play online via http://RadioSteem.com (with overview of nowplaying, amount of listeners, and recent requests) \n- Direct m3u playlist file: http://radiosteem.com/radiosteem.m3u\n- Direct xspf playlist file: http://radiosteem.com/radiosteem.xspf\n\nhttps://s4.postimg.org/4zga1tysd/radiosteem_screenshots.png\n\n<h2>How to add your track to Radio Steem:</h2>\n1. Go to your Wallet via the menu.\n2. Click on your totals of either SBD or Steem and initiate to transfer money.\n3. Fill in the transfer dialog: Send at least <b>0.33 SBD / STEEM</b> to <code><b>radiosteem</b></code> and fill the memo field with <code><b>artist track</b></code>. Replace 'artist' and 'track' with your favorite artist's track. ~~Don't forget the play keyword!~~ (Update: no longer necessary to begin with 'play')\n4. Hit transfer, you will be asked to sign with your 'active wif' or overall password, leave 'remember me' unchecked.\n5. Wait a bit... The machine processes 1 request per 6 minutes. \n\nhttps://s4.postimg.org/4t48nybql/Screen_Shot_2016_08_18_at_22_40_52.png\n\n<h2>Royalties</h2> For now this is a (fully working!) proof of concept, if it works it will be finetuned. I have already investigated the webradio licensing fees for running this kind of station. If there is a decent request for this station, or other streaming music ideas which could evolve from this, I am happy to pay the licensing fees to the local royalties collector... <sup>This royalties collector will then use this fee to pay their CEO's villa and ferrarri and leaves some pennies to the artists. :(</sup>\n\n<h2>How It Is Made:</h2>\n1. Server\n2. <a href=\"http://piston.rocks\">Piston.rocks</a> python-steem library by @xeroc\n3.  User requests via 'memo'\n4.  Script looks up and normalises data via 'ye good ol' Last.fm API.\n5. A certain provider of clips, fail vids and what more supplies audio.\n6. Instantly streams the newly added audio.\n7. Afterwards picks next added track or random from the list. \n\n<h4>Notes</h4>\n- @radiosteem wires your money back if no track was found\n- @radiosteem wires your money back if you wired not enough money (minimum = 0.33 SBD or 0.33 Steem)\n- be sure to upvote your track on @radiosteem (note we most probably don't earn author rewards because we cross the 4 posts per day easily)\n- <b>Find the official #radiosteem channel in Steemit.chat to discuss tracks and music in general</b>\n- read above the part about royalties. \n\n<h1><a href=\"http://radiosteem.com\">Visit RadioSteem.com &raquo;</a></h1>",
+    "body_length": 4055,
+    "cashout_time": "2016-08-26T11:32:48",
+    "category": "radiosteem",
+    "children": 85,
+    "created": "2016-08-19T11:32:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"radiosteem\",\"music\",\"steemtools\",\"radio\",\"mp3\"],\"users\":[\"radiosteem\",\"xeroc\"],\"image\":[\"https://s4.postimg.org/f9qgiy9kd/radiosteem.png\",\"https://s4.postimg.org/4t48nybql/Screen_Shot_2016_08_18_at_22_40_52.png\"],\"links\":[\"http://radiosteem.com\",\"http://steemd.com/@radiosteem\",\"http://RadioSteem.com\",\"http://piston.rocks\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T16:04:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 199578390685483,
+    "parent_author": "",
+    "parent_permlink": "radiosteem",
+    "pending_payout_value": "4963.009 HBD",
+    "percent_hbd": 10000,
+    "permlink": "introducing-radiosteem-com-consensus-webradio-add-your-tracks-via-steem-transfer-memo",
+    "post_id": 887329,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "RadioSteem.com - Consensus Jukebox: add your tracks via SBD/Steem transfer",
+    "title": "RadioSteem.com - Consensus Jukebox: add your tracks via SBD/Steem transfer",
+    "total_payout_value": "0.000 HBD",
+    "url": "/radiosteem/@roelandp/introducing-radiosteem-com-consensus-webradio-add-your-tracks-via-steem-transfer-memo"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 715802522574,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7605495740075,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 31837011093018,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28866299703,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 25833592942596,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14427596635978,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 41055809596582,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3702352000391,
+        "voter": "alphabet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3575467169076,
+        "voter": "excalibur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7802195,
+        "rshares": 11307163011172,
+        "voter": "blackjack"
+      },
+      {
+        "percent": "4900",
+        "reputation": 176979684007,
+        "rshares": 17800691642375,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7447923781978,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 205538915724,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2237805202982,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1860711124653,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 639460508652,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 119632798758,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1014644538420,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4769138174501,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "1100",
+        "reputation": 36749432321730,
+        "rshares": 117619247538,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4706701641637,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3100484416,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1804142534533,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3764133380,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690495538,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54221072950,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 32972000974,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 436329873842,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 24708024680,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661565332,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213702396,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 63315739576,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35385015759603,
+        "rshares": 212958850234,
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 16464789891,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 398433451876,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2578593588794,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1857217663,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1066448134723,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 136944801998,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 250747161,
+        "voter": "lee2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 27292981224,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335617567,
+        "rshares": 8867223395,
+        "voter": "lee4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 22217357110,
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9968654217,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2488988801,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5738629154943,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1333067288800,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 160569637251,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 82328947431,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 12430808274,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622921236,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1015312909424,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967523459,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "600",
+        "reputation": 96486114508046,
+        "rshares": 163745925289,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 21550223471,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7851727606,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 26297386564,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790110921335,
+        "rshares": 895008263,
+        "voter": "predator"
+      },
+      {
+        "percent": "100",
+        "reputation": 37454101478493,
+        "rshares": 6087343671,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74299604102,
+        "rshares": 3565556011,
+        "voter": "spartako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288200426,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 83920295417,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6863537479759,
+        "rshares": 38848706860,
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 30680184113,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14957770550,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419384994143,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 332011278679,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "100",
+        "reputation": 12712877967688,
+        "rshares": 1578981772,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15610930492,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8206415048,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81300407183,
+        "rshares": 560086163,
+        "voter": "ifttt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 485955188,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9875205286,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5589758754,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 25721158739,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2191463642,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 344554957568,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 15405899808,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 726186905908,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7186758,
+        "rshares": 459952549,
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3936536501,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 147918977871,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 55592052266,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 239045907364,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 24610357194,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 932214174,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 76909161958,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432765828,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 7315534741,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6298046648,
+        "rshares": 404586808,
+        "voter": "xxsenpaixsamaxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 602018562,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2510175673478,
+        "rshares": 24391980373,
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 1576072119,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3087509015,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 378233547367,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 33760347189,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 516459565596,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 65724539272,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 259940525923,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329767399573,
+        "rshares": 1645357112,
+        "voter": "arskiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 42192597011,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 201840686771,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 12174326629,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3833393202494,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 372487111294,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 416526923,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1675766403,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379488622,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 151934275034,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 355229166352,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53009341149,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 63224755863,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 53004846757,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 27224316284,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8560881227,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13619388525,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 72808271479,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "4900",
+        "reputation": 1050758001641,
+        "rshares": 11630218162,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 836118043,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 5985290920,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 36238600519,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 189554972423,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6144986482,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9720415590,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 110879742406,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 45111156296,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 66670675799,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7225093759945,
+        "rshares": 9294920408,
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 12426171394,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 3012098030,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17687761967,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12543821514,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 562037878,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 36758895347,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860741683952,
+        "rshares": 14383638916,
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 53791220823,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17899953147,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5458058813,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 261528006,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 49281063163,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 82785075648,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 249718629316,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 7280225362,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 20067559948,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642153385789,
+        "rshares": 1174733183,
+        "voter": "stupidteenboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 49761282465,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 26742232944,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 305317127153,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4663453399,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 109836452744,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5143385074,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 14317661976,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 259435741,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 22308135205,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 19620943112,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 12039207468,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 495391715,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1272198673,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 12374841331,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24953299649,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6912801123,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 241196448,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1626843644,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8854412737,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "2500",
+        "reputation": 18799092030582,
+        "rshares": 28813124234,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 16288679477,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 711619553995,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91432229392,
+        "rshares": 6871736638,
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38421201873,
+        "rshares": 36327800188,
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 500324629784,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 107937494209,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81102912,
+        "rshares": 246360429,
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 157609381591,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 12379241833,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1356586698,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4678171858,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4403326971786,
+        "rshares": 19525185696,
+        "voter": "cryptobarry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 5943724108,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3340721580,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 11437290746,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34308077043,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4673152960,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1410670651,
+        "rshares": 2302312111,
+        "voter": "johnnydollar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 109193449547,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 2066270604,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 159996094371,
+        "rshares": 375326226,
+        "voter": "knyaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4189995601,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 16495232731,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 36790028039,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 323841685477,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 11303853098,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 523349272991,
+        "rshares": 7016927838,
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 38663581428,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11450220486,
+        "rshares": 276719509,
+        "voter": "gobbahfett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2545398506,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 349905152,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 389105103,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 3763978939,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 67700352480,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 41879969574,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 18203466610,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 103669226,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373621663,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 1798286164,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1481917550,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1650357324,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3860285221,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4617586503531,
+        "rshares": 8393460828,
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1386339611284,
+        "rshares": 1613568797,
+        "voter": "fiona777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12769332610,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2477840048,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 20410186435,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 261891688708,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3417872505,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14602683890,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64700259531,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 123387400,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8242754377,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7024277607,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3160140774,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 8698648967,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 132755337797,
+        "rshares": 157330198,
+        "voter": "xondra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3170552655,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 4024351980,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4555768881,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 20177063247,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 75081744900,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 22053593042,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 109445777,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 970801526,
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203930277874,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 130741738,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": -151661776992,
+        "rshares": 137955570,
+        "voter": "bithost99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1036809457802,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101628344707,
+        "rshares": 805838040,
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 56725460147,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80801736359,
+        "rshares": 160533005,
+        "voter": "mikeoleksyuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 1402716785,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 11382579888,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 682745915,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 196185915,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 571660115,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16013620,
+        "rshares": 114437225,
+        "voter": "youngyani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 12801100795,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 21371446615,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1349689922,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 435851011,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 691145775,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17549669523,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 619235885,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1980306134,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 32489668020,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 266840830,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2049264368,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5711413280,
+        "rshares": 6235583028,
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 38227184412,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 83754643,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2991165818,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5655389326,
+        "rshares": 12134505649,
+        "voter": "youngkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 122297166,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119216243,
+        "rshares": 113411292,
+        "voter": "joeyking2x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2642781889634,
+        "rshares": 7579959977,
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5852440924,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 184202050,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59131994286,
+        "rshares": 915824936,
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7424874957,
+        "rshares": 110940646,
+        "voter": "cryptoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4077029570,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 9632537830,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 121802663037,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40835071879,
+        "rshares": 1635188948,
+        "voter": "dirty.hera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6931641798,
+        "rshares": 110227366,
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "3700",
+        "reputation": 988942038058,
+        "rshares": 27496626074,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8774801051,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 47909693222,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1374220702,
+        "rshares": 490830857,
+        "voter": "deckard9732"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 25326197735,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8268098991,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4982598059,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7157520017,
+        "rshares": 66443823,
+        "voter": "adamcleary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63935898,
+        "voter": "modogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3877679603,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 3669665465,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 16675607269,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 32779082226,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 10189271331,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7989197237827,
+        "rshares": 19070836938,
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76182528096,
+        "rshares": 64812629,
+        "voter": "coderg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 1861354989,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4061495224,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 652000677,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 59390414686,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 19114938794,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 105403203766,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1118793643,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 383650129482,
+        "rshares": 136529851,
+        "voter": "steemnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 961957559,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 971138,
+        "rshares": 192492931,
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 71205425,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 65603112,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 102581984510,
+        "rshares": 115476170,
+        "voter": "crypticus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3509543381,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62981842,
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 654829084,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 1393633668,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3838681100,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 58277489,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": -752010553427,
+        "rshares": 1900222201,
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28855793490,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 55035367,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1474401175,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 61056742,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52454166,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 81569054900,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53624183,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 11527142845,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 62726567,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61110411,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50556117597,
+        "rshares": 74279978,
+        "voter": "chinese-gandalf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 36214069221,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 57802223,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57795937,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 81187832,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2702504485,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 608609996842,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5642165796,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 64630279370,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4203439454,
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59512540,
+        "voter": "boatman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 6803978101,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1170164910,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2551239163442,
+        "rshares": 7663512488,
+        "voter": "johnnyyash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 16454077535,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3442250582,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 1237440732,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2560643506,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 768143768,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1165647581018,
+        "rshares": 1623579809,
+        "voter": "satire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 57784735,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4274786743,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 7687052825,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 52067306,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 60968037,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 376105269,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44679463800,
+        "rshares": 5117532813,
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16370527703,
+        "rshares": 61622530,
+        "voter": "erstklassich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 64458836923,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1087479937,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12721356805,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 13684557027,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 60512686,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 7137342787,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 6241105052,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 13938683881,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1021682513,
+        "rshares": 56488029,
+        "voter": "mdx5009"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 11993444138,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740952354750,
+        "rshares": 288989103,
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 231803618,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54705383,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2169272539,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 110673246,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636339361438,
+        "rshares": 327834307,
+        "voter": "franks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8638127587,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1113186328,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 799573517,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 4164696673,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57896578,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 9711672934,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12069499961,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804735971045,
+        "rshares": 1288096881,
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2182092609,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1787270635,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 121993238,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 6884730737,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14685550969,
+        "rshares": 369711010,
+        "voter": "ajaub1962"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 87951188,
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71887903,
+        "rshares": 55709351,
+        "voter": "misscathy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 38083540995,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 16218791383,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 59518488,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1722766112,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 89846801,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 56908658,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5986907374,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 16989335281,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 633018448,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 363347220,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 15704761266,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 87886896,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 3648710236,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 168504303513,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 269670981,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 56774491,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630212931199,
+        "rshares": 179273387,
+        "voter": "jiacyhb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22098834313,
+        "rshares": 61635919,
+        "voter": "sharon09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 24251181774,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 217708510,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 808913218021,
+        "rshares": 350652587,
+        "voter": "anahilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2822111681,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -55223531,
+        "voter": "alibaba.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 5114715856,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 227735119,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 263907652,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 603051505131,
+        "rshares": 285544606,
+        "voter": "steemboost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 609022092,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 72893380,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 298396368,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50377764,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 269253318722,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 60670525964,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 21256190040,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 53671263,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70707045777,
+        "rshares": 60751567,
+        "voter": "knight-angel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 1559005538,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 556846303,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 54165586,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 55496395,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1142069399,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 53988734,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1621202028,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2067141122,
+        "voter": "anthemhayek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1650432966,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 61333816,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5283965710,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2913886830,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11985197441,
+        "rshares": 55689355,
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 62241065,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51575887,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 619923193031,
+        "rshares": 713530224,
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51521876,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51519509,
+        "voter": "cwb"
+      },
+      {
+        "percent": "2400",
+        "reputation": 176228976143,
+        "rshares": 2252558578,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 860725329,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 53640231,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726647930107,
+        "rshares": 1916243336,
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 1837291500,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1610781077,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189363957513,
+        "rshares": 67787437,
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5484672856,
+        "rshares": 53681027,
+        "voter": "marielynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 828920570,
+        "rshares": 51836282,
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 168642880,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768451347973,
+        "rshares": 334387624,
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4971287291,
+        "rshares": 51620406,
+        "voter": "libertyadvocate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 5464555777,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 52785710,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 71766021,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124036083402,
+        "rshares": 925010766,
+        "voter": "clayboyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 309151090,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5077242728,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99160090205,
+        "rshares": 162753887,
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 142333424,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 520948047119,
+        "rshares": 50134176,
+        "voter": "cathi-xx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51666968,
+        "voter": "masscreation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51636819,
+        "voter": "mbizryu0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51631638,
+        "voter": "archij"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51530815,
+        "voter": "movie7283"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51527606,
+        "voter": "ppcompp2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51520427,
+        "voter": "jj1968"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51516489,
+        "voter": "cineger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51497383,
+        "voter": "sksduddk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51490214,
+        "voter": "jjc0719"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50459335,
+        "voter": "catkill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 50919598,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22237001004,
+        "rshares": 24817078026,
+        "voter": "blacktier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 981471944,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677982,
+        "voter": "sjytoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50676799,
+        "voter": "shy2675"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50675747,
+        "voter": "suance1009"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50674176,
+        "voter": "hasqmd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673722,
+        "voter": "fischer67"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50672116,
+        "voter": "elya1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50632828,
+        "voter": "xclamp45"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50618471,
+        "voter": "likeagame1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50616898,
+        "voter": "apple4006"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50615195,
+        "voter": "bigbell61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50612850,
+        "voter": "dolpo777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50611931,
+        "voter": "dongperi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50610620,
+        "voter": "lion2byung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1289521305818,
+        "rshares": 1558099030,
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 229571742,
+        "voter": "letstalkliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1633142169,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3727858482,
+        "rshares": 62648121,
+        "voter": "wearechange-co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17924136040,
+        "rshares": 448144955,
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 756228937,
+        "rshares": 72792245,
+        "voter": "motsna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74402358,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97075862,
+        "rshares": 64671889,
+        "voter": "destroyer3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12945831370,
+        "rshares": 75968948,
+        "voter": "rymlen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25894678210,
+        "rshares": 80805411,
+        "voter": "killbis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303263257,
+        "rshares": 80746075,
+        "voter": "workwithpleasure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 72607029,
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3244505642,
+        "rshares": 161180766,
+        "voter": "geesees"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25582088193,
+        "rshares": 164381523,
+        "voter": "michael.collett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 123511486,
+        "rshares": 164149284,
+        "voter": "simch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160829185,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2548047,
+        "rshares": 153429292,
+        "voter": "steemichael"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50326964582800,
+    "beneficiaries": [],
+    "body": "[![Screen Shot 2016-09-02 at 7.04.40 AM.png](https://s11.postimg.org/raj560j77/Screen_Shot_2016_09_02_at_7_04_40_AM.png)](https://postimg.org/image/5bcqit2cv/)\n\nBefore I was Bitcoin Charlie, I was known as Charlie Checkout for my funny product video reviews almost 10 years ago. \n\nMy first start-up I worked for a company Daily Checkout, a website that offered one stellar deal each day to online shoppers. One of the unique aspect of the simple, straight-to-the-point site were the humorous videos which featured the daily deals. Daily Checkout transferred ownership in 2009 as I shifted my efforts to the initial development stage of Bitcoin.\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/cOIQAOEktQQ\" frameborder=\"0\" allowfullscreen></iframe>\n\nI've made dozens of product videos https://www.youtube.com/user/DailyCheckout/\n\n[![Screen Shot 2016-09-02 at 7.07.27 AM.png](https://s12.postimg.org/n9j0ft03h/Screen_Shot_2016_09_02_at_7_07_27_AM.png)](https://postimg.org/image/7baapo5vd/)\n\n*Simply put, we sell one product every day. If the product runs out, it is over. We have awesome products that we sell at unbelievably low prices and by buying from DailyCheckout you are contributing to the economy. How? Our extremely low prices and fast paced buying and selling goes into a well thought out and really complicated algorithm that was created by our overpaid \u201cBusiness Development\u201d department. (Notice the quotes)*\n\n*Some say we are a government agency, and other\u2019s say we\u2019re part of an International conspiracy to take over the world. To be totally honest; we do have a hidden agenda. Our goal is to single-handedly bring the world out of its current financial crisis.*\n\nWhen I realized that I couldn't single-handedly bring the world out of its current financial crisis, I moved full time into Bitcoin. \n\n**Steem Commercial**\n\nI had a dream last night of reprising my old role as Charlie Checkout and doing a Steem commercial. \n\nWhat would you like to see me do for a Steem commercial? I will take the most voted idea and make a commercial out of it (keeping it appropriate and legal)\n\nPost your ideas now and vote for your favorite one!\n\n-Charlie \n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/ITfML3Twv2Y\" frameborder=\"0\" allowfullscreen></iframe>\n\n<iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/xr4dPOnDEqg\" frameborder=\"0\" allowfullscreen></iframe>",
+    "body_length": 2425,
+    "cashout_time": "2016-09-09T13:20:24",
+    "category": "steem",
+    "children": 69,
+    "created": "2016-09-02T13:20:24",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"life\",\"bitcoin\"],\"image\":[\"https://s11.postimg.org/raj560j77/Screen_Shot_2016_09_02_at_7_04_40_AM.png\",\"https://s12.postimg.org/n9j0ft03h/Screen_Shot_2016_09_02_at_7_07_27_AM.png\"],\"links\":[\"https://postimg.org/image/5bcqit2cv/\",\"https://www.youtube.com/user/DailyCheckout/\",\"https://postimg.org/image/7baapo5vd/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T13:20:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 214139900029535,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "4874.834 HBD",
+    "percent_hbd": 10000,
+    "permlink": "charlie-shrem-returns-for-a-steem-commercial-vote-for-your-favorite-idea",
+    "post_id": 1098208,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Charlie Shrem Returns for a Steem Commercial -  Vote for Your Favorite Idea !",
+    "title": "Charlie Shrem Returns for a Steem Commercial -  Vote for Your Favorite Idea !",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@charlieshrem/charlie-shrem-returns-for-a-steem-commercial-vote-for-your-favorite-idea"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "4600",
+        "reputation": 145171381514207,
+        "rshares": 13245812417181,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7390566552456,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 28892754287146,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14824197157366,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13270505121655,
+        "rshares": 64424651746216,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 134718307450,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6362090085040,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1239558617638,
+        "rshares": 85520853480,
+        "voter": "adol"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223387419724,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5963716424717,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6587340634773,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "3000",
+        "reputation": 16685610555705,
+        "rshares": 6183464077147,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 869810440256,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9800209121307,
+        "rshares": 1985379332633,
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3088650441,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3748743208,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 702622357,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3511152554886,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5957774630568,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 490985506987,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52542437960,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1655635722,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213398887,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 123537080592,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4775972612644,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 55155858860,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11699673433,
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2592609003800,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5035362971061,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1207153314956,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 289693067053,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 166034177355,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1020660145840,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 261994113043,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621215364,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 881508092950,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 912471460,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "1100",
+        "reputation": 96486114508046,
+        "rshares": 321737871402,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 390512580501,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 24025246285,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 831718988661,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 129010140010,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 44105554061,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 39278159313,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 339175353184,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 24180738930,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 24104428335,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287715767,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21527783969006,
+        "rshares": 136700693544,
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19050337975,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8369502790,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 11062374885,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 410854861624,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 74976705017,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15184822392,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 5762120310,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146244962769,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 24171503887,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14317866801,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87363750745142,
+        "rshares": 463588860181,
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 111109084951,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8122377747,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83062626465,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 473678777,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45576499097,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 5045406568403,
+        "rshares": -26021570751,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 1963811956,
+        "voter": "gekko"
+      },
+      {
+        "percent": "7000",
+        "reputation": 122177444407384,
+        "rshares": 1153105552557,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1082832389,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3562906824,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2113707447,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6703300627334,
+        "rshares": 21495939803,
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 15430961308,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 75310894240,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5391636200,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107613513332,
+        "rshares": 463524444,
+        "voter": "nasato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 60186109387,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 30023316560,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 2058837684,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 58906141859,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1799275363,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 18819999680,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46690451470,
+        "rshares": 934691204,
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177797115025,
+        "rshares": 1140676343,
+        "voter": "martinallien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1095245594450,
+        "rshares": 48796012012,
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 46595641250,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 336027378996,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 928786221,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 20722930748,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 431210602205,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 463562817,
+        "rshares": 629348835,
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 300547523,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 95569843329,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 198120963204,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238101508714,
+        "rshares": 9161055964,
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 28067186471,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 184774658458,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 359537633,
+        "voter": "mrphilipp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10369476831,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 350187172,
+        "voter": "arjoona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1667394140,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2340825657228,
+        "rshares": 13867470489,
+        "voter": "blindleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 244856009274,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 354030328911,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55087896075,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525238421,
+        "rshares": 74931439122,
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 32259911478,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1174043938,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 4005086376,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 91410126736,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2988407596343,
+        "rshares": 28212521635,
+        "voter": "everythink"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 47351358412,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4142890713,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13115815323,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398461524,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 81990673959,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129304328100,
+        "rshares": 326823285,
+        "voter": "jyap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 711825422,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1733934646,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 4038577108,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7647810585727,
+        "rshares": 30122122606,
+        "voter": "joelkatz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1430012422,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 38683597495,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 115363335857,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5404816087,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 194943528105,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1630545554,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 47386070028,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 221344142780,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 16832536493,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 30539639939,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587584054096,
+        "rshares": 13950076541,
+        "voter": "omarbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 16886152759,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6565769327,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 10086743544,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 759728295534,
+        "rshares": 6599679447,
+        "voter": "emhaze222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774378945062,
+        "rshares": 14223989793,
+        "voter": "jamiecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 143856790135,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10490437282665,
+        "rshares": 23200874349,
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1236097211640,
+        "rshares": 2447735540,
+        "voter": "juansgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 263549200,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4836028564,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 280938789407,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4109936834,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 6492356048,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250296280,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "3000",
+        "reputation": 213668684615,
+        "rshares": 111265427,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 133997507290,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 112700770870,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 18250295914,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 525127069,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -2499740471746,
+        "rshares": -28712012369,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 281009593849,
+        "rshares": 1749419961,
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1426692983,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 38458089845,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38421201873,
+        "rshares": 37319559413,
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10366146321,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 119197240563,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 105682671334,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3119228009,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 19478516371,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6427457006,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15298660141,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 263539417,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4162811196,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 4112821541,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 1360448159,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2978603926,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 142769283476,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6375375055,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33586252036,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4257398858,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 849409157,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 61402639016,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 756734123357,
+        "rshares": 1405959381,
+        "voter": "decrypt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 327751752919,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81669523671,
+        "rshares": 257634805,
+        "voter": "medge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9859494596,
+        "rshares": 1259117194,
+        "voter": "chrisj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116028146528,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 61143100178,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 203840552,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 73682734664,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3304150285,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9408900533,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2351802084,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7020043275,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1670036281,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128866188012,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11216247387925,
+        "rshares": 123248958030,
+        "voter": "kevinpham20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25700558035,
+        "rshares": 225841258,
+        "voter": "christianus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 26727789421,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6715836052,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 253048089,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900427911,
+        "rshares": 164300913,
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1579300771,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 12114484026,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2518982758,
+        "rshares": 225470679,
+        "voter": "valeri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 1243378929,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40018503599,
+        "rshares": 3517375433,
+        "voter": "kimmar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 156642164849,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 117448996,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 13904645861,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1457906767,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 196897399,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7161351637,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860699,
+        "rshares": 116749766,
+        "voter": "selectorsam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70989733950,
+        "rshares": 1097087466,
+        "voter": "mekongmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 8381226852,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182174607,
+        "rshares": 311209174,
+        "voter": "olinzodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 511763078,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5723094491,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 937733325,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 1339874233,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 2615125111,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 10935349548,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361552742284,
+        "rshares": 117780376,
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 2236861513,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116065815,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1803871438,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 114054397,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 360944545,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 127957702,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1013092046564,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2119819301,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 28502334260,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 115682991,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4924753888,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725570292123,
+        "rshares": 2734586852,
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 49852905345,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 7096397562,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 6435798244,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 203182376061,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96522929177,
+        "rshares": 114319957,
+        "voter": "bigb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 13741966857,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16565593460480,
+        "rshares": 40800901818,
+        "voter": "susanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32225603804,
+        "rshares": 121394030,
+        "voter": "hptjpanime13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 3634925135,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19671942897,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 17778516682,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13397774611,
+        "rshares": 226940353,
+        "voter": "anarchotrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 638748685,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23895195044,
+        "rshares": 226766254,
+        "voter": "bitmap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2675034626,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230437999,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73320231439,
+        "rshares": 118173449,
+        "voter": "cronk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57721605,
+        "rshares": 198276556,
+        "voter": "steemroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85836030324,
+        "rshares": 19639269533,
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7424712,
+        "rshares": 113273216,
+        "voter": "reality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 59001531699,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 67351351168,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864848673155,
+        "rshares": 35522649486,
+        "voter": "cryptomarket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1138150358,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15461414574,
+        "rshares": 113271457,
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212959420968,
+        "rshares": 10030763687,
+        "voter": "michiel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 1680483236,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636630493304,
+        "rshares": 1052360420,
+        "voter": "jumpman"
+      },
+      {
+        "percent": "3000",
+        "reputation": -4779249072914,
+        "rshares": 109235699,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 4766176912,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 790579875,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 110203683,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 8710090850955,
+        "rshares": -28016345645,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 15286822550,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2824041414,
+        "rshares": 65769043,
+        "voter": "sailor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 9418639254,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8301740838,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 7607959435,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101291134882,
+        "rshares": 104448843,
+        "voter": "andrealeamcbride"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4969591605,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2118391058,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 261654970918,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 102302733,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 28234870957,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7342551506,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64498745229,
+        "rshares": 68217529,
+        "voter": "dvaryani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 890051070,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63435975,
+        "voter": "delph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39744649494,
+        "rshares": 4509216404,
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 2000120125,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 67554046,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 298397221413,
+        "rshares": 136051451,
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 4922084218,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 81624389,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 135512598,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41231458058,
+        "rshares": 63750303,
+        "voter": "biggdogg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1797321957,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 247825627,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 68992407,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 602549201,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 231234269,
+        "rshares": 61893377,
+        "voter": "strikeback"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12643760472,
+        "rshares": 217483476,
+        "voter": "builder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 17383849163,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19559423824,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 342724480,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1963988322727,
+        "rshares": 2939474977,
+        "voter": "pseudonymwriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4237797,
+        "rshares": 61178779,
+        "voter": "mithridates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51670338162,
+        "rshares": 64990311,
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 647464973800,
+        "rshares": 704152660,
+        "voter": "imarealboy777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 738451744,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 472834678103,
+        "rshares": -206547387,
+        "voter": "orca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286385675205,
+        "rshares": 69328915,
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3537992772642,
+        "rshares": 38827607895,
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 59127162,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13584977360,
+        "rshares": 62273194,
+        "voter": "r2d2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 463760441907,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816126,
+        "rshares": 59723329,
+        "voter": "blubeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17071371161,
+        "rshares": 221186740,
+        "voter": "mefisto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 32109165187,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840329,
+        "rshares": 59562786,
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2639184035,
+        "rshares": 59800388,
+        "voter": "sirloins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1136632065,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 787460939,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26878598,
+        "rshares": 82017595,
+        "voter": "steemitgal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18320721614,
+        "rshares": 59255025,
+        "voter": "kulsumabdullah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 251290099,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 242393394,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1150763021,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50271542021,
+        "rshares": 59536506,
+        "voter": "vegeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1502583468,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 1253519725,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 127893255,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21156422,
+        "rshares": 58132384,
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1081293784,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 54381971,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57842929,
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67587666,
+        "rshares": 58997531,
+        "voter": "canambullion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 20093740787,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 310534407,
+        "voter": "pokerdude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 74823513,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7880148903461,
+        "rshares": 10243737834,
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 23524427223,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58525745813,
+        "rshares": 57855498,
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 4135119039,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3342551943665,
+        "rshares": 296332034,
+        "voter": "erikaharris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2170430303,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 58984750,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 96506420435,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 517873836,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 78588676,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 13803882565,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17390154,
+        "rshares": 57549944,
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57475981,
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740952354750,
+        "rshares": 77877181,
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 68338923,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4533929087960,
+        "rshares": 5632275230,
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2405909145226,
+        "rshares": 6256216718,
+        "voter": "xbananax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 623839624378,
+        "rshares": 156468479,
+        "voter": "steemlinks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34004319054,
+        "rshares": 66190421,
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3411235440678,
+        "rshares": 325158374,
+        "voter": "caleballen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34950388697,
+        "rshares": 585008313,
+        "voter": "kazumba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4346098256,
+        "rshares": 2529585368,
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1565744970,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1794545095,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 60346826,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58213920,
+        "voter": "kapateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5076201786,
+        "rshares": 57060344,
+        "voter": "andyg89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 13408059565,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13172247110,
+        "rshares": 60075109,
+        "voter": "allbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1456922840,
+        "rshares": 57208842,
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 60344715,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30862157954,
+        "rshares": 58035992,
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1442187004,
+        "rshares": 58068998,
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 55611531,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 59482963,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 51522400,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57851525,
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 33768003037,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 39486911092,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5189976,
+        "rshares": 56633088,
+        "voter": "djpeezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": -133934474688,
+        "rshares": 58956403,
+        "voter": "rahnawnjudah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28325219903,
+        "rshares": 61325043,
+        "voter": "vee.kay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 8298370142,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23832539793,
+        "rshares": 57959938,
+        "voter": "cwalton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 3480365681,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 970961663,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628485,
+        "rshares": 55321718,
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60022998820,
+        "rshares": 77168451,
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 2460972898,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 8302094936,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 46768142805,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 1839378622,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142660645937,
+        "rshares": 127800516,
+        "voter": "alternativefn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 50342261,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 2370268707,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 514988082,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9357899502,
+        "rshares": 54875000,
+        "voter": "virgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794973811289,
+        "rshares": 950335988,
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80500300321,
+        "rshares": 56803250,
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 358294182,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25644393,
+        "rshares": 56781082,
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3970810,
+        "rshares": 55678770,
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 56773591,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55649576,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53392204,
+        "voter": "etheom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1803333869,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1021722510,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 677688371,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80747623295,
+        "rshares": 25080432851,
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 57894807,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 55324823,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 966857371343,
+        "rshares": 55226664,
+        "voter": "houseofhayden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 55397045,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 53998668,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737630,
+        "rshares": 55053663,
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 51745040,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55025746,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136191934687,
+        "rshares": 59365558,
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 2519041495,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224957724402,
+        "rshares": 56484499,
+        "voter": "mikebartolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 673915909724,
+        "rshares": 1876512545,
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 175664610,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5202217,
+        "rshares": 55863107,
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22152614116,
+        "rshares": 61688723,
+        "voter": "traceystark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 1783186174,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57977501,
+        "rshares": 677884523,
+        "voter": "gerasim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 54052181,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 54729631,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590400514,
+        "rshares": 55673492,
+        "voter": "baul"
+      },
+      {
+        "percent": "10000",
+        "reputation": -242007231380,
+        "rshares": 61668627,
+        "voter": "avemend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 58699037,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 973435439155,
+        "rshares": 69800956,
+        "voter": "cemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 71738102,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54182817,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940211959,
+        "rshares": 450647092,
+        "voter": "martinh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 1089759239,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52895316,
+        "voter": "michivollgas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289857340733,
+        "rshares": 76886011,
+        "voter": "gabosh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 321473400567,
+        "rshares": -55252777,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12368054643,
+        "rshares": 54217891,
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2308216689,
+        "rshares": 55049232,
+        "voter": "fee.org"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 53724029,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 51301791,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 67051047,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54647301,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 55107256764,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53555002,
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 54588885,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 52359971,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 935727204,
+        "rshares": 54254783,
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39668460,
+        "rshares": 53188832,
+        "voter": "angryredbarber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 56165241,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -511912631,
+        "rshares": 53115996,
+        "voter": "pingu"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 53103516,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 53092299,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5156839136,
+        "rshares": 52325653,
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286036406,
+        "rshares": 54050846,
+        "voter": "ariziz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1364429187373,
+        "rshares": 50855387,
+        "voter": "ecoosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1455592982586,
+        "rshares": 52964660,
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 235434198,
+        "rshares": 52948298,
+        "voter": "alwayzgamez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 690842371,
+        "rshares": 733457095,
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52917480,
+        "voter": "amiami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74558454,
+        "rshares": 51817146,
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 50755661,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3278436068,
+        "rshares": 53910197,
+        "voter": "aprilbannister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53903943,
+        "voter": "kakesinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 180341293,
+        "rshares": 53894203,
+        "voter": "devilinlimbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80920831153,
+        "rshares": 54567804,
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52814743,
+        "voter": "konkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5612465,
+        "rshares": 53863855,
+        "voter": "thisicontroler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53863521,
+        "voter": "petitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697120038,
+        "rshares": 51744927,
+        "voter": "shotgunzzz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 196558428,
+        "rshares": -53815232,
+        "voter": "cuantu22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52750104,
+        "voter": "unknown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4878508275,
+        "rshares": 52726417,
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52653307,
+        "voter": "cucumber1234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52627823,
+        "voter": "saayeel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178300437,
+        "rshares": 51562143,
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 838488,
+        "rshares": 53663275,
+        "voter": "sidvgrover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11309508,
+        "rshares": 52573075,
+        "voter": "thecryptonews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2793047656,
+        "rshares": 52545515,
+        "voter": "friendster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52190580,
+        "voter": "exlaxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16946038702,
+        "rshares": 53160337,
+        "voter": "kstolorz"
+      }
+    ],
+    "author": "tracemayer",
+    "author_reputation": 19674745811334,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hey Steemitsters!</p>\n<p>I am <a href=\"https://www.tracemayer.net/\">Trace Mayer</a> an early Bitcoin pioneer, evangelist and investor in core blockchain infrastructure including the largest merchant processor <a href=\"https://www.bitpay.com\">Bitpay</a> and largest <em>safe</em> [never been hacked] exchange <a href=\"https://www.kraken.com\">Kraken</a>. I also host the extremely popular <a href=\"http://www.bitcoin.kn\">Bitcoin Knowledge Podcast</a>.</p>\n<p><img src=\"https://www.tracemayer.net/images/trace-mayer-30.jpg\" width=\"266\" height=\"400\"/></p>\n<p>Lately I have been hearing a lot of amazing things about Steemit from popular Steemsters I listen to including <a href=\"https://steemit.com/@dollarvigilante\">Jeff Berwick</a>, <a href=\"https://steemit.com/@charleshosk/\">Charles Hoskinson</a>, <a href=\"https://steemit.com/@decrypt/\">Domi</a> and <a href=\"https://steemit.com/@charlieshrem/\">Charlie Shrem</a>. So, here I am checking it out :)</p>\n<p>Feel free to post some questions and I will try to answer as best I can. If things go well then in the near future I will likely do an AMA here!</p>\n<p>Verification:&nbsp;</p>\n<blockquote>\u2014 Verification for checking out <a href=\"https://twitter.com/Steemit\"><del>@</del><strong>Steemit</strong></a> and plan on making my first <a href=\"https://twitter.com/SteemitPosts\"><del>@</del><strong>SteemitPosts</strong></a>. - TraceMayer (@Trace Mayer) <a href=\"https://twitter.com/TraceMayer/status/766335290709450752\">August 18, 2016</a></blockquote>\n</html>",
+    "body_length": 1517,
+    "cashout_time": "2016-08-25T18:15:57",
+    "category": "bitcoin",
+    "children": 125,
+    "created": "2016-08-18T18:15:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"bitcoin\",\"blockchain\",\"crypto-news\",\"introduceyourself\",\"freedom\"],\"image\":[\"https://www.tracemayer.net/images/trace-mayer-30.jpg\"],\"links\":[\"https://www.tracemayer.net/\",\"https://www.bitpay.com\",\"https://www.kraken.com\",\"http://www.bitcoin.kn\",\"https://steemit.com/@dollarvigilante\",\"https://steemit.com/@charleshosk/\",\"https://steemit.com/@decrypt/\",\"https://steemit.com/@charlieshrem/\",\"https://twitter.com/Steemit\",\"https://twitter.com/SteemitPosts\",\"https://twitter.com/TraceMayer/status/766335290709450752\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T18:50:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 197472591143903,
+    "parent_author": "",
+    "parent_permlink": "bitcoin",
+    "pending_payout_value": "4867.777 HBD",
+    "percent_hbd": 10000,
+    "permlink": "trace-mayer-is-now-on-steemit",
+    "post_id": 874958,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Trace Mayer Is Now On Steemit!",
+    "title": "Trace Mayer Is Now On Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/bitcoin/@tracemayer/trace-mayer-is-now-on-steemit"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 29064882231747,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 639571093353,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 27711875306956,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28851409050,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 30543427850426,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 13781217508407,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36384984200737,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 654432054027,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 108332970655,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 5081611684907,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3070186572903,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3084952552,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3744099613,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 708916690,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52164136700,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1653744064,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213265420,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8980249791516,
+        "rshares": 244128003800,
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4418872,
+        "rshares": 11292145282,
+        "voter": "perky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11700268451,
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 99742232,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 782251516421,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 124091386755,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1242836215439,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 8296925787,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 613500608,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1200865541362,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 883033583,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2561599766077,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 18831931707,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 830752609051,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 128437848095,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 97458276749,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2890780562959,
+        "rshares": 18061236377,
+        "voter": "jakev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 26663208957,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287496994,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 124261166996,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15484783543,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 3688518670,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 17326242333,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4743131139239,
+        "rshares": 19085963051,
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5072953140,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20314714041,
+        "rshares": 488729261,
+        "voter": "sunil-aggarwal"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8139842369,
+        "voter": "fkn"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 431018218,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 473678777,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7019430473955,
+        "rshares": 28058280552,
+        "voter": "thedarkestplum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35537325381339,
+        "rshares": 1013136807808,
+        "voter": "hipster"
+      },
+      {
+        "percent": "8500",
+        "reputation": 376960001789,
+        "rshares": 5158659329,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45574888424,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 31924120110,
+        "voter": "james-show"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 10019879215,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1729392451330,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3997942209174,
+        "rshares": 39466946644,
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 605834087675,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3124892111,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 60373476260,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 58991954964,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 227472105329,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1749252971,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 398794500883,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1450594023,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251048621093,
+        "rshares": 2938357684,
+        "voter": "scalextrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 46263500526,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 580447736426,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 285134829,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18522141920,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 212814169539,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12751248246,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 22105193108,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178937829259,
+        "rshares": 667470132,
+        "voter": "compumatrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 296704543543,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 304724398,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "7100",
+        "reputation": 107416370639951,
+        "rshares": 708231059651,
+        "voter": "rok-sivante"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 337003750,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57302509663422,
+        "rshares": 447786893634,
+        "voter": "the-alien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 258688582111,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 218701281553,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 56208177767,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65989046107177,
+        "rshares": 429805519051,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 32242309393,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 187339395265,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19853987817,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 122820742710,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1445317942,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 75514937196,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 22262463399,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7647810585727,
+        "rshares": 28854395778,
+        "voter": "joelkatz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 130135983609,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 693010749226,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7263761479745,
+        "rshares": 128009742372,
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 3713808326,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "9900",
+        "reputation": 48542961182602,
+        "rshares": 1421151178607,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5163259581,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 44232181506,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 208893515786,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 212469585665,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13821321667,
+        "rshares": 767028258,
+        "voter": "christoph3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 846666893,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 26443469191,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 688449090,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 34890863904,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 5007196589,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6821280213,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2438027091,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632946346,
+        "rshares": 28735669603,
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8295455986,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 13576940793,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 336297746,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 53429656343,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5785420753,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 39923603181,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 1881733645,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 7697765339,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544044850677,
+        "rshares": 15902021111,
+        "voter": "eindbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 2469496992,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5481866423,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 46328133357,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 1964043686,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 146457100978,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 18237694956,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 244927099,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2525651507,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25461274068,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65825957212,
+        "rshares": 1970125259,
+        "voter": "rambogoham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5785903301,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20016353426,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 131324561501,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 1976095808,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91531121710,
+        "rshares": 279214663,
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6091726229,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44761293560,
+        "rshares": 24590582170,
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 442037344,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 328251913,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 267219006,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17392286084616,
+        "rshares": 62866271531,
+        "voter": "steemingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 37746015247,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 353762811,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46057798112,
+        "rshares": 244336549,
+        "voter": "leonalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5093280360794,
+        "rshares": 17732254406,
+        "voter": "freiheit"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 15683469944,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 12878226865,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10574593346,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 499765040,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504891419058,
+        "rshares": 2812831978,
+        "voter": "yassinebentour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 1673331518,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3891722,
+        "rshares": 193809865,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 203158355,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 198679061,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978354715302,
+        "rshares": 13360466504,
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 101065147040,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6555644383,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 946026261,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 46648186234,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 963454351109,
+        "rshares": 1273195910,
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 18941063649,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4213415211,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 2647762226,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3863607637,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 6659307379,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37569637621,
+        "rshares": 250344137,
+        "voter": "zizelevak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 3740787714,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26199931018,
+        "rshares": 828629042,
+        "voter": "bmmmmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2377467033356,
+        "rshares": 10546453081,
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 567047214,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 70119056407,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 13596494808,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19068141409,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3495668750,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 6040131971,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51526103464,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 237023898,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 6096995881,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 11349192297,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 149280443703,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 391108686204,
+        "rshares": 4664291995,
+        "voter": "morpheustitania"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 10098916070,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1959657413,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 920506256332,
+        "rshares": 481686752,
+        "voter": "fireriseace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 240570298,
+        "voter": "ricardolucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8992979702,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 294189382919,
+        "rshares": 1392224450,
+        "voter": "janqoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 1827915010,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 15712399563,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 176394192757,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7291602679,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3587324924,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 258070573,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84104019612,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692822335938,
+        "rshares": 229711964,
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 6585217891,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 11631563836,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2829686620896,
+        "rshares": 3080371065,
+        "voter": "rhi-marie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549388274509,
+        "rshares": 1945768989,
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 741654237981,
+        "rshares": 4499526465,
+        "voter": "smolalit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 152443991438,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 126833824,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1783202708175,
+        "rshares": 2398477740,
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 29723964602,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1149106852,
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6731469625,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 13043934034,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 391587960,
+        "rshares": 204669482,
+        "voter": "pizarrojesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 8103208025,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 51623937057,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 4866130775,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 90841927000,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 1900676622,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 17899700256,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 55239418396,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1472163458,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7947869919,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 169327203807,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 127957702,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6146143399,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 17440200700,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 97173712,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343527967,
+        "rshares": 170931357,
+        "voter": "ceuranher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 929113870632,
+        "rshares": 125956582,
+        "voter": "valenttina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1083181004,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 272988550,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 279094364,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161846929,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159442544,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 91023776,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 190349396,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 115387959,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99040715968,
+        "rshares": 134759629,
+        "voter": "arconite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 12589604473,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28661466165,
+        "rshares": 120458057,
+        "voter": "belovruslan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5042621308,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 775740012,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4558720822431,
+        "rshares": 18445550763,
+        "voter": "jennamarbles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1156777476755,
+        "rshares": 2646831087,
+        "voter": "marriedbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 14939163684,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 619013767,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 1255524871,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225884392,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 2674015224,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 218617270,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 221372001,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 132451801,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64952857,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 147425730,
+        "rshares": 204370925,
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3720753029,
+        "rshares": 200492318,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 79629905,
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2034974638910,
+        "rshares": 186748758,
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -469690438,
+        "rshares": 418454097,
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 112027656,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11506198408,
+        "rshares": 115083433,
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 464388017,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 58993378905,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15461414574,
+        "rshares": 111050448,
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1805608597,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 1580113648,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 15436226461,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2204209643,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3123156945,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 9990352692,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 887643764,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7315634872,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511460049017,
+        "rshares": 1010597496,
+        "voter": "thedon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4306793943,
+        "rshares": 107829971,
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 8710090850955,
+        "rshares": -17812979015,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1422036640,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50220544,
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 1660218222,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 584310551887,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14686366128,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 19606865230,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 1172017603,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958503,
+        "rshares": 60066201,
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 21464225324,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 444583673358,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178440469678,
+        "rshares": 120245555,
+        "voter": "belgorogdmitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 764508844,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 1915245388,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 63300522,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6663962168,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 712710757,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3591043,
+        "rshares": 64298241,
+        "voter": "crisstaken"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 22147448301,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46067925183928,
+        "rshares": 172866684613,
+        "voter": "fairytalelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2015798675,
+        "rshares": 349060440,
+        "voter": "bitcoindon23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31830838,
+        "rshares": 64148930,
+        "voter": "johnmstk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124828196272,
+        "rshares": 602794217,
+        "voter": "havok777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7418993028,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 125365589,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 12665881479,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 144721147,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19816054657,
+        "rshares": 81626713,
+        "voter": "ipkez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12969824499,
+        "rshares": 62019780,
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62153668,
+        "voter": "aiaconelli707"
+      },
+      {
+        "percent": "10000",
+        "reputation": 971138,
+        "rshares": 62152861,
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 57105514,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11316562534,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -451593763871,
+        "rshares": 3150414461,
+        "voter": "blow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826385508354,
+        "rshares": 1087398184,
+        "voter": "dercoco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 412480673,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 646216243,
+        "rshares": 62928860,
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61537919,
+        "voter": "pizzadinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 63309136,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 606096537951,
+        "rshares": 760465830,
+        "voter": "kdugar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1963988322727,
+        "rshares": 1351292011,
+        "voter": "pseudonymwriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 63753022,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 541318089,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": -752010553427,
+        "rshares": 1905721801,
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 6484974823,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 61150408,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50545877,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510854583971,
+        "rshares": 1478894713,
+        "voter": "stylo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 225515921,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60561935,
+        "voter": "polyball"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150737544,
+        "rshares": 61716458,
+        "voter": "diissiid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 67794353,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89486319,
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 717408117,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 33984934099,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8633178908,
+        "rshares": 59560024,
+        "voter": "andrey000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25369137795,
+        "rshares": 68271538,
+        "voter": "litali"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840329,
+        "rshares": 59562786,
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 216516926,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83638535,
+        "rshares": 59379075,
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 59335193,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 283790428,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27504418847,
+        "rshares": 80517521650,
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 2880187438,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13147662,
+        "rshares": 59153616,
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 2311894727,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 587831459,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 58733486,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 505219265255,
+        "rshares": 60666250,
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1884177416,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 58651156,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 295472992623,
+        "rshares": 1127561392,
+        "voter": "iamrohitkgupta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3176421463,
+        "rshares": 56128777,
+        "voter": "kingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 61220983,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 133222141,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44679463800,
+        "rshares": 5010489786,
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 57565034,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24583928894,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24788603142,
+        "rshares": 71547670984,
+        "voter": "richhorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 750670097928,
+        "rshares": 143214553,
+        "voter": "fungusmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 901378583777,
+        "rshares": 1582436750,
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 162741674983,
+        "rshares": 58899811,
+        "voter": "frol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1054185349,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 16171953125,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 64812015,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -300111851,
+        "rshares": 391997751,
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6390161937,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 23115303525,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1688297092,
+        "rshares": 56903096,
+        "voter": "libertyminded"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9570070658,
+        "rshares": 57653071,
+        "voter": "capehost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 7844013650,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508004290970,
+        "rshares": 65200083,
+        "voter": "ukblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25773560575,
+        "rshares": 64184750,
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1802656474490,
+        "rshares": 1629213283,
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182781392,
+        "rshares": 57457783,
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1730759,
+        "rshares": 58449785,
+        "voter": "carls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53098184238,
+        "rshares": 57259372,
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8680921051,
+        "rshares": 592998202,
+        "voter": "bennytremble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6302579032,
+        "rshares": 57467016,
+        "voter": "ghcc1932"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4533929087960,
+        "rshares": 5520760171,
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 1136891781,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4346098256,
+        "rshares": 58335926,
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 645095426265,
+        "rshares": 57095540,
+        "voter": "blue1950"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 58226881,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 60448189,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 2909500506,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101814429368,
+        "rshares": 67716447,
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 282720524,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153076232,
+        "rshares": 58047865,
+        "voter": "konstantinrf"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30862157954,
+        "rshares": 56898031,
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21167134650,
+        "rshares": 61244681,
+        "voter": "genzai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118587240,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 55452158,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 1312691084,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13833251017,
+        "rshares": 57883123,
+        "voter": "theweatherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 50851541,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 16842267479,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 54789994886,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199905262704,
+        "rshares": 71550577,
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887625476110,
+        "rshares": 3235464312,
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 545808703,
+        "rshares": 4112087133,
+        "voter": "ready4freddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 56534099,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 56522898,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23768489552,
+        "rshares": 59337594,
+        "voter": "sardonyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1115296338676,
+        "rshares": 84575668,
+        "voter": "freeinthought"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 57519259,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2904648840540,
+        "rshares": 463032206,
+        "voter": "jeffreyahann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 7226983203,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 324568526,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 53425144,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 57661859,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 57173176,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250024165462,
+        "rshares": 10196070675,
+        "voter": "lsparrish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 645416481,
+        "rshares": 57410674,
+        "voter": "titanius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 57729316,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57370536,
+        "voter": "rcyan333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20892290,
+        "rshares": 56167488,
+        "voter": "fahad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1488797,
+        "rshares": 56048863,
+        "voter": "earnings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51013445,
+        "rshares": 57144489,
+        "voter": "darwilliam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66311335718,
+        "rshares": 53715939,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61867195769,
+        "rshares": 330468459,
+        "voter": "ban485"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 378486516,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80500300321,
+        "rshares": 56803250,
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 2299021825,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54536584,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47996054,
+        "rshares": 56742478,
+        "voter": "maricote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 920299632,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 54233944,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 550680214413,
+        "rshares": 154457113,
+        "voter": "kevbonneau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26897821824,
+        "rshares": 65212139,
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 847154,
+        "rshares": 56430883,
+        "voter": "klexaelm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14234029697181,
+        "rshares": 3944891024,
+        "voter": "gardenofeden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56377622,
+        "voter": "sweetango"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56367137,
+        "voter": "shakimclark7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 416932669,
+        "voter": "guille"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 394487282,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1576645269,
+        "rshares": 56288884,
+        "voter": "phusionphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174215430182,
+        "rshares": 56278174,
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56208181,
+        "voter": "omars3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442182311998,
+        "rshares": 72504157,
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 859164,
+        "rshares": 56086281,
+        "voter": "d-cheney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51223240,
+        "rshares": 405351503,
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42790439089,
+        "rshares": 50527998,
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9435110250,
+        "rshares": 57574352,
+        "voter": "hamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34351625465,
+        "rshares": 56630156,
+        "voter": "soddenguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55784086,
+        "voter": "eef87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55752594,
+        "voter": "alucard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 54052181,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4665549142,
+        "rshares": 54637932,
+        "voter": "happiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 26894133903,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52400985,
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 54068218,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54530618,
+        "voter": "r40k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267108721,
+        "rshares": 746597532,
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 52274330,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 502056727,
+        "rshares": 52261498,
+        "voter": "edelmiro1986"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2504507,
+        "rshares": 54436616,
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10944903,
+        "rshares": 55502297,
+        "voter": "parkerlutz392"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5772929020,
+        "rshares": 52747828,
+        "voter": "pennystockhelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55429378,
+        "voter": "vforvoluntary96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 54321048,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865011,
+        "rshares": 52745834,
+        "voter": "reza9090"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27133350672,
+        "rshares": 54229338,
+        "voter": "jvdb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54227540,
+        "voter": "opnmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58659918189,
+        "rshares": 94868887,
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52969809,
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54032862,
+        "voter": "mrstraume92"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1824527596237,
+        "rshares": 51831291,
+        "voter": "forcestaff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53980381,
+        "voter": "pj-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 52893647,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3417725,
+        "rshares": 52881992,
+        "voter": "alrangers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55020337,
+        "voter": "cyrils"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 52861139,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 75687607,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53918464,
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13280393001,
+        "rshares": 54985536,
+        "voter": "lchow14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58159373432,
+        "rshares": 51745971,
+        "voter": "gardengirlcanada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52793067,
+        "voter": "jensk92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54924994,
+        "voter": "manfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2797191,
+        "rshares": 52768850,
+        "voter": "reza9898"
+      },
+      {
+        "percent": "10000",
+        "reputation": 841198,
+        "rshares": 53836674,
+        "voter": "missagandonian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54911738,
+        "voter": "theboxpeople"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54902820,
+        "voter": "toopoorforsf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53822887,
+        "voter": "warock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288672343,
+        "rshares": 54874387,
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54871854,
+        "voter": "agentgreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54863194,
+        "voter": "seedvault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 815192,
+        "rshares": 53781446,
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 52683284,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54813026,
+        "voter": "i-soft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20477968943,
+        "rshares": 52657102,
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 323012228,
+        "rshares": 54793437,
+        "voter": "bahalouati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53692995,
+        "voter": "goodinohio"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 53689387,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53679390,
+        "voter": "hg8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53663307,
+        "voter": "mikebroemmel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53633596,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622370,
+        "voter": "waverider"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19167887439,
+        "rshares": 52549068,
+        "voter": "tazouka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53578525,
+        "voter": "iplumb3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52493832,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54626102,
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 50319970,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56635602,
+        "rshares": 53528244,
+        "voter": "steemhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -304515584476,
+        "rshares": 52447972,
+        "voter": "olivianakano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5323658,
+        "rshares": 54574092,
+        "voter": "rafej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365231080,
+        "rshares": 53203649,
+        "voter": "dshizzle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11222113294,
+        "rshares": 51383850,
+        "voter": "lightobserver"
+      }
+    ],
+    "author": "kevinwong",
+    "author_reputation": 60877390332151,
+    "beneficiaries": [],
+    "body": "<center>[![liberty-and-justice-gets-maced9c633.md.jpg](https://www.steemimg.com/images/2016/08/14/liberty-and-justice-gets-maced9c633.md.jpg)](https://www.steemimg.com/image/ci6ga)</center>\n# Criminal justice systems are a worldwide phenomenon\nThe same goes for central banks, governments, and the fiatcurrencies that we use today. Surely there's nothing wrong with something so universal? Catch the bad  guys and punish them accordingly. Is it that simple?\n\n-------------------\n\n# Why did I spend 20 hours writing this?\nCriminalization is an inefficient tool in keeping society safe and sound. If you have experienced the state knocking down your door and giving you hell for no good reason, you'd understand that criminalization is a disruptive process. It destroys lives. Look no further than mass incarcerations in the United States.\n\nMake no mistake that mankind has always been rolling with the punches. Every social structure, like a technological device, starts off crude before becoming sophisticated. Currency have recently updated itself through blockchain technology. So what about criminalization? Sure, we've kept some psychopaths at bay, while causing countless amounts of collateral damage in the lives of innocent, sovereign beings. Is there a better way of doing things?\n\nThere are ways to render criminalization obsolete. But first, let's inspect its fundamental problems.\n\n<center>![jerrberwick47dc2.png](https://www.steemimg.com/images/2016/08/13/jerrberwick47dc2.png)</center>\n<center>I like @dollarvigilante's take on this matter</center>\n\n------------------\n\n# Why criminalization sucks?\n\n<center>[![kf7icqqn9sbxzoihfzsu46124.md.jpg](https://www.steemimg.com/images/2016/08/15/kf7icqqn9sbxzoihfzsu46124.md.jpg)](https://www.steemimg.com/image/lMkX1)</center>\n\n## Socioeconomic leverage determines most outcomes -\nPeople in position of wealth and power have better immunity against criminalization. If I'm a highly networked rich and powerful individual, common sense is telling me that I'm not going to jail. I'll just pay off some fines as punishment. Some people are above the law, period. And not everyone has access to proper legal representation.\n\nAlso, those not in position of wealth and power do not have the necessary resources to fight yearlong court cases. Criminalization is disproportionately disruptive for 99% of the population.\n\n## Lawbooks are so complicated - \nAm I going to tell my child that she needs to fully understand the thousands of pages of convoluted fiction in order to avoid scuffles with the law? Social contracts are necessarily built upon mutual consent. But we know that laws are always revised without our expressed consent. Becoming a criminal is not just as simple as the act of theft and violence. You can easily become one out of petty rules of law.\n\n## Criminals are branded differently across all pockets of society -\nThis increases the complexity of criminalization. As an extreme example, there's nothing wrong being a headhunter in a headhunting tribe. It is perfectly fine within the community. But the headhunter will soon discover that he's a criminal once he steps into the broader world. You'll never really know what's unacceptable in another region. \n\n## Criminalization can be used for political powerplay -\nCriminal cases can be pushed forward to indict political opponents. Power players wishing to rise up the ranks of government could overzealously search and close criminal cases. It happens, usually at the expense of underrepresented minorities.\n\n## Criminalization is incompatible with compassion -\nCompassion is something that grows day by day as you're exposed to more personal stories from people all around the world. Criminalization is a shortcut to cull members of  society that do not fit into the system. Compassion is all about healing. It is hardwork channelled through the love and care for others. Practising criminalization alongside compassion contributes to the overall unhappiness of our society.\n\n## Falsity of complete free will and accountability -\nAll man made laws assume that every moral agents are completely accountable over their thoughts and actions. While I certainly believe in personal responsibility, there are plenty of issues with free will. There will be an erosion in criminalization once free will is properly understood. I will address in the next section.\n\n----------------------------------\n\n# Limitations of free will and accountability\n\n<center>[![Pyramids1f33286.md.jpg](https://www.steemimg.com/images/2016/08/15/Pyramids1f33286.md.jpg)](https://www.steemimg.com/image/lhorK)</center>\n\nYou have free will, no matter what others may tell you. However, you can only be as free as your environment and mental life. Take for example, slavery used to be acceptable in the United States. Are supporters of slavery exercising their own free will to support the idea of slavery, regardless whether if its right or wrong? If its so commonplace in a culture, it may never occur to someone that it's wrong.\n\n## Life is a lottery -\n\nI could have been you, and you could have been me. Whatever it is, all of us are thrown into this existence without our consent. There wasn't any console for us to input our preference for our birth condition. It's just an impossibility due to the nature of our existence. \n\nSure it can be argued that everyone has personal responsibility over their own thoughts and actions. But consider this:-\n\nSlavery used to be acceptable in the United States. Those in the privileged class were born into such human conditions. It would seem normal to do so, like how a tribe of headhunters would inadvertently create more headhunters. Sure, you have the free will. But you can only be as free as your environment.\n\nWe may have the power of imagination, but like it or not, our environments play a great deal in shaping us.\n\nCount in the fact that most underrepresented people do not have socioeconomic mobility.\n\n<center>[![eye-nebulae044d9.md.jpg](https://www.steemimg.com/images/2016/08/15/eye-nebulae044d9.md.jpg)](https://www.steemimg.com/image/lhe06)</center>\n\n## Our thoughts are cloudy, nebulous -\n\nI'm pretty sure you're enlightened enough to know about the volatility of the human perception. We would always empathise with our friends when we begin to see their side of the story. Truth is, we can pretty much frame any situations in wildly different perceptions. \n\nAll actions originate as thoughts, or as impulses from our subconscious. Complete free will necessarily requires the mind to have a complete picture over one's situation.\n\nHere's a fun thought experiment: Think of 10 prime numbers. Notice as your thoughts come into existence - a cloud of numbers.. did you really choose 100% of the contents in that cloud? If I ask what's your top 3 favourite movies today, I think you would agree that your answer will be different if I asked you tomorrow instead. At times, we forget some of our options. Our minds are fuzzy.\n\nAnd what about snap decisions without sufficient time to understand the complete picture? Such disruptive situations deteriorate the quality of free will.\n\nHowever, it is something that can be trained. Thinking is a skill by itself - just like how you could master specific types of thinking in 10,000 hours. Let's say if you were born in Nazi Germany, you'd most likely become a supporter of the Nazi Regime, especially if you're not exposed to the broader world.\n\nYou can only be as \"good\" as your immediate environment. Thanks to the Internet, immediate environments are shared these days. Good becomes greater good. \n\nWe always make our decisions based on the shifting tides of our inner narratives.\n\n-------------------------------\n\n***Putting our ego aside, it's best to understand there's a chance that we are not fully accountable all the time. I'm not expressing this to absolve people from their misdoings. I'm expressing this in hopes of telling you that things may be not be what it seems. Sure, everyone is responsible for their actions. I just hope no one receives the blunt end of being branded a criminal, especially when criminal justice systems are not very just for the common man.***\n\n-------------------------------\n\n# What about murderers, thieves, and psychopaths?\n\nWe are getting more civilized everyday. Simply because we are exposed to different ideas, meeting all sorts of people. Technology helps here. Think about roads, autos, airplanes, and the Internet. Most of us are not in living in secluded tribes. Not anymore. Without a clash of cultures, we are just bound to our immediate environments, operating and valuing things that our environment can only promote. Free-will or not, you are only as free as the system and the information you are exposed to.\n\nWhile admittedly the real criminals are often those with the establishments (order givers and order followers), do we want to continue with the idea of criminalization alongside our collectively discovered sense of compassion?\n\nAll wrong-doings can be boiled down to one word - \"theft\".\n\nSo what do we do about theft?\n\n<center>https://s3.postimg.org/yt0vti5vn/Mark_Passio_Force_Violence.jpg</center>\n<center>Source: Mark Passio</center>\n\n## There's a difference between violence and self-defence (force)\n\nThere seems to be a growing misunderstanding that compassion should necessarily be a path of complete pacifism. It should be understood that anyone is right to apply sufficient force against the violator (the initiator of violence). Self-defence is not violence, but an act of self-preservation.\n\nSo in regards of murderers, thieves, and psychopaths - it is not a moral problem for society to apply force against violence. As long as central governments exist, the practice of criminalization is necessarily made for those that sync up well with the establishment. Not the people. Which is why it needs to end.\n\n--------------------------------------\n\n# Be the change that you want to see in the world. \n\n<center>https://s3.postimg.org/5tllh7boz/our_graphics_made_by_Wa_Post.jpg</center>\n\nHomelessness is now considered a crime. It's time to realize that criminal justice systems are not really made for the people. Disputes could be solved with compassion. Rather than killing people off and throwing them in jails, it's time to treat people like they're in need of healing (instead of punishment).\n\nIf you subscribe to the notion that we're all somewhat connected, remember that I could have been  you, and you could have been me. Shit happens all the time. Maybe the system continues to perpetuate criminal activities as long as there is support for such an idea. Clearly, it isn't working on the right kinds of people.\n\nWith the advent of decentralization technologies, will the idea of criminalization be surpassed? We need to find a better way of doing things.\n\n# Choose to be compassionate.\n\nWhat are your thoughts about this?\n\n-------------------------------------------\n<center>Follow me @kevinwong</center>\n------------------------------------------",
+    "body_length": 11028,
+    "cashout_time": "2016-08-22T18:43:12",
+    "category": "philosophy",
+    "children": 88,
+    "created": "2016-08-15T18:43:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"philosophy\",\"society\",\"decriminalization\",\"life\",\"writing\"],\"users\":[\"dollarvigilante\",\"kevinwong\"],\"image\":[\"https://www.steemimg.com/images/2016/08/14/liberty-and-justice-gets-maced9c633.md.jpg\",\"https://www.steemimg.com/images/2016/08/13/jerrberwick47dc2.png\",\"https://www.steemimg.com/images/2016/08/15/kf7icqqn9sbxzoihfzsu46124.md.jpg\",\"https://www.steemimg.com/images/2016/08/15/Pyramids1f33286.md.jpg\",\"https://www.steemimg.com/images/2016/08/15/eye-nebulae044d9.md.jpg\",\"https://s3.postimg.org/yt0vti5vn/Mark_Passio_Force_Violence.jpg\",\"https://s3.postimg.org/5tllh7boz/our_graphics_made_by_Wa_Post.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T13:26:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 169874441341734,
+    "parent_author": "",
+    "parent_permlink": "philosophy",
+    "pending_payout_value": "4431.097 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-end-of-criminalization-on-free-will-accountability-and-compassion",
+    "post_id": 821296,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The End of Criminalization: On Free Will, Accountability, and Compassion",
+    "title": "The End of Criminalization: On Free Will, Accountability, and Compassion",
+    "total_payout_value": "0.000 HBD",
+    "url": "/philosophy/@kevinwong/the-end-of-criminalization-on-free-will-accountability-and-compassion"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3800",
+        "reputation": 145171381514207,
+        "rshares": 11520761837319,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 47011498078,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7242871981722,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 28424925797342,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28856322748,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14832283388751,
+        "voter": "summon"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1133069631465,
+        "rshares": 16079976132789,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36392299434543,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6553128884332,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "2000",
+        "reputation": 25104157850610,
+        "rshares": 446861570906,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2290557669819,
+        "voter": "hr1"
+      },
+      {
+        "percent": "6700",
+        "reputation": 16685610555705,
+        "rshares": 14017654885657,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 107322127014,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3709064161,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4501927012,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 843649813,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 4525595375071,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 63315990695,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1988147812,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256183845,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 109885440800,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 53880737032,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35385015759603,
+        "rshares": 197968918385,
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 382025603320,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 331096473791,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2596407463805,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 4960335113039,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1320248215972,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 371507475836,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 279932995073,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 163067490913,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 28619045860,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 745887732,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1108299818,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2686475057828,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": -193140276839,
+        "rshares": 730255901,
+        "voter": "timifey2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 131786065328,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 58391329703,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12837390538631,
+        "rshares": 305045198376,
+        "voter": "spectral"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 45179645003,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 277903026371,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1529396926746,
+        "rshares": 6230611587,
+        "voter": "jabberw0cky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 23873172579,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345412499,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11259102275,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 846126462,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419096255614,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15489752487,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 3514308118,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146310892012,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 2823724898,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2882212761,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4743131139239,
+        "rshares": 19686496396,
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5171467941,
+        "rshares": 14146724265,
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5073340932,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7215537109,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8167139903,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 3505786797,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 23882322510,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 96895054433,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45576935659,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2178699124,
+        "voter": "gekko"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 10723381898,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1288986679,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 719251310451,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 271624298548,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 821203683,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3415019624,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2160227916,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2099729,
+        "rshares": 3081598669,
+        "voter": "term8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 60404070328,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 17254583184,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11059776879,
+        "rshares": 2352510904,
+        "voter": "luxiano-valdez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5391934264,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 93812830578,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 7313257790,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57850241507,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 236845828000,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 60737114209,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 7518510083,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 50609323784,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 2059989636,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 44024667559,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 438729743939,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1439805826,
+        "voter": "murh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 29727036375330,
+        "rshares": -269579877222,
+        "voter": "federicopistono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1808575623,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1095245594450,
+        "rshares": 48797394392,
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7416617265,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3144658279,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 313460643895,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54895777983,
+        "voter": "windsok"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 5904057835766,
+        "rshares": -47233301769,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 388635007026,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 161833281,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 63550680448,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 97784124829,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58268119352,
+        "rshares": 395727469,
+        "voter": "kekoacoaching"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 16534866092,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238101508714,
+        "rshares": 10284080069,
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 90250548483,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 184846974437,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2565836603487,
+        "rshares": 21968579570,
+        "voter": "bee-tollworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10390929094,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 390881383234,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700029514,
+        "rshares": 3333074114,
+        "voter": "ian-harris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1669034099,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 53414239238,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 361289680965,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53951439973,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65989046107177,
+        "rshares": 526975513257,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30409765924218,
+        "rshares": 323729576982,
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 6298043606,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 85933409989,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 201468883826,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13379025540,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 76491107964,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 200169679714,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23659608034,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 134960711436,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 944629081,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1493883347,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2160151824,
+        "rshares": 319691598,
+        "voter": "gary-wood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1945135717715,
+        "rshares": 41606014975,
+        "voter": "foma17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 41162837415,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 152610751574,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1960155455032,
+        "rshares": 4040859808,
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 606250028,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5520713099,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 191131284522,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1365539507410,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1800176982,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23103657571,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 47561540176,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4863450270315,
+        "rshares": 52445127497,
+        "voter": "les-peters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 15030571004,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2134655678,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 29105923553,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6218440587,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 2256606036,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 5692566183,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 3074111360,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 266758209008,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 3738359972,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 7893174516,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860741683952,
+        "rshares": 14238037087,
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 1019490436,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 2607172217,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 4090559231,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 63487550675,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774378945062,
+        "rshares": 14511219981,
+        "voter": "jamiecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8756330675,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 528908536,
+        "rshares": 260992849,
+        "voter": "bitcoins4life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 240520535,
+        "voter": "russle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 8270412572,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110873902249,
+        "rshares": 4694827407,
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4903045253,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 2470214128,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 13788771249,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 2158294606,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 26626301453,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 255641896,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 278165321,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 106085033004,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25923004556,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4906774202,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 2607211604,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117062877949,
+        "rshares": 362848957,
+        "voter": "thefundiau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2849477665,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 17887537105,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 5074579887,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 64620383869,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 2745195499,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 28715207398,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 321815601,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 300550721,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7942137484293,
+        "rshares": 26184125856,
+        "voter": "missjessica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 254936408,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1943159706,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1515897059,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 38501748200,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": -23813556107,
+        "rshares": 250285779,
+        "voter": "concave"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8869364224,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 46640429660,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9484434103,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3181753819665,
+        "rshares": 8460106767,
+        "voter": "jay4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80100577494,
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38421201873,
+        "rshares": 37383082817,
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 18211894300,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 500424236427,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10793161159,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3891722,
+        "rshares": 192317264,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 215090199,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 197197876,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 241513668,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1406350843,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1105738640052,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 114840276343,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3119315512,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20350312714,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 203834135,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6427602632,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41265214873,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15605223469,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 968763692,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4375279402,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 14354133372,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18394569767,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4025876756,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41464877163,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33588213713,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 399687388945,
+        "rshares": 239278318,
+        "voter": "fintekneeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1838257661,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19068866363,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110677545707,
+        "rshares": 306348387,
+        "voter": "lioliomir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116034049732,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 6346169305,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 2647715018,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 8901369202,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24898899016,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 61147936731,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 203840552,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77829333771,
+        "rshares": 137166250638,
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852532944,
+        "rshares": 236762268,
+        "voter": "hankrearden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 261856059794,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 74199652346,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 523349272991,
+        "rshares": 7008031511,
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3721084703,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9973968390,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2576891078,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 1404350785,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1775731377,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128873799975,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 12612029367,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 42505167589,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 21749604388,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 712858826800,
+        "rshares": 6973307123,
+        "voter": "andrewsanderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6576008542,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 26444633366,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75096571498,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3693094240,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 263376582,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84252839464,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51478739136,
+        "rshares": 36690888327,
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1681988852,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2096076988,
+        "rshares": 234732800,
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 9935434865,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 11875743476,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 19163421655,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549388274509,
+        "rshares": 2559823488,
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3269668906,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 4385329257,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 19950310527,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 167174073181,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 124941744,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 12696401394,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14474860165,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 32871594059,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 26378451558,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7304775281,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 2899137895,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 11024880285,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 51625088464,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5897413627,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 985503736,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 109051181923,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 2805643729,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34507940819,
+        "rshares": 595467367,
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 38516172361,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 11195229303,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 58864184640,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118407417,
+        "voter": "franco8i"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1971739307,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 114054397,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632564148,
+        "rshares": 5200501309,
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 286406647966,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 912159331951,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2280772111,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6578001571,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1161698563,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 237128116,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 237484329,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 137567189,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 138344869,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78913244,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 435316007,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4925542611,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 53040305238,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 5949903064,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 2328169246,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327313183062,
+        "rshares": 897338523,
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 114881292,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 194472298,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 120531704,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4249913409,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20782968,
+        "rshares": 116415503,
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20509443094,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1369365311,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 18991243462,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35500681006,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 27127436736,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614917498,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872592195,
+        "rshares": 230677258,
+        "voter": "automatedkings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2982516552,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 305045359,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 174144416,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9036412,
+        "rshares": 229962570,
+        "voter": "n4n8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 71320415,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 147425730,
+        "rshares": 206596404,
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3720753029,
+        "rshares": 199002200,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2557225302857,
+        "rshares": 955228104,
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3101230424,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3702085260958,
+        "rshares": 18579856385,
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 9280314440,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 98458844,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 1866715182,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49215329,
+        "rshares": 3489906947,
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 60185165867,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 68383503739,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 164504832,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 725940445,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15461414574,
+        "rshares": 111050448,
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218495912662,
+        "rshares": 1963447357,
+        "voter": "extricati0n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 29877333717,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 338128829,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 3091398440,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 273091001,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 739615310,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 13282864956,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1170215099621,
+        "rshares": 1442440880,
+        "voter": "shaheer001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89039117574,
+        "rshares": 16804600036,
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14990501670,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 16857580021,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4872499259,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111834001286,
+        "rshares": 1448130016,
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2165149353,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 369818210,
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1609599662,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 102348882,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "2900",
+        "reputation": 181872789178,
+        "rshares": 202969988606,
+        "voter": "thisvsthis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7825924543,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5731764483,
+        "rshares": 68449326,
+        "voter": "meins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3542663375,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1577074721663,
+        "rshares": 5786439472,
+        "voter": "lenerdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2337037146737,
+        "rshares": 7323618776,
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3189570071,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6151091755261,
+        "rshares": 36421144748,
+        "voter": "budgetbucketlist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361409840466,
+        "rshares": 145662345,
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 6589118136,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7538910886,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 39655179494,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 3983572960,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1468923383,
+        "rshares": 63700992,
+        "voter": "rataloclaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23698656,
+        "rshares": 63534357,
+        "voter": "themrserhio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12969824499,
+        "rshares": 64948851,
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1558061379,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166646264775,
+        "rshares": 1559079167,
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 277163214,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 70496832,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1784801365,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 703942679,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5100198339,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 11113708821,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5108049297663,
+        "rshares": 2142174407,
+        "voter": "milaoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -223849732,
+        "rshares": 61295330,
+        "voter": "bigmann23"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 12443341921,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2739667397,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263793010310,
+        "rshares": 154768857,
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504842566410,
+        "rshares": 1384029545,
+        "voter": "nords"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 672000989,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 12091400681,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3537992772642,
+        "rshares": 38833894124,
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 59127162,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497238582,
+        "rshares": 56572793,
+        "voter": "belohndichselbst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 8891618955,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3657922,
+        "rshares": 61323939,
+        "voter": "titan792008"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 530171041555,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1356772047,
+        "rshares": 63789776,
+        "voter": "sashimisatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2639184035,
+        "rshares": 60996396,
+        "voter": "sirloins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1137177309,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 60521896,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 127665182,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87497032,
+        "rshares": 60456894,
+        "voter": "jayseedubya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1009423454,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 121778386,
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1603120138,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36514411336,
+        "rshares": 72406042,
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 391599323,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1200650569,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 58964015,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 53959064,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 61831608,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1297778556911,
+        "rshares": 1249234813,
+        "voter": "cehuneke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 277972294,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1126661725,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26658329502,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138707294,
+        "rshares": 59007035,
+        "voter": "gejoksch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1086581417,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 7684085092,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 68588220,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 20936372522,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58525745813,
+        "rshares": 61804840,
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2127553698,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 58984750,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3485898605376,
+        "rshares": 57329654,
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 560889817,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1494592066,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 3088576209,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 14093250593,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 58452606,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58625501,
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 970572315676,
+        "rshares": 60738220,
+        "voter": "fiat19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3594337564,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30440869324,
+        "rshares": 64321439,
+        "voter": "donniet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 221599082639,
+        "rshares": 400745980,
+        "voter": "chuckwilliams37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 623839624378,
+        "rshares": 161039474,
+        "voter": "steemlinks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23296483960,
+        "rshares": 53712591,
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1597059869,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 1176722422,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 13977619830,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 4456621006,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2166034009,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 60526884,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 58025713,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320521530,
+        "rshares": 58015930,
+        "voter": "vitalik1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 7837669068,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 120161990,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2953997242466,
+        "rshares": 227602397,
+        "voter": "newandold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 60779888,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 760690935,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 986609023336,
+        "rshares": 146914868,
+        "voter": "pollux.one"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 65086623,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 54489005659,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 55546061,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887625476110,
+        "rshares": 5048299971,
+        "voter": "stephmckenzie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 8467660812,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 4574586061,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 970961663,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 10219489676,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599908904317,
+        "rshares": 168964617,
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 57971965,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 756859781,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12019551863,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804735971045,
+        "rshares": 102566553,
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 320074474,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 29242408930,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 9048508063,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 6742769002,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89481141,
+        "rshares": 650114358,
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 60003163,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14762167320947,
+        "rshares": 27297054380,
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 1119030040,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36071616720,
+        "rshares": 239279029,
+        "voter": "aslammotala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14685550969,
+        "rshares": 214189347,
+        "voter": "ajaub1962"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 52663795,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90062656329,
+        "rshares": 58052761,
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 350686963,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 14085871589,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56777133,
+        "voter": "mrdragon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 56773591,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1918847390,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1062027558,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 687499428,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124740159878,
+        "rshares": 53167722,
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56025199,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972369433984,
+        "rshares": 2600295788,
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 54289104,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 56202695,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 522747796,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55025746,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 3469280513,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440270276,
+        "rshares": 55937830,
+        "voter": "luigimendi89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 54729631,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 59856239,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29018448461,
+        "rshares": 62361808,
+        "voter": "siclone23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 193759655472,
+        "rshares": 115562685,
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55531094,
+        "voter": "tpojnsm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54398393,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 117418584,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 7454525011,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 652863483,
+        "rshares": 54298949,
+        "voter": "satoshigraphics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 75079357,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": -9818989087,
+        "rshares": 55189900,
+        "voter": "aylinsita1990"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 2053671931,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3835867777,
+        "rshares": 54144667,
+        "voter": "hereisflaco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 55052571,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 50714778,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55070425,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 175449962,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": -13647790364,
+        "rshares": 53861129,
+        "voter": "urbanchick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52794249,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111402516,
+        "rshares": 54921796,
+        "voter": "markus.kcfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4529189768,
+        "rshares": 54912747,
+        "voter": "thebuzzard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54910034,
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 815192,
+        "rshares": 53781446,
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5223594852,
+        "rshares": 95401845,
+        "voter": "gracewriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 14588904171,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 53724029,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 783025089624,
+        "rshares": 128675945,
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 67051047,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142829147182,
+        "rshares": 374243560,
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -236066174395,
+        "rshares": 71027434,
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 194766468,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52521499,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 68162322698,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54626102,
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 54674145,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 23934725883,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 11525578653,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267516181499,
+        "rshares": 3677273797,
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 50222829,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269520578215,
+        "rshares": 133587590,
+        "voter": "fraterralph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5014250342169,
+        "rshares": 88441939,
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 55668201,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53400199,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5252754993,
+        "rshares": 51229331,
+        "voter": "lynchiandream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950372517145,
+        "rshares": 1050379429,
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54234303,
+        "voter": "incajack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 499872110,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 57524778,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 54165586,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 54296587,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 52870213,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 538020212,
+        "rshares": 54049299,
+        "voter": "rantanplan41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5000717548,
+        "rshares": 51909373,
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 54002407,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 690842371,
+        "rshares": 3517656674,
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23817229390,
+        "rshares": 50230258,
+        "voter": "thecentreofitall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74558454,
+        "rshares": 53932131,
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 55620886,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2066802625,
+        "voter": "anthemhayek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52815493,
+        "voter": "dilmacoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 1738000972,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24959457597,
+        "rshares": 52916666,
+        "voter": "littenti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 53643296,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53631416,
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 619923193031,
+        "rshares": 52541690,
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 53578816,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1044015789,
+        "rshares": 52484486,
+        "voter": "ryanrock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52320341,
+        "voter": "gaurav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58139221,
+        "rshares": 50227234,
+        "voter": "coldestcorner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52319921,
+        "voter": "karazia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52312287,
+        "voter": "btcmaker21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53351185,
+        "voter": "fganz72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53343535,
+        "voter": "cho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3361932,
+        "rshares": 53341745,
+        "voter": "ganargatul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53328385,
+        "voter": "jinniu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52281058,
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 52277186,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 522910185,
+        "rshares": 51227011,
+        "voter": "coyotespike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13906758,
+        "rshares": 52230107,
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248371338,
+        "rshares": 53262744,
+        "voter": "mudin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 831933,
+        "rshares": 53243735,
+        "voter": "ciroberts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3358006,
+        "rshares": 53235665,
+        "voter": "irura"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53232798,
+        "voter": "underthebug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1690208,
+        "rshares": 52183914,
+        "voter": "crowbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 53196086,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": -836983972512,
+        "rshares": 53175543,
+        "voter": "audi786"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53167544,
+        "voter": "timsherman1972"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413812833,
+        "rshares": 53156073,
+        "voter": "harbinger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53135308,
+        "voter": "qhemist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52079777,
+        "voter": "ripll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53117823,
+        "voter": "veselind1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27553964160,
+        "rshares": 53109397,
+        "voter": "t-bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 797249,
+        "rshares": 53106577,
+        "voter": "fluffymelkii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 490547587,
+        "rshares": 53089656,
+        "voter": "themattsnyder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53088352,
+        "voter": "schnabelstefan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52027863,
+        "voter": "alexa34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53064043,
+        "voter": "steel3ernation"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53051738,
+        "voter": "tanmay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5484672856,
+        "rshares": 51859127,
+        "voter": "marielynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 828920570,
+        "rshares": 51836282,
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 50055880,
+        "voter": "arnebolen"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50326964582800,
+    "beneficiaries": [],
+    "body": "![1074365_10101608975307499_1512643843_o-1024x768a33c7.jpg](https://www.steemimg.com/images/2016/08/20/1074365_10101608975307499_1512643843_o-1024x768a33c7.jpg)\n\nI've spent the past few days thinking about how Steem can continue to succeed.  My answer is community and outreach. Steem incentivizes community building and growth. Why does this matter?  I'm going to take you back to 2013, London. \n\nAlmost everybody who was anybody in Bitcoin converged at 'Bitcoin London'. An Editor with TechCrunch Europe tweeted that Bitcoin London was a \u201cperfect storm of entrepreneurs, VCs (who stayed the whole day), Utopianists and borderline autistic super geeks.\u201d\n\nI\u2019m one of the geeks. Although, there\u2019s no way I\u2019d call myself a \u201csuper geek.\u201d My thing is communication. I jump in, bring people together, and solve problems. Yeah, I can be too blunt from time to time. But I\u2019m good at bridging the gap between suits and guys like me who are serious about technology.\n\nGeeks went to London to see what other developers were doing. To ask for help, because many of us were in our twenties and had little experience running businesses. We went to find whatever we needed. Whether it was money. Or advice regarding the byzantine maze of government regulations. Or fresh perspective on tactical decisions.\n\nWe went because techies need playdates. At home we eat, drink, and hunt for love in front of our computers. We fart at will because no one is there to object. And, yeah it\u2019s true, we con ourselves that video Skyping is real face-to-face interaction. We went for the sensory experience of getting drunk, backslapping, and sharing awesome meals with good friends. Way different than scarfing down the usual crap alone at our desks.\n\nMany of us went to reminisce about the old days when we, the brotherhood of geeks, the future of great things everywhere, were the only ones who understood what the fuck a cryptocurrency was. Or how to buy Bitcoins. Or where to spend them.\n\n![ScreenShot2016-08-20at6.39.00AMb8009.png](https://www.steemimg.com/images/2016/08/20/ScreenShot2016-08-20at6.39.00AMb8009.png)\n\nWe went to talk strategy. Should we figure out how to comply with their crazy rules and regulations? But no matter how we split over this debate, we agreed that central banks were a problem. They were printing notes willy-nilly with no regard for tomorrow. It was up to us to give people control over their own damn money.\n\nWe went with heartfelt purpose. Because every one of us agreed with Bitcoin Jesus, otherwise known as Roger Ver. He said, \u201cBitcoin is the most important invention in the history of the world since the Internet.\u201d\n\nRoger was my first outside investor, now a great friend. When he heard about the benefits of Bitcoin\u2014privacy, little fees, no banks to freeze accounts\u2014he didn\u2019t sleep for three days. He made himself sick with enthusiasm and later earned his nickname by giving away Bitcoins just to spread the word.\n\n![honeybadger](https://pbs.twimg.com/media/BRaqwrlCYAAXGEx.jpg)\n\nBitcoiners don\u2019t have one central leader. But Roger\u2019s unflagging commitment defines who and what we are as a community. The month before the conference, he leased a billboard between San Francisco and San Jose, shelled out $1,500 per month for a prime location, and threw down the gauntlet. He advertised Bitcoin as the \u201choney badger of money.\u201d His message: We\u2019re here to stay.\n\nThe reference is to a loopy video that went viral on YouTube back in 2011, 66 million views and counting. The narrator, his voice a mix of sarcasm and reverence, describes the fearlessness of an animal that chases cobras into trees and devours them. Honey badger was everywhere during Bitcoin London, a constant reminder that nothing could stop us.\nNo wonder we\u2019re scary to people like Paul Krugman, the economist who wrote an op-ed in the New York Times entitled, \u201cBitcoin is evil.\u201d\n\nGrumpy old men don\u2019t get us. Which is fine because nobody under twenty-five reads their columns anyway, unless there\u2019s a link on Hacker News. They don\u2019t come to our conventions. They don\u2019t hear our success stories. Like when I texted Bitcoin to China because a family here in New York couldn\u2019t rely on banks to wire money in time for an emergency operation.\n\n![shrem](http://cdn3.sbnation.com/assets/3952535/shrem_002.png)\n\nIt beats me why anybody thinks digital currencies are evil. Maybe it\u2019s because of the people behind it. We\u2019re brash. We keep weird hours. We\u2019re intense. We get wrapped up in our work. We forget to shower, to shave, and sometimes to eat. We have a hard time communicating with people who don\u2019t have a clue about coding.\n\nYou can think whatever you want about us. We\u2019re good. We\u2019re pure. We\u2019re genuine. Or, we\u2019re evil. We\u2019re cultish. We\u2019re a mob of snot-nosed kids, crude, socially unacceptable blowhards who think we know more than we know. You decide.\n\nI went to London for one delicious, irresistible reason: These are my people.\n\nYou guys are my people. \n\nWhat can we do to educate and grow the community? \n\n-Charlie\n\n(Some of the people in the top picture: Charlie Shrem, Erik Voorhees, Ira Miller, Cindy Zimmerman, Courtney Warner, Justin Blincoe, Ashe Oro, David Bailey, Roger Ver.)",
+    "body_length": 5172,
+    "cashout_time": "2016-08-27T11:45:54",
+    "category": "steem",
+    "children": 116,
+    "created": "2016-08-20T11:45:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steem\",\"life\",\"bitcoin\"],\"image\":[\"https://www.steemimg.com/images/2016/08/20/1074365_10101608975307499_1512643843_o-1024x768a33c7.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T12:07:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 173138886986833,
+    "parent_author": "",
+    "parent_permlink": "steem",
+    "pending_payout_value": "4419.025 HBD",
+    "percent_hbd": 10000,
+    "permlink": "how-can-steem-continue-to-succeed-a-story-by-charlie-shrem",
+    "post_id": 904360,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "How can Steem Continue to Succeed? - A Story by Charlie Shrem",
+    "title": "How can Steem Continue to Succeed? - A Story by Charlie Shrem",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steem/@charlieshrem/how-can-steem-continue-to-succeed-a-story-by-charlie-shrem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "800",
+        "reputation": 145171381514207,
+        "rshares": 2286273138529,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7535407626923,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 32779800649272,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26077251695605,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40968306769338,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "2300",
+        "reputation": 176979684007,
+        "rshares": 8545040449043,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2321052859710,
+        "voter": "diaphanous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 172818412568,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1714021323271,
+        "voter": "disney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1469005674138,
+        "voter": "commedy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7317854950426,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 210068220774,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8573070031613,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "500",
+        "reputation": 25104157850610,
+        "rshares": 134261972988,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1764401260801,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 624092343684,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1361742176425,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 3117311517077,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 924017463911,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4643623331023,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26776677752355,
+        "rshares": 155095685782,
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3099213331,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 2044569170150,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3762517677,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697318387,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7326878718691,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 481363240580,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54015931380,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660933018,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213661759,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 214553946339,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35385015759603,
+        "rshares": 212931415328,
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 15818171666,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 401713935140,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2531320203237,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6451236783,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5803810458236,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 160458264263,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1113141807109,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 16340082109,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622727783,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967199991,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 22613505929,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 296018696861,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31488861074,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 120131244818,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59130509872662,
+        "rshares": 549442905324,
+        "voter": "kencode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74299604102,
+        "rshares": 3495643148,
+        "voter": "spartako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288140285,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14643052782,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 899970018,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 80051060522,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419241455347,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 331720518877,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 490688471941,
+        "rshares": 7098781576,
+        "voter": "methodise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78070381820,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 24175822833,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 97645470861,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 170419675593,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15778432360,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8205719339,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7584006571,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3991057200,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4931834878069,
+        "rshares": 13094998288,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83670481392,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 475449654,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9966710701,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5581198006,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 29088869234,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6578969489361,
+        "rshares": 263835566670,
+        "voter": "streemian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2098982781,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 340907048790,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5414208804644,
+        "rshares": 17241669073,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9650580617,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 692261667883,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 1029300592,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3591355149,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 2557289360,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 91718922101,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 60408640373,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 56762468044,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6182090102255,
+        "rshares": 32680556442,
+        "voter": "dan-atstarlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 236023250940,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 79658049745,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1431852861,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3087380162,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 368696007081,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 20342998784,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 586286811332,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 64284714678,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 265125324670,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 38891594263,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 92461174271,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 197876719249,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9601085464,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3596528108285,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 388823990187,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 391275913,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 37106301832,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 371338569,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 52893388475,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 369773764236,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 52998773109,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 77754728236,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 9004615518,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 67955241910,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 266442266951,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 500746650031,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48670967654,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4794047234,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13619124411,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 77535334483,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 138353237297,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1863773805,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30097018787,
+        "rshares": 321645695,
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1877846106598,
+        "rshares": 29652449423,
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2434631651,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 193336221016,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6127107329,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1487859268399,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9720315931,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19196715690053,
+        "rshares": 97840926478,
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 100534891530,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 43181755485,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31688993607,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 66670031086,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7225093759945,
+        "rshares": 8989521443,
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 44546598274,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 17904315172,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2272555442064,
+        "rshares": 4242221961,
+        "voter": "azaan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6053064579803,
+        "rshares": 25352220451,
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17897203629,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 360802404,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 264522603,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 234649760133,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8820348623,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18965164896,
+        "rshares": 255317866,
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3112471750,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5240855771,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254299917,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 17966720615,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 112341495888,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 31880219495,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10363872378,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 133098789385,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1971816747,
+        "voter": "bitqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91531121710,
+        "rshares": 285466025,
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 526139691,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 599975985871,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 32961215897,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380128900631,
+        "rshares": 259486897,
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45485816669,
+        "rshares": 230699260,
+        "voter": "adamgud"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1625153964,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8718300603,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 660201964691,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91432229392,
+        "rshares": 7083046433,
+        "voter": "gatoso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 499156305959,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10797615304,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 638655715,
+        "voter": "busser"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9142611234,
+        "rshares": 343772022,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3871042,
+        "rshares": 318185135,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 99676062720,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81102912,
+        "rshares": 227038042,
+        "voter": "mirspirs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 1500721767,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336087201971,
+        "rshares": 24638975246,
+        "voter": "strangerarray"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 147240421388,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 11193701699,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 243356345,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42360898973,
+        "rshares": 254952330,
+        "voter": "splus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7880193692,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41267307369,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 885891994,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131860560605,
+        "rshares": 321412488,
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 919965160,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4487120677,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "4900",
+        "reputation": 9968156990,
+        "rshares": 30366906910,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 233824994,
+        "voter": "ozbay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2931050359,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10802622782,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41067245291,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 1970824176,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 86192306441,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116044671291,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4405601512,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 15592975899,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 25440907620,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1396330239,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 80570734908,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11367833177,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11450220486,
+        "rshares": 282253899,
+        "voter": "gobbahfett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2323109321,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 920506256332,
+        "rshares": 2517806958,
+        "voter": "fireriseace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 367760346,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6500609847,
+        "rshares": 384335950,
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 138956047790,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1311079777932,
+        "rshares": 2105453596,
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 367441394,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 18844876808,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2347565634738,
+        "rshares": 9714290940,
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79506270733,
+        "rshares": 268243096,
+        "voter": "joiflores"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 42927707223,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 44887212750,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6929991532,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 120162058,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 118284637980,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373524020,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 9370705725,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3498346239,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1481735585,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1938865152,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1560786654602,
+        "rshares": 2946289390,
+        "voter": "algimantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13250462027,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 36965151180,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15850485128,
+        "rshares": 4319281075,
+        "voter": "deadloop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2472576649,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 10846689202,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 20410120133,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 257403668412,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661515438853,
+        "rshares": 5853915747,
+        "voter": "kidsysco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3486501308,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14595996216,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1493514692,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 61164877049,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 123371166,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8241540437,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200869173,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7310783835,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3365168886,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2379897089,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 69123993562,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 222542499155,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 25043650328,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4302076450,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19713815724,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 35138047991,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 13064688336,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 74885413307,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4295800504,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 22491376069,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 100131242,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7970107770,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 990217556,
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40107084,
+        "rshares": 162148467,
+        "voter": "xand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 214418183330,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 381723370,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 130741738,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1036379725709,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101628344707,
+        "rshares": 820314355,
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2948767983,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "9000",
+        "reputation": 10519849768972,
+        "rshares": 18748294564,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1683378197,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255303484,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255686119,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147914638,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 148750003,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84813726,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4927676298,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2997941608767,
+        "rshares": 5733299216,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 216437643539,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 696284733,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 47467252853,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 196185915,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 795632907,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 571610409,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 21370785844,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 436697567,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 688931909,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 24328823034,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7599876024,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 231161441,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18453282331,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 618560648,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 408950035,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 219368610,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 32607805957,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76805770,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 247311783844,
+        "rshares": 991828752,
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 37567501779,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 74356260,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 125670168,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6699598900,
+        "rshares": 112914306,
+        "voter": "wunju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 239200705583,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 94907873280,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18091411211,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1526231546,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2456054658,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 26208927525,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1721866378,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 5449090977,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1048916493,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 50440059165,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9225374819,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 731723236,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8710090850955,
+        "rshares": 36188652656,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 52489886,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 37475910231,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 3744057022,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 1485758293,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 52102443,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 25323287465,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 18320500859,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8303415935,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2730766591183,
+        "rshares": 1040657025,
+        "voter": "handmade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 108318138906,
+        "voter": "n628"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 23672211620,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111834001286,
+        "rshares": 1449214120,
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3800424712,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1412252219445,
+        "rshares": 2646325863,
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 142236537,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 4766914366,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9623723965,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7989197237827,
+        "rshares": 19451988403,
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 1986358120,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2312379610,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3565700998,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 512286246,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3495650909,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 93408467657,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 47408467721,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 148353341,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 13117586964,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 98430679173,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3497293755,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12673208176,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 56272514,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311638758804,
+        "rshares": 293812470,
+        "voter": "rusteller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1425927896964,
+        "rshares": 2093147434,
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 624994940,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 64518882,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 52502611,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 52099594,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 102581984510,
+        "rshares": 115476170,
+        "voter": "crypticus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3294123210,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1795134,
+        "rshares": 63003460,
+        "voter": "tinca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 410532296,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 1342463662,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 646216243,
+        "rshares": 62928860,
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 51753317,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4521044040322,
+        "rshares": 4449898707,
+        "voter": "zivile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1074787723323,
+        "rshares": 39864158238,
+        "voter": "salva82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 74615731,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 59896309,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28579615756,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1718414440,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 62302798,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 83673051926,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15099093363137,
+        "rshares": 44348975328,
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 52400873,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 6078376183,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61110411,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 7624079651,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1148697669,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3657922,
+        "rshares": 60121509,
+        "voter": "titan792008"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 36994951415,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 78132990,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2316925791,
+        "rshares": 136073201,
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 649775834,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20522944664,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 609693016486,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 50094162,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4118875398,
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59512540,
+        "voter": "boatman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 122575003,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1168737391,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2560643506,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 324640729094,
+        "rshares": 10968971478,
+        "voter": "cryptomancer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51863356,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51860909,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51856300,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 60143295,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 71768449,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 535734998,
+        "voter": "postapoc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 60654881,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59591505,
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 383461680,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 43667107055,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -453186550665,
+        "rshares": 58295460,
+        "voter": "steemitsupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28378684,
+        "rshares": 52449059,
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 457360148,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 6043972109,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 34223856616,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255206338230,
+        "rshares": 5757009344,
+        "voter": "monopoly-man"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58984995,
+        "voter": "anesthetize"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1066043033,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 13243311864,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 2046360638,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 8262972409,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63845074863,
+        "rshares": 1852031403,
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11457714027,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 60512686,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1041384471,
+        "rshares": 2697966952,
+        "voter": "kovaiensko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 7602805802,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6522837445845,
+        "rshares": 2366957277,
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 60157039,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41538912131,
+        "rshares": 71097993,
+        "voter": "voluntaryv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51562255,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4392040691,
+        "rshares": 59131048,
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23296483960,
+        "rshares": 55998234,
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101814429368,
+        "rshares": 84553833,
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2212591927,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272429773,
+        "rshares": 59486519,
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 91312181,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 56887954,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8629322459,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 1293327844,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 709285853,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 4048546063,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2515136120,
+        "voter": "colinklein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56717182,
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 39491089806,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 97612779,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201616978,
+        "rshares": 57814202,
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 57813247,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 83059481,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 13909654561,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12308782280,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 447777754,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 645416481,
+        "rshares": 56284975,
+        "voter": "titanius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 462549906,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 19892617782,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 7018666997,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 361907111,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1747107542,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89481141,
+        "rshares": 2523906858,
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 114896871,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891760,
+        "rshares": 57072675,
+        "voter": "dadview"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4319149895,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6795759787822,
+        "rshares": 1174326147,
+        "voter": "aggroed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3547713333727,
+        "rshares": 2441174037,
+        "voter": "victoriart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1607818099536,
+        "rshares": 732560929,
+        "voter": "sophiachan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 1498342749,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 51207552,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 16175473821,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 59518488,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 219451496,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4021399162,
+        "rshares": 58435569,
+        "voter": "sanzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131421134,
+        "rshares": 56690664,
+        "voter": "ritherz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1757292291,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835399333,
+        "rshares": 1810437987,
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 89846801,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28867500,
+        "rshares": 56438964,
+        "voter": "jdigangis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 57163358,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5970786412,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 405698035912,
+        "rshares": 298663325,
+        "voter": "tfeldman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55803830,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442182311998,
+        "rshares": 9621810499,
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 568381891,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56143941,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 16402554127,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290042862358,
+        "rshares": 282331162,
+        "voter": "benjamin.still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 262718397,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 55416927,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988835724525,
+        "rshares": 381923269,
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2209122623,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23712552853,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 226292406,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55267865,
+        "voter": "gastlep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2814664599,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 5143551962,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55047100,
+        "voter": "melicor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 54194125,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 350245417,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 117140255,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 57522774,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 53484846,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 387594274,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 311627797,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 264054111382,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318809319,
+        "rshares": 54223214,
+        "voter": "ecfootball71"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33637169873,
+        "rshares": 61109696,
+        "voter": "sressler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 594706072,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4027411276,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 52930132,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1576328130,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 1645692763,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5550458547,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1030128184,
+        "rshares": 614254178,
+        "voter": "kharn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 3048213491,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2004604707,
+        "rshares": 53688546,
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2539945399,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 61779036,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50523318,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 619923193031,
+        "rshares": 713530224,
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454788,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50468091,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176228976143,
+        "rshares": 8258050384,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 67902124,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327349908318,
+        "rshares": 325265674,
+        "voter": "soldier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 56465141,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1606778190,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189363957513,
+        "rshares": 64280371,
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5484672856,
+        "rshares": 52628458,
+        "voter": "marielynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 828920570,
+        "rshares": 51836282,
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 103532789,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 142968891,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 444900926552,
+        "rshares": 6769652006,
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 1918615754,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 3150868796,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52614987,
+        "voter": "dulcio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 52785710,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 60952512,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2454253,
+        "rshares": 50357208,
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25803661875,
+        "rshares": 70358845,
+        "voter": "ancientofdays"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 52468652,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271467561,
+        "rshares": 52131186,
+        "voter": "elena2101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 64753648,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 659608632671,
+        "rshares": 1059793205,
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5063402045,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4320548513832,
+        "rshares": 466446767,
+        "voter": "ekaterina4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 139509079,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 281956744731,
+        "rshares": 314429739,
+        "voter": "mattmacreadie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468522,
+        "voter": "catkill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1800841,
+        "rshares": 10707310991,
+        "voter": "shiva777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 564755466,
+        "rshares": 51406339,
+        "voter": "madikantia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3497755,
+        "rshares": 51155906,
+        "voter": "rob.bullock29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1172991612,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 234362047,
+        "rshares": 51021301,
+        "voter": "coriana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5025787231,
+        "rshares": 50983862,
+        "voter": "poetryfrombooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2093855721226,
+        "rshares": 52680591,
+        "voter": "benberger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 464502884,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 93074631,
+        "voter": "artfullyaging"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1289521305818,
+        "rshares": 50181287,
+        "voter": "cwbrooch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15311405,
+        "rshares": 50161827,
+        "voter": "dan0n4freedom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50008646,
+        "voter": "winnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4344578302,
+        "rshares": 76713592,
+        "voter": "cianosapatti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907581407,
+        "rshares": 157831632,
+        "voter": "sergeykitayev"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50326964582800,
+    "beneficiaries": [],
+    "body": "[![IMG_0006-e1433109728455.jpg](https://s16.postimg.org/x7f2d7zud/IMG_0006_e1433109728455.jpg)](https://postimg.org/image/3s9e47vap/)\n\n*This is Part 3 in a series about my life as a Geek in Prison. Click my name to follow me and check out my blog for the Preamble and Parts 1-2. All names are changed to protect inmates privacy.*\n\nMarch 31st, 2015 \n\nWoke up around 7am, barely slept through the night. The total shock of yesterday is starting to kick in. Omar said it would be super hard to sleep and he was right, but the earplugs helped a little. I took a shower this morning, there wasn\u2019t much of a wait. Using the showers are like trying to land an airplane on a runway with no traffic control. All the planes that are waiting to land and take off are speaking to each other directly. \n\nTo prevent yourself from crossing someone else you wait outside and yell: \n\n> Showers\n\nEveyone in the showers will reply\n\n> 1 on the right, 2 on the left\n\nMeaning there is 1 person on the right and 2 on the left, so there is a right shower empty. Then I say. \n\n> Coming in on the right\n\nI go into the changing room area assigned to my shower and say\n\n> In on the right\n\nWhen I\u2019m ready to cross into the shower I say\n\n> Crossing on the right \n\nAnd I let them know when I\u2019m in the shower. When I\u2019m finished, I do the same but backward. \n\n[![shower.jpg](https://s16.postimg.org/5y3oypyr9/shower.jpg)](https://postimg.org/image/8s6uc60xd/)\n\nI was issued my khakis today and I have to wear them from 7am until 4pm. After 4pm I can dress down into shorts or sweatpants. They are olive green and not the most comfortable things in the world. \n\nIt feels weird not using a cell phone and technology. Everything here is word of mouth, there is no google and information is trickled in. I think the hardest part is learning how to use my own resources to grow and not the internet. I need to learn how to read bullshit and filter through wrong information to find the right answers. Your word is your life here, we all live together so if you don\u2019t follow through, no one else will trust you. Information travels fast here. The slang for when you hear about a rumor or unverified information is \u201cI heard it on Inmate.com\u201d\n\nOn the outside, I had this Bitcoin celebrity status. In here, no one knows me nor do they care about me. I\u2019m just inmate 92164-054. As I walk through the range, using the rest room, making coffee I notice some hateful stares. People have their every day routine. Some for 1, 5, even 10 years and here I am going about it like I own the place. I need to change that attitude and humble myself. How do I stay out of someones way but at the same time still be assertive? Everything is such a fine line here. If you back down you are a wuss, and if you stand up for yourself you go to the hole. I have a lot to learn. \n\nAfter my shower I spoke to Courtney and had a 12 minute call. This used up my 10 minute allocation for the day and 2 minutes of tomorrow but it was my first day and really needed to talk to her. \n\nShe found the visitor form on the BOP website and is printing and mailing it today. The visits are once a month Saturday and Sunday from 8am - 3pm. You get 1 weekend a month which is based on the last digit of your register number and last name. My number ends in 4 which is an even number and my last name ends in an S so my weekend is coming up this week! If I can\u2019t get her approved in a few days, I won\u2019t be able to see her for 5 weeks. On the outside I\u2019m so used to things being done within minutes of when I want it to be done, but in prison I have to learn to get used to things taking days sometimes weeks. I can\u2019t always get what I want when I want it, this is a thinking error as I would later learn. \n\nHere in Lewisburg, I learnt that there is a program called RDAP. The Residential Drug Abuse Program. RDAP is the prisons most intensive treatment program. Cognitive Behavior Therapy is used in a modified therapeutic community model where inmates experience living in a pro-social community. Inmates live in a unit separate from general population; they participate in half-day programming and half-day work, school, or vocational activities for 9 months. In reality, RDAP is 24 hours a day because your life in prison revolves around it. If you graduate, you can get time taken off your sentence from 6 months to 1 year. The program focuses less on drugs, more on dissecting your life and rational thinking. Why do you feel the way you do and how does that effect your actions and reactions. I may try and get into the program. I would get to go home earlier and it would help in my quest bettering myself. \n\n[![Dining-hall-e1411760469932.jpg](https://s16.postimg.org/ltsj20pbp/Dining_hall_e1411760469932.jpg)](https://postimg.org/image/ruq7z3bxt/)\n\nSkipped lunch today because the line was too long. Lunch is served around 1030am and follows a 5 week menu. Wednesdays are burgers, and Thursday is chicken so those are the best days. Today they were serving chicken patties, although I\u2019m not sure if there is chicken in it. I think I\u2019m going to be a vegetarian in here. You wait on line, scan your ID card and get a tray which is what you may have used in school. Usually for lunch is a protein, a carb, vegetable and fruit. Today was chicken patty on a bun with baked potatoes and green beans. For dessert an apple or bag of chips. To be honest, some of the food isn\u2019t bad but I guess its because it was all I was used to. Unfortunately, the seating choices are as diverse as I\u2019m used to being from Brooklyn. \n\nI will likely make some soup in a few minutes of ramen and mackerel with some adobo, jalape\u00f1os and garlic powder. I miss Courtney a lot but I need to focus on getting out. We speak in the morning and we say good night to each other on the phone. During the day we email as well. \n\nTo use the email, you log into the prison intranet on one of the computers. You can add someone to your contract list and it emails the contact asking if they want to communicate with you. If they accept, you can start sending emails. It costs $0.05 a minute and there is a 90 minute delay from when you send an email to the person receiving it and vice versa. When you log out you have to wait 30 minutes before logging back in. \n\n[![Lewisberg Bunk.jpg](https://s16.postimg.org/6wk210c39/Lewisberg_Bunk.jpg)](https://postimg.org/image/rgovzhru9/)\n\nMy locker is more like a pantry. I have candy, tuna fish, chicken breast, various drinks, ramen, soups, soy and hot sauce. Everything is either shelf stable or in powdered form. I\u2019ve seen some of the guys cooking up some crazy things, but right now ramen is as far as my culinary skills go. \n\nAn hour ago I watched CNN with Shimi. Shimi is the personal injury lawyer I mentioned earlier and he lives in Range 1, downstairs from me. He has been helping me out alot and I\u2019ve been shadowing him. Tonight he said after dinner I can go play spades with him and some other guys. \n\nEveryone in my Unit is pretty cool for like the first five minutes. I\u2019v noticed after that, either they become hostile towards me or ignore me all together. Overall its like living in a small town with minimal outside communication. In the bunk next to me is Tommy, a former judge from the midwest. I look forward to getting to know him. \n\nI used the bathroom earlier and a few minutes after I got out noticed a lot of hostile stares from guys in the range. I couldn\u2019t figure out why. When Omar got back from work I asked him and he spoke to some of the guys. He came back and told me that I smelled up the whole range because I did not courtesy flush. Courtesy flush? Yes, while you are sitting on th toilet you have to flush every minute or so because the water starts smelling up the place. He explained to them it was my first day but it was a bad first impression. \n\nAt 7pm after dinner and cards I\u2019m going to try out Yoga. I\u2019ve never done it before, but I\u2019m told its good to have in your routine and helps with stress and anxiety. \n\n\u2026\u2026\n\nDinner was pepper steak with broccoli and soda! Yoga was intense and the classes are offered 3 days a week. It takes you out of mental prison for an hour so its worth it. \n\nI\u2019m wiped out so I\u2019m going to call Courtney and try to sleep. \n\nI can do this. I think. \n\n-Charlie",
+    "body_length": 8260,
+    "cashout_time": "2016-09-07T13:26:39",
+    "category": "story",
+    "children": 69,
+    "created": "2016-08-31T13:26:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"story\",\"life\",\"bitcoin\"],\"image\":[\"https://s16.postimg.org/x7f2d7zud/IMG_0006_e1433109728455.jpg\",\"https://s16.postimg.org/5y3oypyr9/shower.jpg\",\"https://s16.postimg.org/ltsj20pbp/Dining_hall_e1411760469932.jpg\",\"https://s16.postimg.org/6wk210c39/Lewisberg_Bunk.jpg\"],\"links\":[\"https://postimg.org/image/3s9e47vap/\",\"https://postimg.org/image/8s6uc60xd/\",\"https://postimg.org/image/ruq7z3bxt/\",\"https://postimg.org/image/rgovzhru9/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T13:55:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 195806721769401,
+    "parent_author": "",
+    "parent_permlink": "story",
+    "pending_payout_value": "4144.598 HBD",
+    "percent_hbd": 10000,
+    "permlink": "a-geek-in-prison-a-life-series-by-charlie-shrem-part-3-i-m-actually-in-prison",
+    "post_id": 1070636,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "A Geek in Prison - A Life Series by Charlie Shrem (Part 3 - I'm Actually in Prison)",
+    "title": "A Geek in Prison - A Life Series by Charlie Shrem (Part 3 - I'm Actually in Prison)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/story/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-part-3-i-m-actually-in-prison"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7091789419092,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 28421306818658,
+        "voter": "smooth"
+      },
+      {
+        "percent": "68",
+        "reputation": 85602977273,
+        "rshares": 28856182775,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "6800",
+        "reputation": 8151223409709,
+        "rshares": 11547432333778,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26908937960730,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314859374093,
+        "rshares": 117153738816,
+        "voter": "penambang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14541454302697,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40478437385795,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "3500",
+        "reputation": 176979684007,
+        "rshares": 12844542811725,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 134841384049,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "3300",
+        "reputation": 16685610555705,
+        "rshares": 7010817118448,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3090883310,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3751600607,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703041511,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5824533973993,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52757873614,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1656788098,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213486537,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34612931967,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2596123420368,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 4953659261030,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1050743329481,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621573110,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "500",
+        "reputation": 147478489309626,
+        "rshares": 71545170677,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 921837962,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 21098625559,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 45179645003,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 5025012507,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287843749,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 87278685433,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 23130933355,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11259119702,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 829535747,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 3654082102,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25134704062,
+        "rshares": 543059088,
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 127172358363,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5171467941,
+        "rshares": 14146724265,
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 4667473657,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 94995151405,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45576935659,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2135979533,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3489651223,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2177642624,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 91973363311,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 7170017526,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594921720930,
+        "rshares": 4023048939,
+        "voter": "mrkhuffins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 39133037831,
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 60877390332151,
+        "rshares": 213893213977,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1439678714,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 48503254530,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7564949611,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 313397420054,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 367001031531,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 354491950,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238101508714,
+        "rshares": 10493959254,
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 90250548483,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 361302473837,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 237316155902,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53949422400,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 19542347966,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 180361081869,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1147181770,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 178134182658,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13557964207046,
+        "rshares": 83756720354,
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 73330821390,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23195120933,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1455229073,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30097018787,
+        "rshares": 315272215,
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 41162837415,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 152610751574,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2676865682314,
+        "rshares": 33167263907,
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 593252311,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5412463822,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 11422730697,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 26197763695,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31294492326,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 2153768921,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 46942620740,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 2933990260,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2244371641,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 3567818391,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 999100627,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 61102671700,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 2488363646,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 153081523002,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55577398106,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 2357586913,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 13518403186,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 550545019366,
+        "rshares": 956499846,
+        "voter": "cuckoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250629310,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "3300",
+        "reputation": 213668684615,
+        "rshares": 111266825,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 11598524126,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 2488327899,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 86732863426,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 17490066959,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 4975078320,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 2620127809,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 231502490670,
+        "rshares": 625722935,
+        "voter": "suchnewb"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 29740244366,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 214183155,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1426776801,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8695455121,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5093280360794,
+        "rshares": 17386970458,
+        "voter": "freiheit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10581478212,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 119197615017,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 241513668,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1322665638,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3181701822,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 117075692961,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 105469798077,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40456093013,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 263539417,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4375279402,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 14354150809,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18033891928,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4025876756,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 139437346399,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 138158323222,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19450243690,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 12111904102,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 59948957580,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 203840552,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2576891078,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1723503984,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8814210013,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1424731565,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363496863697,
+        "rshares": 494835022,
+        "voter": "jillfeint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 195108235931,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25839609028,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75093674684,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4195791223,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3693094240,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 148525300554,
+        "rshares": 14373825169,
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 82600823004,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1484107810,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1312824728,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10244507265,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 12360467699,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2248615528,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 19162351843,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34932026701489,
+        "rshares": 144757025244,
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3270068768,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 4207979237,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14191091653,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15484275207,
+        "rshares": 162548310,
+        "voter": "soulthug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6875049105,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 10808706161,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269270087101,
+        "rshares": 166034245,
+        "voter": "dnsz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37296084,
+        "rshares": 931679689,
+        "voter": "frankpryor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 985503736,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 2712122271,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34507940819,
+        "rshares": 595467367,
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4971101667,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5043336912,
+        "rshares": 1893531816,
+        "voter": "idan4326"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 10938373493,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 67919004974,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172953944203,
+        "rshares": 1204340213,
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 2236861513,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1887835506,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 116382038,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 940333523,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "5000",
+        "reputation": 2795999874461,
+        "rshares": 466212714772,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1217965675,
+        "rshares": 362267920,
+        "voter": "queiroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2215583453,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115387523,
+        "voter": "skunik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 5949903064,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 114881292,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1102035317,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4351101823,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4445653859,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20782968,
+        "rshares": 114132846,
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 438637419,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 38831196502,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191549314459,
+        "rshares": 914953153,
+        "voter": "coinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2427471195,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 5512637312,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2557225302857,
+        "rshares": 5091712349,
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2851899479,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 95063711,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2642781889634,
+        "rshares": 6237229890,
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 69869628014,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 863446792,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157137439238,
+        "rshares": 111635397,
+        "voter": "nighzmarquls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 938060542524,
+        "rshares": 711148677,
+        "voter": "candy49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 29279615965,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 331498852,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65378762684,
+        "rshares": 134803255,
+        "voter": "mairavrg"
+      },
+      {
+        "percent": "3300",
+        "reputation": -4779249072914,
+        "rshares": 109237097,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 739615310,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112407757,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 2334340277,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14690691636,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 16361722939,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2387723771,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 170875886676,
+        "rshares": 83869834,
+        "voter": "nickskywalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2078560081,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 119675184,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228822204035,
+        "rshares": 880974380,
+        "voter": "toxichan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 102348882,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4563444086813,
+        "rshares": 2718091982,
+        "voter": "jokerpravis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 30691300049,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1293874910,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 63300522,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2337037146737,
+        "rshares": 7323618776,
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6544706071,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 68682650401,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361409840466,
+        "rshares": 147832214,
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62842616,
+        "voter": "kevinhoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7538910886,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 16431877139,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 75436221,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4068639160,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12969824499,
+        "rshares": 63675345,
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1411972851,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 184775476,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1785122109,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 662317039,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404167627983,
+        "rshares": 6602889863,
+        "voter": "randolphrope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 26999446974,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5099237822,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36192115461,
+        "rshares": 78204962,
+        "voter": "millen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 4555849418,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 11391522918,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849623403126,
+        "rshares": 698448734,
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 64019062,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 366093620,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 1358383666,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 25711420325,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2363634617,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101027252353,
+        "rshares": 190497451,
+        "voter": "spoonermlt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 571200841,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26311363874,
+        "rshares": 65668582,
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 59127162,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 94246101,
+        "rshares": 60234624,
+        "voter": "tammyyin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3746908961,
+        "rshares": 59915538,
+        "voter": "nbdeledrifts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 70111504,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 56961785,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 121862219,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27504418847,
+        "rshares": 83936892422,
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1009466314,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1629742923,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36514411336,
+        "rshares": 70986316,
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 375935350,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 445271803,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 58964015,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 53959064,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 55769685,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 30581032443,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1126661725,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 841764781,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6857689066,
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3781665514,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 9065603232,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 67029397,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 20936336941,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 2806600152,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101524085,
+        "rshares": 58897154,
+        "voter": "purplelama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 57828186,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318687464222,
+        "rshares": 83305685,
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 76802569,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 13518032278,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 547956452,
+        "rshares": 57632635,
+        "voter": "ihazaname"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1310859486,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 806039558963,
+        "rshares": 1250544103,
+        "voter": "terryrall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117598348160,
+        "rshares": 321001176,
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1565744970,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1761785202,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 1176722422,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 130889172,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5788018857372,
+        "rshares": 257577089,
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 55750195,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 118398300,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 120048594,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 645486275140,
+        "rshares": 1317394072,
+        "voter": "jchiogna"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 227415344771,
+        "rshares": -58245565,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60366373217,
+        "rshares": 70290056,
+        "voter": "raseukinapobri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 65086623,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18234699449,
+        "rshares": 58186044,
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3835217954,
+        "rshares": 56719431,
+        "voter": "lilbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 56661775263,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 120907621,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 398583502,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 8464337545,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55377253,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 3630029664,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6332865841,
+        "rshares": 57535214,
+        "voter": "davincij15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 57971965,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 29256369959,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2132585670,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 9500362322,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8113893564,
+        "rshares": 57176651,
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107374302,
+        "rshares": 55978702,
+        "voter": "phonemonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 62556489,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 2712604436,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14762167320947,
+        "rshares": 24617514571,
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 1119030040,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 652958439639,
+        "rshares": 75243243,
+        "voter": "ksena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90062656329,
+        "rshares": 56914472,
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 350670901,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 54547175,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 173358680,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544245232901,
+        "rshares": 93363315,
+        "voter": "getonthetrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 55649675,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 121466526,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 167718520,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1041203488,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 56759615,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5471743844289,
+        "rshares": 2012627660,
+        "voter": "elewarne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 1125741534,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 501837884,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55025746,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 173158802,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30965802380,
+        "rshares": 67314176,
+        "voter": "russ512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 209942172295,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 55713891,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54584359,
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 818442,
+        "rshares": 53471592,
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 193759655472,
+        "rshares": 115562685,
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708267266,
+        "rshares": 832480836,
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 91733268,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276225890,
+        "rshares": 55410689,
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97476072754,
+        "rshares": 56693331,
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32457729298,
+        "rshares": 492433664,
+        "voter": "venusdehilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55275332,
+        "voter": "jmendiola222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 2110924737,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25061971509,
+        "rshares": 54072807,
+        "voter": "q1248"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1709208580,
+        "rshares": 54990943,
+        "voter": "shax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20477968943,
+        "rshares": 54156428,
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 51301791,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 67051047,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142829147182,
+        "rshares": 374243560,
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -236066174395,
+        "rshares": 71027434,
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 53452043,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 50222829,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5014250342169,
+        "rshares": 86707783,
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 55668201,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11427084577,
+        "rshares": 55584646,
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1243780278579,
+        "rshares": 53774061,
+        "voter": "lloydy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 53103516,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 54154145,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 53231948,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5156839136,
+        "rshares": 53393524,
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7766373,
+        "rshares": 407383334,
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5000717548,
+        "rshares": 51909373,
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 52943536,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 52871755,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52157712,
+        "rshares": 53877238,
+        "voter": "borntobealiveent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24959457597,
+        "rshares": 52916666,
+        "voter": "littenti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 52591467,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 51514185,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 52528251,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52320341,
+        "voter": "gaurav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26745069665,
+        "rshares": 53352742,
+        "voter": "nemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52305084,
+        "voter": "fganz72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52281058,
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 52277186,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318692,
+        "voter": "jibinkor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 522910185,
+        "rshares": 52272460,
+        "voter": "coyotespike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53287995,
+        "voter": "jamebuffalobill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13906758,
+        "rshares": 52230107,
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60463245122,
+        "rshares": 52218833,
+        "voter": "i-repost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248371338,
+        "rshares": 52218376,
+        "voter": "mudin"
+      }
+    ],
+    "author": "mynameisbrian",
+    "author_reputation": 9999779221262,
+    "beneficiaries": [],
+    "body": "In the beginning there were few...\n\n<img src=\"https://lh3.googleusercontent.com/bEdy50gH2ogFrQkAbbE0QOI4vwAbTct54hhDw6M9Mol-ULh4xOLoXyiCkHMRENVlGs_a__h1UST-hHpEf5Y4kP7CSosvQL8bniq6BTLpl0sJdrnjVyZyN1-EtVCmxfd30xOCRXUH0sdw9s38qhjanGvfNACdNYCbonDoReILddRRxzeJCwv66ugdh1p8IBZW0Wwlpzdfo-DA1jsTEwJguG3SNAxM6Qe8IZbpCsqjsPTKLOsVnA7F8bSyhjVSJ9ygUN1WWmxNW40OjzefMPVAbcLquSJiFjlpnKQW7e_-K0lI4Yh065DA6fb7YLu5VtIbruvDwCMAXJlUmRlYLUXN3GHubVinZiLbPmD8d0OJHWQR7CiZt-jLHkSvfu2HPtQO_9oYqrHen7a55O9AknTta7cJdGCnmZcDCVFTUG3nWPyOEvKKxTiOhK3EjvIwnoXaUgFONsgmk2w9-ZU0VXfzVM6Wjp6UAaHgQSZkIm7FNXei5wBeBNBAcM2sw77EhR9XjaQR9B6_7-WIOhGsF89q4omRzD5QYCEa8zLooOizHkA_mwz8BGJP2814PM4bi9m-XcuMfHfxrn772zyTMISerdO6Dn6-CrPYdIo3tmpRxrGJTYTHqg=w1000-h700-no\" />\n\nSteem was abundant and competition was low, thus the few gorged themselves until they became blubberous monstrosities capable of consuming any fish that dared to cross their path.\n\n![](https://lh3.googleusercontent.com/1gPOAJu7qWhMTu9B4KehylR_cyv_o9inydRGJlzmFrKOT958HjaXY8Mi_NBhwyrnFNpP94phoXZWthQaF2PRRXy5JBzk6pGS3q-RUBQGFGZfX7jvPsGRR-sbr_UvorIG4Qtd96E3i1p4HYa5Vs71nkIOwAGgnOgGfLhFDoK4h1V5AyGQtjfIGgKgjxNCp-lhkxkxdKxEmhIVr6Bkq0kkOviqXEphtQO2DrdTJgJGDKM9xzV7f5jGXrfARN-guqaF2qxvk4yzN7N0UlTomqVeyBfBMi-oDWcWM9GxtBQifGbYpL8QMwKzHpxC_8VpL46od1VZxssQmtm4HJLLRhSPNbMafBvYkk6wApdAidYb31JBG7krD_bqmgEq99Z41AwDslW4SlVkmtBYmelvml4moXLg6lPMcMKhCpJ-s7TIHoSgWoCRY9fCCk7FSUByGjEgWniEmvr3zJubq57EJfKWvrrXCvVoumDARU0PRjMLEaQXePn2OGx7AoipDWuIRMNvR0sXfGOt2tk_nDEqu2UmHCG7NIxF_T84y0UlhVgeOT6KLQ4vLG-HSL4WwSsS4FgtpYWD8rlmfxoQl7kV_44mmpRERbS6EM5IbuKi0HwlBhAjMBMpJQ=w1000-h700-no)\n\nThe whales remained fat and powerful - capable of pushing any post of their choosing to the top of the trending page.\n\n![](https://lh3.googleusercontent.com/UKVJNAA-PeWnEGYECCu9tOTgnk0pd28kVJKfmF2hSF4JeWGmRUqzNuKlGzdkImZHesmVXqISoccmfHlAZ9dw6FNuDgGvnf_5A6ksM2w90a_onFdpeug0IV-xIbfN3oL_GPtLafP2cre29pgsfLdma0VoWvkWoxhHo4A1uTauhQj8TwnfujUbDdFb-hN04AoJGeiQe-nxEWKfL6X16KsL6gqrK6_HLwfyWwGZYzOmLOXPDROfA8jUtOJa9mFNDaxKNTppOCYHMgspX1Msr7jgU8riJQhkzCl2auJkVod0o0jj4Z7dG2Kicyiv6sd8ePgTsxl-4CMG5Ku2l8B440OyFhXP-NxbPguu05fjx43YT5_8cuiL3zHXIURmCZyK4IPyQSh5FExe0PGLFc_r3Dx_1JDvVsSWaO1dGKxvwnDmitzT6oX3CtXu6hlWh9O3F0lygMarzKHk285QCYOUtfRGA3BlkqJY5GewyWBHdb3T00F1QF57nunOylj7l_R2o5BknamUuaz62CiUl14nOjAeJg9QOHywkATfe2A5rWAKS5BnCNbGmYq481Xy5j11TARh7u648sH0VSM0p7JoYfhHqCReLG93sIRb=w1000-h700-no)\n\nTimes were good for the Steemit whale, but down below there were rumblings of a revolt amongst the lowly, insignificant minnows.\n\n![](https://lh3.googleusercontent.com/qdiTMmJTmYBUR58_0E-QSgFUBvrxj7pAB_hoVwbbwFiuSKbVW1X7KkYpsu3wMXPzti1KhAFUpuU87RWidmr_VpGN6JOfF13dpk_Jbt_BVJhzMWGUqHWq22VoAioDZNr-QIZ1dI41HkZ1IlXIADv1kj-rJHGeE-YX-UxvkR1-tj7I-dT3NOCaQQILQ8djg2b9c4XAstjLiN598IkeN6f1ZQzIMHPP3Wj7HKd1gQrRsAoP89kAnFMtOoch9H_fFJWoOekzeJpKn1mgASOqGodffcxHSygJowzb-0x0t6p5lv_-xiBxWsjbiKKKSYGW3l9pzWHhd1AEpFw7pQQQwtzkw6LX6RexxiQDUQm8TKqmiMt14osKs826dNMkJ1NdwFGNOTJwaPcUgs8he8ojef8xDqJD_t5eK1vZUg3hidxuZJXopUQ5AL992gVQOSeLPL77nruo_QHx4tlrT5Jxhp-4Wato5VLJQ0UWriHRWg0396AigaPJNnT6P5B-RLGcn-ZiwvF_77lw-iSdmh1-KY_jZQSbnD6v3ujSenVZDI6SGu-MNS2t-Vjd078oMkD2Un5hGTSd8niHqIH0QXkLk5R39-gXB8PdIJ9y=w1000-h700-no)\n&nbsp;\n\n*Whale diversity?* The minnow was on to something. You see the few that reaped the benefits of low competition in the beginning all came from the same walk of life and enjoyed similar things.\n\n![](https://lh3.googleusercontent.com/7FY582A5ny5w8XKvDqmyxuEy-xmPgeVXkxvQaoh7EHzwFAqCD8giEPSRQ_sIeET5GbPH_hq6QAxC2kst0mLoLYzCsRx_TDAT-Stg1Or2z_DVbCNVQ8fO46_sCKaNZ6Wmcp8IWFlHf-hdftDXjxdNHBIsHhEG4Dl4nzLmRyTUIzkLv-WA0lNyjC20MOGj0dujkfg6v3X_wwpVW3tYj25cErsgxadPOIwm57w3wLgINYYO-8YNCVEs1Z17N9sTxIesCQFcgej0Wg6hl_1uIL1-lNUdXyEn9zRnLcmPd0Hm8wepfM7GsFCAO7foSh6ikuySW2dRIZsjIbiuhJXOkZiiTwXMG6hzELaiK25KvXVCNEDV0DjeKyVb8qLTsgy-LqeMsPKv3tTYmW53XRjZeIevwlexx_8uU3G1q_c4VW1ZOyHPhBBb62OhD3cTNtxtH0m1p8rQoXIQGuP2ljjOkRpwSshwIsVAQx20lTNcCUpTT0lei6N5TbSe3LQSmfs63L_-K7CsoqCMt6ZFaNXBtbEHtmtr6aV3a85cmw_9hX13a0NkzSs1LJxE3vxxXNwYPYnrbI0tS5oTzfWhgJJHQeaMFFwcYadrvRAj=w1000-h700-no)\n\nAnd incidentally...\n\n![](https://lh3.googleusercontent.com/b-FTLIFqKvBNrKaYJBsBOdQDQuqA035kvRN51cIOjV_QvYj5o_q5o2CdMrIcUoFmg89Yos0jKnLAaoQRY5TEpsDNu3j-dffijvxDLePMvtM49_SxU4LokNZfNy7HZ3yh3PKvl7_oYepYBCtkW9-u1gFrseHc9Cw3WIq12jkcAh40r_9jiTaCkefx2QdjsdE7f43YZn35sqQnvyK-U5Y-x3FpiaKT7XORBe5tMklRbJuy5puh1PYXqCbCRWhTa36rqg6zT4lZJXhduBsjq_cZZDcOQmRh54cNZ3yg9snFoVTfbsleGiG9XCe-65N3hHkg2o2uYMBDzRHow9qOO9JrB9YYcyr2RURrpVjFNcIW0078s58DYtph8SAP8QMCa6iDW6EuzFHG2iiK14afSpTGUJsAQLOAUGVb5B73VTSZXNn8W8ZiKws-9BkenegOgFKP80_UVmIRS38uwc6sHSDah5mQ2ckgIpdYs5mxJvjyvDfjlP13PnGn4vigAeANXWKRIz6ODoGbHxyN4QruVZIvJlVctFwvV3OOtMeNKoaPGCMqsgJ4QkM8R6EAbrKvQPj0wzm68sykO9Tbtkj1jkAvvAoCmNQeDpKF=w1000-h700-no)\n\nFor some this was perfectly fine; however, as more minnows joined Steemit the desire for non-crypto and Steem related content grew.\n\n![](https://lh3.googleusercontent.com/_Cgat8Ma4-b2gOQcWfzxuMVi_PWynqKTGY1-FOYh7DJDJxMX0CeuavZ5xolHDDDufIO3uo4XmseK9I_0D1BCz046GLwVWutWDBJcAd-BroFyj8KmhmC5vs1y6kVmMouTwO4J5Q95PkITP6yc2Huor2PxBq-YUD2toHJA2eW2qiibH9zBIb7yxPgCqa3LNFftXS45vuiQD28muY9nHmS7AW8vFn_U0gaN7jMDt8hRjRl1WDFRONel1uGWlcP_SJX6nud-jBi8ZZKfSjF86cN0owe8zAcjyfa6jDqxndZSU6onMXxIBDTUPxhvUXTkPMiJjepuAH_X1aS641DffnAvTF4_7u6JzB14Miduk7Q1q1jK7s1gjeIS7p2L7qc-fWAMFExlAZM62AOR-Kj4FOd6kYyL4042sOxoLeE6mcp0hCIBLP5lnZl9q1KUhJHfiFqGjhEZSIqqxQMo9Nkk632RfG5kTSnILOujGD-bb0cnergLWcefgw-9_uTkIhren80ZAwJa4lLKtK_xOw21C26BPK6L0CLVKa9VjxNY1aZkjGPZszUHhMhaRY4Nyw8xh4yKzMl1YQ8HVYaEVO2xM4ff5C2p7aYUVPN5=w1000-h700-no)\n\nFortunately there were intelligent whales that recognized the issue and decided to take action into their own hands to appease the minnow masses.\n\n![](https://lh3.googleusercontent.com/_WMDmgCEM_g1Q3OTZ2IBQUaQZ5xDNq3bqgleBZyiVmf3Akvvq5whtTVx_0zIZoZ3J2yQEyrutSRxFbHrSuzwr97tPEfxUb8YyiemCq-NEPLljfkK1pshMpPieLdF52Csuhgdj2rWXKPp8wJQMxf0VmEZcg4W5BaDvUdTg9iJL2_4SoGAKBnAviKacKenxli8zaVcjS7CmyUo6EDHebOgx4XBGOs5lq52lD1_JMZTNlqOOoxnMkCcoWDlfvvBthaBRKrdECES4O-fYITvZEKdxRoxnk4Vxi1ylUqUTvUKjdQM3rnEf0Pbq_4U7qfe24Yzz1RQt2n4SfbVlif3eBRxEkW-pZPMwCtSQeTEDnwsrGwE1voufdM6TsIFiFn9Buz2436e162swat6I2M0bUnSVIMh5mwuT44_Bqd70-W6LMt-4_P58O3vPAr91EVuDZLGRlliMDa9AhUm4UXKpV-YVhl0r40R08wBHvAEk101610hm3hkJoC9mACzA6OGjhSeJFazjuYlpU4yWT8NEYYv2F__4q_jYXfEvZDK3lcOgsIsWpajKRxglos7v_1lKV91Qj6SmDlglWNrSqR2_CvlzZnyiIfGOKYZ=w1000-h700-no)\n\nThe whales kept to their word and over time minnows from all walks of life slowly grew up to join the whale ranks.\n\n![](https://lh3.googleusercontent.com/yr0h2R4aRsIYOEi_TzJ0_jKDu2ijRp26s_iDqaN8h5zt_ICrSRAzPgUt00x9lA7ZmIUtaHsMe0LRey-qImy-OmHN5fQftmuR5WinqJrCEQxKfNwqR5ysZhpOrUtmOzKk2vg3ClmxSFUYoifDFhp81zrHddUyhy7ZdYgB0aAfULv_BqMYzK7QNitPYPoegOJxNkbv6Z6CU8dC2gEE48rBPuLb6VAt6LJLnqw3Tua9qADtFp_TR-wjYgGGBeGjk1HwKN0cNSG9FbI3kiBkOWADUY6RcWlXGRH24DpSGo01HqluVKjWA7UGzESgzJ0_O3aNExpMITGW5NQzxYU6QMWGBnhygD0BlkNKwdH7MuTzmvGyjIDE7tydiqUAd484MwU9DPPBOML2e6OJ6UsSVFkGe6q_0m4NDuJpCwtVEPbawjS0gUXO1rgV5FDdAUNuS18bhFV201aJgIB9OxMt6lJVFe32YDaT_hDiXP1eCb9wr1K4wJZY_GRqDtu83pbIvRVI6mIKoq2MfGfQf9lD0Vt5V_ISKoOhYfIQcNtD46vrNs5CrxM1KdIaY2e_-yv0sZ-JbRAK6aPZu-s18TU6ixKDDAGHY1V9lFp0=w1000-h700-no)\n\nThe whale diversity problem was solved and Steemit evolved into a social networking utopia where all points of view were equally represented, supported, and rewarded.\n\n![](https://lh3.googleusercontent.com/HKRf2YGck4_74_YgTXzxvjwbAer6gj4rsHb7HaN0VpfTb70QY6BWeStAnHzwMVes2s4kaD5MdZy6jNEA0uJUDfFuZvsHKPDCjHb1smA39aYhgDCJizyUsZj8CsUYVsLUH3YTPavhsOFMLOI9a_6PqJHts_x8TEjFIJi1_QuWlChGMM3qDyoJO1yYMFz5ak4VpUyqArY0gfkxOaCYX4bmffKqaPec4xA2RAzp-VZMpeV-n96SBHbrvV7PCee-_OMUby1HSLH-vzIo4dkNfS9Sp7zXDLCVXeITcaLNnY1JdODbAjkGxqntIVWxTnc9JXmb7UspZriRu4YrJnPWg_XaGVhiKpa4dM7dcntLqLDyaInN-poyybJA4W7qLvacJoxBln9rdP0Mj2-sKe1fSkqCvrTk7Z9pQXkPXzzbEJoNZriI9e_ZCwwkHJfbWuUMHP_zsppB4U1fsfXxlgros3_oc5fP9YJmcqRXJP_--VZbkN87fdNVDBQj61DOfJ7hQG7U9uMa9i8m0VSM4e-ic2iR24Gt5Zgt119zQyFpR-3cbvB14POxKdG3-gnRMmohgkTRaMkKC5naCIMNyWhG4_92k8EVV8xwoKzyb4PFwOMuDQdbUuVgGg=w1000-h700-no)\n\n***Footnote:*** *This account is 100% factual*\n&nbsp;",
+    "body_length": 7997,
+    "cashout_time": "2016-08-27T03:16:48",
+    "category": "steemit",
+    "children": 98,
+    "created": "2016-08-20T03:16:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"marijuana\",\"art\",\"bitcoin\"],\"links\":[\"https://lh3.googleusercontent.com/1gPOAJu7qWhMTu9B4KehylR_cyv_o9inydRGJlzmFrKOT958HjaXY8Mi_NBhwyrnFNpP94phoXZWthQaF2PRRXy5JBzk6pGS3q-RUBQGFGZfX7jvPsGRR-sbr_UvorIG4Qtd96E3i1p4HYa5Vs71nkIOwAGgnOgGfLhFDoK4h1V5AyGQtjfIGgKgjxNCp-lhkxkxdKxEmhIVr6Bkq0kkOviqXEphtQO2DrdTJgJGDKM9xzV7f5jGXrfARN-guqaF2qxvk4yzN7N0UlTomqVeyBfBMi-oDWcWM9GxtBQifGbYpL8QMwKzHpxC_8VpL46od1VZxssQmtm4HJLLRhSPNbMafBvYkk6wApdAidYb31JBG7krD_bqmgEq99Z41AwDslW4SlVkmtBYmelvml4moXLg6lPMcMKhCpJ-s7TIHoSgWoCRY9fCCk7FSUByGjEgWniEmvr3zJubq57EJfKWvrrXCvVoumDARU0PRjMLEaQXePn2OGx7AoipDWuIRMNvR0sXfGOt2tk_nDEqu2UmHCG7NIxF_T84y0UlhVgeOT6KLQ4vLG-HSL4WwSsS4FgtpYWD8rlmfxoQl7kV_44mmpRERbS6EM5IbuKi0HwlBhAjMBMpJQ=w1000-h700-no\"],\"image\":[\"https://lh3.googleusercontent.com/bEdy50gH2ogFrQkAbbE0QOI4vwAbTct54hhDw6M9Mol-ULh4xOLoXyiCkHMRENVlGs_a__h1UST-hHpEf5Y4kP7CSosvQL8bniq6BTLpl0sJdrnjVyZyN1-EtVCmxfd30xOCRXUH0sdw9s38qhjanGvfNACdNYCbonDoReILddRRxzeJCwv66ugdh1p8IBZW0Wwlpzdfo-DA1jsTEwJguG3SNAxM6Qe8IZbpCsqjsPTKLOsVnA7F8bSyhjVSJ9ygUN1WWmxNW40OjzefMPVAbcLquSJiFjlpnKQW7e_-K0lI4Yh065DA6fb7YLu5VtIbruvDwCMAXJlUmRlYLUXN3GHubVinZiLbPmD8d0OJHWQR7CiZt-jLHkSvfu2HPtQO_9oYqrHen7a55O9AknTta7cJdGCnmZcDCVFTUG3nWPyOEvKKxTiOhK3EjvIwnoXaUgFONsgmk2w9-ZU0VXfzVM6Wjp6UAaHgQSZkIm7FNXei5wBeBNBAcM2sw77EhR9XjaQR9B6_7-WIOhGsF89q4omRzD5QYCEa8zLooOizHkA_mwz8BGJP2814PM4bi9m-XcuMfHfxrn772zyTMISerdO6Dn6-CrPYdIo3tmpRxrGJTYTHqg=w1000-h700-no\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T06:12:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 170483910533651,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "4048.919 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-evolution-and-diversity-of-the-steemit-whale-past-present-and-future",
+    "post_id": 900107,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Evolution and Diversity of the Steemit Whale - Past, Present, and Future.",
+    "title": "The Evolution and Diversity of the Steemit Whale - Past, Present, and Future.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@mynameisbrian/the-evolution-and-diversity-of-the-steemit-whale-past-present-and-future"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "8500",
+        "reputation": 145171381514207,
+        "rshares": 24764514875146,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7542003454455,
+        "voter": "steempty"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28856126477,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14825670531273,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 42084438150989,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "6500",
+        "reputation": 1133069631465,
+        "rshares": 20606972048676,
+        "voter": "val-a"
+      },
+      {
+        "percent": "5000",
+        "reputation": 13270505121655,
+        "rshares": 33500836333107,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 131350349763,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223387419724,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "5200",
+        "reputation": 14756948501919,
+        "rshares": 3495497154422,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "3000",
+        "reputation": 16685610555705,
+        "rshares": 6183464077147,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1696732608212,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 1235646206,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 1499730525,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 281080652,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3375344427585,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 21034837789,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 662345893,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 85364487,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 32746360575,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2592609003800,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1181693797526,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 289695914463,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 73168546803,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1008017518314,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 256885763576,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 248512921,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 366443930,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 374892077281,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 22423563200,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 831726581013,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 37314251347,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115094057,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 410848680226,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 100000796919,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 14274195998,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 5762120310,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25134704062,
+        "rshares": 543059088,
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590661010140,
+        "rshares": 23697552830,
+        "voter": "mod-tamichh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14317866801,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87363750745142,
+        "rshares": 464536603135,
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5073271124,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 629772802423,
+        "rshares": 8889991171,
+        "voter": "piranhax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 473678777,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46488029079,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2134929320,
+        "voter": "gekko"
+      },
+      {
+        "percent": "8400",
+        "reputation": 122177444407384,
+        "rshares": 1390509636907,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3997942209174,
+        "rshares": 40256756694,
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5176156064,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1320082412,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 59008577002,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 50479746379,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2159282570,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7564896202,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 305617293350,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 431313999109,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 463562817,
+        "rshares": 629348835,
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 300547523,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 609780550802,
+        "rshares": 156348565,
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 96004313214,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9543761556,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1667394140,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 332794848495,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 56236128858,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 4005086376,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 20052060161,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2636635441463,
+        "rshares": 6306835193,
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4142890713,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13378292922,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 80383400292,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 750522515,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 245414402472,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 3959389322,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1327941697,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 40337233208,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 107938878503,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5296719765,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 16832536493,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 28362187028,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3924899966690,
+        "rshares": 49239210039,
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 44341610368,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6030262582,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 9142725916,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 159843656074,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4836063726,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 54465850144,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250436670,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "5200",
+        "reputation": 213668684615,
+        "rshares": 111265427,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 108205573807,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4710786819,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 131372321545,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 4875559587,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1271258622,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 237324146125,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -2499740471746,
+        "rshares": -27686583355,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17392286084616,
+        "rshares": 67813427095,
+        "voter": "steemingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10577753089,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 105686790784,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20289804803,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 3712824047,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4101011103,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3139609543,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6375375055,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34258639375,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 241033184,
+        "voter": "bobkillaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24889176482,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 59944812577,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1051674259,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 203840552,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3372986749,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 28516886112,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2351934852,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 693127524498,
+        "rshares": 400787055,
+        "voter": "alexoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 217720229,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 399143272,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1389592215517,
+        "rshares": 1022676513,
+        "voter": "doctorstrange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 7296928755,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 126340015293,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25700558035,
+        "rshares": 221136232,
+        "voter": "christianus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7154602608,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900427911,
+        "rshares": 159606601,
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2247825333,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 1243378929,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 117448996,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1457906767,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 515521560,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8075937566,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7161404359,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 8922101865,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182174607,
+        "rshares": 311209174,
+        "voter": "olinzodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 2905350738,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 1440899131,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19873459203,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 11187497242,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16950633154,
+        "rshares": 20473976548,
+        "voter": "mynewsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 113744498,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1845821936,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1861971243,
+        "rshares": 277035330,
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 116382038,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 952411138142,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 1917931749,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 29969784949,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108513184232,
+        "rshares": 11862567099,
+        "voter": "ben.zimmerman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 543880122,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 7480302114,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75982255,
+        "rshares": 117140238,
+        "voter": "imranj131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207505405339,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4248413722,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19671891232,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "5000",
+        "reputation": 17698439393799,
+        "rshares": 4684149428,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2723901267,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 101853977,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 22280053546,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 59001531699,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212959420968,
+        "rshares": 9835135927,
+        "voter": "michiel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1842501592,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "5200",
+        "reputation": -4779249072914,
+        "rshares": 109235699,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 790579875,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 107999610,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 529204846983,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14987080932,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 9418973398,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 1945461176,
+        "voter": "rich77"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5776723480371,
+        "rshares": 124565361341,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 28234870957,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7342551506,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 35269708731,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2265593960,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 20031243976,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361409840466,
+        "rshares": 147294795,
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164191748705,
+        "rshares": 472564619,
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 67795706,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1769025564652,
+        "rshares": 237824290,
+        "voter": "boddhisattva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 132361142,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4456674910,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1457362078,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 247825627,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 615648097,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 15617788283,
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19595764461,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 6154739255,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 7107866443,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36905135907,
+        "rshares": 12448294080,
+        "voter": "nomorealex"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "5000",
+        "reputation": 730408370151,
+        "rshares": 286810351,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 436647390,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9080373233,
+        "rshares": 63745502,
+        "voter": "mchavarriaot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26311363874,
+        "rshares": 66981954,
+        "voter": "mustool"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 472834678103,
+        "rshares": -202416440,
+        "voter": "orca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286385675205,
+        "rshares": 72553516,
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 60333839,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9546158059,
+        "rshares": 63014671,
+        "voter": "buriga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 17383762786,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840329,
+        "rshares": 58371530,
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 589642163,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 198684348,
+        "rshares": 60661081,
+        "voter": "goblu96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 102334329,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18320721614,
+        "rshares": 59255025,
+        "voter": "kulsumabdullah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1495753339,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 391266485,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1677548311,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 56305110,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 1316826358,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 18146080250,
+        "rshares": -58862795,
+        "voter": "icecreamyolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 58479392,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 127893255,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 425267052246,
+        "rshares": 59380363,
+        "voter": "ultimus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44679463800,
+        "rshares": 5010680488,
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 56949666,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 53199754,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 23874395477,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 21754425352,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 67029397,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 20605152042,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58525745813,
+        "rshares": 61250665,
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 3839771700,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -81696430360,
+        "rshares": 70063032,
+        "voter": "henriquez147"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2170430303,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 57828186,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3485898605376,
+        "rshares": 54247403,
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 14666786719,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 56072882,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6382951558,
+        "rshares": 58993287,
+        "voter": "jurisnaturalist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16736751875,
+        "rshares": 57600707,
+        "voter": "johnnyhurley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 57283554,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57475981,
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1987750394564,
+        "rshares": 55936524,
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1724170777,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 56411164,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77327834214,
+        "rshares": 75384980,
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 13128724991,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 59161485,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 51199159,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 74181133,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 30836759859,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199082444376,
+        "rshares": 57781525,
+        "voter": "internets"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 3418202722938,
+        "rshares": -115119261,
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45439132822,
+        "rshares": 58690675,
+        "voter": "malxdrakon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55377253,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23832539793,
+        "rshares": 57959938,
+        "voter": "cwalton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 3482038774,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 970961663,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628485,
+        "rshares": 53063689,
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 2307183228,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5660084164,
+        "rshares": 57408242,
+        "voter": "korpzhe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11781966738,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 56314596,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 29236860420,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 1802591050,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 58576423,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 466867123,
+        "rshares": 56082403,
+        "voter": "nbragg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 57315683,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 2291259750,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147278450750,
+        "rshares": 128276846,
+        "voter": "steemvideos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 381164023,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3970810,
+        "rshares": 55678770,
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 54536747,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54536584,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53392204,
+        "voter": "etheom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1734139,
+        "rshares": 55542518,
+        "voter": "eleven1101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1840903324,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1041203488,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37330767510,
+        "rshares": 55406163,
+        "voter": "snowcrash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80747623295,
+        "rshares": 29198186277,
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 54489230,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 15735961596,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 51543183,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 55397045,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737630,
+        "rshares": 53952590,
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 55047915,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 53925231,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 176454678,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 55155287,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 1484135397,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55386319,
+        "voter": "zinnia"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 73607213,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 1032656866,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289857340733,
+        "rshares": 76886011,
+        "voter": "gabosh"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 321473400567,
+        "rshares": -55252777,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51699969,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -195878223866,
+        "rshares": 103734794,
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 52649549,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 51301791,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 783025089624,
+        "rshares": 91301058,
+        "voter": "chengmin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86169436,
+        "rshares": 53559999,
+        "voter": "car2nistrob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 53428542,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849664,
+        "rshares": 54378547,
+        "voter": "uncrazimatic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9796683054,
+        "rshares": 56149767,
+        "voter": "arshakuny"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 52041445,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 53092299,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5156839136,
+        "rshares": 52325653,
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52986484,
+        "voter": "assmuffin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 50855607,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74558454,
+        "rshares": 51817146,
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 50755661,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450852216,
+        "rshares": 51789479,
+        "voter": "kitperez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51695102,
+        "voter": "unknown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4878508275,
+        "rshares": 50617360,
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3458035642,
+        "rshares": 52688025,
+        "voter": "joktan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 50579916,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51600241,
+        "voter": "cucumber1234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52598023,
+        "voter": "gaetano.caimano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11309508,
+        "rshares": 51521614,
+        "voter": "thecryptonews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82295009498,
+        "rshares": 53620159,
+        "voter": "g33kspeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35362050236,
+        "rshares": 53598929,
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2793047656,
+        "rshares": 52545515,
+        "voter": "friendster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1849883331,
+        "voter": "exlead"
+      }
+    ],
+    "author": "mrosenquist",
+    "author_reputation": 9332405310628,
+    "beneficiaries": [],
+    "body": "https://i.imgsafe.org/65d564e943.jpg\nHello all Steemers and Steemitans.  My name is Matthew Rosenquist and I am a cybersecurity strategist, father, and pragmatist.\n\nA few weeks ago I heard about Steemit.  I have always been a fan of cryptocurrency and I blog quite a bit for my industry, so I am here to check it out.  I enjoy posting about cybersecurity and commenting on a wide variety of topics, so I hope this is a good fit.\n\nMy professional passion is cybersecurity.  I work for a large technology company and have been a thought-leader in security for about 25 years.  I have held many roles and covered a lot of ground.  I look at the technology industry to understand the weaknesses and how attackers are undermining trust and causing impacts, the role of governments, and the defensive postures organizations are taking to protect themselves.  Every day I learn something new and work to apply and share it.  \n\nI am very active in the industry and on social media.  I speak at international conferences, consult with industry partners, academia, and governments.  I am an active member on a number of industry advisory boards, and have published acclaimed white papers, blogs, and videos on a wide range of information security topics.  I am most active on LinkedIn and bring with me 50 thousand followers.  \n\n**Speaking at the Cyberstrat2014 conference in Helsinki Finland.**\nhttps://youtu.be/qLFyEL3hKvA \n\n**Speaking at the CTO Forum in 2015 on how the technology industry must change to be more secure**\nhttps://youtu.be/AWyx4zMVweE\n\n\nI call California my home but have traveled the globe.  Shanghai, Taipei, Munich, Copenhagen, London, Cairo, Rome, Paris, Jerusalem, Helsinki, Ottawa, San Jose, San Juan, Stockholm, Gdansk, and many other places in-between.  I have had the good fortune to meet incredible people from all walks of life, taste delicacies, and experience a wide range of cultures.  We live on an incredible planet and are a truly mesmerizing species.   \nhttps://i.imgsafe.org/65e2bbdc18.jpg\nhttps://i.imgsafe.org/65e3902960.jpg\nhttps://i.imgsafe.org/65e5cd3e2a.jpg\nhttps://i.imgsafe.org/65e947737c.jpg\nhttps://i.imgsafe.org/65ea8e23e9.jpg\nhttps://i.imgsafe.org/65eb76329e.jpg\n\nWhat I will bring to Steemit:  I hope to add my voice to the community, providing information about cyber threats and the industry, participating in discussions and debates, and having a great time in the process.\nhttps://i.imgsafe.org/65e49b1511.jpg\n\nSo far, I have found Steemit to be such a wonderful community.  Too bad it still feels like it is a secret.  \u2026We really need to change that.  \n\nI have already made a few blogs on Steemit, but everyone is welcome to ask questions.  I will do my best to answer.  \n\n### Here are a few of my posts\u2026 ###\n- [7 Methods to Fight Back Against Ransomware](https://steemit.com/security/@mrosenquist/7-methods-to-fight-back-against-ransomware)\n- [Ransomware Help is Here](https://steemit.com/security/@mrosenquist/ransomware-help-is-here)\n- [Security Posts of the Week \u2013 900 Million Android Phones Vulnerable and Black Hat Hacking Highlights](https://steemit.com/security/@mrosenquist/security-posts-of-the-week-900-million-android-phones-vunlerable-and-black-hat-hacking-highlights)\n- [Security Pro Turns the Tables on Scammer Who Gets Infected with Ransomware](https://steemit.com/security/@mrosenquist/security-pro-turns-the-tables-on-scammer-who-gets-infected-with-ransomware)\n- [$3.5 Million Reward for Information Leading to the Recovery of Binfinex Bitcoin Theft](https://steemit.com/cryptocurrency/@mrosenquist/usd3-5-million-reward-for-information-leading-to-the-recovery-of-binfinex-bitcoin-theft)\n\n\n### You can follow or connect with me on a number of different sites and platforms: ###\n**LinkedIn:**  https://www.linkedin.com/today/author/matthewrosenquist\n**Twitter:** [@Matt_Rosenquist](https://twitter.com/Matt_Rosenquist)\n**Evangelist Blog:** http://evangelists.intel.com/bio/Matthew_Rosenquist\n**Information Strategy Blog:** http://infosecstrategy.blogspot.com/",
+    "body_length": 4023,
+    "cashout_time": "2016-08-26T01:41:57",
+    "category": "introduceyourself",
+    "children": 72,
+    "created": "2016-08-19T01:41:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduceyourself\",\"security\",\"life\",\"crypto-news\",\"introduction\"],\"links\":[\"https://youtu.be/qLFyEL3hKvA\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T01:41:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 173500027632557,
+    "parent_author": "",
+    "parent_permlink": "introduceyourself",
+    "pending_payout_value": "3929.401 HBD",
+    "percent_hbd": 10000,
+    "permlink": "matthew-rosenquist-cybersecuirty-strategist-is-on-steemit",
+    "post_id": 881557,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Matthew Rosenquist, Cybersecuirty Strategist is on Steemit!",
+    "title": "Matthew Rosenquist, Cybersecuirty Strategist is on Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduceyourself/@mrosenquist/matthew-rosenquist-cybersecuirty-strategist-is-on-steemit"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_results.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_tag.tavern.yaml
similarity index 77%
rename from hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_results.tavern.yaml
rename to hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_tag.tavern.yaml
index cfea3cf6a9a05876a5d47ad93102c1ca9cda992f..22869a9b630fb72ce21ea99d6c16ded8e73293eb 100644
--- a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_results.tavern.yaml
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/no_tag.tavern.yaml
@@ -1,14 +1,16 @@
 ---
-  test_name: Hivemind condenser_api.get_post_discussions_by_payout no results test
+  test_name: Hivemind condenser_api.get_post_discussions_by_payout patterns test
 
   marks:
     - patterntest
+    - failing
+    - xfail # extra votes are likely caused by problems with muting
 
   includes:
     - !include ../../common.yaml
 
   stages:
-    - name: get_post_discussions_by_payout no results
+    - name: get_post_discussions_by_payout
       request:
         url: "{service.proto:s}://{service.server:s}:{service.port}/"
         method: POST
@@ -18,11 +20,11 @@
           jsonrpc: "2.0"
           id: 1
           method: "condenser_api.get_post_discussions_by_payout"
-          params: {"tag":"non_existing_tag","limit":20}
+          params: {}
       response:
         status_code: 200
         verify_response_with:
           function: validate_response:compare_response_with_pattern
           extra_kwargs:
-            method: "no_results"
+            method: "no_tag"
             directory: "condenser_api_patterns/get_post_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/paginated.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/paginated.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..d12571f10a028cbc981d99cbce067326332d5085
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/paginated.orig.json
@@ -0,0 +1,7080 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38451193659",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17385412095137",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7688659622029",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29652173029568",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28854853175",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39486167539961",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36385063290586",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2049642827168",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73272768589",
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "346085143111",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17422262223173",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6946368014897",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8832433017411",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3246757738413",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384932387105",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6720670302195",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115693124003",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1944790367140",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4895804718369",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33307827345",
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "954858040877",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "803566613810",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320669746586",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3085197652",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1975747200682",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3744410921",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "708979370",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3372697687234",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1438694033657",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52275677031",
+        "voter": "bue"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1281552306",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1653869296",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213274356",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32550511782",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5309145361747",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1129010306514",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304829401415",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70877943888",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "716694338266",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252087376835",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10210285256",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613532784",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "893835290",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2672477130289",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398157135647",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17069621824",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44104332762",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94216559894",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287509506",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8864087428",
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26315706357",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "14800880014",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89038138941",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26838106632",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10271411415",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116313551950",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91924984138",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16989625299",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142021953735",
+        "voter": "nkdk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2907626165",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58847956204",
+        "voter": "lovelace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3989110433",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67269861861",
+        "voter": "idealist"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "15263430960",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29123911687",
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473678777",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94838484142",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45574888424",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2177251712",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337331566741",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "20041361318",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3342907840",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2164745847",
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73767981753",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98635020280",
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58992402649",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4702449999",
+        "voter": "xav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54214633364",
+        "voter": "tosch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1450853172",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339984285",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29017585900",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47246284590",
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580523246157",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315960216",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18522213380",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218111827316",
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222779231297",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11474193919",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64330796457",
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1613095208",
+        "voter": "arskiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26145560412",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95985729250",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231561594",
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7935608077",
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "504962385",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412671917575",
+        "voter": "the-alien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290189917167",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55062940846",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18924572691",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61260862795",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8398468481",
+        "voter": "somedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "971544329",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107568962014",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119386171",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19854078940",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435396351969",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80388659823",
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47317933373",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1445317942",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4225748527",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13377007401",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80341870005",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713614971",
+        "voter": "menace.coin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1551377063",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118983805142",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20674508047",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44252149522",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216869687795",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636117083",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25241493318",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10527048441",
+        "voter": "vladon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386335737081",
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3474673641",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50184326192",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4733608063",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1691789720",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5756639361",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35716570141",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6829924943",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "565346205",
+        "voter": "nadejde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250811301",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13311207958",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4014763201",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090541230",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127433544240",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3116292841",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165872891302",
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266349543845",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18675405646",
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746630589",
+        "voter": "stalnionis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098337565",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3804121527",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3704365763",
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253533017",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146610995479",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6985662723",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1048586169",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17680389230",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21098879051",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5172309447",
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245031826",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2638289178",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25550006177",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6020292061",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12808729996",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4015098030",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20017085495",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133969627073",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56214004774",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5072625846",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29530036864",
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49579926408",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4227326061",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470865866",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25692821957",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273706533",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415946152",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38500990109",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16470022526",
+        "voter": "jazzka"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "31369317052",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10574593346",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "363404265",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "406327478",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "372534009",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246089730",
+        "voter": "alex2649tw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13093257174",
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4158546853",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836023833",
+        "voter": "alkemix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3146121037",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188957990",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536550051",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427173743",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41263112632",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240342989",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244459106",
+        "voter": "sairji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "532244432",
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1026390089",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252407179",
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239429308",
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17625843355",
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "54345146257",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18394247275",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3783115811",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40651190846",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78889019157",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1546897172",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19068212733",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348108726622",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11395824102",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3059156583",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3077393881",
+        "voter": "kaneen74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23376052723",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53925388822",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241764375",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12628644739",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179196273146",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10360143599",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2348727450",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2556620116",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8453400920",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3684539967",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487886612",
+        "voter": "charles-d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26196706184",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25830549400",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406335361",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6734695477",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14373754719",
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258070573",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4795024069",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84104965081",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7615150102",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2670183399",
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7858101339",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116919592",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9511446677",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398571760",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011214030",
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24615216974",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7161298409",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "734402373",
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485646625",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5034293849",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "972760038",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116450799",
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1971723463",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290205209",
+        "voter": "sagar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19038668222",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116065815",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1928511507",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111726756",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118283572",
+        "voter": "theleximus1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148183514305",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115837887",
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "12293168978",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143874373",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32878858013",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115682991",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44705463796",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115387959",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23187314517",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211677715438",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1444157412",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4538359177",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123258754",
+        "voter": "streem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "776294423",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2440982239",
+        "voter": "marriedbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226734950",
+        "voter": "aleksandra28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6009180650",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13073623412",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2405047992",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230402080",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2070076420",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7116967446",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "383206253",
+        "voter": "fnait"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "375933865",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32514332248",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405419067",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20990784022",
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111995622",
+        "voter": "dushyant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5652176856",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5116087046",
+        "voter": "saulius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57817214351",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "509338382",
+        "voter": "kaykunoichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1733966276",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23834093727",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2480041506",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4757360328",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72289125531",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10212393410",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112450703",
+        "voter": "arslan7544"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "786742077",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6402218596",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1230387590",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2033912739",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62220152",
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64056721",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14386644371",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10892926265",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8300226776",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12986522188",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8093308679",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4871794356",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2074751088",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2593793851",
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1653680090",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25867914835",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63671033",
+        "voter": "play"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64906381",
+        "voter": "crowdfundvibe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2369229878",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1431883444",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64649163",
+        "voter": "holwylb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63300522",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63242540",
+        "voter": "impigrum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382253852",
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64298241",
+        "voter": "crisstaken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62743518",
+        "voter": "donnablacktail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5534757981",
+        "voter": "tannukas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7418993028",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89782930",
+        "voter": "jefflee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21005913988",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200157889",
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62268668",
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172287577",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57105514",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63362435",
+        "voter": "oluwen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62368657",
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7853197446",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631288233",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4831441172",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62006301",
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61704615",
+        "voter": "gatorjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169623708",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61598061",
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19617748220",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174221367",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2685807725",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69558111",
+        "voter": "sarita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62069093",
+        "voter": "giannicapasso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149453758",
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110871569",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3954589158",
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89034260",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2048624792",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54300455",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60903916",
+        "voter": "thoth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31647211554",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60467503",
+        "voter": "leraakulenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577231315",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459420482396",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995507831",
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26642706254",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5047027984",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69850863",
+        "voter": "bitfish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60676805",
+        "voter": "elmariac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379898572",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60651985",
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60521896",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196915807",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2813505777",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "835908919",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79642959",
+        "voter": "steemcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439090381",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89368060",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199289634",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122271574",
+        "voter": "truthmomma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "576074830",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56384147",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59183580",
+        "voter": "vegeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439994",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58479392",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58423044",
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62574066",
+        "voter": "ktbaeohana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61805391",
+        "voter": "cehuneke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7644756825",
+        "voter": "garywilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59236965",
+        "voter": "dauwken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "858943654",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1592329786",
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3936001425",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56695901",
+        "voter": "gosteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33542477932",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300847113",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69441445",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9951404773",
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22543917173",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71103152",
+        "voter": "dasfarm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205069063",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2763355474",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53804048",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57570619",
+        "voter": "tsbloyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57875249",
+        "voter": "andyseo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64184750",
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58787702",
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200332810318",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56332233",
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57886832",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58914198",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64745673",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "893390250",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57583148",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55320371",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62202585",
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2909500506",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62361130",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183777633",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453468817",
+        "voter": "djdmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56930391",
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74072122",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153933584",
+        "voter": "groovedigital"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61826880",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59464308",
+        "voter": "lukie257"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2412812207",
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38710389758",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60206256",
+        "voter": "rainmnz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55403417",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98950105",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365799797",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4387236391",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57549632",
+        "voter": "felixblanco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281743750",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59105066",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232544963",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69012539",
+        "voter": "decentro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111221218",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2147020967",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58094402",
+        "voter": "lapants"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377617397",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54842347",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1467546651",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57747508",
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50084618",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55628200",
+        "voter": "tocos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56911596",
+        "voter": "courtneybelyea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54500387",
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3603226178",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56611081",
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "913919467",
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1915680741",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1017211703",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890717617",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56447574",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282363031",
+        "voter": "russianark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56364556",
+        "voter": "pumpndumptrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9444303420",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55390353",
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277212432",
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187358259",
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55053663",
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51749039",
+        "voter": "gsdalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51745040",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53925231",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53893867",
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55560454",
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54898534",
+        "voter": "roadie73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54861931",
+        "voter": "dirtyjr101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55937830",
+        "voter": "luigimendi89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55919448",
+        "voter": "minisupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131370012",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54767752",
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77889825",
+        "voter": "powercouple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55786422",
+        "voter": "mathewrush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155287",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55675902",
+        "voter": "kenyan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62901999",
+        "voter": "avemend"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55524391",
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54468075",
+        "voter": "prestonslove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433189",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51170419",
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55407469",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54258724",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53122101",
+        "voter": "jimwhipple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55143258",
+        "voter": "jessicalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63417242",
+        "voter": "haizuru-ishida"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55018737",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75687607",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54996833",
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93233347",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335457095",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53758453",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53731875",
+        "voter": "protrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54806372",
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52638225",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53689387",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51488252",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53603360",
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53594242",
+        "voter": "otis13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53589726",
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50351227",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51363851",
+        "voter": "rafej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50207083",
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53408323",
+        "voter": "adpt2apocalypse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54464024",
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53381371",
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53362659",
+        "voter": "promaxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53360048",
+        "voter": "arkana"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-51218846",
+        "voter": "cooldemos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53333238",
+        "voter": "donzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51191809",
+        "voter": "ladyboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53324358",
+        "voter": "pampers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53298526",
+        "voter": "tweek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53278513",
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54340900",
+        "voter": "cristine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53264688",
+        "voter": "mallamahesh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54254783",
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53180419",
+        "voter": "alexanderem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53168377",
+        "voter": "kelsee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52104910",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50983830",
+        "voter": "amdj30"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>[![thumb_96.jpg](https://s19.postimg.org/cc8s49gnn/thumb_96.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nThe @steemdrive billboard campaign continues its world dominance of grand outdoor advertising for the promotion of Steemit, the blockchain based social media platform. Electronic billboards are already playing 15 second advertising loops in the _\u201cground zero\u201d_ city of Durban, South Africa as reported in [our last proof of flight post](https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa). Furthermore, the 20M x 5M print billboard is currently in production, with official updates to follow.\n\nAs promised, we will be engulfing all countries around the world with Steemit billboards for as long as we have the fantastic support of the Steemit community behind the @steemdrive campaign. \n\nThe next target location is Auckland, New Zealand; hometown of fellow Steemian, and @steemdrive liaison, Shayne Shiells; who an active member of the community and deserving of maximum support for his campaign, take it away Shayne\u2026      \n\n<center>[![intro.jpg](https://s19.postimg.org/vu80xy2z7/intro.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nHi fellow Steemians, most of you know me as @cryptoiskey, I recently joined Steemit on the 4th of July 2016, which already seems like a lifetime ago. \n\nI have a background in 3D Animation and Design and have been developing for a virtual world since 2007. \n\nWhen I believe in something I like to invest myself 100% with no exceptions and I believe heavily in Steemit and the direction it is moving. \n\nIn order to ensure Steemit's success, I believe _**we all need to do our part to bring Steemit to the world in whatever way we can**_. I have started promoting Steemit on the beaches of California which you can view [here](https://steemit.com/steemit/@cryptoiskey/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag). \n\nVenice beach was a great success and I will continue promoting Steemit on the California coast when I can, but for now I am excited to introduce the power of Steemit to my home country of New Zealand. \n\nI was born in Auckland and know the city very well. It is the perfect fit to start a Steemit billboard campaign and hope you will support this endeavor. The city of Auckland in New Zealand is a prime location for billboard displays,  let me explain why.\n\n<center>[![auckland.jpg](https://s19.postimg.org/fx4nnhl77/auckland.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nAuckland is the transportation central for the entire country. There are 1.4 million residents, not including the extended Auckland regions. Auckland holds 33% of the total New Zealand population.\n\nAuckland's cosmopolitan dominance in New Zealand is very visible with 40% of the population being born overseas.\n\nHaving a large mix of ethnic groups in one area means many of their family members are still overseas, this will intensify the exposure to other countries, by utilizing a faster chain effect. People are always excited spreading the Steemit word, which I am sure is a valid advantage.\n\nNew Zealand also attracts tourists from all over the globe, with 3 million international visitors landed in Auckland In 2015. Many of these international travelers are from a younger generation seeking high-octane adventures and publishing their experiences via social media. Steemit blogging is a perfect fit and a billboard in the right location can take advantage of this demographic.\n<b></b>\n### Below are the available Billboard locations.\n\n<center>[![bill-loc.jpg](https://s19.postimg.org/klp8wezrn/bill_loc.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nYou will notice the 2 black arrows. These are 2 locations I think can take advantage of Aucklanders and International visitors.\n\n### Billboard 1 - Nelson St.\n\nThis first billboard is located on Nelson St. in city central and is perfect for the visitor demographic as well as Aucklanders. What I like about this billboard is its position in relation to the stop lights. It really stands out between the 2 buildings. It will also take advantage of the \"stop time\".\n\n<center>[![a112-original.jpg](https://s19.postimg.org/j7xm140ib/a112_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a112-steemit-added.jpg](https://s19.postimg.org/m4kn1e6c3/a112_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Nelson St. proposed artwork concept</center>\n\n+ Size 6M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,676,161\n\n### Billboard 2 - Great South Road, Penrose.\n\nThis billboard takes advantage of dual traffic flows. One of the traffic flows contains 3 lanes of busy traffic. The viewing time is extended because of the sheer volume of stop lights. The billboard is heavily illuminated at night as to peek interest 24 hours a day.\n\n<center>[![a215-original.jpg](https://s19.postimg.org/vewr4xh1v/a215_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a215-steemit-added.jpg](https://s19.postimg.org/todq3fzir/a215_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Great South Road, proposed artwork concept</center>\n\n+ Size 12M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,119,333\n\nAll of the billboards locations in Auckland have great statistics and a rotation campaign would definitely work well.\n\n### The main reasons I like the two aforementioned billboards are:\n\n1. The locations take full advantage of stop lights which I believe is a key factor for driver awareness.\n2. The statistics are very high in both locations.\n3. They both are visible at night time giving them 24 hour exposure.\n\nAuckland is a great starting point to gather some statistics and see how the New Zealand market responds to the Steemit billboards. New Zealand is very touristic and if placed correctly it is possible to take advantage of certain cities at specific times of the year (The seasonal charge of tourists). Tourists = Global.\n\nThe @steemdrive team thanks you for your support thus far and hope you will support us once again, bringing Steem powered billboards to New Zealand. \n<center>[![auckland.jpg](https://s19.postimg.org/w9jaqyowj/backpackers.jpg)](http://www.steemit.com/@steemdrive)</center>\n<center>Remember to `VOTE`, `SHARE` and `FOLLOW`.</center>\n<hr>\n\n<hr>\n\n**Terms and Conditions:**\nSteem Dollar payout funds raised from this Steemit post shall be primarily allocated to the New Zealand billboard campaign, and/or any other billboard site or @steemdrive public project where funds may be required in accordance with the general campaign terms and conditions.\n\nNed Scott of Steemit, Inc. approved the use of the domain steemit.life on artwork, which will point to a referral link for campaign tracking, otherwise not possible if steemit.com was advertised.\n\n**Previous Campaign Links:**\nhttps://steemit.com/money/@steemdrive/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\n\nhttps://steemit.com/steemdrive/@steemdrive/steemdrive-the-last-mile-for-27k-billboard-campaign-and-vote-of-thanks\n\nhttps://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts. _(Ricardo Goncalves' @steemdrive interview with Beyondbitcoin Hangouts, FFWD to around 30 minutes)_\n\nhttps://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa",
+    "body_length": 7564,
+    "cashout_time": "2016-09-16T23:58:57",
+    "category": "steemit",
+    "children": 131,
+    "created": "2016-08-16T17:08:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"life\",\"crypto-news\"],\"users\":[\"steemdrive\",\"cryptoiskey\"],\"image\":[\"https:\\/\\/s19.postimg.org\\/cc8s49gnn\\/thumb_96.jpg\",\"https:\\/\\/s19.postimg.org\\/vu80xy2z7\\/intro.jpg\",\"https:\\/\\/s19.postimg.org\\/fx4nnhl77\\/auckland.jpg\",\"https:\\/\\/s19.postimg.org\\/klp8wezrn\\/bill_loc.jpg\",\"https:\\/\\/s19.postimg.org\\/j7xm140ib\\/a112_original.jpg\",\"https:\\/\\/s19.postimg.org\\/m4kn1e6c3\\/a112_steemit_added.jpg\",\"https:\\/\\/s19.postimg.org\\/vewr4xh1v\\/a215_original.jpg\",\"https:\\/\\/s19.postimg.org\\/todq3fzir\\/a215_steemit_added.jpg\",\"https:\\/\\/s19.postimg.org\\/w9jaqyowj\\/backpackers.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@steemdrive\\/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa\",\"https:\\/\\/steemit.com\\/steemit\\/@cryptoiskey\\/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag\",\"https:\\/\\/steemit.com\\/money\\/@steemdrive\\/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T17:08:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 213555656400500,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6946.258 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails",
+    "post_id": 629250,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28560646020990",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7482556785929",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28500529484938",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28861497571",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26281954419455",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36311210447453",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7166026055876",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1952023119009",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223622830143",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3219053436696",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223711383698",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1891888493603",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385490772199",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6660806624932",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644872704857",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21056224196689",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109811462347",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5592889929391",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1331500596037",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2971712347474",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "788439749051",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4741928221840",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042789136478",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320910536892",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298439892868",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150974882552",
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3094958749",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1978763283401",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188726834829",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3756869472",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696667695",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6205822781772",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53368139638",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "447105757472",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658807994",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213558827",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57377779906",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11582933910",
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16454870033",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354810038737",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2610613139094",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4920502200246",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1298767962589",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77826446010",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1103353876382",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19375061925",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622137125",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "952752774",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133823792161",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57735896918",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "271580911771",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24457406223",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117775730214",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287967645",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23360528643",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156331317403",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30028887416",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846567310",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122932345282",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419153264932",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146329460364",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92134911246",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "491429125793",
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12171946152",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8205257677",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7376079047",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "496464544971",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488113402",
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2536344757",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83563754477",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494066880",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483152352",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27107941615",
+        "voter": "thedarkestplum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5279958080",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5794429408",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24807749053",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632575314",
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33981858008",
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2138917267",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333258124752",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1822716613",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709269164837",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469151600",
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238835403910",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037066661",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3278084856",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4513554139",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2575954627",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93497060455",
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12821562761",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60231338472",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "430142790",
+        "voter": "andygreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12917304110",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54934580320",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2164103772",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19197407164",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "916363925",
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88219347090",
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1808575623",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23606790995",
+        "voter": "adiron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25390353862",
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356811839971",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941862703",
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46830338583",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389678169642",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210288745",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18893760500",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238913090540",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12534214352",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36600014121",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4228175909",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184861284858",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10426284702",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "1300",
+        "reputation": 0,
+        "rshares": "535085293398",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380442035664",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393705031",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33023351643",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8965344275",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386047698",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237713566789",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40404123620",
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232978192774",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53477284457",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "11145820184",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-44817963557",
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73473919997",
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6346333852",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252446375719",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "449382000083",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48315528635",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4142890713",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398746305",
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23208949584",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137985366901",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878968825",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1978185015",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29070319535",
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "888899843",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184432921500",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312416918",
+        "voter": "karen-butler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5819225195",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9526338532",
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686498651829",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88591858942",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43941298443",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42303411287",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31652499116",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8809731014",
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2491601864",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1053452529",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17686586033",
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6850246528",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666311365",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330833785",
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199195319",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257330035",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179431212147",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10331014347",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281936472",
+        "voter": "levent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158350575079",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327066986883",
+        "voter": "heiditravels"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71797696542",
+        "voter": "lauralemons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268820184",
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4623260663",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12983117279",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3668746861",
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12524021131",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255780948",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17222069029",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263450012",
+        "voter": "brockton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108706222887",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27333283527",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12849240363",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20214638094",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177047609596",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247567288",
+        "voter": "avantyris785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25082666401",
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1271451816",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622499323834",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23836049644",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260812970",
+        "voter": "timotron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324623687",
+        "voter": "linkku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6834453208",
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117089682",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1517090750",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8556925261",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50711088707",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6187628336",
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "296259416092",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "6380319546",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10583703247",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105707948711",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "66692894",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61722414",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67628664",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138275474797",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2034990010",
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5464993770",
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75123114815",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20792709556",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132713955488",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42524854450",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233332478",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7724431416",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40456948638",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47586138538",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4916037950",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4541919146",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18546431924",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4114526773",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2779591474",
+        "voter": "dogguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41465366167",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34271202700",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89898065783",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2066815364",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111493899868",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3950290272",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2703937851",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52788198003",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5871791528",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72880524614",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1926255301",
+        "voter": "pictorians"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10389851075",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11804275143",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1002116424",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435049318",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95226627916",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2194815720",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128898123725",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "711889903",
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15670441941",
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35579793979",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500190013",
+        "voter": "symbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55005576626",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239794058",
+        "voter": "bertrandlarsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5732294213",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3470465356",
+        "voter": "gkealy2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21789794318",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117805939",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75156404322",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373156105",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2654767174",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3486436311",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1479598990",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488668862",
+        "voter": "dogesteam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1666826621",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239427456",
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10380243347",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2468349025",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19985593184",
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207309669205",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131930031",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17915463078",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14491972528",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3614719442",
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55202612813",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119216508",
+        "voter": "fhc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8238510887",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196897399",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7167153309",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3311854486",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6939038250",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116664172",
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159387199",
+        "voter": "xondra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "882957752",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69117647542",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139166640",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4230519365",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5146311248",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29396971145",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12751039508",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58982208172",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1193934954",
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4290470633",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22490762180",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1847751264",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1477067328",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111726756",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180857883770",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371626273",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115874018",
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1035551247781",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118154645",
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1834631674",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2042770630",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36376826540",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4829965030",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128989941",
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54497070629",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117485406",
+        "voter": "rizkypramudyacj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4752851001",
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117256810",
+        "voter": "satoshi-pie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117386180",
+        "voter": "coinmaster4you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "383990423",
+        "voter": "ladypenelope1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1441891046",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3848926356",
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500209723",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48416597910",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194720511",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560201253",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4745090234",
+        "voter": "bakingengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305479433",
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773013655",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21354066670",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1371841629",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22357507116",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36689320416",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16714610807",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231783321",
+        "voter": "mancoba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "721544015",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6108537397",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20900104387",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16686827613",
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9367718298",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291479339",
+        "voter": "nickjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3298056386",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114503443",
+        "voter": "pavelwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11332592813",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129041365",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4015856691",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18023925988",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7728159790",
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5611522689",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134661057",
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3494211723",
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60191451364",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "915590461",
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35115130291",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4452605468",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "817190717",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8269753940",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1283492958",
+        "voter": "littlekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5617594846",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56527569",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32857206160",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16805040088",
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "904824367",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56215794",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23813778042",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4980258900",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25980126700",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1448457001",
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2593878902",
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122387390",
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24953376046",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3097487092",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "555412571",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9331242455",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39987681467",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2299239749",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266655599",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2710167448",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3331328741",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63993548",
+        "voter": "mdrollette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9547109560",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71226045",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52804255512",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10678437690",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63775516",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54508506063",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2291086633",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63594681",
+        "voter": "accripteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63054380",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941159098",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "851124018",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62650809",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56647554",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54641038",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63616030",
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265460209",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1185094354",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62928860",
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54217761",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3842203000",
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1622895683",
+        "voter": "bebecitosfotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54077897",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1271830358",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16134755266",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58277489",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28124094739",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2256397676",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4573566381",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60856079",
+        "voter": "lordgothmog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80383749",
+        "voter": "oldas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62735564",
+        "voter": "gamingdiamond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41491353618",
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54896152",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60994192",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1620631385",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11132558343",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38874009222",
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54313084",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61506849",
+        "voter": "virusmedia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60288627",
+        "voter": "atrickpay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531133173",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20099956352",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "565686689",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163702640",
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113571840",
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118544994",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4249171547",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1183575116",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160968192",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58148489",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113457626",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2275142374",
+        "voter": "zhenghao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60372902",
+        "voter": "sorenpeterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59153616",
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2021855541",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2459952535",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1910105759",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "769468612",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54220781",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039566",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54216305",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53034852",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54209199",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58782998",
+        "voter": "mgd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60143295",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369270285",
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939562492",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56305110",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4918684548",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52651308",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243293537",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58479392",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59591505",
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215635569",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2864397330",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "434038749",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1171610651",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24452621045",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59155266",
+        "voter": "byjk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154348848",
+        "voter": "johnster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3860921107",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23609188750",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58988588",
+        "voter": "jeandepatch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1065292847",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20247416717",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313754430",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7266496467",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31303265003",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57803967",
+        "voter": "jacobberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15253787265",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59390673",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390205958",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2724160806",
+        "voter": "kovaiensko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127117428940",
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2332908402",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68186803",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1466342803",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3118899280",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58768736",
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1350024143",
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59010539",
+        "voter": "jonnybh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1426439906",
+        "voter": "jms21y"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53935001",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69407495",
+        "voter": "voluntaryv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53853911",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58806042",
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66998944",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57126874",
+        "voter": "jamesart63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58246339",
+        "voter": "aletoledo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399407280",
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597148004",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4420043710",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63806640",
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58167598",
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86244910",
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2166664728",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59284524",
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1556727823",
+        "voter": "daniel82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8948882183",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59494031",
+        "voter": "kirby1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329605745",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "863227677",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2565438843",
+        "voter": "colinklein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57889196",
+        "voter": "braincramp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69187216",
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65995086",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57851525",
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56694448",
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57291321440",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17676446808",
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57683187",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71882929",
+        "voter": "jonimipidici"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5101854383",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4376868684",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4310439355",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291103732",
+        "voter": "trimtab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11731150067",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11938480285",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57445142",
+        "voter": "suz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961187",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64535087",
+        "voter": "billjoyce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6880894762",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64782545",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2187971989",
+        "voter": "epiphany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1788849014",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2626923465",
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59148765",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4153056043",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57055494",
+        "voter": "scottmacquarrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644113013",
+        "voter": "magickalmalia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622549",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1505318589",
+        "voter": "victoriart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53613607",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56883857",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388822791",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "458900119",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5752411757",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565305",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56748177",
+        "voter": "apisme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56723778",
+        "voter": "iamjen2692"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54362089",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1780564916",
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88085099",
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56042508",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5806504909",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17055789147",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55197242",
+        "voter": "rubellitefae"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1790814851",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56241383",
+        "voter": "flame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52915101",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55803830",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "657838048",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143941",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10416848697",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67679386",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170299530",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54999958",
+        "voter": "tommyboyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55841289",
+        "voter": "schooliskul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52545761",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172475666464",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6670382961",
+        "voter": "wwworld4us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55824224",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "798157427",
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380988979",
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2080731309",
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2055544209",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54523663",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52242652",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53318865",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25805152289",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2738998255",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3005632256",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171849",
+        "voter": "gateguy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52988378",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53110243",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106744904",
+        "voter": "gabosh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336266884",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124568714",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131693793",
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56243769",
+        "voter": "frankcorvus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54909082",
+        "voter": "simonpeter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53893947",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70796991",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85114506",
+        "voter": "deptawesomebeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275718770",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162033495767",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53602103",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59354601485",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56122994",
+        "voter": "ivanba12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1943114183",
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "514384460",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "448934323",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484970407",
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54171765",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55105511",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039974",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1101487626",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52943536",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52931611",
+        "voter": "steem4fobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53988734",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114358571",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56789009",
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753853",
+        "voter": "wildmanhowling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52807746",
+        "voter": "jeancarlos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53288811",
+        "voter": "mobilebestdeal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55160066",
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1920835613",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50462875",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416608994",
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10912705118",
+        "voter": "ksc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53779499",
+        "voter": "iampluto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51725998",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66687457",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1611149452",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54251507",
+        "voter": "privacyissues"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487124980",
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53580348",
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68605362",
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52873008",
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106825085",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59067883",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51706051",
+        "voter": "parisgraffiti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52874902",
+        "voter": "steeme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52533117",
+        "voter": "stardust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71059082",
+        "voter": "regeneration"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1152598967",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52601465",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52596228",
+        "voter": "harini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52594800",
+        "voter": "randomguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562286",
+        "voter": "pusio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50531169",
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470533",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51468937",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52415837",
+        "voter": "koek-10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52412604",
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52405628",
+        "voter": "vapecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416142579",
+        "voter": "clayboyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52159157",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52144339",
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51351904",
+        "voter": "funthing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51077428",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54103453",
+        "voter": "clips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52064045",
+        "voter": "coertli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50996649",
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50962513",
+        "voter": "greenrain225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51930368",
+        "voter": "iotaissham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51896264",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51587349",
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51981765",
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51799295",
+        "voter": "pegasus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50765381",
+        "voter": "raasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50759259",
+        "voter": "steven15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51767735",
+        "voter": "feedmycrash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50727124",
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50726329",
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51732076",
+        "voter": "petro.keay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51713637",
+        "voter": "amineminou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51711324",
+        "voter": "jimcropper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51706631",
+        "voter": "ayoubbakkali"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51703468",
+        "voter": "constclayton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51700456",
+        "voter": "nkhank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51699892",
+        "voter": "jcdobber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682081",
+        "voter": "janefluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51692910",
+        "voter": "alenapimenova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51689337",
+        "voter": "willi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50674199",
+        "voter": "mrabdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51663210",
+        "voter": "jesseanieto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51655833",
+        "voter": "aminemouleloued"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639011",
+        "voter": "adilking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51646760",
+        "voter": "likeaboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51636074",
+        "voter": "btcdude007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51635173",
+        "voter": "taoist-water"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51614826",
+        "voter": "playingwithfire"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-50595887",
+        "voter": "hotosaynmcti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51573486",
+        "voter": "sudo82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50529587",
+        "voter": "hafelaffe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51535237",
+        "voter": "pero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51495204",
+        "voter": "bryanplymale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50479785",
+        "voter": "patience"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50478780",
+        "voter": "artur154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51478830",
+        "voter": "kiryck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50368151",
+        "voter": "lucif3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50274929",
+        "voter": "antonindc"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50375830871208,
+    "beneficiaries": [],
+    "body": "[![IMG_0491.jpg](https://s15.postimg.org/xvlt4ug2j/IMG_0491.jpg)](https://postimg.org/image/6l0hwxd5j/)\n\nThere is no fool proof way to prepare for prison. \n\nOn March 30th I self surrendered to Lewisburg Federal Prison Camp after I was sentenced to two years for aiding and abetting an unlicensed money transmitting business, for which I am guilty. \n\nIn my case, the only things I could do to prepare myself for was the idea that for the foreseeable future I won\u2019t be around. But I was optomistic because the only way to get through it, is to fully embrace it and take it head on. Which is what I did. \n\nOn March 5th 2015, about 30 days before my self surrender, I wrote this on my blog: \n> I\u2019ve been dreading writing this blog post, and since I\u2019ve written it, it\u2019s been sitting as draft for a few weeks. Never the less, it\u2019s time I get on with it.  On March 30th, I\u2019ll be self surrendering to Lewisburg Federal Prison Camp in Pennsylvania. It\u2019s been a long hard fight, from getting arrested at JFK airport while landing home, to solitary confinement and being under house arrest the for the past 14 months. When the government indicted me and requested 30 years, I kept my head up with the help of friends, family, and the Bitcoin community. While some distanced themselves, most stood by and fought. I owe my life to those people. Of course I don\u2019t look for sympathy, I did the crime and I will do the time. They say those who stand by you in the bad times, deserve to be with you in the good times. Good times are coming and I look forward to it.\n\nOptimism. No matter how sad I was feeling, I needed to stay positive with my head up, because once I fell into a spiral of self pity and depression, there is no coming out. \n\n[![IMG_0491.jpg](http://charlieshrem.com/wp-content/uploads/2015/03/46044187-best-place-prisons-lewisburg-1.jpg\n)](https://postimg.org/image/6l0hwxd5j/)\n\nSo I started taking notes from other people who have been to Lewisburg and finding out everything  could prepare myself for. \n\n- Keep books/newspapers under 13oz. Keep it to 4 per package. \n- USA Today delivery, dropped off directly. \n- Always use Amazon for books. \n- Bring list of people to communicate with - Name/Mailing Address/ Email Address/ Phone number \n- Every month 300 minutes for the phone maximum, Nov/Dec 400 minutes. \n- Email/Phone busiest mostly after dinner. \n- Get a watch \n- $360 a month is max you can spend on commissary, not including phone and email. \n- Buy sneakers. \n- Try to get education job \n- Dont gamble \n- Get there 8:45am. Then complete strip search, then temporary clothes, then medical intake, then sign forms and meet a counselor. \n- Corlinks app for iPhone, becomes like instant messaging. Can print emails. \n- Write physical letters. Stay optimistic. \n\nBut what was prison going to be like? What was my day going to consist of from waking up until I go to sleep? No one could answer these questions except for me. I needed to accept that I was going to be in prison, and going to use the time wisely. \n\nThere was a lot to do. What do I do with my email account, how do I secure my Bitcoin wallet, how do I keep my phone number. How will I maintain a relationship with my family? What is prison going to be like? All these questions were burning in my head and I couldn't find anything online to help me. \n\nThis is going to be a Steemit series on before, during, and after prison. I will post pictures, letters, diaries, notes and things I wrote while inside. \n\nFeel free to post your questions you want to see answered, I plan on answering them all to the best of my ability in the following posts. \n\nFollow me to read Part 1 \n\n-Charlie",
+    "body_length": 3653,
+    "cashout_time": "2016-09-25T17:27:21",
+    "category": "story",
+    "children": 124,
+    "created": "2016-08-25T13:27:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"story\",\"life\",\"bitcoin\"],\"image\":[\"https:\\/\\/s15.postimg.org\\/xvlt4ug2j\\/IMG_0491.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T13:47:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 224241713529877,
+    "parent_author": "",
+    "parent_permlink": "story",
+    "pending_payout_value": "6734.722 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "a-geek-in-prison-a-life-series-by-charlie-shrem-preamble",
+    "post_id": 742296,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "A Geek in Prison - A Life Series by Charlie Shrem (Preamble)",
+    "title": "A Geek in Prison - A Life Series by Charlie Shrem (Preamble)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/story/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-preamble"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/paginated.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/paginated.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..08a6d20fb33882727ebb151b21311cbdea0ae8b6
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/paginated.pat.json
@@ -0,0 +1,9186 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28560646020990,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7482556785929,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 28500529484938,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28861497571,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26281954419455,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36311210447453,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7166026055876,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1952023119009,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 223622830143,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3219053436696,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223711383698,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1891888493603,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 385490772199,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6660806624932,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 644872704857,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 21056224196689,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 109811462347,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5592889929391,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1331500596037,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 2971712347474,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 788439749051,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4741928221840,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1042789136478,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320910536892,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 298439892868,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26776677752355,
+        "rshares": 150974882552,
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3094958749,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1978763283401,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 188726834829,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3756869472,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 696667695,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6205822781772,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53368139638,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 447105757472,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1658807994,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213558827,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 57377779906,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11582933910,
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 16454870033,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 354810038737,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2610613139094,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 4920502200246,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1298767962589,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 77826446010,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1103353876382,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 19375061925,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622137125,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 952752774,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 133823792161,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 57735896918,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 271580911771,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 24457406223,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 117775730214,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287967645,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 23360528643,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 156331317403,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 30028887416,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 846567310,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 122932345282,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419153264932,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146329460364,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 92134911246,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87363750745142,
+        "rshares": 491429125793,
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 12171946152,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8205257677,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7376079047,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 496464544971,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8604717232,
+        "rshares": 488113402,
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 2536344757,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83563754477,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 494066880,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 483152352,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7019430473955,
+        "rshares": 27107941615,
+        "voter": "thedarkestplum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 5279958080,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5794429408,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24807749053,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 753324601733,
+        "rshares": 632575314,
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 33981858008,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2138917267,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 333258124752,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1822716613,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 709269164837,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7186758,
+        "rshares": 469151600,
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 238835403910,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 1037066661,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3278084856,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 4513554139,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2575954627,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10093114621632,
+        "rshares": 93497060455,
+        "voter": "william-noe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1320082412,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 12821562761,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 60231338472,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 430142790,
+        "voter": "andygreen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 12917304110,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 54934580320,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2164103772,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19197407164,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46690451470,
+        "rshares": 916363925,
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 88219347090,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1808575623,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23606790995,
+        "voter": "adiron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2510175673478,
+        "rshares": 25390353862,
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 356811839971,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135450753306,
+        "rshares": 941862703,
+        "voter": "leprechaun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 46830338583,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 389678169642,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 210288745,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18893760500,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 238913090540,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12534214352,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 36600014121,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 4228175909,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 184861284858,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10426284702,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "1300",
+        "reputation": 71931696380,
+        "rshares": 535085293398,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 380442035664,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 393705031,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 33023351643,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 8965344275,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 386047698,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 237713566789,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14734236654427,
+        "rshares": 40404123620,
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 232978192774,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53477284457,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 65989046107177,
+        "rshares": 11145820184,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -577089724709,
+        "rshares": -44817963557,
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525238421,
+        "rshares": 73473919997,
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 6346333852,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 252446375719,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 449382000083,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48315528635,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4142890713,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398746305,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23208949584,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 137985366901,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 878968825,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1978185015,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1877846106598,
+        "rshares": 29070319535,
+        "voter": "tobixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 888899843,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 184432921500,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3230046914,
+        "rshares": 312416918,
+        "voter": "karen-butler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 5819225195,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9526338532,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686498651829,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 88591858942,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 43941298443,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 42303411287,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31652499116,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7225093759945,
+        "rshares": 8809731014,
+        "voter": "engineercampus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2491601864,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1053452529,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17686586033,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6850246528,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 666311365,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768666239960,
+        "rshares": 1330833785,
+        "voter": "cattyboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 199195319,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 257330035,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 179431212147,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 10331014347,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71529342539,
+        "rshares": 281936472,
+        "voter": "levent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 158350575079,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49604795295009,
+        "rshares": 327066986883,
+        "voter": "heiditravels"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35050443507276,
+        "rshares": 71797696542,
+        "voter": "lauralemons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4623260663,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 12983117279,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 668633470533,
+        "rshares": 3668746861,
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 12524021131,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 255780948,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 17222069029,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48904928624,
+        "rshares": 263450012,
+        "voter": "brockton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 108706222887,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 27333283527,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12849240363,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20214638094,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 177047609596,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257546332,
+        "rshares": 247567288,
+        "voter": "avantyris785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44761293560,
+        "rshares": 25082666401,
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1271451816,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 622499323834,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 23836049644,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29118885298,
+        "rshares": 260812970,
+        "voter": "timotron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36430343311,
+        "rshares": 324623687,
+        "voter": "linkku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6834453208,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 117089682,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1517090750,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8556925261,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 50711088707,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657547218546,
+        "rshares": 6187628336,
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "5300",
+        "reputation": 4667991454724,
+        "rshares": 296259416092,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "1000",
+        "reputation": 19111656178138,
+        "rshares": 6380319546,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10583703247,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 105707948711,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 66692894,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 61722414,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 67628664,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 138275474797,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47264506487,
+        "rshares": 2034990010,
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 657552887015,
+        "rshares": 5464993770,
+        "voter": "mguy808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 75123114815,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20792709556,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 132713955488,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 42524854450,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 233332478,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7724431416,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40456948638,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 47586138538,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4916037950,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4541919146,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 18546431924,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4114526773,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2097337325719,
+        "rshares": 2779591474,
+        "voter": "dogguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41465366167,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34271202700,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 89898065783,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 2066815364,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 111493899868,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3950290272,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 2703937851,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 52788198003,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 5871791528,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 72880524614,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11593149040,
+        "rshares": 1926255301,
+        "voter": "pictorians"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 10389851075,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11804275143,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1002116424,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 435049318,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 95226627916,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2194815720,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128898123725,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82780404032,
+        "rshares": 711889903,
+        "voter": "thinkngrow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 928901384552,
+        "rshares": 15670441941,
+        "voter": "grolelo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 35579793979,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363559672427,
+        "rshares": 500190013,
+        "voter": "symbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 55005576626,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239794058,
+        "voter": "bertrandlarsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 5732294213,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 94213787390,
+        "rshares": 3470465356,
+        "voter": "gkealy2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 21789794318,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 117805939,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75156404322,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373156105,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2654767174,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3486436311,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1479598990,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11884657622,
+        "rshares": 488668862,
+        "voter": "dogesteam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1666826621,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2096076988,
+        "rshares": 239427456,
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10380243347,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2468349025,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 19985593184,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 207309669205,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 131930031,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 17915463078,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14491972528,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1783202708175,
+        "rshares": 3614719442,
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 55202612813,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1882211,
+        "rshares": 119216508,
+        "voter": "fhc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8238510887,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 196897399,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7167153309,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3311854486,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 6939038250,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 792476477,
+        "rshares": 116664172,
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 132755337797,
+        "rshares": 159387199,
+        "voter": "xondra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 882957752,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 69117647542,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 139166640,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 4230519365,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5146311248,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 29396971145,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 12751039508,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 58982208172,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172953944203,
+        "rshares": 1193934954,
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4290470633,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 22490762180,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1847751264,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1477067328,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 111726756,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 180857883770,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 371626273,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37347150,
+        "rshares": 115874018,
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1035551247781,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24394944,
+        "rshares": 118154645,
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 1834631674,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "1000",
+        "reputation": 10519849768972,
+        "rshares": 2042770630,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 36376826540,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4829965030,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 128989941,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 54497070629,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 180672937,
+        "rshares": 117485406,
+        "voter": "rizkypramudyacj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2812079541783,
+        "rshares": 4752851001,
+        "voter": "fishborne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117256810,
+        "voter": "satoshi-pie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351138837,
+        "rshares": 117386180,
+        "voter": "coinmaster4you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 662320934570,
+        "rshares": 383990423,
+        "voter": "ladypenelope1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 1441891046,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2997941608767,
+        "rshares": 3848926356,
+        "voter": "tony.jennings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 500209723,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 48416597910,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 194720511,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 560201253,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1606242116192,
+        "rshares": 4745090234,
+        "voter": "bakingengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 459170283182,
+        "rshares": 305479433,
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 773013655,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 21354066670,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1371841629,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 22357507116,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 36689320416,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 16714610807,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1858859747,
+        "rshares": 231783321,
+        "voter": "mancoba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 721544015,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 6108537397,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 20900104387,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1277366753949,
+        "rshares": 16686827613,
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 9367718298,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 265198657980,
+        "rshares": 291479339,
+        "voter": "nickjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 3298056386,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114503443,
+        "voter": "pavelwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 11332592813,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 129041365,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4015856691,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 18023925988,
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2642781889634,
+        "rshares": 7728159790,
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5611522689,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137150233782,
+        "rshares": 134661057,
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49215329,
+        "rshares": 3494211723,
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 60191451364,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59131994286,
+        "rshares": 915590461,
+        "voter": "neowenyuan27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 35115130291,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 4452605468,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 817190717,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8269753940,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1733155392278,
+        "rshares": 1283492958,
+        "voter": "littlekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5617594846,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 56527569,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 32857206160,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89039117574,
+        "rshares": 16805040088,
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 904824367,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 56215794,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23813778042,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4980258900,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 25980126700,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111834001286,
+        "rshares": 1448457001,
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1412252219445,
+        "rshares": 2593878902,
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 122387390,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 24953376046,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 3097487092,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 555412571,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9331242455,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 39987681467,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2299239749,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2266655599,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2710167448,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3331328741,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63993548,
+        "voter": "mdrollette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 9547109560,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 71226045,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 52804255512,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 10678437690,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 63775516,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 54508506063,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2291086633,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2487177895,
+        "rshares": 63594681,
+        "voter": "accripteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 63054380,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1941159098,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 851124018,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 62650809,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 56647554,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 54641038,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1762897311,
+        "rshares": 63616030,
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 265460209,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 1185094354,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 646216243,
+        "rshares": 62928860,
+        "voter": "session101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 54217761,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2144720103876,
+        "rshares": 3842203000,
+        "voter": "alchemage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1791518365740,
+        "rshares": 1622895683,
+        "voter": "bebecitosfotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 54077897,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1271830358,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 16134755266,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 58277489,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28124094739,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2256397676,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 4573566381,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34809197,
+        "rshares": 60856079,
+        "voter": "lordgothmog"
+      },
+      {
+        "percent": "10000",
+        "reputation": -478832843459,
+        "rshares": 80383749,
+        "voter": "oldas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692505456,
+        "rshares": 62735564,
+        "voter": "gamingdiamond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15099093363137,
+        "rshares": 41491353618,
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 54896152,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 60994192,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 1620631385,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 11132558343,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3537992772642,
+        "rshares": 38874009222,
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54313084,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61506849,
+        "voter": "virusmedia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60288627,
+        "voter": "atrickpay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 531133173,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20099956352,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 565686689,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218198619612,
+        "rshares": 163702640,
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1005947450655,
+        "rshares": 113571840,
+        "voter": "stevescoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 118544994,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 4249171547,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1183575116,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1160968192,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 58148489,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 113457626,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 440611150126,
+        "rshares": 2275142374,
+        "voter": "zhenghao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60372902,
+        "voter": "sorenpeterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13147662,
+        "rshares": 59153616,
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 2021855541,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2459952535,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 1910105759,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 769468612,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54220781,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039566,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54216305,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53034852,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54209199,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 202747295,
+        "rshares": 58782998,
+        "voter": "mgd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 60143295,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 505219265255,
+        "rshares": 369270285,
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1939562492,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 56305110,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 4918684548,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52651308,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 243293537,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 58479392,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59591505,
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 215635569,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2864397330,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 434038749,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1171610651,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24452621045,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59155266,
+        "voter": "byjk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272243468446,
+        "rshares": 154348848,
+        "voter": "johnster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3860921107,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 23609188750,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58988588,
+        "voter": "jeandepatch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1065292847,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 20247416717,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 313754430,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 7266496467,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 31303265003,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 834505,
+        "rshares": 57803967,
+        "voter": "jacobberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 15253787265,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 59390673,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 390205958,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1041384471,
+        "rshares": 2724160806,
+        "voter": "kovaiensko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 127117428940,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 2332908402,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 68186803,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1466342803,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 3118899280,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56301289091,
+        "rshares": 58768736,
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6522837445845,
+        "rshares": 1350024143,
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1237196261,
+        "rshares": 59010539,
+        "voter": "jonnybh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616880283688,
+        "rshares": 1426439906,
+        "voter": "jms21y"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 53935001,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41538912131,
+        "rshares": 69407495,
+        "voter": "voluntaryv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53853911,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4392040691,
+        "rshares": 58806042,
+        "voter": "kazza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 66998944,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": -280015312321,
+        "rshares": 57126874,
+        "voter": "jamesart63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3299759894,
+        "rshares": 58246339,
+        "voter": "aletoledo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117598348160,
+        "rshares": 399407280,
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1597148004,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 4420043710,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31060848452,
+        "rshares": 63806640,
+        "voter": "iosif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23294106,
+        "rshares": 58167598,
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101814429368,
+        "rshares": 86244910,
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2166664728,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272429773,
+        "rshares": 59284524,
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1556727823,
+        "voter": "daniel82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8948882183,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19091993730,
+        "rshares": 59494031,
+        "voter": "kirby1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 329605745,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 863227677,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2565438843,
+        "voter": "colinklein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 904518,
+        "rshares": 57889196,
+        "voter": "braincramp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99387698429,
+        "rshares": 69187216,
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 65995086,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57851525,
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908980564,
+        "rshares": 56694448,
+        "voter": "quackenbush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 57291321440,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5296652630527,
+        "rshares": 17676446808,
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 57683187,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676296097,
+        "rshares": 71882929,
+        "voter": "jonimipidici"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 5101854383,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 4376868684,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4310439355,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 448323753,
+        "rshares": 291103732,
+        "voter": "trimtab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11731150067,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11938480285,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2711414,
+        "rshares": 57445142,
+        "voter": "suz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961187,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 394895431999,
+        "rshares": 64535087,
+        "voter": "billjoyce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 6880894762,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 64782545,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736149094898,
+        "rshares": 2187971989,
+        "voter": "epiphany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1788849014,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89481141,
+        "rshares": 2626923465,
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 59148765,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4153056043,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57055494,
+        "voter": "scottmacquarrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 188039052,
+        "rshares": 644113013,
+        "voter": "magickalmalia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 52842496,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622549,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3547713333727,
+        "rshares": 1505318589,
+        "voter": "victoriart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53613607,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 56883857,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 388822791,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 458900119,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 5752411757,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 57565305,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56748177,
+        "voter": "apisme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6800116,
+        "rshares": 56723778,
+        "voter": "iamjen2692"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54362089,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835399333,
+        "rshares": 1780564916,
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100770751240,
+        "rshares": 88085099,
+        "voter": "ruscion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5806504909,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 17055789147,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55197242,
+        "voter": "rubellitefae"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 1790814851,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56241383,
+        "voter": "flame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52915101,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55803830,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 657838048,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56143941,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 10416848697,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 67679386,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 170299530,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1011034976,
+        "rshares": 54999958,
+        "voter": "tommyboyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55841289,
+        "voter": "schooliskul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52545761,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 172475666464,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 723656520969,
+        "rshares": 6670382961,
+        "voter": "wwworld4us"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 55824224,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247818520980,
+        "rshares": 798157427,
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988835724525,
+        "rshares": 380988979,
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267108721,
+        "rshares": 2080731309,
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2055544209,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 54523663,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52242652,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318865,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25805152289,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2738998255,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 3005632256,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55171849,
+        "voter": "gateguy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52988378,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 53110243,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289857340733,
+        "rshares": 106744904,
+        "voter": "gabosh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 336266884,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 124568714,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 152610437601,
+        "rshares": 131693793,
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45942905295,
+        "rshares": 56243769,
+        "voter": "frankcorvus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15999809,
+        "rshares": 54909082,
+        "voter": "simonpeter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53893947,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 70796991,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80321606780,
+        "rshares": 85114506,
+        "voter": "deptawesomebeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 275718770,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 162033495767,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 53602103,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59354601485,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122191520146,
+        "rshares": 56122994,
+        "voter": "ivanba12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5014250342169,
+        "rshares": 1943114183,
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 514384460,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 448934323,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1586351489943,
+        "rshares": 484970407,
+        "voter": "kingarbinv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 54171765,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 55105511,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039974,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 1101487626,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 52943536,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4494788585,
+        "rshares": 52931611,
+        "voter": "steem4fobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 53988734,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 114358571,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80920831153,
+        "rshares": 56789009,
+        "voter": "fpcvirtual"
+      },
+      {
+        "percent": "10000",
+        "reputation": 699258478694,
+        "rshares": 51753853,
+        "voter": "wildmanhowling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20872774,
+        "rshares": 52807746,
+        "voter": "jeancarlos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5441700948,
+        "rshares": 53288811,
+        "voter": "mobilebestdeal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11985197441,
+        "rshares": 55160066,
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 1920835613,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 50462875,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 619923193031,
+        "rshares": 416608994,
+        "voter": "krispysix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10912705118,
+        "voter": "ksc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81189294320,
+        "rshares": 53779499,
+        "voter": "iampluto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 51725998,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 66687457,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1611149452,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7428004729,
+        "rshares": 54251507,
+        "voter": "privacyissues"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1010743139109,
+        "rshares": 487124980,
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189363957513,
+        "rshares": 53580348,
+        "voter": "rynow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64941758686,
+        "rshares": 68605362,
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 828920570,
+        "rshares": 52873008,
+        "voter": "drinkingabout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 106825085,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 59067883,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3365616,
+        "rshares": 51706051,
+        "voter": "parisgraffiti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691146274,
+        "rshares": 52874902,
+        "voter": "steeme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 151906532077,
+        "rshares": 52533117,
+        "voter": "stardust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84715240387,
+        "rshares": 71059082,
+        "voter": "regeneration"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 1152598967,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 52601465,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3275734,
+        "rshares": 52596228,
+        "voter": "harini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52594800,
+        "voter": "randomguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 821773,
+        "rshares": 51562286,
+        "voter": "pusio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7863808100,
+        "rshares": 50531169,
+        "voter": "wolfdaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51470533,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51468937,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52415837,
+        "voter": "koek-10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2454253,
+        "rshares": 52412604,
+        "voter": "wdeniw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 315096245,
+        "rshares": 52405628,
+        "voter": "vapecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124036083402,
+        "rshares": 416142579,
+        "voter": "clayboyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 52159157,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52144339,
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2577729396,
+        "rshares": 51351904,
+        "voter": "funthing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 51077428,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": -159993241351,
+        "rshares": 54103453,
+        "voter": "clips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1611034,
+        "rshares": 52064045,
+        "voter": "coertli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19265611,
+        "rshares": 50996649,
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50962513,
+        "voter": "greenrain225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3479793549,
+        "rshares": 51930368,
+        "voter": "iotaissham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 51896264,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 264508777365,
+        "rshares": 51587349,
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1423888772,
+        "rshares": 51981765,
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7237106152,
+        "rshares": 51799295,
+        "voter": "pegasus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50765381,
+        "voter": "raasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108718912,
+        "rshares": 50759259,
+        "voter": "steven15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2807726188,
+        "rshares": 51767735,
+        "voter": "feedmycrash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16065524765,
+        "rshares": 50727124,
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 50726329,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51732076,
+        "voter": "petro.keay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51713637,
+        "voter": "amineminou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106202842802,
+        "rshares": 51711324,
+        "voter": "jimcropper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51706631,
+        "voter": "ayoubbakkali"
+      },
+      {
+        "percent": "10000",
+        "reputation": 807866,
+        "rshares": 51703468,
+        "voter": "constclayton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51700456,
+        "voter": "nkhank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51699892,
+        "voter": "jcdobber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682081,
+        "voter": "janefluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51692910,
+        "voter": "alenapimenova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51689337,
+        "voter": "willi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 600667224252,
+        "rshares": 50674199,
+        "voter": "mrabdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51663210,
+        "voter": "jesseanieto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51655833,
+        "voter": "aminemouleloued"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598154,
+        "rshares": 50639011,
+        "voter": "adilking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51646760,
+        "voter": "likeaboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51636074,
+        "voter": "btcdude007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51635173,
+        "voter": "taoist-water"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87876527,
+        "rshares": 51614826,
+        "voter": "playingwithfire"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -50595887,
+        "voter": "hotosaynmcti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51573486,
+        "voter": "sudo82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1758180524,
+        "rshares": 50529587,
+        "voter": "hafelaffe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51535237,
+        "voter": "pero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51495204,
+        "voter": "bryanplymale"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11864741487,
+        "rshares": 50479785,
+        "voter": "patience"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50478780,
+        "voter": "artur154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51478830,
+        "voter": "kiryck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19683971,
+        "rshares": 50368151,
+        "voter": "lucif3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1571090,
+        "rshares": 50274929,
+        "voter": "antonindc"
+      }
+    ],
+    "author": "charlieshrem",
+    "author_reputation": 50326964582800,
+    "beneficiaries": [],
+    "body": "[![IMG_0491.jpg](https://s15.postimg.org/xvlt4ug2j/IMG_0491.jpg)](https://postimg.org/image/6l0hwxd5j/)\n\nThere is no fool proof way to prepare for prison. \n\nOn March 30th I self surrendered to Lewisburg Federal Prison Camp after I was sentenced to two years for aiding and abetting an unlicensed money transmitting business, for which I am guilty. \n\nIn my case, the only things I could do to prepare myself for was the idea that for the foreseeable future I won\u2019t be around. But I was optomistic because the only way to get through it, is to fully embrace it and take it head on. Which is what I did. \n\nOn March 5th 2015, about 30 days before my self surrender, I wrote this on my blog: \n> I\u2019ve been dreading writing this blog post, and since I\u2019ve written it, it\u2019s been sitting as draft for a few weeks. Never the less, it\u2019s time I get on with it.  On March 30th, I\u2019ll be self surrendering to Lewisburg Federal Prison Camp in Pennsylvania. It\u2019s been a long hard fight, from getting arrested at JFK airport while landing home, to solitary confinement and being under house arrest the for the past 14 months. When the government indicted me and requested 30 years, I kept my head up with the help of friends, family, and the Bitcoin community. While some distanced themselves, most stood by and fought. I owe my life to those people. Of course I don\u2019t look for sympathy, I did the crime and I will do the time. They say those who stand by you in the bad times, deserve to be with you in the good times. Good times are coming and I look forward to it.\n\nOptimism. No matter how sad I was feeling, I needed to stay positive with my head up, because once I fell into a spiral of self pity and depression, there is no coming out. \n\n[![IMG_0491.jpg](http://charlieshrem.com/wp-content/uploads/2015/03/46044187-best-place-prisons-lewisburg-1.jpg\n)](https://postimg.org/image/6l0hwxd5j/)\n\nSo I started taking notes from other people who have been to Lewisburg and finding out everything  could prepare myself for. \n\n- Keep books/newspapers under 13oz. Keep it to 4 per package. \n- USA Today delivery, dropped off directly. \n- Always use Amazon for books. \n- Bring list of people to communicate with - Name/Mailing Address/ Email Address/ Phone number \n- Every month 300 minutes for the phone maximum, Nov/Dec 400 minutes. \n- Email/Phone busiest mostly after dinner. \n- Get a watch \n- $360 a month is max you can spend on commissary, not including phone and email. \n- Buy sneakers. \n- Try to get education job \n- Dont gamble \n- Get there 8:45am. Then complete strip search, then temporary clothes, then medical intake, then sign forms and meet a counselor. \n- Corlinks app for iPhone, becomes like instant messaging. Can print emails. \n- Write physical letters. Stay optimistic. \n\nBut what was prison going to be like? What was my day going to consist of from waking up until I go to sleep? No one could answer these questions except for me. I needed to accept that I was going to be in prison, and going to use the time wisely. \n\nThere was a lot to do. What do I do with my email account, how do I secure my Bitcoin wallet, how do I keep my phone number. How will I maintain a relationship with my family? What is prison going to be like? All these questions were burning in my head and I couldn't find anything online to help me. \n\nThis is going to be a Steemit series on before, during, and after prison. I will post pictures, letters, diaries, notes and things I wrote while inside. \n\nFeel free to post your questions you want to see answered, I plan on answering them all to the best of my ability in the following posts. \n\nFollow me to read Part 1 \n\n-Charlie",
+    "body_length": 3653,
+    "cashout_time": "2016-09-01T13:27:45",
+    "category": "story",
+    "children": 124,
+    "created": "2016-08-25T13:27:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"story\",\"life\",\"bitcoin\"],\"image\":[\"https://s15.postimg.org/xvlt4ug2j/IMG_0491.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T13:47:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 224241713529877,
+    "parent_author": "",
+    "parent_permlink": "story",
+    "pending_payout_value": "6734.784 HBD",
+    "percent_hbd": 10000,
+    "permlink": "a-geek-in-prison-a-life-series-by-charlie-shrem-preamble",
+    "post_id": 980918,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "A Geek in Prison - A Life Series by Charlie Shrem (Preamble)",
+    "title": "A Geek in Prison - A Life Series by Charlie Shrem (Preamble)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/story/@charlieshrem/a-geek-in-prison-a-life-series-by-charlie-shrem-preamble"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1915876518994,
+        "rshares": 713694473613,
+        "voter": "erath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7510416793191,
+        "voter": "steempty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 32455846463901,
+        "rshares": 16068038584703,
+        "voter": "smooth"
+      },
+      {
+        "percent": "7000",
+        "reputation": 8151223409709,
+        "rshares": 12121187556689,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 380238459022,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14423169571983,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2964461167125,
+        "rshares": 24441826462,
+        "voter": "fluffypony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40109771813296,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "8000",
+        "reputation": 1133069631465,
+        "rshares": 25361221604821,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36315643031728,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7301117381798,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6708153542567,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3188638339756,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2192945558805,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5805534380317,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 416499138441,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 428017035820,
+        "rshares": 83480665113,
+        "voter": "friend5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 118407999549,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5276642752065,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 33636924304,
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 904017482934,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1065829957154,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 898197979211,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320971980307,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26776677752355,
+        "rshares": 155072915746,
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3098777463,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3761916316,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 697256115,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7161304385550,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 6014751263291,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 481270665604,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53931551747,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1660705255,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213653566,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8980249791516,
+        "rshares": 251693031997,
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 58224067107,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11695227908,
+        "voter": "by24seven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35385015759603,
+        "rshares": 208750877849,
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 742681097805,
+        "rshares": 7272920270,
+        "voter": "idolhacked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2325164637164,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1087292508827,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 227457869865,
+        "rshares": 6578113570,
+        "voter": "sean0010"
+      },
+      {
+        "percent": "5000",
+        "reputation": 83941319998,
+        "rshares": 2837705244235,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1331357925773,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158487994237,
+        "rshares": 50192262014,
+        "voter": "twiceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 411703831404,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 748581030023,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23744414677575,
+        "rshares": 3142621730120,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1829863145814,
+        "rshares": 714930245307,
+        "voter": "marginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 80699573707,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1112860804811,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 258877600254,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 16216414939,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2369366055877,
+        "rshares": 74773141631,
+        "voter": "vault"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622667151,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29394786822950,
+        "rshares": 177857184063,
+        "voter": "markopaasila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4075717838613,
+        "rshares": 23553651897,
+        "voter": "wpalczynski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4274366756028,
+        "rshares": 419118498950,
+        "voter": "cob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967098399,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2662200007484,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 758092952414,
+        "rshares": 6901758743,
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 392088507901,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "2500",
+        "reputation": 72112139588726,
+        "rshares": 213932632106,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 93860680998,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4746039308773,
+        "rshares": 34051846969,
+        "voter": "mkultra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 348813313946,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 301410060777,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31488210815,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 196162501190,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59130509872662,
+        "rshares": 549442905324,
+        "voter": "kencode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74299604102,
+        "rshares": 3495643148,
+        "voter": "spartako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 66151857717,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288128811,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5047240025934,
+        "rshares": 61972121116,
+        "voter": "jbrukh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 22985615692,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6863537479759,
+        "rshares": 39186628279,
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23047108317,
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4290310171633,
+        "rshares": 14177042732,
+        "voter": "brindleswan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19159296155,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 86224617301,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 917952755,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 77078667225,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 554084160,
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 411007912273,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15188075143,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146340616729,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3284244800,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 73280882046,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 92152855019,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1307793552141,
+        "rshares": 17125250994,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34347753869675,
+        "rshares": 215245786468,
+        "voter": "camilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 47972534221,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 174353582975,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5380704535,
+        "rshares": 167617331918,
+        "voter": "samuel-stone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 17987503188,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17743856658,
+        "rshares": 517192604,
+        "voter": "lourenc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8205736006,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 4871366502,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83669612037,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1427571994880,
+        "rshares": 11622634708,
+        "voter": "bryner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 8927741511,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 19479953917,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 25772740263,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423408785434,
+        "rshares": 403958066598,
+        "voter": "bitacer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 95038880661,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46956211114,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5045406568403,
+        "rshares": 36487878350,
+        "voter": "james-show"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2098966754,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 334011056190,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1880661234,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 928388769,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3510970719,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 4523170231,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2771996934,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 18727152340,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 627954645291,
+        "rshares": 4070573315,
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11059776879,
+        "rshares": 2352510904,
+        "voter": "luxiano-valdez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 75378682458,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107613513332,
+        "rshares": 463524444,
+        "voter": "nasato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9206411638386,
+        "rshares": 96949402252,
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1346484060,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1625201395,
+        "rshares": 435824983,
+        "voter": "isyevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 59122859137,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 60742936680,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 23370028390,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 55212372520,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1017842258,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 73936687046,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 553356305581,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1430749837,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 905649649370,
+        "rshares": 4963867901,
+        "voter": "animalrobot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8502334967170,
+        "rshares": 24748489415,
+        "voter": "gridcoinman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 140996602583,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 202548692,
+        "rshares": 415175441,
+        "voter": "kewde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 17061428112,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1095245594450,
+        "rshares": 57959167372,
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7452144426,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2510175673478,
+        "rshares": 26729047043,
+        "voter": "dking7334"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3147716497,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 351470606838,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 13608775698,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 46018261282,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 383066566,
+        "voter": "maylong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 307353766229,
+        "rshares": 18085245154,
+        "voter": "btcturbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18898229445,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 12917828173,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24308802296,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 365694018,
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 4509938929,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 80852317272,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5632828,
+        "rshares": 360501004,
+        "voter": "zunaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 201826128557,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9826512260,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 354206844,
+        "voter": "saroj-bhatta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271169855471,
+        "rshares": 543977846,
+        "voter": "dbrock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 342081119,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771738440035,
+        "rshares": 4271166951,
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 298240843889,
+        "rshares": 745829352,
+        "voter": "malacandrahyoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 37473030840,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1709265172,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 52893188787,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 250251214796,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 369711427119,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14734236654427,
+        "rshares": 40559498042,
+        "voter": "intelliguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62345041692781,
+        "rshares": 289583466317,
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51869215030,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65989046107177,
+        "rshares": 576767994200,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 12940198679,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525238421,
+        "rshares": 73476436941,
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816177,
+        "rshares": 2908408613,
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8995772525,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7255473848113,
+        "rshares": 62432961225,
+        "voter": "herzmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48667624415,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4889928179,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99139054310,
+        "rshares": 398746305,
+        "voter": "rafikichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 80699408448,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6877012376448,
+        "rshares": 127102932429,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21383864845,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 533816739,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 239336324601,
+        "rshares": 1021838886,
+        "voter": "ashley-toth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1987962484,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 5411805833,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2160151824,
+        "rshares": 319691598,
+        "voter": "gary-wood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30097018787,
+        "rshares": 321645695,
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 673161259,
+        "rshares": 542199014,
+        "voter": "hackecon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 42979703654,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 155004173769,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1222010452191,
+        "rshares": 3457734437,
+        "voter": "antizvuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 658789233,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7263761479745,
+        "rshares": 130590733852,
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 189545314722,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1429359370177,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17979881,
+        "rshares": 306061039,
+        "voter": "mcandrews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9720265816,
+        "voter": "andread"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19196715690053,
+        "rshares": 97826496492,
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686881767918,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217222224,
+        "rshares": 300434933,
+        "voter": "knopki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 97983029101,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 256959483430,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2734348852,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 30072878297,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 42318258991,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6874854410,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 32318554954,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18458799241134,
+        "rshares": 46174191043,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 66670031086,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 70688369106,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 7014130249,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 367651854679,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 7909802888,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1062917569,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3398987186,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6029824012432,
+        "rshares": 17687129809,
+        "voter": "frankjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632946346,
+        "rshares": 28959157027,
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 43719154102,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 16128483738,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": -781106253,
+        "rshares": 289162489,
+        "voter": "weedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 1009609549,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43284860812,
+        "rshares": 269948463,
+        "voter": "willbed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17543161793,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3584203,
+        "rshares": 263465578,
+        "voter": "jepeto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 353570419,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 261201772,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5774378945062,
+        "rshares": 15861008437,
+        "voter": "jamiecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 230286299005,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 9856964632,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 19984735139,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1812831591,
+        "rshares": 258815574,
+        "voter": "lsully311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3187095322,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1236097211640,
+        "rshares": 2449644301,
+        "voter": "juansgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18965164896,
+        "rshares": 260424224,
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 268820184,
+        "voter": "stompy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 24517238299,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 305498139352,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4542608039,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5631846675,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 249240602,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 146383438265,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 8409886307,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713883205883,
+        "rshares": 3205624469,
+        "voter": "cryptoclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 251831549,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 18333306648,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247349335,
+        "rshares": 310292244,
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": -778200365287,
+        "rshares": 327668379,
+        "voter": "rodomonte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 124482562937,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51582783676,
+        "rshares": 9109684802,
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 31283202239,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5945858323,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10156514623,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129516230177,
+        "rshares": 310534090,
+        "voter": "freemanit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 135307922245,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 220025712831,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 10501734857,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17910661583686,
+        "rshares": 209442228322,
+        "voter": "guerrint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1285715500,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 29866371275,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8672589523,
+        "rshares": 266065805,
+        "voter": "nurev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 328962154,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7942137484293,
+        "rshares": 26594793962,
+        "voter": "missjessica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -5336248799,
+        "rshares": 241242032,
+        "voter": "alibaba987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6768804868,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 229781794,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 79453170464,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12165590095,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "4800",
+        "reputation": 4667991454724,
+        "rshares": 321778767569,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 464544867972,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 1645695260,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10585423374,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054508199522,
+        "rshares": 604839764,
+        "voter": "busser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 105799873038,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 1265314431,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1370626015309,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 143974807152,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56256651602417,
+        "rshares": 88157160491,
+        "voter": "alexbeyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 90966672055,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14094648142,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 133875475196,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7880126960,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41267074393,
+        "voter": "wesam"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 302485212431,
+        "rshares": -609755122,
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131860560605,
+        "rshares": 302505871,
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 22593623327,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5181663,
+        "rshares": 222257214,
+        "voter": "joseph.kalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4486491494,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 516511761,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 18567193433,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 61948097883,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 243368872,
+        "voter": "ozbay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 4023608719,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 2998864621,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960032418529,
+        "rshares": 2931171309,
+        "voter": "felipemachado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 13848695970,
+        "voter": "wobblealong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119704978026,
+        "rshares": 4971395546,
+        "voter": "jamessmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41067162104,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6504456266,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 32286496779,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1357468911,
+        "rshares": 14720610748,
+        "voter": "guywinfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2056512184,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 94805049013,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17930289726,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1083433205978,
+        "rshares": 8694742669,
+        "voter": "greenhatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 10951350049,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35852140375,
+        "rshares": 250632924,
+        "voter": "dangermouse117"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1022268826970,
+        "rshares": 455011454,
+        "voter": "edrivegom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4183876292,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57622676142,
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 14647693329,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6592407938,
+        "rshares": 855479492,
+        "voter": "deruwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24443545057,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 52805276639,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1396330239,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 6129221694,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77829333771,
+        "rshares": 142888646733,
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 30881468844,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 80563394374,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13451802691,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8169007561,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20688723324,
+        "rshares": 244706827,
+        "voter": "satoshi-nakamoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 235543115,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3721643899,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 39496477589,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 391108686204,
+        "rshares": 4665441702,
+        "voter": "morpheustitania"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 378576826,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 95267898665,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17580205,
+        "rshares": 240330371,
+        "voter": "piqdesigns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 9037656827,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1425274480,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 541784069,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 45247833539,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 266034633420,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2347565634738,
+        "rshares": 9908576759,
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79506270733,
+        "rshares": 273607958,
+        "voter": "joiflores"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 41361612181,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 712858826800,
+        "rshares": 6973342226,
+        "voter": "andrewsanderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6928808028,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562058685,
+        "rshares": 239842298,
+        "voter": "capetown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239732013,
+        "voter": "jwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 19728020453,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 115914608081,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373524020,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1452681946,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2096076988,
+        "rshares": 239427456,
+        "voter": "seafarer124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12696760695,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12569029210,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2818420851,
+        "voter": "ani22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40018503599,
+        "rshares": 3449406742,
+        "voter": "kimmar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 200334652700,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 3003762640,
+        "voter": "febird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 4127387114,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 13110910227,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160881076843,
+        "rshares": 20009856419,
+        "voter": "coininstant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 252341146186,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14307494636,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1553704823,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 58699636063,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 123371166,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 19632980259,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 1482891198,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2447003361,
+        "rshares": 957933973,
+        "voter": "stimmedmarine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8241172753,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14544132145555,
+        "rshares": 9773953552,
+        "voter": "pcste"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 12528459891,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7310750390,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 618489338521,
+        "rshares": 1760042037,
+        "voter": "gfxmotion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119052939,
+        "voter": "patrickgamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182174607,
+        "rshares": 311209174,
+        "voter": "olinzodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2277845741,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116503038,
+        "voter": "kattokassinen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 69120731893,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 7960988445,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 151010610,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 884407671803,
+        "rshares": 838471644,
+        "voter": "sovereignbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 118855870,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 65267663923,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361552742284,
+        "rshares": 459882281,
+        "voter": "nin0000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 22491309496,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16950633154,
+        "rshares": 20496448079,
+        "voter": "mynewsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2970166898462,
+        "rshares": 12644262391,
+        "voter": "hagie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116058250,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3716018750,
+        "rshares": 3872206737,
+        "voter": "sokal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1492718093,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 102459876,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7414159,
+        "rshares": 118280841,
+        "voter": "mpili"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632564148,
+        "rshares": 5202360626,
+        "voter": "zelgald1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 990217556,
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100161586091,
+        "rshares": 2223413258,
+        "voter": "slava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203600904607,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 384838496,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115941835,
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 995693826153,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101628344707,
+        "rshares": 804229760,
+        "voter": "flyboyzombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2752169711,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 25060686207,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4927592739,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628934912826,
+        "rshares": 81028785405,
+        "voter": "thebear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949931929645,
+        "rshares": 2651227609,
+        "voter": "moksha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 55611498658,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 17996858564,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9224124607,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58265386995,
+        "rshares": 3720019704,
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570594013620,
+        "rshares": 1668636401,
+        "voter": "cogliostro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 13502377471,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56797048,
+        "rshares": 117092140,
+        "voter": "rhesusnegative"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 212104094711,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 633329337,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116884886,
+        "voter": "blackhole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333544153374,
+        "rshares": 2501806576,
+        "voter": "stea90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 571610409,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1089072756,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5163358675,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116498073,
+        "voter": "grin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66346571922,
+        "rshares": 1990690663,
+        "voter": "flexcougar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 934635179,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20950491482,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 702710547,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 17522846242,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1203192685557,
+        "rshares": 1758235206,
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 568826885,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526503358940,
+        "rshares": 2427472681,
+        "voter": "anon.news"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 16944711171,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 32598223972,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218390046765,
+        "rshares": 108154560,
+        "voter": "salamanca1987ar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2987660536,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1712093376924,
+        "rshares": 8517785126,
+        "voter": "alphabeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 1567856396,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5918792289,
+        "rshares": 518479647,
+        "voter": "beenasty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8561737881023,
+        "rshares": 18324457251,
+        "voter": "pixielolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1359446513,
+        "rshares": 114300588,
+        "voter": "mcbowler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27613595491,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4100960070,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 238898910625,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 95067572559,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18453239435,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 551563663183,
+        "rshares": 453440568,
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1318034402,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708244710393,
+        "rshares": 4266744129,
+        "voter": "nzoomed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 300077814,
+        "rshares": 159836858,
+        "voter": "simondarling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2368539478,
+        "voter": "belkins"
+      },
+      {
+        "percent": "0",
+        "reputation": 8806485920347,
+        "rshares": 770849175,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1483559041,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 5646105389,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11454886978,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 921263691910,
+        "rshares": 657874013,
+        "voter": "tkembo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1150750202,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 52589126246,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8760917118,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5476861182,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1439465905530,
+        "rshares": 102660670192,
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5388847118,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2405411059,
+        "rshares": 156246825,
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192578386836,
+        "rshares": 173065237,
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997522731083,
+        "rshares": 1413824795,
+        "voter": "hypno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 2131270928,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 2076218286,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 16113899489,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 68467941552,
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61374667649460,
+        "rshares": 175196484089,
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 25321317985,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 130522396758,
+        "rshares": 54188338320,
+        "voter": "sextusempiricus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8303415935,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4982300887,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7157520017,
+        "rshares": 66443823,
+        "voter": "adamcleary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22643138,
+        "rshares": 65200234,
+        "voter": "spider333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111834001286,
+        "rshares": 1477798313,
+        "voter": "random-potato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3800326295,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 142236537,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 4673772256,
+        "voter": "darknet"
+      },
+      {
+        "percent": "3000",
+        "reputation": 97328985094,
+        "rshares": 1626684615,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319893324917,
+        "rshares": 75554886,
+        "voter": "nessacute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 9815814914,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 37015923837,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8611900471557,
+        "rshares": 3926378593,
+        "voter": "poeticsnake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22613377010,
+        "rshares": 67952487,
+        "voter": "kurzer42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2312262673,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1588149895,
+        "rshares": 63757881,
+        "voter": "whileoutsanch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61586173363,
+        "rshares": 918302233,
+        "voter": "dextersl2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13232220,
+        "rshares": 64574212,
+        "voter": "chaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3209909513,
+        "rshares": 24348042529,
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64436981,
+        "voter": "apophene"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150617632004,
+        "rshares": 2830076827,
+        "voter": "tommycoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 774137084,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 7204798505,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 527810072,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 86805821471,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 148353341,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053978638105,
+        "rshares": 3071427725,
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98938671458,
+        "rshares": 100197144,
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 12506580284,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10573617057,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 12414539968,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10083212488,
+        "rshares": 63829521,
+        "voter": "dedushkadiesel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 63775516,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 101013364369,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 3868999991,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27438553635,
+        "rshares": 4559264999,
+        "voter": "blocksurf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62311076,
+        "voter": "vaselechek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166646264775,
+        "rshares": 1694556443,
+        "voter": "anjoke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1361293312,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63371590,
+        "voter": "parasew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3294123210,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232818496155,
+        "rshares": 63023553,
+        "voter": "elportugal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57172819258,
+        "rshares": 73203091,
+        "voter": "kentbarrett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 513642753210,
+        "rshares": 62361397,
+        "voter": "willybot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 21454932294,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62749059,
+        "voter": "cam4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1791518365740,
+        "rshares": 1855848001,
+        "voter": "bebecitosfotos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 17609822356,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 8875422422,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 12234722005,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2045551831,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2798458785,
+        "rshares": 63437792,
+        "voter": "tommycordero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396514667430,
+        "rshares": 174017038,
+        "voter": "florentina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51670338162,
+        "rshares": 73511263,
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 355190711980,
+        "rshares": 63470280,
+        "voter": "melissag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15099093363137,
+        "rshares": 44142065641,
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312224301489,
+        "rshares": 15797065680,
+        "voter": "solar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1006547,
+        "rshares": 61909232,
+        "voter": "sarahchamberlain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1132289846563,
+        "rshares": 81581183778,
+        "voter": "ioc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 5367840937,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61094018,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465514128051,
+        "rshares": 3166784508,
+        "voter": "teambitwala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 3810190494,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 2089597288,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61512399,
+        "voter": "rancemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7297087216805,
+        "rshares": 5346914183,
+        "voter": "pjheinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58940020,
+        "voter": "pullman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3657922,
+        "rshares": 61323939,
+        "voter": "titan792008"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 72875398,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2316925791,
+        "rshares": 138794665,
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2378617269,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20511573197,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2030605555462,
+        "rshares": 2227318061,
+        "voter": "johnvibes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 577430096,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 596331323988,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 45144987876,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5584825445,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 122575003,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60707991,
+        "voter": "jerical13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1336993907,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1429700840,
+        "rshares": 59462731,
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60637775,
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1099988133,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58005337,
+        "voter": "sorenpeterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 3289237473,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5677060140,
+        "rshares": 66925733,
+        "voter": "telasius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211816282,
+        "rshares": 60280769,
+        "voter": "mukulgupta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2460033425,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642604166438,
+        "rshares": 114540011,
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 7307781732,
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24003660,
+        "rshares": 59989087,
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3574394769,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20152481527,
+        "rshares": 61909418,
+        "voter": "igorterleg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4231846058,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 2206248999,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 61917877,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2457922376,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 3992220834,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59606898,
+        "voter": "picch10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 65916262,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 60654881,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 59819698,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21156422,
+        "rshares": 59295031,
+        "voter": "dobbydaba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 925612937,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1901768348741,
+        "rshares": 687510337,
+        "voter": "enric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5923135639,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59000955,
+        "voter": "truthloveliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232524934,
+        "rshares": 58987369,
+        "voter": "redchurch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58984995,
+        "voter": "anesthetize"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1087363894,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59126308,
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 42186510292,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12118741180,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179991301994,
+        "rshares": 182816069,
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 37674957343,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12087620090,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6570350375,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2845719983,
+        "rshares": 58916638,
+        "voter": "layl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59041598,
+        "voter": "jholmesland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2703011,
+        "rshares": 58897371,
+        "voter": "panegyric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 57240693,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661051278414,
+        "rshares": 575433634,
+        "voter": "wearechange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20354742896,
+        "rshares": 65964429,
+        "voter": "dbecker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3485898605376,
+        "rshares": 527856348,
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1400671466,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17203965465,
+        "rshares": 59174678,
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58800111,
+        "voter": "soriano336"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56301289091,
+        "rshares": 58768736,
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58731493,
+        "voter": "johnr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232065582536,
+        "rshares": 200400668,
+        "voter": "andrewmeyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 88460782368,
+        "rshares": 87484250,
+        "voter": "dawnlindholm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57548737,
+        "voter": "mwhite20653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7887834338344,
+        "rshares": 13916976223,
+        "voter": "kushfreeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 410676451,
+        "rshares": 58787702,
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1802656474490,
+        "rshares": 4657915040,
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57459187,
+        "voter": "andrewindsor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 11378295056,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 58900136,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41538912131,
+        "rshares": 69407495,
+        "voter": "voluntaryv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3601401598,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58484280,
+        "voter": "will.isles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57295162,
+        "voter": "johnm862"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1037909150,
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 236439691,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8226370900,
+        "rshares": 58363282,
+        "voter": "suprepachyderm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49690574411,
+        "rshares": 76372055,
+        "voter": "dreadedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124908359782,
+        "rshares": 105504128,
+        "voter": "cactusclef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58330329,
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58325149,
+        "voter": "intrepidca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10614920699,
+        "rshares": 236254009,
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28397805329,
+        "rshares": 61576570,
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320177842090,
+        "rshares": 3891288314,
+        "voter": "herbic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118704463,
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58203627,
+        "voter": "youngrebel420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5788018857372,
+        "rshares": 6251029123,
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 306233011,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58110252,
+        "voter": "cheritto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 69053635,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907554,
+        "rshares": 58083507,
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2212541835,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 108985507,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16584325132,
+        "rshares": 58057909,
+        "voter": "adamkoessler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 55750195,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57991172,
+        "voter": "seungwonkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6190294,
+        "rshares": 10485735178,
+        "voter": "stiant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 695752519,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20458047767,
+        "rshares": 62955132,
+        "voter": "texkitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3416732751,
+        "rshares": 58712210,
+        "voter": "freemarketkev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1206557596,
+        "rshares": 57935125,
+        "voter": "barrydutton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 65437126,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22989460811,
+        "rshares": 36284342258,
+        "voter": "anonymario"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3614919579,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57896578,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57865236,
+        "voter": "diazrodolfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48912400347,
+        "rshares": 305954884,
+        "voter": "shanelohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3835217954,
+        "rshares": 58559046,
+        "voter": "lilbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5728419472436,
+        "rshares": 12023352743,
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 84506034257,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 284047862,
+        "rshares": 57826043,
+        "voter": "matt525"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 39490923433,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 57813247,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31070649225,
+        "rshares": 65820418,
+        "voter": "agkimbrough"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57787001,
+        "voter": "subabu2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199082444376,
+        "rshares": 136373506,
+        "voter": "internets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7788315865,
+        "rshares": 58035101,
+        "voter": "aaronjwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5296652630527,
+        "rshares": 18030044401,
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19141466793,
+        "rshares": 58837441,
+        "voter": "alaqrab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7189192,
+        "rshares": 57744177,
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387438670668,
+        "rshares": 641422439,
+        "voter": "ian.wash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 86449664,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 9128338819,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186924852752,
+        "rshares": 70769855,
+        "voter": "kreativ"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4397523492,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29355882,
+        "rshares": 1727731920,
+        "voter": "dennisoosterwaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60022998820,
+        "rshares": 3775183559,
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899166,
+        "rshares": 56418311,
+        "voter": "jozefntou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899434,
+        "rshares": 57563833,
+        "voter": "clout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11731453609,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59729622616,
+        "rshares": 69339129,
+        "voter": "freeradical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9696481439,
+        "rshares": 58404009,
+        "voter": "haulin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12308514975,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57434315,
+        "voter": "sarahlohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2910543944,
+        "rshares": 57784645,
+        "voter": "cryptoshow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2225351430,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11155258131837,
+        "rshares": 9716678365,
+        "voter": "tftproject"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 7076868967,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57323783,
+        "voter": "tyler.maroney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2266295655,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133411660608,
+        "rshares": 109805573,
+        "voter": "maxfuchs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112713507556,
+        "rshares": 105235082,
+        "voter": "cryptoshaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 21453821075,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": -5234825984,
+        "rshares": 57138336,
+        "voter": "jayzeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89481141,
+        "rshares": 2626923465,
+        "voter": "bbsj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 107899577,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 3991952727,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6795759787822,
+        "rshares": 1173293238,
+        "voter": "aggroed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4495545312501,
+        "rshares": 7376126377,
+        "voter": "adamkokesh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1329813882691,
+        "rshares": 57010230,
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59741874574,
+        "rshares": 69943474,
+        "voter": "expatlove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 56883857,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1818363378287,
+        "rshares": 3200676204,
+        "voter": "mscleverclocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 273487730,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11352667511018,
+        "rshares": 5812055555,
+        "voter": "canadian-coconut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80500300321,
+        "rshares": 81876495,
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25644393,
+        "rshares": 55667728,
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136085046245,
+        "rshares": 177291520,
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3970810,
+        "rshares": 54565194,
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55653025,
+        "voter": "marcabela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 51349284,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 215062466,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 57565305,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71073572115,
+        "rshares": 54514749,
+        "voter": "troyb42"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 54508349,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7402303856,
+        "rshares": 1623601924,
+        "voter": "grm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18293093647,
+        "rshares": 57744493,
+        "voter": "paulpuk2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 222694943448,
+        "rshares": 695173467,
+        "voter": "armenarmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131421134,
+        "rshares": 56690664,
+        "voter": "ritherz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56667362,
+        "voter": "rsafier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13849967,
+        "rshares": 56666317,
+        "voter": "jessexcruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 2981807583,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269774223718,
+        "rshares": 56989069,
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329465840,
+        "rshares": 56611081,
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 352639183151,
+        "rshares": 5558924936,
+        "voter": "immortalfame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 2716492929,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 1651777832,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835399333,
+        "rshares": 1810437987,
+        "voter": "thelocal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56559977,
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 19955840397,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972369433984,
+        "rshares": 2653697396,
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2175675775,
+        "rshares": 497003791,
+        "voter": "lapingvino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 370540745897,
+        "rshares": 531825542,
+        "voter": "jacobtothe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 56504986,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2691693294,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55803830,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19512256979,
+        "rshares": 58292186,
+        "voter": "jaredandanissa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 836954421307,
+        "rshares": 1303577131,
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 658806283,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 15432445921,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229065282410,
+        "rshares": 1016370830,
+        "voter": "richhersey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8859041042380,
+        "rshares": 37888516101,
+        "voter": "natureofbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 173705520,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1173419907,
+        "rshares": 55935622,
+        "voter": "pwn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 640042713,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 164186785700,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 53155012,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247818520980,
+        "rshares": 856290008,
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 73840725,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 23181600649,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501396601216,
+        "rshares": 91697951,
+        "voter": "pjo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 1632387086,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54251121598,
+        "rshares": 56233744,
+        "voter": "melody24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52015504,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4592050223,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": -3391257106,
+        "rshares": 786544090,
+        "voter": "artsuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 4836979493,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55070425,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2548312,
+        "rshares": 54971412,
+        "voter": "knarly327"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 140568307,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53008000460,
+        "rshares": 55496299,
+        "voter": "allyouneedtoknow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53871683,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45942905295,
+        "rshares": 60248566,
+        "voter": "frankcorvus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 580482162746,
+        "rshares": 1138182954,
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 858129,
+        "rshares": 53843398,
+        "voter": "falvar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 58673229,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 51301791,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 387594274,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 71464098,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25713525688,
+        "rshares": 54998376,
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53593366,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 269318651744,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267516181499,
+        "rshares": 3895505283,
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 74968074,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10408522028,
+        "rshares": 50188356,
+        "voter": "roxanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 5186278337,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 772992838,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54468203,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50050365062,
+        "rshares": 58508489,
+        "voter": "jcvanleur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1243780278579,
+        "rshares": 1795498402,
+        "voter": "lloydy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33637169873,
+        "rshares": 61109696,
+        "voter": "sressler"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 54165586,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5841611491,
+        "rshares": 55136065,
+        "voter": "darrenciccone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3306534575,
+        "rshares": 59953198,
+        "voter": "odakan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119198828550,
+        "rshares": 150871901,
+        "voter": "inwoxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6814892232024,
+        "rshares": 16895327783,
+        "voter": "vermillion666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4494788585,
+        "rshares": 53990243,
+        "voter": "steem4fobs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 53988734,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79067525892,
+        "rshares": 90189758,
+        "voter": "pineconeutopia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 52871755,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 176715413,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16551727136,
+        "rshares": 677977313,
+        "voter": "mrdeleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6880595844755,
+        "rshares": 57446042185,
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1030128184,
+        "rshares": 652628483,
+        "voter": "kharn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2004604707,
+        "rshares": 52635830,
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11985197441,
+        "rshares": 54597407,
+        "voter": "ribuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 588792209,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53457978,
+        "voter": "enriquesl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125276467194,
+        "rshares": 122099128,
+        "voter": "gymrat73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 53764231,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 51109965,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1126822037371,
+        "rshares": 64984913,
+        "voter": "steemwelcome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52128361,
+        "voter": "wallacepoewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 1098383476,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 127157537,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691146274,
+        "rshares": 52874902,
+        "voter": "steeme"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5911498033,
+        "rshares": 53553781,
+        "voter": "rutheniumjuice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119510650,
+        "rshares": 50637038,
+        "voter": "silversurfer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14820051763,
+        "rshares": 53600124,
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 2164577727,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 52785710,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52601101,
+        "voter": "lumpen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 671878599746,
+        "rshares": 380538171,
+        "voter": "j96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 313749878680,
+        "rshares": 2009874413,
+        "voter": "gamgam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52553508,
+        "voter": "akaskew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1644724,
+        "rshares": 52534351,
+        "voter": "fogzen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197832234,
+        "rshares": 52629759,
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 60952512,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474417539,
+        "rshares": 52290443,
+        "voter": "freestategirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 52468652,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 271467561,
+        "rshares": 52131186,
+        "voter": "elena2101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 51077428,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22546106632,
+        "rshares": 52763087,
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 50878690,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51761290,
+        "voter": "kileysplace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51743648,
+        "voter": "jtm12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74431494282,
+        "rshares": 136773607,
+        "voter": "iggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2059477350,
+        "rshares": 52099663,
+        "voter": "iamron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 52182120,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51486529,
+        "voter": "masterdavidjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34325917,
+        "rshares": 51444715,
+        "voter": "steff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264229413597,
+        "rshares": 51436620,
+        "voter": "rossulbricht"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493364866,
+        "rshares": 51419037,
+        "voter": "alexiwotan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1800841,
+        "rshares": 10707310991,
+        "voter": "shiva777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 564755466,
+        "rshares": 51406339,
+        "voter": "madikantia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11222113294,
+        "rshares": 53426834,
+        "voter": "lightobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": -806965645794,
+        "rshares": 179606030,
+        "voter": "spinx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976227761,
+        "rshares": 50716411,
+        "voter": "afroditta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 50182215,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9050222935,
+        "rshares": 53070760,
+        "voter": "neophonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 473792942,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136868986514,
+        "rshares": 56445299,
+        "voter": "lloyddavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1727940,
+        "rshares": 50849010,
+        "voter": "paulsemmelweis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 619759284,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4534968,
+        "rshares": 50591037,
+        "voter": "davejot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396872137163,
+        "rshares": 50514135,
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 851668694627,
+        "rshares": 50429294,
+        "voter": "mqtodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13228503,
+        "rshares": 50301743,
+        "voter": "simonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50266197,
+        "voter": "bagr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 953808309891,
+        "rshares": 50264692,
+        "voter": "melisalerue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7031497,
+        "rshares": 50258414,
+        "voter": "mardvin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108680928,
+        "rshares": 50249362,
+        "voter": "giselledelgado"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53885992,
+        "rshares": 50236261,
+        "voter": "digitalauthor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50214587,
+        "voter": "amymclain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1646438,
+        "rshares": 50213203,
+        "voter": "bumnumbum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50211558,
+        "voter": "kuyawa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062585138,
+        "rshares": 50207017,
+        "voter": "houck68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50194749,
+        "voter": "tothemoonguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50182946,
+        "voter": "glennith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50176856,
+        "voter": "csuatx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50174389,
+        "voter": "freecaledonia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50162823,
+        "voter": "dbenrosen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50113481,
+        "voter": "regulus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50093637,
+        "voter": "jetsettasean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50067553,
+        "voter": "muppetcakes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4344578302,
+        "rshares": 78311792,
+        "voter": "cianosapatti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75487046,
+        "rshares": 162089082,
+        "voter": "simbafire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151702140,
+        "voter": "carod"
+      }
+    ],
+    "author": "rossulbricht",
+    "author_reputation": 6264229413597,
+    "beneficiaries": [],
+    "body": "Hi you all! Ross and I are so pleased that I\u2019m here and part of this innovative community and technology. I\u2019m glad to have the chance to tell my story directly to you -- to fill you in on the past three years of my life and my battle to free Ross.\n<center>https://www.youtube.com/watch?v=2Yw2Vy4x-KQ</center>\n\nMy son Ross Ulbricht -- a peaceful, idealistic humanitarian \u2013was  tried and sentenced to double life without parole for all non-violent charges relating to his role in the Silk Road website. Silk Road was a free market experiment: a voluntary, anonymous marketplace that operated on the tor network using the crypto currency bitcoin. Many things, both legal and illegal, were exchanged, although there were restrictions of things considered harmful by the administration. For example, there was no child porn, murder-for-hire or stolen goods on the site. Drug sales were permitted, with marijuana the main product that was bought and sold.\n\nSince Ross\u2019 arrest it\u2019s been a David and Goliath fight against the US government. The investigation, pre-trial events, trial and sentencing are so rife with abuse and corruption that it\u2019s impossible to cover everything. Here are some major issues:\n\n<center> http://i.imgsafe.org/49dec2fca2.png</center>\n\n\nIt\u2019s been a wild and crazy three years to say the least. Since Ross\u2019 arrest I\u2019ve strived to the limits of my strength to direct attention beyond the sensationalism to the important precedents and issues at stake in this case and how they impact our freedoms in the digital age. In addition to Ross\u2019 release, my goal is to shine a light on the alarming loss of our liberty while raising funds to defend Ross. (Any payments from here go 100% to Ross\u2019 defense). This is basically my life now, with some down time sprinkled in.\n\nThings weren\u2019t always like this, and I often shake my head wondering how I got here! Before Ross\u2019 arrest I was the gracefully aging mother of two beautiful, well-adjusted adults, hoping for grandchildren and planning the rest of my life. I had pretty much retired from freelance writing and was continuing to work with Kirk, Ross\u2019 dad, in our business, Casa Bambu. (We rent bamboo houses that Kirk built to vacationers, off grid in the Costa Rican rainforest). One day I led a relatively tranquil life and the next I was falling, like Alice through the looking glass, into a bizarre world of the dark web, encrypted communications, digital currency, and the drug war. A right-brained, tech-resistant ex- hippie, I had only owned a smart phone for a month, had never been on twitter and barely heard of bitcoin (and only from Ross). When Ross was arrested I suddenly -- and urgently -- had to become adept at social media, public relations, fundraising, pgp, bitcoin and criminal law.  \n\nIt was urgent because I had to save my beloved son.\n\n<center>https://i.imgsafe.org/31d2386203.jpg</center>\n<center>Ross and Lyn shortly before his arrest</center>\n\nSo now my life is dominated by the fictional entity Dread Pirate Roberts (DPR) and I\u2019ve been on a crash course to do whatever it takes to free Ross: blog, comment, tweet, follow, unfollow, like, unlike, friend, unfriend, defend, raise funds, encrypt, decrypt, build websites, write press releases, give speeches, give interviews, challenge journalists, translate legalese, learn digital-speak \u2013 and now post on steem.it.  I have twitter followers all over the world, from Russia to Spain, from Australia to India.  I\u2019ve been called a jedi, a storm trooper, Dread Mother Roberts, a hero, a \u201cleading internet freedom activist and social media pro\u201d and a badass (fondly, by the lawyer).  Also some nasty things on the internet, but I\u2019m getting a thick skin.\n\nThe learning curve has been steep. Sensationalistic media; aggressive prosecutors; biased judges; cruel prison staff \u2013 the opponents are formidable and ruthless. But there have also been invaluable allies, like many of you, and that plus divine intervention has gotten us this far.  I have made so many courageous, generous, amazing friends on this journey. They are people I never would have met and it has enriched my life, given me hope. I\u2019ve often thought that the past three years would have been some of the most interesting, purposeful and exciting of my life except that Ross is in prison and that makes them the most traumatic, painful and difficult as well. As long as he\u2019s in there, I will not \u2013 cannot -- rest.\n \n <center>https://i.imgsafe.org/31d247242c.jpg</center>\n<center>Lyn speaking at porcfest.</center>\n\nThis journey has taken me from a prison in interior Brooklyn to an interview in a multimillion dollar Soho loft (on the same afternoon); from high priced attorney offices to clandestine meetings; from a freedom festival in New Hampshire to trudging through Austin streets hanging posters at SXSW (and then speaking there the following year).  Never having addressed audiences, I\u2019ve now spoken at numerous events, both in the US and Europe (including Porcfest, FreedomFest and the national Libertarian convention); appeared on a range of TV, radio and podcast shows, including Reason TV, CNN, HuffPost Live, Infowars and Fox; and given many interviews with both major and alternative media , including the New York Times, Wall Street Journal, Forbes and The Guardian. Along with Ross, I am prominently featured in the documentary Deep Web.\n\n Never in my wildest dreams would I have believed this would be my fate. \n\nPursuing American justice is expensive and the challenge is great, but I\u2019m fueled by a mother\u2019s love and now a righteous anger at government abuse. I have seen first-hand how prosecutors lie and obstruct. I have visited the prison with other families, desperate to see loved ones, the children tearfully clinging to their fathers. I personally know non-violent people rotting their lives away in captivity.  My perspective has changed forever.\n\nBesides my love for Ross and resistance to tyranny, a crucial thing that keeps me going is my faith in God. I have faced some of the darkest places in my mind, fear gripping me, my thoughts screaming, \u201cYou can\u2019t do this! They\u2019re too big!\u201d Yet I find peace and hope when I can turn the burden over and take on that day\u2019s fight once again. I have felt God\u2019s hand in this throughout, in many ways, large and small. There has been the unlikely but perfect timing of events; the right people arriving at the right time; doors opening when all seemed closed; the impossible occurring against all odds. I pray each day that God will use me, Ross and this situation for good and that it will shine a spotlight on evil. And of course that Ross will be out of that cage, in freedom where he belongs. \n\nThis is a bigger, more far reaching story than one man or website.  There are vital issues at play, ones that impact us all and are worth fighting for. We are in unchartered territory in the courts. Decisions and precedent made now, with the Silk Road case and others, will have far-reaching impact on freedom, innovation, fair trials and privacy.\n\n<center>https://www.youtube.com/watch?v=SF8gR7jAG2U&amp;list=PLPefjTxHVZSo-zoK-Bap56eihCqhBn75N&amp;index=55</center>\n<center>The Unfairness of the Silk Road trial in 3 minutes</center>\n\nWe are at a crossroads in history. The question and challenge is which road will we take: the one to freedom and innovation, or the one to government intrusion, expansion and control. It is up to us to make sure we take that freedom road.\n\nPlease help us! Of course, please upvote this post. You can also go to FreeRoss.org for lots of other ways to support our battle. You can donate; play the art game; purchase at our store; volunteer; and spread the word on social media and to your network. Everything helps. We\u2019re just one family and some friends. We need you!",
+    "body_length": 7766,
+    "cashout_time": "2016-09-06T18:02:09",
+    "category": "introduceyourself",
+    "children": 282,
+    "created": "2016-08-30T18:02:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"introduceyourself\",\"bitcoin\",\"crypto-news\",\"blockchain\",\"\"],\"image\":[\"https://img.youtube.com/vi/2Yw2Vy4x-KQ/0.jpg\",\"http://i.imgsafe.org/49dec2fca2.png\",\"https://i.imgsafe.org/31d2386203.jpg\",\"https://i.imgsafe.org/31d247242c.jpg\",\"https://img.youtube.com/vi/SF8gR7jAG2U/0.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=2Yw2Vy4x-KQ\",\"https://www.youtube.com/watch?v=SF8gR7jAG2U&list=PLPefjTxHVZSo-zoK-Bap56eihCqhBn75N&index=55\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T18:02:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 244476897311799,
+    "parent_author": "",
+    "parent_permlink": "introduceyourself",
+    "pending_payout_value": "6070.234 HBD",
+    "percent_hbd": 10000,
+    "permlink": "lyn-ulbricht-mother-of-silk-road-political-prisoner-ross-ulbricht-is-now-on-steemit",
+    "post_id": 1059265,
+    "promoted": "22.000 HBD",
+    "replies": [],
+    "root_title": "Lyn Ulbricht, mother of Silk Road political prisoner Ross Ulbricht, is now on Steemit!",
+    "title": "Lyn Ulbricht, mother of Silk Road political prisoner Ross Ulbricht, is now on Steemit!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/introduceyourself/@rossulbricht/lyn-ulbricht-mother-of-silk-road-political-prisoner-ross-ulbricht-is-now-on-steemit"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/paginated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/paginated.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..05ac010729f3ae7d7431d9de06a94dfd52e587e5
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/paginated.tavern.yaml
@@ -0,0 +1,30 @@
+---
+  test_name: Hivemind condenser_api.get_post_discussions_by_payout patterns test
+
+  marks:
+    - patterntest # unlike in old version where page defining post (last from previous page) was always part of new page (along with others with the same
+                  # payout, potentially making it impossible to move forward with pages), new version always skips it, also has defined order for posts with
+                  # the same payout (previously random)
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_post_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: "condenser_api.get_post_discussions_by_payout"
+          params: {"start_author":"steemdrive","start_permlink":"steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails","limit":2}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "paginated"
+            directory: "condenser_api_patterns/get_post_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..ef6cc28b4f7a862bac4aa6752eaf09ec3100bb88
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit.orig.json
@@ -0,0 +1,53892 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29065026087965",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39193647153",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "350983411353",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "100010071",
+        "voter": "style"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "644561565411",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28851409050",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16629632053912",
+        "voter": "rainman"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "678749154221",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "290442248826",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31846016835584",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64424123116414",
+        "voter": "ned"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "40990136716",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1465429338",
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "335898961474",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "344351841045",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6300691402888",
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6374112970391",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3183104033800",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223360548647",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384933625306",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6854979526916",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "684870754215",
+        "voter": "justin"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "16484473824725",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120610759042",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5645824730155",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2203971895865",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4798801965393",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177869761105",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1000072774079",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5307342946866",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1714782870044",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "790134973068",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314382747160",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3084952552",
+        "voter": "boy"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "39514772539",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3744099613",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "708916690",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3778265352120",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1408131653617",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5874464366093",
+        "voter": "clayop"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "1587095276274",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "490952568782",
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52162307417",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1653744064",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5353703077673",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213265420",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1344827833395",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33415320588",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4768294498878",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "462168403886",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "440397344978",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2948934371032",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145153034071",
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365218637510",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320054757231",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836053297246",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252012000857",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8983689584",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613500608",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "883033583",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18831931707",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "847367661232",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8541231709",
+        "voter": "fbsvk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2468314738",
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131059028668",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99407442284",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18422461105",
+        "voter": "jakev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22980185355",
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287496994",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19048759573",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14049617378",
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153266720533",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28030491514",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10809412876",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78677360557",
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15484655885",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4114116979",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80912126570",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91920078762",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16986781098",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19581497371",
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2965778688",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19864981951",
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4953536758",
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59389567521",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1176938440",
+        "voter": "lovelace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22730046248",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5174412203",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3989110433",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29123857192",
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "483152352",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5998136643",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6860622525",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "539229693",
+        "voter": "manu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46486294798",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613633859",
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1792970687",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1695482795421",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17970582996",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40256285576",
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121040089554",
+        "voter": "bbqbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "598749018",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3197564021",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2164745847",
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16501701210",
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59189682608",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7522215721",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5498455770",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60171794063",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14553627890",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52133457039",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1450594023",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421830528",
+        "voter": "viet-ngo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9012478291",
+        "voter": "gore84"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "928498426",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144640411",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401086480",
+        "voter": "bkz-mark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323291888380",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99230266456",
+        "voter": "oscarp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5155051731",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29597883122",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5607058267",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48191210281",
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "423526577",
+        "voter": "shane-loomb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580447736426",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3379051883",
+        "voter": "crypton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "292841176",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18892584759",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227661174549",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14825107442",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9160294327",
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3641210640",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184127210501",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10839974752",
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10367032406",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400302600",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2732164481",
+        "voter": "patrick-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311649953",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154650902490",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258682311783",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218701281553",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53913190618",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "420660720773",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62485569470",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74930713836",
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32242309393",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72465284432",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187339395265",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1071159098",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19853951219",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130506723134",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48263580054",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4225748527",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13376879780",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77121637987",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129350122394",
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38007430652",
+        "voter": "kun7788"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692586897",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3820890867",
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316079910",
+        "voter": "james-ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130135983609",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130569937219",
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3713808326",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19734517919",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5163259581",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299624307",
+        "voter": "knopki"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-43295372595",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208893515786",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "846666893",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27044457127",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688333510",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35617668938",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5530404220",
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6209409248",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73156015714",
+        "voter": "riensen"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "102193068",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2552582711",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "139217694",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83171001282",
+        "voter": "blocktalk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8405765844",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-2388357578",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "169304350",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36430901543",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6696004846",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36090146114",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51252420180",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17647343278",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "842304582512",
+        "voter": "coinfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1625043848",
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3875913318",
+        "voter": "steskoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "343023700",
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54498249470",
+        "voter": "norbu"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "118076270",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090523115",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262266700",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-41659756587",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46307425448",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8356388356",
+        "voter": "nobodyishome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7699122159",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16220061534",
+        "voter": "eindbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4783947613",
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3178291674",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "3317397556",
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3690681721",
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261479355",
+        "voter": "stompy"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "96259058",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280744944256",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54361788954",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13811194874",
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2520944846",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4179624293",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "111881284",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255316245",
+        "voter": "jn024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3704365763",
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253533017",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10058326169",
+        "voter": "getssidetracked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4704791719",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6985662723",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15899597932",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310292244",
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108195012801",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25970499549",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6208426188",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12569064381",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "118086118",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20416680494",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131321480287",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1648092544",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9774380648",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2068007241",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279214663",
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63749936823",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49577785960",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211325523817",
+        "voter": "guerrint"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "124327762",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24590582170",
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "442037344",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163154891628",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32840023620",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1749258576",
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278125905",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6164439153",
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415946152",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1921778079",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1158676315",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249351212",
+        "voter": "ryno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38500935552",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1389411746",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249212724",
+        "voter": "sintal1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33866686438",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "353762811",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9272236814",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249223280",
+        "voter": "leonalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17384527304",
+        "voter": "freiheit"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-242222642",
+        "voter": "vernik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251825448",
+        "voter": "mahnunchik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351594067",
+        "voter": "apes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51232668486",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12019557908",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116814208271",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198026604",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255250482",
+        "voter": "davman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "999982966",
+        "voter": "themax37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13627675834",
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "963672133449",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105556931353",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10231659869",
+        "voter": "becerra18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1780499448",
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3825830255",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836023833",
+        "voter": "alkemix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4463547529",
+        "voter": "yun093"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536550051",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6555644383",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41262623155",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239665790",
+        "voter": "sairji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "970743271",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304214503",
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252407179",
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47581149959",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244217894",
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17625843355",
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4691528458",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4123768079",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2841500925",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3863607637",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11061811644",
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116961796010",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2523930332",
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "845201623",
+        "voter": "bmmmmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "358696073",
+        "voter": "suicidemime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "567047214",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73040531109",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19449504237",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241723619",
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17506904849",
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236954632",
+        "voter": "dashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19440035025",
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10208713003",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116021930707",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3714148047",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1129586281",
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236405035",
+        "voter": "geezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2831943731",
+        "voter": "cashbandicoot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25365048399",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50327671232",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4874784593",
+        "voter": "karoline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241764375",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71993072510",
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156801812336",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58942331065",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7862851677",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3350952714",
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3441787535",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10098916070",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16900513758",
+        "voter": "rukrasnov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11802802859",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2865743759",
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1708370487",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240939573",
+        "voter": "gottod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570074959",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7160262860",
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399143272",
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12987519532",
+        "voter": "logicwins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235633387",
+        "voter": "hanno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350361322",
+        "voter": "r3b37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8273541325",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104866231144",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453154289",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408980570",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235474350",
+        "voter": "mazzaneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1827915010",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33087660059",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240031646",
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8875408008",
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235661413",
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-240333753",
+        "voter": "phuocsim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26195832780",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14473739170",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25830030559",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537351543",
+        "voter": "wojooo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3288381181",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258070573",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4692425081",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84104019612",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239689633",
+        "voter": "ripexz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234592637",
+        "voter": "jamique"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2456113284",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229711964",
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239086107",
+        "voter": "ibeyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6791005950",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11864195113",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6131226904",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18779239474",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992096822",
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4405666697",
+        "voter": "deadloop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5844362550",
+        "voter": "inti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254024586",
+        "voter": "licianek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149368383295",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13333004595",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1456542211",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1172088990",
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5968161933",
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200835346",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6731469625",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12701757033",
+        "voter": "substance"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "277530511",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "749090420",
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "204669482",
+        "voter": "pizarrojesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8643387438",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51623937057",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "992215238",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118779815",
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21969020834",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595197487",
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5045722000",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149637322",
+        "voter": "teia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1216029463",
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17344594034",
+        "voter": "angor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4282571209",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2988502587",
+        "voter": "loewan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276817993",
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7947869919",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179910154045",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357938237",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1033153794528",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181079553",
+        "voter": "ianvaughan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "528470842",
+        "voter": "aleco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117875563",
+        "voter": "valkir81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15694880977",
+        "voter": "steemedbroccoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17043832502",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165521214",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2946897680",
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1518428878",
+        "voter": "boity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695718",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-126987527",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112740514",
+        "voter": "sllockes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311064378",
+        "voter": "krassvs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2159001014",
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5785415084",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195811507",
+        "voter": "innerexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117074773",
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175703647",
+        "voter": "turretkilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2876726818",
+        "voter": "crypto.owl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203037808685",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173066031",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117013137",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12589604473",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5143473734",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117327347",
+        "voter": "tklinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3313398970",
+        "voter": "overlord"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-300785948",
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "615406581",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314792076",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17144601973",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15872861414",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2318927905",
+        "voter": "anon.news"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646330460",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1255524871",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230402080",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2515077363",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239266696",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116360217",
+        "voter": "kukuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112498145",
+        "voter": "tuppu91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134416011",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "427093789",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2977035695",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34395328042",
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157514413",
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20990748319",
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5596136858",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435533857",
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117385102",
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272289480",
+        "voter": "karchersmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113500096",
+        "voter": "peace77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76809298881",
+        "voter": "ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219824678620",
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "488829491",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58993378905",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18318392845",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106608430",
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1805608597",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1580113648",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25847116022",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112595631",
+        "voter": "im2hard2resist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2819175239",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3721016208",
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3045078021",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73734761820",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10656358989",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "913005014",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1782126949",
+        "voter": "gaitan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7772862051",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66778067",
+        "voter": "dras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1334955560",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109986570",
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65341032",
+        "voter": "ladeiafr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65444875",
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192101250",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "827559373",
+        "voter": "merej99"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "585115000042",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15285736731",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-6602930413",
+        "voter": "najoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65255531",
+        "voter": "douglasrherron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19606865230",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16956284188",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8300135915",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13210619967",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65373514",
+        "voter": "rjarmon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61344206",
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122068688",
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118578167",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190566920",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4243869059",
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21464239330",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75999211",
+        "voter": "shaerox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8391266213",
+        "voter": "mrweed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64925456",
+        "voter": "denn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "332067508",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122650466",
+        "voter": "belgorogdmitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32402400556",
+        "voter": "tikal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710731872",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1976759708",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1252343433",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64920623",
+        "voter": "mr-anderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "812896951",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17449741801",
+        "voter": "r0achtheunsavory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3377785978",
+        "voter": "spiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63245124",
+        "voter": "breastsono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20361449685",
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147557970",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666229621",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163705995",
+        "voter": "adc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65146782",
+        "voter": "ajareselde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11377231920",
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2696012606",
+        "voter": "hrottie"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "22149484172",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61639012",
+        "voter": "bonus1602"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1875888695",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349060440",
+        "voter": "bitcoindon23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77113695",
+        "voter": "danilathemasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "877691020",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7567372889",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125365589",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4433662398",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "700194274",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147867259",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4559264999",
+        "voter": "blocksurf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "653009919",
+        "voter": "haley-liz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62019780",
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63501809",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63396741",
+        "voter": "aiaconelli707"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63395918",
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58465169",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1900541345",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641706818",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60818394",
+        "voter": "kojektea"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "744261148",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "230964609",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1599302189",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3790738716",
+        "voter": "dv8silencersteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63246427",
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7013888258",
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2108123426",
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21624247635",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177703525",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "430813147",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94035076",
+        "voter": "ninjaboon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3862280709",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "825186326",
+        "voter": "kdugar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72470774",
+        "voter": "agrawalrohit1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27278230959",
+        "voter": "dowha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3305432410",
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65028083",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "553100399",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64119004",
+        "voter": "jupiter.zeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1943836237",
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6504510560",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62373416",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2739523879",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62479088",
+        "voter": "just-me-nobody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "502206413",
+        "voter": "sharper333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664730807",
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64053985",
+        "voter": "tolgasak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54983603",
+        "voter": "efrageek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113089000",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64006701",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291582909",
+        "voter": "jtoubia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100437770",
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746690081",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54300455",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8751917059",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62542956",
+        "voter": "kana"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "790357703",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59560024",
+        "voter": "andrey000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58850431",
+        "voter": "trimpy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "524021704",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588703041",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411377435651",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119505043",
+        "voter": "sirwagginston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64672968",
+        "voter": "erotic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69981308",
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234726497",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60637775",
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60566656",
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1158711475",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60521896",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59404268",
+        "voter": "lucasnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109008307",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-277998787",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78840073283",
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2813206335",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60336688",
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2311894727",
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241826833",
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71213188",
+        "voter": "hutch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417896642",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59989087",
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110882929",
+        "voter": "jaggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1125810373",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "599588088",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59908156",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109781085",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59837209",
+        "voter": "chrisremus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2012644058",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59824180",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-304371474",
+        "voter": "anarchyhasnogods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59547267",
+        "voter": "andrew21w"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59521667",
+        "voter": "dave-mohican"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133222141",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106960350",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59855735",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136150988",
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5214999573",
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565034",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841764781",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59115407",
+        "voter": "ejosev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59049216",
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111174011",
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70389547",
+        "voter": "zakharsmirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56695901",
+        "voter": "gosteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1054185349",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17182681895",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9337355845",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300847113",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67898302",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399837706",
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1850437029",
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6945828193",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25426770744",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59810146",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "449613087",
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58064383",
+        "voter": "libertyminded"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58984750",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200209705",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60680583",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66567281",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68532961",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58806132",
+        "voter": "capehost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7844013650",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60893633",
+        "voter": "tcstix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80039263",
+        "voter": "alexalbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58993287",
+        "voter": "jurisnaturalist"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-54323980",
+        "voter": "rysabi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59261081",
+        "voter": "disletti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57283554",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64184750",
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57549944",
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1701639624",
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59196527",
+        "voter": "rgla216"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200326837006",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "55537337",
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58606938",
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58582901",
+        "voter": "herbertflores"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50476255",
+        "voter": "fiat19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58398424",
+        "voter": "oliv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60092482",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75596244",
+        "voter": "pery"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "592998202",
+        "voter": "bennytremble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58558284",
+        "voter": "alex1994"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2795636168",
+        "voter": "xbananax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57155862",
+        "voter": "sinner2winner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66067014",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59991526",
+        "voter": "ptmikesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57698673",
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177495059",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137097811",
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2479630826",
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60744703",
+        "voter": "jusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61681826",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60588978",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194058019",
+        "voter": "zrc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58172886",
+        "voter": "nullpointer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58145581",
+        "voter": "tylerg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67716447",
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59050884",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59284524",
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289788537",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61422695",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56909672",
+        "voter": "konstantinrf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58035992",
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76074009",
+        "voter": "adnanefs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50027958",
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61922359",
+        "voter": "kirby1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18184610664",
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60043805",
+        "voter": "genzai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118587240",
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55452158",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59241410",
+        "voter": "erob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59482963",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "735839549",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53394118",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58186044",
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57844972",
+        "voter": "freemanmccoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17186561644",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55885794784",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39484524724",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56679654",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "773922739",
+        "voter": "kasecucuzza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71380097",
+        "voter": "quinneaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14872611192",
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56609375",
+        "voter": "alanslaug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64281289",
+        "voter": "myvilz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364408983",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57664781",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57653356",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57652422",
+        "voter": "patrickulrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4553068392",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57620009",
+        "voter": "sfateev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86267182",
+        "voter": "freeinthought"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58004860",
+        "voter": "jones-wills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196799154",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4386763010",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291086336",
+        "voter": "trimtab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54256199",
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79719071",
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7085277650",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54561850",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297512605",
+        "voter": "exoexo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8549581647",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58449865",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59804320",
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57173176",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115279794",
+        "voter": "koningsbruggen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452142815",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57729316",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55717566",
+        "voter": "socalguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56169240",
+        "voter": "ertinfagor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2284064858",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6716765571",
+        "voter": "alasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419652844",
+        "voter": "marz.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57193795",
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "353119892",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57169840",
+        "voter": "earnings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56024009",
+        "voter": "darwilliam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57099237",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54835021",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378486516",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335535004",
+        "voter": "neurosploit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56860845",
+        "voter": "notorious4life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1235057220",
+        "voter": "victor-smirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55961578",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486184889",
+        "voter": "hej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57032457",
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56770550",
+        "voter": "dobermansden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56767767",
+        "voter": "venetor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56762567",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56761820",
+        "voter": "esraulgil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56184814",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56749063",
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55620764",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54500387",
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55737590",
+        "voter": "kingsjack123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56705083",
+        "voter": "kamisaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56864664",
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54319587",
+        "voter": "sile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1688587641",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "201362230",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "871723041",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55379722",
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55340759",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157546256",
+        "voter": "kevbonneau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11257010710",
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65212139",
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99156770",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55261899",
+        "voter": "shakimclark7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55259368",
+        "voter": "pumpndumptrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136828832",
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55543546",
+        "voter": "kralizec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56332547",
+        "voter": "murph785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394487282",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56288884",
+        "voter": "phusionphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152591420",
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56224562",
+        "voter": "dennislee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56208181",
+        "voter": "omars3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56137183",
+        "voter": "upshot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56126260",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54304778",
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56051583",
+        "voter": "maestro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51626433",
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53939047",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1434361093",
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54839161",
+        "voter": "cyborg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55931162",
+        "voter": "sweeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54813939",
+        "voter": "craftercrafter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55903826",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55894632",
+        "voter": "djmagrobel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64241966",
+        "voter": "tyrannyunmasked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65870847",
+        "voter": "russ512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58810758",
+        "voter": "bobworks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54690280",
+        "voter": "eef87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54660184",
+        "voter": "nevid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51374607",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54910567",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54594928",
+        "voter": "thomasdh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55676046",
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56185313",
+        "voter": "kinchent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50406805",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56634879",
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171651",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58614624",
+        "voter": "edniredo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47462900247",
+        "voter": "ummjackson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85225954",
+        "voter": "ethereumnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "761529483",
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55872960",
+        "voter": "luvtolook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50096233",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55525348",
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55498559",
+        "voter": "peteyates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55486361",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55456592",
+        "voter": "unblogd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55420308",
+        "voter": "naokiohno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55407469",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "999968844",
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55388667",
+        "voter": "surfkid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53844705",
+        "voter": "reza9090"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70864781",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55305082",
+        "voter": "gratitude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55290988",
+        "voter": "rasfos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55252692",
+        "voter": "bradgarratt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55237172",
+        "voter": "renijra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76879588",
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54129624",
+        "voter": "occultreviews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55160756",
+        "voter": "rockabilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55138616",
+        "voter": "ehkbd396vgls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55131842",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55126911",
+        "voter": "jusjayce19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55113519",
+        "voter": "mrstraume92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55102522",
+        "voter": "ingwald"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54012416",
+        "voter": "morningdoodle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52918124",
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52911110",
+        "voter": "forcestaff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55052571",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55038370",
+        "voter": "petertahoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54996833",
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54977054",
+        "voter": "bitbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54957779",
+        "voter": "kam1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53870477",
+        "voter": "jensk92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54942327",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54941471",
+        "voter": "aharmlessspider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54937147",
+        "voter": "vanessagomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52778255",
+        "voter": "o627492o"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54923082",
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53845766",
+        "voter": "reza9898"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143366278",
+        "voter": "dereremit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53836674",
+        "voter": "missagandonian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53826294",
+        "voter": "toopoorforsf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54899345",
+        "voter": "warock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54880208",
+        "voter": "smduchess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53798418",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54873574",
+        "voter": "peacefulpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54863076",
+        "voter": "milohdz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54861623",
+        "voter": "pirosb3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54860980",
+        "voter": "sammiedata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53762419",
+        "voter": "yoyoyoram"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54834816",
+        "voter": "ripper234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52683284",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54826051",
+        "voter": "holdthedoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54813538",
+        "voter": "bexir.oborael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51563976",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54766433",
+        "voter": "teekay79"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54763174",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53679390",
+        "voter": "hg8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54736573",
+        "voter": "mikebroemmel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54706268",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53622370",
+        "voter": "waverider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54693928",
+        "voter": "tazouka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52547166",
+        "voter": "digitalbrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51470815",
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54675427",
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54670057",
+        "voter": "lifeworship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54668641",
+        "voter": "endergirl197"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-54663894",
+        "voter": "zanovosib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54663364",
+        "voter": "alexseeker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54661520",
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54657249",
+        "voter": "jomo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54656951",
+        "voter": "noam32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53577545",
+        "voter": "j0oboi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565135",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53555002",
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54609325",
+        "voter": "dapathfinder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54598809",
+        "voter": "steemhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54592999",
+        "voter": "dal5ton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53522017",
+        "voter": "sungminz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52447972",
+        "voter": "olivianakano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50305873",
+        "voter": "steemninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54037838",
+        "voter": "redrohx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80764047",
+        "voter": "niklaszantner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155927730",
+        "voter": "drakmail"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![SteemyLoginLogo3xca352.png](https://www.steemimg.com/images/2016/08/15/SteemyLoginLogo3xca352.png)\n\n# Introducing Steemy - Native Mobile apps for STEEM! \n---\nWe've been hardcore fans of the STEEM social network since its launch.  As full-time mobile developers, we've been passionately building a genuinely *compelling* experience on iOS and Android for the STEEM network!  Today, we're excited to announce **Steemy** and show off some screenshots.  While you can't download the app in the app store just yet, our public beta is around the corner and we'd love to hear from you. Thanks and STEEM ON!   \n\n(We've included a short youtube clip of the app in action as further proof of the app's existence..see end of post)\n\n\n# Features\n---\n\n- On-device transaction signing - your private keys never leave the device\n- Master Password or Import Key login options\n- Remote push notifications for replies, up votes, follows and more\n- WYSIWYG, markdown and html editors with offline saving\n- Easily import photos from your mobile device and include them in your posts\n- Advanced blockchain searching capabilities to find relative content in new ways\n- Night mode and other theming options\n- Our backend uses our own full STEEM nodes - we don\u2019t rely on congested public endpoints\n- Open source signing components\n- more super-secret, mobile-specific features to be announced shortly ;)\n\n# iOS Screenshots\n---\n\n![IMG_1962b40b2.png](https://www.steemimg.com/images/2016/08/15/IMG_1962b40b2.png)\n\n![IMG_19548a086.png](https://www.steemimg.com/images/2016/08/15/IMG_19548a086.png)\n\n[![IMG_195501d5b.png](https://www.steemimg.com/images/2016/08/15/IMG_195501d5b.png)]\n\n[![IMG_19567a603.png](https://www.steemimg.com/images/2016/08/15/IMG_19567a603.png)]\n\n[![IMG_195792032.png](https://www.steemimg.com/images/2016/08/15/IMG_195792032.png)]\n\n\n# Android Screenshots\n---\n![Screenshot_20160815-115508414f2.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-115508414f2.png)\n\n![Screenshot_20160815-11550536f6f.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-11550536f6f.png)\n\n![Screenshot_20160815-1155007f489.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-1155007f489.png)\n\n![Screenshot_20160815-11545556c4a.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-11545556c4a.png)\n\n\nhttps://youtu.be/kHbOHuXQWg4",
+    "body_length": 2367,
+    "cashout_time": "2016-09-16T04:46:15",
+    "category": "steemit",
+    "children": 220,
+    "created": "2016-08-15T17:42:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemy\",\"steemapp\",\"\"],\"links\":[\"https:\\/\\/youtu.be\\/kHbOHuXQWg4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T06:15:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 255613028723179,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "10210.700 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "introducing-steemy-fully-native-ios-android-apps-for-steem",
+    "post_id": 615908,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM",
+    "title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "941731279",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7630664486754",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26546851529009",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28860901543",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26275719549142",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399415745083",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14697797604728",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40261538120634",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36399158476733",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7287284495784",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219042566758",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3218865983058",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385464769392",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6527288225551",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "629235972940",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107368706156",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1202364403012",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2778620786382",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "788303906273",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4624143270559",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012546698102",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "948645888607",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320894214580",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3094227321",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2018308331283",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3755919142",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703611913",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5895452407610",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53261625751",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5461062957",
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5248796936",
+        "voter": "jen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31020409685",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435835894301",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25224828032",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658434658",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213555429",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251650600185",
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12302450425",
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4645434442291",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15486432504",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322742522737",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2539528091657",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4677672750501",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1288478836630",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364488541490",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76269518609",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1064112656314",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261059857577",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15879310527",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622043795",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "947518714",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2706369432682",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6901450215",
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391300852031",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759901644",
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49087071558",
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47676868957",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15744448168",
+        "voter": "cryptoprometheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282481919881",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6218388754",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287957469",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22851068453",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26339332178",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81271314308",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28827731919",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13857797589",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "569109365",
+        "voter": "frxdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51569034114",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3381707663",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10283360038",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25990954524",
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2968414276",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16325220071",
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6963898563",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "468329075252",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8112324606",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83561852958",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10788357562",
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24290958657",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2181695613",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339902561070",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1696048914135",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233102958062",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7456570912",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15513837266",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5394181231",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141860095137",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7722626018",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1630869950",
+        "voter": "mookid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59046327388",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8089463236",
+        "voter": "censor-this"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011606523",
+        "voter": "coar"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1647918993",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "491733834025",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2164048830",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "934691204",
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1702188822",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41463145095",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375485571343",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5794630789",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342876699663",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6176350844",
+        "voter": "motivational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90078948",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232932917905",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12457434054",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63707549495",
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31690136419",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-8838503984",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73021925789",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354956224005",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "352209566",
+        "voter": "jabravo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231798069",
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8706722974",
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5489887265",
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53417323094",
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376432512152",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111873962064",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20273054154",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56613707223",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43936012834",
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19944193958",
+        "voter": "minfon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61288297136",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32282987109",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211066627674",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117389810764",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250779134032",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "449244898326",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48314646957",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4225748527",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13381225324",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75015159271",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23672766314",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128017998380",
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1372538034",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186181525556",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "673023307194",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23620081773",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5359058455",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "70382421728",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10606399776",
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367993454",
+        "voter": "alextsvirko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2727866888",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36251103104",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3803302124",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2296189896",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35110341502",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6447225666",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4394946495",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3930145143",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1233769087",
+        "voter": "phanie90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1963122914",
+        "voter": "rowbvp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176517920920",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18420587434",
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142479249108",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1174733183",
+        "voter": "stupidteenboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3178114846",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4163072671",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11629950938",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231222031627",
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26189252148",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4916727099",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70050996082",
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5020716018",
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250697653",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1724889475",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108665344051",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25440234426",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13382892819",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129978663055",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252518634",
+        "voter": "avantyris785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49613914926",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20715599247",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25437941218",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83555712",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361720448",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9298606221",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6187628336",
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "3800",
+        "reputation": 0,
+        "rshares": "216627523583",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2126899035",
+        "voter": "obfuscate-me"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77739321482",
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "19130291257",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10583075740",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103574158909",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "213368336",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "197468232",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86951139",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1230306794251",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119931099578",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8501400238",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3185202465",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7878946500",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41265637686",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245149849",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14190084617",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279828314",
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158558212807",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269516049",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4356428789",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4446869322",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3549473866",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144657204853",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33597624083",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246503487",
+        "voter": "fintekneeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5487522068",
+        "voter": "mastertrader777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81193986566",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15047061152",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2181125028",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3728295687",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57622403315",
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57587125095",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "344216939",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18563733049",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8640015168",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11804173407",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2923324702",
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "722979920",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7028930352",
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8998707956",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128897415203",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1396236934",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17787390532",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35572192110",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41117209832",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5581133833",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22827120414",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120162058",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75155947399",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4460619227",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2595832893",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9297731115",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3773408670",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240861118",
+        "voter": "m34ndy0u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1450587245",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84785197552",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36691375796",
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3921772813",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10589572085",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6133928089",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37786807870",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2670183399",
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189803128958",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198815487354",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131930031",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50745949960",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7915132341",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2371757513",
+        "voter": "metalcrypto86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200835346",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7310496375",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16418209916",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118997456",
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8272759658",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145088625",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3429908815",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32840277809",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50446860889",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4205952736",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22490571930",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1931724325",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469444219",
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1417716803",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107071475",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8120745406",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180766867333",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130516856",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118191498",
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014720738596",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1638021515",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6533566864",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37104363071",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2526892289",
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117518172",
+        "voter": "burtnyy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3073348452",
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55609255744",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695718",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9223165225",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118110720",
+        "voter": "kamirus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190746623",
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1073927278",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5163105975",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898853087",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35557408613",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6043552466",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15778369711",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348055214",
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "634677740",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6627911515",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4966581120",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16359584188",
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265859568",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32802459469",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10607133925",
+        "voter": "npl77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4266663174",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10878913683",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435708310",
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4179769209",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122951400",
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8543172549",
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "711696098",
+        "voter": "cybercodetwins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335450273",
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692722967",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125562936",
+        "voter": "blysards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1693612096",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3690715185",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4668432597",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2977376953",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111012764140",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11060114610",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113431670",
+        "voter": "mms2209"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "714975270",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51359081888",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7804620168",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4909898227",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100621269618",
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2133895656",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75908853",
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "301833943",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41323733064",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "516171402732",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24803457022",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16960531436",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8258629596",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4882606765",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19746665322",
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25379157632",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26985239652",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27000068578",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "4686531546",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "81445607576",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20404007761",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7608055360",
+        "voter": "sunshine"
+      },
+      {
+        "percent": "3700",
+        "reputation": 0,
+        "rshares": "3338294019",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15842330986",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31910148976",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8964678925",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "13274553574",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418252412559",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1579699570",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50651622",
+        "voter": "shanejonas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155802538",
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26997864488",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26997159973",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26994977927",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26993476889",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26991282056",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26990193303",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22114403402",
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "42489259779",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16142463064",
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70516052",
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3071190621",
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64088762",
+        "voter": "donnablacktail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9285793397",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65105820",
+        "voter": "korose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48612921342",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63775516",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77473387847",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "1012260894",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374581913",
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235921562",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71461631",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1785678779",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62650809",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100809807",
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28303329252",
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8826323850",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63082929",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253851679",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62864549",
+        "voter": "alejoshy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1088539665",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20915742890",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "3400",
+        "reputation": 0,
+        "rshares": "1697398641",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1173918713",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61385527",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1555626413",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62539910",
+        "voter": "jfelton5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15480226673",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1512118630",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4274024399",
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2256397676",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81481591",
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62300623",
+        "voter": "nhuberfeely"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "183175490",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64006701",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5549884244",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11322866467",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32936248663",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2085306269",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554142063",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "586268356840",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163702640",
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44719852844",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60566656",
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54588377",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113457626",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60336688",
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2021838220",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3440154807",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2510155648",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1945712531",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60713021",
+        "voter": "krishbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5933699497",
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123199538",
+        "voter": "nelkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1205296670",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59958658",
+        "voter": "mgd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1694357387",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56605454",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140126974",
+        "voter": "spalser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53959064",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2832905693",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217084653",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26984764634",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59648980",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16498891421",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224437021",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39959999159",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2921148382",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381954099",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26672558843",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941542283",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151908779",
+        "voter": "letsgo.asino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218436997",
+        "voter": "freerubens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53628399",
+        "voter": "alphabit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59590162",
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310843991",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46099719842",
+        "voter": "albensilverberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15592330951",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4377285201",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58226150",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90932755",
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2380044342",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2995790342",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10644392346",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77909231",
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59797501",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68338923",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57686991",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58283876",
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61577027",
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4325283932",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195118598",
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13472124826",
+        "voter": "antoinev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62540266",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8349370222",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57131220",
+        "voter": "hotgirlktm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18931402331",
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58078172",
+        "voter": "dcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246917049",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2625089602",
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74582547",
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57813247",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57789562",
+        "voter": "frankfriendly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6492226260",
+        "voter": "ready4freddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57683187",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "649448205",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5202403828",
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4217367409",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378298430",
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11500654084",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173536408",
+        "voter": "justyna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11938411155",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941925835",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56318766",
+        "voter": "suz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26584702950",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25411200606",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2136857314",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2300578574",
+        "voter": "liquidrainbowx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97421272",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215371673",
+        "voter": "kita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62245792",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60247981",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36265063494",
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7619175185",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56883857",
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56749063",
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "879417837",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87104967",
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2703939308",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57894807",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55971428",
+        "voter": "jimking001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55803830",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56340092",
+        "voter": "mercosity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "644939263",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53942218",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4472747649",
+        "voter": "betamusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67679386",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173705520",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9907002500",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55982050",
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56267680",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3048578115",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55222754",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50351260",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62018150",
+        "voter": "giselletje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97810726",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55410689",
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26856814801",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "603258997",
+        "voter": "michaelmcdermott"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53099160",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3005615324",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154391429",
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55192267",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53034981",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470399270",
+        "voter": "monattalent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "175780152",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53871683",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52393318",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54971826",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63856110",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52841577",
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54658188",
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53593366",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53602103",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59354601485",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3677273797",
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53458617",
+        "voter": "joseph1117"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53369320",
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1294007075",
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "514384460",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520406986",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52943536",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54104748",
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53968679",
+        "voter": "bobbrasil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53031074",
+        "voter": "monkeytraveller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130434883",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52826202",
+        "voter": "kbregu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1958906475",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53631416",
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15100509688",
+        "voter": "robinhoodwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53623038",
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53604743",
+        "voter": "jakeawake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52710031",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50092741",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50066904",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9229831703",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66618246",
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50852949",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60249241",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51654766",
+        "voter": "sargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52603451",
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51501667",
+        "voter": "sike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51479169",
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52470232",
+        "voter": "justallen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860350269",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50405458",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50368568",
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52412324",
+        "voter": "saifer87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50353356",
+        "voter": "takemyfive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51339379",
+        "voter": "jeffreykauffman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52353519",
+        "voter": "felipe1alexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50279703",
+        "voter": "talos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52324894",
+        "voter": "faissal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50255013",
+        "voter": "rjv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52254529",
+        "voter": "ross001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51207930",
+        "voter": "abhinavsolan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52211132",
+        "voter": "arche416"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52159157",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51121901",
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50083306",
+        "voter": "kairat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52124582",
+        "voter": "frajer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50076010",
+        "voter": "funthing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50039213",
+        "voter": "wolfclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50024358",
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52065485",
+        "voter": "clips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50009457",
+        "voter": "smolofaguess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50000886",
+        "voter": "levlupsfamily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51009490",
+        "voter": "codeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309120726",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52013777",
+        "voter": "kclement"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-50983830",
+        "voter": "amdj30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50983001",
+        "voter": "thistruthisfree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50977373",
+        "voter": "cobizig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50973868",
+        "voter": "tagonist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51991682",
+        "voter": "sboehm4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51987939",
+        "voter": "olblueyez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51986809",
+        "voter": "bizarroworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50960646",
+        "voter": "donal1682"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51974334",
+        "voter": "werty1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51968647",
+        "voter": "superpuffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50937964",
+        "voter": "michelleshaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50924850",
+        "voter": "shaolinmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51900403",
+        "voter": "malibu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50878690",
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51875429",
+        "voter": "linzgraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51813325",
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51809372",
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51788323",
+        "voter": "francis-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51780689",
+        "voter": "raasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51774444",
+        "voter": "steven15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50743270",
+        "voter": "drinkout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52030157",
+        "voter": "neophonic"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-51060649",
+        "voter": "ssedmaker"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>[![thumbfinal2.jpg](https://s19.postimg.org/89t73ydjn/thumbfinal2.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nThe @steemdrive billboard campaign continues to power throughout the world, with the next site targeted being Chicago, USA. \n\nThe first official Steem blockchain crowdfunded billboards are already fully flighted in Durban, South Africa with two digital boards in flight since our last report and details of the print billboard to follow in an upcoming post. \n\nSteemit.com, the social media platform front-end for the Steem blockchain, was founded in the United States by Ned Scott and Dan Larimer (of [Bitshares](http://www.bitshares.org)]. The @steemdrive billboard campaign team is proud to launch this initiative to once again crowdfund a billboard, but this time in the USA, the home of Steem(it)!\n\nWe are proud to introduce Nolan Jacobson as our youngest campaign liaison, someone who has truly impressed us with his determination and spunky ideas. Our campaign is fortunate to have him aboard and is our pleasure to hand over to him to present the Chicago campaign he assisted in organising.  \n\nThank you Nolan for your good work and kind words!\n\n[![signature.png](https://s19.postimg.org/56ul3axar/signature.png)](http://www.steemit.com/@steemdrive)\n\n# Introduction \u2013 Nolan Jacobson\n------------------------------\n\n<center>[![14123948_320909574911079_1188490028_o.jpg](https://s19.postimg.org/xz3txsvmb/14123948_320909574911079_1188490028_o.jpg)](http://www.steemit.com/@theprophet0)</center>\n\nFellow Steemian\u2019s, my name is Nolan Jacobson ( @theprophet0 ), I am 15 years of age; an entrepreneur and over-achiever. I am excited to say that I am the Chicago liaison for the @steemdrive campaign. \n\nSome of you may be saying to yourselves, you\u2019re 15 and you\u2019re an entrepreneur? Yes, I recently created [\u201cThe Steem Store\u201d](https://www.steemit.com/steem/@theprophet0/introducing-the-steem-store-a-store-where-the-only-payment-method-is-steempayments-created-by-the-15-year-old-steemit-guru) it is a store that uses [steempay.io](http://steempay.io/) as the sole payment method to buy Steem/Steemit merchandise. The products I will be selling are different from all the other Crypto/Steem markets and I am looking forward to promote Steemit any way I can through my store and other collabs like @steemdrive. \n\nBut, enough about my business; you have no idea how much \u201cdrive\u201d I have to promote Steemit! I can tell you that I devote myself 100% to all projects I work on; no matter if they are a success or not! Speaking of which, let us get into the Chicago/O\u2019Hare International Airport Billboards!  \n\nWouldn\u2019t that be great, to bring the first Steemit Billboard in America to my hometown, that is home to over 2,700,000 citizens and has more than 50 million visitors every year! You may be thinking, why put up a billboard advertising an online platform? Well, I couldn\u2019t have said it better than Ricardo Goncalves, the founder of the @steemdrive billboard campaign. \n\nIn his replies to comments on previous posts, Ricardo doesn\u2019t classify the billboard campaign as a replacement for online marketing, but rather sees it as a supplementary and supportive initiative. He likes to use the analogy of Coca-Cola, indicating that they are omnipresent and top-of-mind; their ads are on billboards, vehicles, coffee shops, TV, and anything else you can name!\n\nPeople may not click on an online banner immediately, they could consider it is a scam or an internet gimmick, however if they saw it on a billboard previously, it gives it some \"real world\" validity. If a company is spending on a billboard, the public sees them as more legitimate, especially because of the price tag and impact they make. \n\nThe important thing about the campaign is that the community comes together and the billboards lift spirits, for example if you are in the car with your kids and drive past the billboard, your kids may say, _**\"Dad, look it\u2019s Steemit!\"**_, can internet advertising do that?\u201d In my opinion, that is such a great explanation, props to Ricardo! Anyhow, let\u2019s get right into this fantastic billboard drive!\n\n# Chicago\n-------------\n<center>[![views_of_the_beautiful_chicago_640_01.jpg](https://s19.postimg.org/x9gg7p5oz/views_of_the_beautiful_chicago_640_01.jpg)](http://www.steemit.com/@steemdrive)\n[Image Credits]( http://izismile.com/2012/12/27/views_of_the_beautiful_chicago_33_pics.html)</center>\n\nChicago! Everybody around the world has heard about this city! It is the third largest city in the United States. Chicago is home to many amazing sport teams including, The Chicago Cubs, The Chicago Blackhawks, The Chicago Bulls, The Chicago Fire, and The Chicago Bears. \n\n**\u201cChi-town\u201d**, as the citizens of Chicago call it, is also home to the second-tallest building in the United States, The Willis Tower! If you weren\u2019t aware, Chicago is sort of split into 77 different \u201ccommunity areas\u201d if you will; with the North Side and South Side being the two main ones. \n\nThe North Side of Chicago is home to the Chicago Cubs, home of over 1,300,000 people, and the median age is right around 34 years. \n\nThe South Side, on the other hand, is home to the Chicago Bulls, home of just over 861,000 people, and the median age is the same at around 34 years also. ([Information reference](http://www.point2homes.com/US/Neighborhood/IL/Chicago/))\n\n# O\u2019Hare International Airport\n------------------\nRight outside O\u2019Hare International Airport is the killer spot for a billboard in my eyes! According to [Wikipedia](https://en.wikipedia.org/wiki/O%27Hare_International_Airport), O\u2019Hare International Airport is the busiest airport in the world, since 2013, when it beat out Hartsfield-Jackson Airport in Atlanta. \n\n### The Busiest International Routes to and from ORD (2015)  are listed below:\n\n1.\tLondon | Passengers \u2013 1,029,216\n2.\tToronto | Passengers \u2013 843,372\n3.\tTokoyo | Passengers \u2013 712,579\n4.\tFrankfurt | Passengers \u2013 622,743\n5.\tMexico City | Passengers 493,747\n\n(Data Source: [Wikipedia](https://en.wikipedia.org/wiki/O%27Hare_International_Airport)) \n\nAfter seeing that many international travelling passengers; I would say that Steemit could get a ton of global attention in addition to domestic exposure.\n\n# Crime in Chicago\n------------------------\n\nSadly, crime is everywhere in the filthy world we live in. This year, Chicago has been in the thoughts of many; there have been 2,743 people shot to this day, of those 2,378 people shot, 2318 of those people were wounded, and 465 of them were homicides. \n\nThese are just despicable numbers. As of April 1st 2016, murder rates are up 72% and shootings are up more than 88%. ([Information source](http://heyjackass.com/))\n\nAccording to the Chicago Police Department, the disturbing rise in violence is driven by gangs and mostly contained to a handful of pockets on the city's South Side. Gangs are truly a scourge on our city, little kids these days are being recruited, joining at such a young age and sadly some are even being recruited out of elementary school. \n\n# Why do kids join gangs?\n---------------------\n\nHere are a couple risk factors that can lead children and adolescents to join a gang.\n\n\u2022\tThey see the people in gangs have a lot of money.\n\n\u2022\tThey have no positive role models or mentors.\n\n\u2022\tThey have a sense of hopelessness about the future because of limited educational or financial opportunity.\n\n# How can Steemit help these problems?\n-----------\n\nI will answer the bullet points listed above with statements in which Steemit can help these awful problems:\n\n\u2022\tOn Steemit, you get paid for just simply writing content. You don\u2019t have to risk your life every day to make money; in fact it\u2019s just the opposite!.\n\n\u2022\tIn the Steemit community everybody has a positive attitude! Negativity won\u2019t last on Steemit. In fact, Steemit is a good environment for every one of every age! Ricardo is my role model, who shows there are positive role models and mentors on Steemit!\n\n\u2022\tWith Steemit there are never worries about limited education or lack of financial opportunity because every day you are on Steemit, you learn something new. Steemit actually has a great impact on your education! \n\n# How Steemit will benefit Chicago\n-----------------------\n<center>[![views_of_the_beautiful_chicago_640_05.jpg](https://s19.postimg.org/6pnv5k55f/views_of_the_beautiful_chicago_640_05.jpg)](https://postimg.org/image/3vkps42z3/)\n [Image Credits]( http://izismile.com/2012/12/27/views_of_the_beautiful_chicago_33_pics.html)</center>\n\nJoining Steemit is a very positive alternative to joining the gangs; as you can see from reading the above. It actually may help children get out of gangs as they find out that they can make money without risking their life every day. \n\nAlso, with there being a young crowd in Chicago who are literate to smart phones and computers, I believe that Steemit will flourish and have a positive impact on the citizens of Chicago! \n\n# The Billboard Options, Are You Choosing Chicago or O\u2019Hare?\n-------------------------\nThe reality is that unless this post hits a very high figure, we will only be able to obtain one billboard and there are two billboard options we have selected that we need your help with. In the comments section of this post we need you to simply vote on comment #1 or #2 depending on which billboard you would prefer seeing incase we don\u2019t receive enough funds for both. _(Remember to first vote on the main post)_\n\nI will be showing you both of the options from a distance. (The artwork is done by me, keep in mind I am a rookie. This is NOT the final artwork) Also, keep in mind that the 1st billboard is located on the Tri-State Tollway and is located next to O\u2019Hare International Airport. The 2nd billboard is near the South Side of Chicago.\n\n## Option #1 - O\u2019Hare\n\n<center>[![newpng.png](https://s19.postimg.org/fktattjbn/newpng.png)](https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638)</center>\n\nThis DIGITAL bulletin gets prime exposure to traffic headed to O'Hare Airport. This affluent section of DuPage County is considered to be the fastest growing in the United States. Only 50 feet from the toll-way, this sign has excellent exposure to nearly 60,000 daily commuters to Metro-Chicago from the upscale northern suburbs.\n\n**Panel #:** 70082\n**Location:** TRISTATE (I-294) E/S .5 MI N/O NORTH\n**Lat/Long:** [41.9136/-87.9193](https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638)\n**Panel Size:** 20' 0\" x 60' 0\"\n**Weekly Impressions:** 552637 per spot (based on 18+ years of data)\n\n## Option #2 - Chicago South\n\n<center>[![newsteemitlife.png](https://s19.postimg.org/7th6904k3/newsteemitlife.png)](https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917)</center>\n\nLocated on the Tri-State Tollway in Chicago's South Side, this DIGITAL sign delivers traffic coming from the far-south suburbs and NW Indiana heading west to Joliet on I-80 and north to locations such as Midway Airport on I-294. This is one of the heaviest interstate truck-traffic areas in the country.\n\n**Panel #:** 70051\n**Location:** TRISTATE (I-294) N/S W/O HALSTED\n**Lat/Long:** [41.5787/-87.6430](https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917)\n**Panel Size:** 20' 0\" x 60' 0\"\n**Weekly Impressions:** 378483 per spot (based on 18+ years of data)\n\n# Why I chose these billboards\n--------------------\n\nI chose these billboards for a couple reasons\u2026\n\n1.\tWith O\u2019Hare International Airport being so close to each billboard, I think that is a killer location as O\u2019Hare International Airport is the busiest airport in the world.\n\n2.\tLots of traffic on the Tollway which means when people are backed up, they will look at the billboard.\n\n3.\tThe Billboards are available to see 24/7.\n\n4.\tO\u2019Hare International Airport attracts a ton of local and international visitors. With that being said it will get global exposure.\n\n5.\tIMHO, there is no better place to start a billboard campaign in the United States than Chicago!\n\n------------------------\n\n## @steemdrive in the Media:\n\n+ http://bitcoinhub.co.za/new-social-media-platform-steemit-set-to-take-south-africa-by-storm/\n\n+ https://coincheck.com/en/blog/1845\n\n+ [Beyond Bitcoin E166 2016-07-29](https://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts#t=30:07)\n\n+ [Beyond Bitcoin E169 2016-08-19](https://soundcloud.com/beyond-bitcoin-hangouts/e169-beyond-bitcoin-dollarvigilante-talks-steem-blockpay-ico-grc-hangouts-steem-billboard-campaign#t=2:21:51)\n\n-------------------\n\n## Campaign Partners:\n\n<center>[![beyondbitcoin.jpg](https://s19.postimg.org/qj95pqxar/beyondbitcoin.jpg)](http://www.steemit.com/@officialfuzzy)</center>\n\n\n--------------------\n\n\n<center>[![blocktrades.jpg](https://s19.postimg.org/sf0jenbir/blocktrades.jpg)](http://www.blocktrades.us)</center>\n\n\n--------------------\n\n\n<center>[![blockpayfinal.jpg](https://s19.postimg.org/ek28w6h3n/blockpayfinal.jpg)](http://www.blockpay.ch)</center>\n\n\n\n---------------------\n\n## <center>Witness @delegate.lafona (liaison and campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @smooth.witness (campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @liondani (campaign supporter)</center>\n\n---------------------\n\n## @steemdrive Supports the Following Initiatives:\n\n+ @robinhoodwhale ([info link here](https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed))\n\n+ @steemcleaners\n\n+ [thesteemstore.com](https://www.thesteemstore.com/password)\n\n+ [steempay.io](http://steempay.io)\n\n----------------------\n\n## Terms and Conditions:\n\nSteem Dollar payout funds raised from this Steemit post shall be primarily allocated to the **Chicago billboard campaign**, and/or any other billboard site or @steemdrive public project where funds may be required in and paid in accordance with the general campaign terms and conditions.\n\nNed Scott of Steemit, Inc. approved the use of the domain steemit.life on artwork, which will point to a referral link for campaign tracking, otherwise not possible if steemit.com was advertised.\n\nAll images are either royalty free, public domain, supplied by the billboard agencies or paid for by the campaign or liaison, credits will appear beneath any other image sources.\n\n-----------------------\n\n## Direct Donations:\n\n+ A special thank you to Fuzzy from [Beyond Bitcoin]( https://steemit.com/@officialfuzzy) hangouts for pledging to donate 200 SBD to the campaign.\n\n+ Another unexpected surprise pledge from @smooth in comment below, of 2000 SBD!!! Smooth you are a legend! \n\n+ 25 SBD received from @smailer , thank you for helping make history my friend!\n\n+ Confirmation received of 200 SBD from @liondani , we are truly blessed today, thank you so much for your support.\n\n+ Thank you to  @bhavnapatel68  for a 25 SBD contribution, our team salutes you!\n\n<center><a href='https://steempay.io/payment?&receiver=steemdrive&amount=0&currency=0'><img src='https://steempay.io/img/donate.png'></a></center>\n\n-----------------------\n\n## Funding Requirements:\n\nThe billboards are each the same cost per 4 week rental, taking into consideration the \"voters 25% haircut\", the 50% split into SBD, 20% SBD liaison pay and a 15% allowance for SBD peg variance and other charges; the pre-payout campaign value required to successfully fund one billboard for 4 weeks is approximately 10 500 dollars _(double this for both billboards)_.   \n\n**REMEMBER TO VOTE (WITH FULL POWER!) FOR THE MAIN POST AND THEN VOTE ONE FAVOURITE BILLBOARD LOCATION!**\n\nWe achieved a pre-payout value of just under 27 000 dollars on our first South African campaign, let us now see what America can do! \n\nThe @steemdrive team thanks you for your support thus far and hope you will support us once again, **bringing \"Steem powered\" billboards to Chicago, USA!!!**",
+    "body_length": 16385,
+    "cashout_time": "2016-09-24T19:41:42",
+    "category": "steemit",
+    "children": 160,
+    "created": "2016-08-24T16:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"life\",\"crypto-news\"],\"users\":[\"steemdrive\",\"theprophet0\",\"delegate.lafona\",\"smooth.witness\",\"liondani\",\"robinhoodwhale\",\"steemcleaners\",\"smooth\",\"smailer\",\"bhavnapatel68\"],\"image\":[\"https:\\/\\/s19.postimg.org\\/89t73ydjn\\/thumbfinal2.jpg\",\"https:\\/\\/s19.postimg.org\\/xz3txsvmb\\/14123948_320909574911079_1188490028_o.jpg\",\"https:\\/\\/s19.postimg.org\\/x9gg7p5oz\\/views_of_the_beautiful_chicago_640_01.jpg\",\"https:\\/\\/s19.postimg.org\\/6pnv5k55f\\/views_of_the_beautiful_chicago_640_05.jpg\",\"https:\\/\\/s19.postimg.org\\/fktattjbn\\/newpng.png\",\"https:\\/\\/s19.postimg.org\\/7th6904k3\\/newsteemitlife.png\",\"https:\\/\\/s19.postimg.org\\/qj95pqxar\\/beyondbitcoin.jpg\",\"https:\\/\\/s19.postimg.org\\/sf0jenbir\\/blocktrades.jpg\",\"https:\\/\\/s19.postimg.org\\/ek28w6h3n\\/blockpayfinal.jpg\",\"https:\\/\\/steempay.io\\/img\\/donate.png\"],\"links\":[\"http:\\/\\/www.bitshares.org\",\"https:\\/\\/www.steemit.com\\/steem\\/@theprophet0\\/introducing-the-steem-store-a-store-where-the-only-payment-method-is-steempayments-created-by-the-15-year-old-steemit-guru\",\"http:\\/\\/www.point2homes.com\\/US\\/Neighborhood\\/IL\\/Chicago\\/\",\"https:\\/\\/www.google.co.za\\/maps\\/place\\/306+Northwest+Ave,+Northlake,+IL+60164,+USA\\/@41.9136504,-87.9384504,15z\\/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638\",\"https:\\/\\/www.google.co.za\\/maps\\/place\\/1021+171st+St,+Hazel+Crest,+IL+60429,+USA\\/@41.5791421,-87.6451804,17z\\/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917\",\"https:\\/\\/steemit.com\\/steem\\/@repholder\\/the-robinhood-whale-initiave-community-feedback-needed\",\"https:\\/\\/steempay.io\\/payment?&receiver=steemdrive&amount=0&currency=0\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T11:35:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 227968562806338,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "7005.101 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream",
+    "post_id": 732829,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
+    "title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38451193659",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17385412095137",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7688659622029",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29652173029568",
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28854853175",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39486167539961",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36385063290586",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2049642827168",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73272768589",
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "6600",
+        "reputation": 0,
+        "rshares": "346085143111",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17422262223173",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6946368014897",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8832433017411",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3246757738413",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384932387105",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6720670302195",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115693124003",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1944790367140",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4895804718369",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33307827345",
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "954858040877",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "803566613810",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320669746586",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3085197652",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1975747200682",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3744410921",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "708979370",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3372697687234",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1438694033657",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52275677031",
+        "voter": "bue"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1281552306",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1653869296",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213274356",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32550511782",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5309145361747",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1129010306514",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304829401415",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70877943888",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "716694338266",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252087376835",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10210285256",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613532784",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "893835290",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2672477130289",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398157135647",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17069621824",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44104332762",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94216559894",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287509506",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8864087428",
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26315706357",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "14800880014",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89038138941",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26838106632",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10271411415",
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116313551950",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91924984138",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16989625299",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142021953735",
+        "voter": "nkdk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2907626165",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58847956204",
+        "voter": "lovelace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3989110433",
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67269861861",
+        "voter": "idealist"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "15263430960",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29123911687",
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473678777",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94838484142",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45574888424",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2177251712",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337331566741",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "20041361318",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3342907840",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2164745847",
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73767981753",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98635020280",
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58992402649",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4702449999",
+        "voter": "xav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54214633364",
+        "voter": "tosch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1450853172",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339984285",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29017585900",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47246284590",
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "580523246157",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315960216",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18522213380",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218111827316",
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222779231297",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11474193919",
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64330796457",
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1613095208",
+        "voter": "arskiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26145560412",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95985729250",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231561594",
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7935608077",
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "504962385",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412671917575",
+        "voter": "the-alien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290189917167",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55062940846",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18924572691",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61260862795",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8398468481",
+        "voter": "somedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "971544329",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107568962014",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119386171",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19854078940",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435396351969",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80388659823",
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47317933373",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1445317942",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4225748527",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13377007401",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80341870005",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713614971",
+        "voter": "menace.coin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1551377063",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118983805142",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20674508047",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44252149522",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216869687795",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636117083",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25241493318",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10527048441",
+        "voter": "vladon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386335737081",
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3474673641",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50184326192",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4733608063",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1691789720",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5756639361",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35716570141",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6829924943",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "565346205",
+        "voter": "nadejde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250811301",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13311207958",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4014763201",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090541230",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127433544240",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3116292841",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "165872891302",
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266349543845",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18675405646",
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746630589",
+        "voter": "stalnionis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2098337565",
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3804121527",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3704365763",
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253533017",
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146610995479",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6985662723",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1048586169",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17680389230",
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21098879051",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5172309447",
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245031826",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2638289178",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25550006177",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6020292061",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12808729996",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4015098030",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20017085495",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133969627073",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56214004774",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5072625846",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29530036864",
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49579926408",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4227326061",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "470865866",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25692821957",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273706533",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415946152",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38500990109",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16470022526",
+        "voter": "jazzka"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "31369317052",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10574593346",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "363404265",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "406327478",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "372534009",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246089730",
+        "voter": "alex2649tw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13093257174",
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4158546853",
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836023833",
+        "voter": "alkemix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3146121037",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188957990",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "536550051",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427173743",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41263112632",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240342989",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244459106",
+        "voter": "sairji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "532244432",
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1026390089",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252407179",
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239429308",
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17625843355",
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "54345146257",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18394247275",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3783115811",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40651190846",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78889019157",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1546897172",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19068212733",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348108726622",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11395824102",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3059156583",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3077393881",
+        "voter": "kaneen74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23376052723",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53925388822",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241764375",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12628644739",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179196273146",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10360143599",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2348727450",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2556620116",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8453400920",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3684539967",
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "487886612",
+        "voter": "charles-d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26196706184",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25830549400",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406335361",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6734695477",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14373754719",
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258070573",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4795024069",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84104965081",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7615150102",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2670183399",
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7858101339",
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116919592",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9511446677",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398571760",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011214030",
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24615216974",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7161298409",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "734402373",
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485646625",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5034293849",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "972760038",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116450799",
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1971723463",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290205209",
+        "voter": "sagar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19038668222",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116065815",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1928511507",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111726756",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118283572",
+        "voter": "theleximus1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148183514305",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115837887",
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "12293168978",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143874373",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32878858013",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115682991",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44705463796",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115387959",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23187314517",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211677715438",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1444157412",
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4538359177",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123258754",
+        "voter": "streem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "776294423",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2440982239",
+        "voter": "marriedbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226734950",
+        "voter": "aleksandra28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6009180650",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13073623412",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2405047992",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230402080",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2070076420",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7116967446",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "383206253",
+        "voter": "fnait"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "375933865",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32514332248",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405419067",
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20990784022",
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111995622",
+        "voter": "dushyant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5652176856",
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5116087046",
+        "voter": "saulius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57817214351",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "509338382",
+        "voter": "kaykunoichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1733966276",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23834093727",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2480041506",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4757360328",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72289125531",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10212393410",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112450703",
+        "voter": "arslan7544"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "786742077",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6402218596",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1230387590",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2033912739",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62220152",
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64056721",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14386644371",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10892926265",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8300226776",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12986522188",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8093308679",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4871794356",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2074751088",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2593793851",
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1653680090",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25867914835",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63671033",
+        "voter": "play"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64906381",
+        "voter": "crowdfundvibe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2369229878",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1431883444",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64649163",
+        "voter": "holwylb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63300522",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63242540",
+        "voter": "impigrum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382253852",
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64298241",
+        "voter": "crisstaken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62743518",
+        "voter": "donnablacktail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5534757981",
+        "voter": "tannukas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7418993028",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89782930",
+        "voter": "jefflee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21005913988",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200157889",
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62268668",
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172287577",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57105514",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63362435",
+        "voter": "oluwen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62368657",
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7853197446",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631288233",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4831441172",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62006301",
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61704615",
+        "voter": "gatorjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "169623708",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61598061",
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19617748220",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174221367",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2685807725",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69558111",
+        "voter": "sarita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62069093",
+        "voter": "giannicapasso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149453758",
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110871569",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3954589158",
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89034260",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2048624792",
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54300455",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60903916",
+        "voter": "thoth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31647211554",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60467503",
+        "voter": "leraakulenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577231315",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459420482396",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995507831",
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26642706254",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5047027984",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69850863",
+        "voter": "bitfish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60676805",
+        "voter": "elmariac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379898572",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60651985",
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60521896",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196915807",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2813505777",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "835908919",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79642959",
+        "voter": "steemcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439090381",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89368060",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199289634",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122271574",
+        "voter": "truthmomma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "576074830",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56384147",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59183580",
+        "voter": "vegeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439994",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58479392",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58423044",
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62574066",
+        "voter": "ktbaeohana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61805391",
+        "voter": "cehuneke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7644756825",
+        "voter": "garywilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59236965",
+        "voter": "dauwken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "858943654",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1592329786",
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3936001425",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56695901",
+        "voter": "gosteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33542477932",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300847113",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69441445",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9951404773",
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22543917173",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71103152",
+        "voter": "dasfarm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205069063",
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2763355474",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53804048",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57570619",
+        "voter": "tsbloyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57875249",
+        "voter": "andyseo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64184750",
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58787702",
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200332810318",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56332233",
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57886832",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58914198",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64745673",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "893390250",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57583148",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55320371",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62202585",
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2909500506",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62361130",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183777633",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453468817",
+        "voter": "djdmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56930391",
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74072122",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153933584",
+        "voter": "groovedigital"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61826880",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59464308",
+        "voter": "lukie257"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2412812207",
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38710389758",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60206256",
+        "voter": "rainmnz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55403417",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98950105",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365799797",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4387236391",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57549632",
+        "voter": "felixblanco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281743750",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59105066",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232544963",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69012539",
+        "voter": "decentro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111221218",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2147020967",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58094402",
+        "voter": "lapants"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377617397",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54842347",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1467546651",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57747508",
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50084618",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55628200",
+        "voter": "tocos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56911596",
+        "voter": "courtneybelyea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54500387",
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3603226178",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56611081",
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "913919467",
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1915680741",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1017211703",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890717617",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56447574",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1282363031",
+        "voter": "russianark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56364556",
+        "voter": "pumpndumptrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9444303420",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55390353",
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277212432",
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187358259",
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55053663",
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51749039",
+        "voter": "gsdalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51745040",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53925231",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53893867",
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55560454",
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54898534",
+        "voter": "roadie73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54861931",
+        "voter": "dirtyjr101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55937830",
+        "voter": "luigimendi89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55919448",
+        "voter": "minisupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131370012",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54767752",
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77889825",
+        "voter": "powercouple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55786422",
+        "voter": "mathewrush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155287",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55675902",
+        "voter": "kenyan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62901999",
+        "voter": "avemend"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55524391",
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54468075",
+        "voter": "prestonslove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433189",
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51170419",
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55407469",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54258724",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53122101",
+        "voter": "jimwhipple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55143258",
+        "voter": "jessicalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63417242",
+        "voter": "haizuru-ishida"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55018737",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75687607",
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54996833",
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93233347",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335457095",
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53758453",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53731875",
+        "voter": "protrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54806372",
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52638225",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53689387",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51488252",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53603360",
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53594242",
+        "voter": "otis13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53589726",
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50351227",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51363851",
+        "voter": "rafej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50207083",
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53408323",
+        "voter": "adpt2apocalypse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54464024",
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53381371",
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53362659",
+        "voter": "promaxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53360048",
+        "voter": "arkana"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-51218846",
+        "voter": "cooldemos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53333238",
+        "voter": "donzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51191809",
+        "voter": "ladyboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53324358",
+        "voter": "pampers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53298526",
+        "voter": "tweek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53278513",
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54340900",
+        "voter": "cristine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53264688",
+        "voter": "mallamahesh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54254783",
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53180419",
+        "voter": "alexanderem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53168377",
+        "voter": "kelsee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52104910",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50983830",
+        "voter": "amdj30"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>[![thumb_96.jpg](https://s19.postimg.org/cc8s49gnn/thumb_96.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nThe @steemdrive billboard campaign continues its world dominance of grand outdoor advertising for the promotion of Steemit, the blockchain based social media platform. Electronic billboards are already playing 15 second advertising loops in the _\u201cground zero\u201d_ city of Durban, South Africa as reported in [our last proof of flight post](https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa). Furthermore, the 20M x 5M print billboard is currently in production, with official updates to follow.\n\nAs promised, we will be engulfing all countries around the world with Steemit billboards for as long as we have the fantastic support of the Steemit community behind the @steemdrive campaign. \n\nThe next target location is Auckland, New Zealand; hometown of fellow Steemian, and @steemdrive liaison, Shayne Shiells; who an active member of the community and deserving of maximum support for his campaign, take it away Shayne\u2026      \n\n<center>[![intro.jpg](https://s19.postimg.org/vu80xy2z7/intro.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nHi fellow Steemians, most of you know me as @cryptoiskey, I recently joined Steemit on the 4th of July 2016, which already seems like a lifetime ago. \n\nI have a background in 3D Animation and Design and have been developing for a virtual world since 2007. \n\nWhen I believe in something I like to invest myself 100% with no exceptions and I believe heavily in Steemit and the direction it is moving. \n\nIn order to ensure Steemit's success, I believe _**we all need to do our part to bring Steemit to the world in whatever way we can**_. I have started promoting Steemit on the beaches of California which you can view [here](https://steemit.com/steemit/@cryptoiskey/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag). \n\nVenice beach was a great success and I will continue promoting Steemit on the California coast when I can, but for now I am excited to introduce the power of Steemit to my home country of New Zealand. \n\nI was born in Auckland and know the city very well. It is the perfect fit to start a Steemit billboard campaign and hope you will support this endeavor. The city of Auckland in New Zealand is a prime location for billboard displays,  let me explain why.\n\n<center>[![auckland.jpg](https://s19.postimg.org/fx4nnhl77/auckland.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nAuckland is the transportation central for the entire country. There are 1.4 million residents, not including the extended Auckland regions. Auckland holds 33% of the total New Zealand population.\n\nAuckland's cosmopolitan dominance in New Zealand is very visible with 40% of the population being born overseas.\n\nHaving a large mix of ethnic groups in one area means many of their family members are still overseas, this will intensify the exposure to other countries, by utilizing a faster chain effect. People are always excited spreading the Steemit word, which I am sure is a valid advantage.\n\nNew Zealand also attracts tourists from all over the globe, with 3 million international visitors landed in Auckland In 2015. Many of these international travelers are from a younger generation seeking high-octane adventures and publishing their experiences via social media. Steemit blogging is a perfect fit and a billboard in the right location can take advantage of this demographic.\n<b></b>\n### Below are the available Billboard locations.\n\n<center>[![bill-loc.jpg](https://s19.postimg.org/klp8wezrn/bill_loc.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nYou will notice the 2 black arrows. These are 2 locations I think can take advantage of Aucklanders and International visitors.\n\n### Billboard 1 - Nelson St.\n\nThis first billboard is located on Nelson St. in city central and is perfect for the visitor demographic as well as Aucklanders. What I like about this billboard is its position in relation to the stop lights. It really stands out between the 2 buildings. It will also take advantage of the \"stop time\".\n\n<center>[![a112-original.jpg](https://s19.postimg.org/j7xm140ib/a112_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a112-steemit-added.jpg](https://s19.postimg.org/m4kn1e6c3/a112_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Nelson St. proposed artwork concept</center>\n\n+ Size 6M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,676,161\n\n### Billboard 2 - Great South Road, Penrose.\n\nThis billboard takes advantage of dual traffic flows. One of the traffic flows contains 3 lanes of busy traffic. The viewing time is extended because of the sheer volume of stop lights. The billboard is heavily illuminated at night as to peek interest 24 hours a day.\n\n<center>[![a215-original.jpg](https://s19.postimg.org/vewr4xh1v/a215_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a215-steemit-added.jpg](https://s19.postimg.org/todq3fzir/a215_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Great South Road, proposed artwork concept</center>\n\n+ Size 12M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,119,333\n\nAll of the billboards locations in Auckland have great statistics and a rotation campaign would definitely work well.\n\n### The main reasons I like the two aforementioned billboards are:\n\n1. The locations take full advantage of stop lights which I believe is a key factor for driver awareness.\n2. The statistics are very high in both locations.\n3. They both are visible at night time giving them 24 hour exposure.\n\nAuckland is a great starting point to gather some statistics and see how the New Zealand market responds to the Steemit billboards. New Zealand is very touristic and if placed correctly it is possible to take advantage of certain cities at specific times of the year (The seasonal charge of tourists). Tourists = Global.\n\nThe @steemdrive team thanks you for your support thus far and hope you will support us once again, bringing Steem powered billboards to New Zealand. \n<center>[![auckland.jpg](https://s19.postimg.org/w9jaqyowj/backpackers.jpg)](http://www.steemit.com/@steemdrive)</center>\n<center>Remember to `VOTE`, `SHARE` and `FOLLOW`.</center>\n<hr>\n\n<hr>\n\n**Terms and Conditions:**\nSteem Dollar payout funds raised from this Steemit post shall be primarily allocated to the New Zealand billboard campaign, and/or any other billboard site or @steemdrive public project where funds may be required in accordance with the general campaign terms and conditions.\n\nNed Scott of Steemit, Inc. approved the use of the domain steemit.life on artwork, which will point to a referral link for campaign tracking, otherwise not possible if steemit.com was advertised.\n\n**Previous Campaign Links:**\nhttps://steemit.com/money/@steemdrive/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\n\nhttps://steemit.com/steemdrive/@steemdrive/steemdrive-the-last-mile-for-27k-billboard-campaign-and-vote-of-thanks\n\nhttps://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts. _(Ricardo Goncalves' @steemdrive interview with Beyondbitcoin Hangouts, FFWD to around 30 minutes)_\n\nhttps://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa",
+    "body_length": 7564,
+    "cashout_time": "2016-09-16T23:58:57",
+    "category": "steemit",
+    "children": 131,
+    "created": "2016-08-16T17:08:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"life\",\"crypto-news\"],\"users\":[\"steemdrive\",\"cryptoiskey\"],\"image\":[\"https:\\/\\/s19.postimg.org\\/cc8s49gnn\\/thumb_96.jpg\",\"https:\\/\\/s19.postimg.org\\/vu80xy2z7\\/intro.jpg\",\"https:\\/\\/s19.postimg.org\\/fx4nnhl77\\/auckland.jpg\",\"https:\\/\\/s19.postimg.org\\/klp8wezrn\\/bill_loc.jpg\",\"https:\\/\\/s19.postimg.org\\/j7xm140ib\\/a112_original.jpg\",\"https:\\/\\/s19.postimg.org\\/m4kn1e6c3\\/a112_steemit_added.jpg\",\"https:\\/\\/s19.postimg.org\\/vewr4xh1v\\/a215_original.jpg\",\"https:\\/\\/s19.postimg.org\\/todq3fzir\\/a215_steemit_added.jpg\",\"https:\\/\\/s19.postimg.org\\/w9jaqyowj\\/backpackers.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@steemdrive\\/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa\",\"https:\\/\\/steemit.com\\/steemit\\/@cryptoiskey\\/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag\",\"https:\\/\\/steemit.com\\/money\\/@steemdrive\\/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T17:08:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 213555656400500,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6946.258 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails",
+    "post_id": 629250,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7091789419092",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28421306818658",
+        "voter": "smooth"
+      },
+      {
+        "percent": "68",
+        "reputation": 0,
+        "rshares": "28856182775",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "6800",
+        "reputation": 0,
+        "rshares": "11547432333778",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26908937960730",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117153738816",
+        "voter": "penambang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14541454302697",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40478437385795",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "12844542811725",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134841384049",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "7010817118448",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3090883310",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3751600607",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703041511",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5824533973993",
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52757873614",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1656788098",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213486537",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34612931967",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2596123420368",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4953659261030",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1050743329481",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621573110",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "71545170677",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921837962",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21098625559",
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45179645003",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5025012507",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287843749",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87278685433",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23130933355",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11259119702",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "829535747",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3654082102",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543059088",
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127172358363",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14146724265",
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4667473657",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94995151405",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45576935659",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2135979533",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3489651223",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2177642624",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91973363311",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7170017526",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4023048939",
+        "voter": "mrkhuffins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39133037831",
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "213893213977",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1439678714",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48503254530",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7564949611",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313397420054",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367001031531",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354491950",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10493959254",
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90250548483",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361302473837",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237316155902",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53949422400",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19542347966",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180361081869",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1147181770",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "178134182658",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83756720354",
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73330821390",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23195120933",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1455229073",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315272215",
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41162837415",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152610751574",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33167263907",
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "593252311",
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5412463822",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11422730697",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26197763695",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31294492326",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2153768921",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46942620740",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2933990260",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2244371641",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3567818391",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "999100627",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61102671700",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2488363646",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153081523002",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55577398106",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2357586913",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518403186",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "956499846",
+        "voter": "cuckoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250629310",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "111266825",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11598524126",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2488327899",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86732863426",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17490066959",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4975078320",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2620127809",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "625722935",
+        "voter": "suchnewb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29740244366",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214183155",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1426776801",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8695455121",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17386970458",
+        "voter": "freiheit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10581478212",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119197615017",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241513668",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1322665638",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3181701822",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117075692961",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105469798077",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40456093013",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263539417",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4375279402",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14354150809",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18033891928",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4025876756",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139437346399",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138158323222",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19450243690",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12111904102",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59948957580",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203840552",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2576891078",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1723503984",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8814210013",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1424731565",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494835022",
+        "voter": "jillfeint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195108235931",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25839609028",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75093674684",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4195791223",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3693094240",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14373825169",
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82600823004",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1484107810",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1312824728",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10244507265",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12360467699",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2248615528",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19162351843",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144757025244",
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3270068768",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4207979237",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14191091653",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162548310",
+        "voter": "soulthug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6875049105",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10808706161",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166034245",
+        "voter": "dnsz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "931679689",
+        "voter": "frankpryor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "985503736",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2712122271",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595467367",
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4971101667",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1893531816",
+        "voter": "idan4326"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10938373493",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67919004974",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1204340213",
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2236861513",
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1887835506",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116382038",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "940333523",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "466212714772",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362267920",
+        "voter": "queiroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2215583453",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115387523",
+        "voter": "skunik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5949903064",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114881292",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1102035317",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4351101823",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4445653859",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114132846",
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438637419",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38831196502",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914953153",
+        "voter": "coinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2427471195",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5512637312",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5091712349",
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2851899479",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95063711",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6237229890",
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69869628014",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "863446792",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111635397",
+        "voter": "nighzmarquls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "711148677",
+        "voter": "candy49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29279615965",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331498852",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134803255",
+        "voter": "mairavrg"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "109237097",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "739615310",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112407757",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2334340277",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14690691636",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16361722939",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2387723771",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83869834",
+        "voter": "nickskywalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2078560081",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119675184",
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "880974380",
+        "voter": "toxichan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102348882",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2718091982",
+        "voter": "jokerpravis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30691300049",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1293874910",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63300522",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7323618776",
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6544706071",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68682650401",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147832214",
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62842616",
+        "voter": "kevinhoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7538910886",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16431877139",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75436221",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4068639160",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63675345",
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1411972851",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "184775476",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1785122109",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662317039",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6602889863",
+        "voter": "randolphrope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26999446974",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5099237822",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78204962",
+        "voter": "millen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4555849418",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11391522918",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "698448734",
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64019062",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "366093620",
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1358383666",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25711420325",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2363634617",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190497451",
+        "voter": "spoonermlt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571200841",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65668582",
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59127162",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60234624",
+        "voter": "tammyyin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59915538",
+        "voter": "nbdeledrifts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70111504",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56961785",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121862219",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83936892422",
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1009466314",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1629742923",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70986316",
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375935350",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445271803",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58964015",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53959064",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55769685",
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30581032443",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1126661725",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841764781",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6857689066",
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3781665514",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9065603232",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67029397",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20936336941",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2806600152",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58897154",
+        "voter": "purplelama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57828186",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83305685",
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76802569",
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13518032278",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57632635",
+        "voter": "ihazaname"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310859486",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1250544103",
+        "voter": "terryrall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "321001176",
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1565744970",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1761785202",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1176722422",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130889172",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257577089",
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55750195",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118398300",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120048594",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1317394072",
+        "voter": "jchiogna"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-58245565",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70290056",
+        "voter": "raseukinapobri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65086623",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58186044",
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56719431",
+        "voter": "lilbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56661775263",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120907621",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "398583502",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8464337545",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55377253",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3630029664",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57535214",
+        "voter": "davincij15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57971965",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29256369959",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2132585670",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9500362322",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57176651",
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55978702",
+        "voter": "phonemonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62556489",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2712604436",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24617514571",
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1119030040",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75243243",
+        "voter": "ksena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56914472",
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350670901",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54547175",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173358680",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93363315",
+        "voter": "getonthetrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55649675",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121466526",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167718520",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1041203488",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56759615",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2012627660",
+        "voter": "elewarne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1125741534",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501837884",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025746",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173158802",
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67314176",
+        "voter": "russ512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209942172295",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55713891",
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54584359",
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53471592",
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115562685",
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "832480836",
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91733268",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55410689",
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56693331",
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "492433664",
+        "voter": "venusdehilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55275332",
+        "voter": "jmendiola222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2110924737",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54072807",
+        "voter": "q1248"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54990943",
+        "voter": "shax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54156428",
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51301791",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67051047",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374243560",
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71027434",
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53452043",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50222829",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86707783",
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55668201",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55584646",
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53774061",
+        "voter": "lloydy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53103516",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54154145",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53231948",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53393524",
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "407383334",
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51909373",
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52943536",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52871755",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53877238",
+        "voter": "borntobealiveent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916666",
+        "voter": "littenti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52591467",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51514185",
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52528251",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52320341",
+        "voter": "gaurav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53352742",
+        "voter": "nemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52305084",
+        "voter": "fganz72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52281058",
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52277186",
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53318692",
+        "voter": "jibinkor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52272460",
+        "voter": "coyotespike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53287995",
+        "voter": "jamebuffalobill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230107",
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52218833",
+        "voter": "i-repost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52218376",
+        "voter": "mudin"
+      }
+    ],
+    "author": "mynameisbrian",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "In the beginning there were few...\n\n<img src=\"https://lh3.googleusercontent.com/bEdy50gH2ogFrQkAbbE0QOI4vwAbTct54hhDw6M9Mol-ULh4xOLoXyiCkHMRENVlGs_a__h1UST-hHpEf5Y4kP7CSosvQL8bniq6BTLpl0sJdrnjVyZyN1-EtVCmxfd30xOCRXUH0sdw9s38qhjanGvfNACdNYCbonDoReILddRRxzeJCwv66ugdh1p8IBZW0Wwlpzdfo-DA1jsTEwJguG3SNAxM6Qe8IZbpCsqjsPTKLOsVnA7F8bSyhjVSJ9ygUN1WWmxNW40OjzefMPVAbcLquSJiFjlpnKQW7e_-K0lI4Yh065DA6fb7YLu5VtIbruvDwCMAXJlUmRlYLUXN3GHubVinZiLbPmD8d0OJHWQR7CiZt-jLHkSvfu2HPtQO_9oYqrHen7a55O9AknTta7cJdGCnmZcDCVFTUG3nWPyOEvKKxTiOhK3EjvIwnoXaUgFONsgmk2w9-ZU0VXfzVM6Wjp6UAaHgQSZkIm7FNXei5wBeBNBAcM2sw77EhR9XjaQR9B6_7-WIOhGsF89q4omRzD5QYCEa8zLooOizHkA_mwz8BGJP2814PM4bi9m-XcuMfHfxrn772zyTMISerdO6Dn6-CrPYdIo3tmpRxrGJTYTHqg=w1000-h700-no\" />\n\nSteem was abundant and competition was low, thus the few gorged themselves until they became blubberous monstrosities capable of consuming any fish that dared to cross their path.\n\n![](https://lh3.googleusercontent.com/1gPOAJu7qWhMTu9B4KehylR_cyv_o9inydRGJlzmFrKOT958HjaXY8Mi_NBhwyrnFNpP94phoXZWthQaF2PRRXy5JBzk6pGS3q-RUBQGFGZfX7jvPsGRR-sbr_UvorIG4Qtd96E3i1p4HYa5Vs71nkIOwAGgnOgGfLhFDoK4h1V5AyGQtjfIGgKgjxNCp-lhkxkxdKxEmhIVr6Bkq0kkOviqXEphtQO2DrdTJgJGDKM9xzV7f5jGXrfARN-guqaF2qxvk4yzN7N0UlTomqVeyBfBMi-oDWcWM9GxtBQifGbYpL8QMwKzHpxC_8VpL46od1VZxssQmtm4HJLLRhSPNbMafBvYkk6wApdAidYb31JBG7krD_bqmgEq99Z41AwDslW4SlVkmtBYmelvml4moXLg6lPMcMKhCpJ-s7TIHoSgWoCRY9fCCk7FSUByGjEgWniEmvr3zJubq57EJfKWvrrXCvVoumDARU0PRjMLEaQXePn2OGx7AoipDWuIRMNvR0sXfGOt2tk_nDEqu2UmHCG7NIxF_T84y0UlhVgeOT6KLQ4vLG-HSL4WwSsS4FgtpYWD8rlmfxoQl7kV_44mmpRERbS6EM5IbuKi0HwlBhAjMBMpJQ=w1000-h700-no)\n\nThe whales remained fat and powerful - capable of pushing any post of their choosing to the top of the trending page.\n\n![](https://lh3.googleusercontent.com/UKVJNAA-PeWnEGYECCu9tOTgnk0pd28kVJKfmF2hSF4JeWGmRUqzNuKlGzdkImZHesmVXqISoccmfHlAZ9dw6FNuDgGvnf_5A6ksM2w90a_onFdpeug0IV-xIbfN3oL_GPtLafP2cre29pgsfLdma0VoWvkWoxhHo4A1uTauhQj8TwnfujUbDdFb-hN04AoJGeiQe-nxEWKfL6X16KsL6gqrK6_HLwfyWwGZYzOmLOXPDROfA8jUtOJa9mFNDaxKNTppOCYHMgspX1Msr7jgU8riJQhkzCl2auJkVod0o0jj4Z7dG2Kicyiv6sd8ePgTsxl-4CMG5Ku2l8B440OyFhXP-NxbPguu05fjx43YT5_8cuiL3zHXIURmCZyK4IPyQSh5FExe0PGLFc_r3Dx_1JDvVsSWaO1dGKxvwnDmitzT6oX3CtXu6hlWh9O3F0lygMarzKHk285QCYOUtfRGA3BlkqJY5GewyWBHdb3T00F1QF57nunOylj7l_R2o5BknamUuaz62CiUl14nOjAeJg9QOHywkATfe2A5rWAKS5BnCNbGmYq481Xy5j11TARh7u648sH0VSM0p7JoYfhHqCReLG93sIRb=w1000-h700-no)\n\nTimes were good for the Steemit whale, but down below there were rumblings of a revolt amongst the lowly, insignificant minnows.\n\n![](https://lh3.googleusercontent.com/qdiTMmJTmYBUR58_0E-QSgFUBvrxj7pAB_hoVwbbwFiuSKbVW1X7KkYpsu3wMXPzti1KhAFUpuU87RWidmr_VpGN6JOfF13dpk_Jbt_BVJhzMWGUqHWq22VoAioDZNr-QIZ1dI41HkZ1IlXIADv1kj-rJHGeE-YX-UxvkR1-tj7I-dT3NOCaQQILQ8djg2b9c4XAstjLiN598IkeN6f1ZQzIMHPP3Wj7HKd1gQrRsAoP89kAnFMtOoch9H_fFJWoOekzeJpKn1mgASOqGodffcxHSygJowzb-0x0t6p5lv_-xiBxWsjbiKKKSYGW3l9pzWHhd1AEpFw7pQQQwtzkw6LX6RexxiQDUQm8TKqmiMt14osKs826dNMkJ1NdwFGNOTJwaPcUgs8he8ojef8xDqJD_t5eK1vZUg3hidxuZJXopUQ5AL992gVQOSeLPL77nruo_QHx4tlrT5Jxhp-4Wato5VLJQ0UWriHRWg0396AigaPJNnT6P5B-RLGcn-ZiwvF_77lw-iSdmh1-KY_jZQSbnD6v3ujSenVZDI6SGu-MNS2t-Vjd078oMkD2Un5hGTSd8niHqIH0QXkLk5R39-gXB8PdIJ9y=w1000-h700-no)\n&nbsp;\n\n*Whale diversity?* The minnow was on to something. You see the few that reaped the benefits of low competition in the beginning all came from the same walk of life and enjoyed similar things.\n\n![](https://lh3.googleusercontent.com/7FY582A5ny5w8XKvDqmyxuEy-xmPgeVXkxvQaoh7EHzwFAqCD8giEPSRQ_sIeET5GbPH_hq6QAxC2kst0mLoLYzCsRx_TDAT-Stg1Or2z_DVbCNVQ8fO46_sCKaNZ6Wmcp8IWFlHf-hdftDXjxdNHBIsHhEG4Dl4nzLmRyTUIzkLv-WA0lNyjC20MOGj0dujkfg6v3X_wwpVW3tYj25cErsgxadPOIwm57w3wLgINYYO-8YNCVEs1Z17N9sTxIesCQFcgej0Wg6hl_1uIL1-lNUdXyEn9zRnLcmPd0Hm8wepfM7GsFCAO7foSh6ikuySW2dRIZsjIbiuhJXOkZiiTwXMG6hzELaiK25KvXVCNEDV0DjeKyVb8qLTsgy-LqeMsPKv3tTYmW53XRjZeIevwlexx_8uU3G1q_c4VW1ZOyHPhBBb62OhD3cTNtxtH0m1p8rQoXIQGuP2ljjOkRpwSshwIsVAQx20lTNcCUpTT0lei6N5TbSe3LQSmfs63L_-K7CsoqCMt6ZFaNXBtbEHtmtr6aV3a85cmw_9hX13a0NkzSs1LJxE3vxxXNwYPYnrbI0tS5oTzfWhgJJHQeaMFFwcYadrvRAj=w1000-h700-no)\n\nAnd incidentally...\n\n![](https://lh3.googleusercontent.com/b-FTLIFqKvBNrKaYJBsBOdQDQuqA035kvRN51cIOjV_QvYj5o_q5o2CdMrIcUoFmg89Yos0jKnLAaoQRY5TEpsDNu3j-dffijvxDLePMvtM49_SxU4LokNZfNy7HZ3yh3PKvl7_oYepYBCtkW9-u1gFrseHc9Cw3WIq12jkcAh40r_9jiTaCkefx2QdjsdE7f43YZn35sqQnvyK-U5Y-x3FpiaKT7XORBe5tMklRbJuy5puh1PYXqCbCRWhTa36rqg6zT4lZJXhduBsjq_cZZDcOQmRh54cNZ3yg9snFoVTfbsleGiG9XCe-65N3hHkg2o2uYMBDzRHow9qOO9JrB9YYcyr2RURrpVjFNcIW0078s58DYtph8SAP8QMCa6iDW6EuzFHG2iiK14afSpTGUJsAQLOAUGVb5B73VTSZXNn8W8ZiKws-9BkenegOgFKP80_UVmIRS38uwc6sHSDah5mQ2ckgIpdYs5mxJvjyvDfjlP13PnGn4vigAeANXWKRIz6ODoGbHxyN4QruVZIvJlVctFwvV3OOtMeNKoaPGCMqsgJ4QkM8R6EAbrKvQPj0wzm68sykO9Tbtkj1jkAvvAoCmNQeDpKF=w1000-h700-no)\n\nFor some this was perfectly fine; however, as more minnows joined Steemit the desire for non-crypto and Steem related content grew.\n\n![](https://lh3.googleusercontent.com/_Cgat8Ma4-b2gOQcWfzxuMVi_PWynqKTGY1-FOYh7DJDJxMX0CeuavZ5xolHDDDufIO3uo4XmseK9I_0D1BCz046GLwVWutWDBJcAd-BroFyj8KmhmC5vs1y6kVmMouTwO4J5Q95PkITP6yc2Huor2PxBq-YUD2toHJA2eW2qiibH9zBIb7yxPgCqa3LNFftXS45vuiQD28muY9nHmS7AW8vFn_U0gaN7jMDt8hRjRl1WDFRONel1uGWlcP_SJX6nud-jBi8ZZKfSjF86cN0owe8zAcjyfa6jDqxndZSU6onMXxIBDTUPxhvUXTkPMiJjepuAH_X1aS641DffnAvTF4_7u6JzB14Miduk7Q1q1jK7s1gjeIS7p2L7qc-fWAMFExlAZM62AOR-Kj4FOd6kYyL4042sOxoLeE6mcp0hCIBLP5lnZl9q1KUhJHfiFqGjhEZSIqqxQMo9Nkk632RfG5kTSnILOujGD-bb0cnergLWcefgw-9_uTkIhren80ZAwJa4lLKtK_xOw21C26BPK6L0CLVKa9VjxNY1aZkjGPZszUHhMhaRY4Nyw8xh4yKzMl1YQ8HVYaEVO2xM4ff5C2p7aYUVPN5=w1000-h700-no)\n\nFortunately there were intelligent whales that recognized the issue and decided to take action into their own hands to appease the minnow masses.\n\n![](https://lh3.googleusercontent.com/_WMDmgCEM_g1Q3OTZ2IBQUaQZ5xDNq3bqgleBZyiVmf3Akvvq5whtTVx_0zIZoZ3J2yQEyrutSRxFbHrSuzwr97tPEfxUb8YyiemCq-NEPLljfkK1pshMpPieLdF52Csuhgdj2rWXKPp8wJQMxf0VmEZcg4W5BaDvUdTg9iJL2_4SoGAKBnAviKacKenxli8zaVcjS7CmyUo6EDHebOgx4XBGOs5lq52lD1_JMZTNlqOOoxnMkCcoWDlfvvBthaBRKrdECES4O-fYITvZEKdxRoxnk4Vxi1ylUqUTvUKjdQM3rnEf0Pbq_4U7qfe24Yzz1RQt2n4SfbVlif3eBRxEkW-pZPMwCtSQeTEDnwsrGwE1voufdM6TsIFiFn9Buz2436e162swat6I2M0bUnSVIMh5mwuT44_Bqd70-W6LMt-4_P58O3vPAr91EVuDZLGRlliMDa9AhUm4UXKpV-YVhl0r40R08wBHvAEk101610hm3hkJoC9mACzA6OGjhSeJFazjuYlpU4yWT8NEYYv2F__4q_jYXfEvZDK3lcOgsIsWpajKRxglos7v_1lKV91Qj6SmDlglWNrSqR2_CvlzZnyiIfGOKYZ=w1000-h700-no)\n\nThe whales kept to their word and over time minnows from all walks of life slowly grew up to join the whale ranks.\n\n![](https://lh3.googleusercontent.com/yr0h2R4aRsIYOEi_TzJ0_jKDu2ijRp26s_iDqaN8h5zt_ICrSRAzPgUt00x9lA7ZmIUtaHsMe0LRey-qImy-OmHN5fQftmuR5WinqJrCEQxKfNwqR5ysZhpOrUtmOzKk2vg3ClmxSFUYoifDFhp81zrHddUyhy7ZdYgB0aAfULv_BqMYzK7QNitPYPoegOJxNkbv6Z6CU8dC2gEE48rBPuLb6VAt6LJLnqw3Tua9qADtFp_TR-wjYgGGBeGjk1HwKN0cNSG9FbI3kiBkOWADUY6RcWlXGRH24DpSGo01HqluVKjWA7UGzESgzJ0_O3aNExpMITGW5NQzxYU6QMWGBnhygD0BlkNKwdH7MuTzmvGyjIDE7tydiqUAd484MwU9DPPBOML2e6OJ6UsSVFkGe6q_0m4NDuJpCwtVEPbawjS0gUXO1rgV5FDdAUNuS18bhFV201aJgIB9OxMt6lJVFe32YDaT_hDiXP1eCb9wr1K4wJZY_GRqDtu83pbIvRVI6mIKoq2MfGfQf9lD0Vt5V_ISKoOhYfIQcNtD46vrNs5CrxM1KdIaY2e_-yv0sZ-JbRAK6aPZu-s18TU6ixKDDAGHY1V9lFp0=w1000-h700-no)\n\nThe whale diversity problem was solved and Steemit evolved into a social networking utopia where all points of view were equally represented, supported, and rewarded.\n\n![](https://lh3.googleusercontent.com/HKRf2YGck4_74_YgTXzxvjwbAer6gj4rsHb7HaN0VpfTb70QY6BWeStAnHzwMVes2s4kaD5MdZy6jNEA0uJUDfFuZvsHKPDCjHb1smA39aYhgDCJizyUsZj8CsUYVsLUH3YTPavhsOFMLOI9a_6PqJHts_x8TEjFIJi1_QuWlChGMM3qDyoJO1yYMFz5ak4VpUyqArY0gfkxOaCYX4bmffKqaPec4xA2RAzp-VZMpeV-n96SBHbrvV7PCee-_OMUby1HSLH-vzIo4dkNfS9Sp7zXDLCVXeITcaLNnY1JdODbAjkGxqntIVWxTnc9JXmb7UspZriRu4YrJnPWg_XaGVhiKpa4dM7dcntLqLDyaInN-poyybJA4W7qLvacJoxBln9rdP0Mj2-sKe1fSkqCvrTk7Z9pQXkPXzzbEJoNZriI9e_ZCwwkHJfbWuUMHP_zsppB4U1fsfXxlgros3_oc5fP9YJmcqRXJP_--VZbkN87fdNVDBQj61DOfJ7hQG7U9uMa9i8m0VSM4e-ic2iR24Gt5Zgt119zQyFpR-3cbvB14POxKdG3-gnRMmohgkTRaMkKC5naCIMNyWhG4_92k8EVV8xwoKzyb4PFwOMuDQdbUuVgGg=w1000-h700-no)\n\n***Footnote:*** *This account is 100% factual*\n&nbsp;",
+    "body_length": 7997,
+    "cashout_time": "2016-09-20T08:40:00",
+    "category": "steemit",
+    "children": 98,
+    "created": "2016-08-20T03:16:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"marijuana\",\"art\",\"bitcoin\"],\"links\":[\"https:\\/\\/lh3.googleusercontent.com\\/1gPOAJu7qWhMTu9B4KehylR_cyv_o9inydRGJlzmFrKOT958HjaXY8Mi_NBhwyrnFNpP94phoXZWthQaF2PRRXy5JBzk6pGS3q-RUBQGFGZfX7jvPsGRR-sbr_UvorIG4Qtd96E3i1p4HYa5Vs71nkIOwAGgnOgGfLhFDoK4h1V5AyGQtjfIGgKgjxNCp-lhkxkxdKxEmhIVr6Bkq0kkOviqXEphtQO2DrdTJgJGDKM9xzV7f5jGXrfARN-guqaF2qxvk4yzN7N0UlTomqVeyBfBMi-oDWcWM9GxtBQifGbYpL8QMwKzHpxC_8VpL46od1VZxssQmtm4HJLLRhSPNbMafBvYkk6wApdAidYb31JBG7krD_bqmgEq99Z41AwDslW4SlVkmtBYmelvml4moXLg6lPMcMKhCpJ-s7TIHoSgWoCRY9fCCk7FSUByGjEgWniEmvr3zJubq57EJfKWvrrXCvVoumDARU0PRjMLEaQXePn2OGx7AoipDWuIRMNvR0sXfGOt2tk_nDEqu2UmHCG7NIxF_T84y0UlhVgeOT6KLQ4vLG-HSL4WwSsS4FgtpYWD8rlmfxoQl7kV_44mmpRERbS6EM5IbuKi0HwlBhAjMBMpJQ=w1000-h700-no\"],\"image\":[\"https:\\/\\/lh3.googleusercontent.com\\/bEdy50gH2ogFrQkAbbE0QOI4vwAbTct54hhDw6M9Mol-ULh4xOLoXyiCkHMRENVlGs_a__h1UST-hHpEf5Y4kP7CSosvQL8bniq6BTLpl0sJdrnjVyZyN1-EtVCmxfd30xOCRXUH0sdw9s38qhjanGvfNACdNYCbonDoReILddRRxzeJCwv66ugdh1p8IBZW0Wwlpzdfo-DA1jsTEwJguG3SNAxM6Qe8IZbpCsqjsPTKLOsVnA7F8bSyhjVSJ9ygUN1WWmxNW40OjzefMPVAbcLquSJiFjlpnKQW7e_-K0lI4Yh065DA6fb7YLu5VtIbruvDwCMAXJlUmRlYLUXN3GHubVinZiLbPmD8d0OJHWQR7CiZt-jLHkSvfu2HPtQO_9oYqrHen7a55O9AknTta7cJdGCnmZcDCVFTUG3nWPyOEvKKxTiOhK3EjvIwnoXaUgFONsgmk2w9-ZU0VXfzVM6Wjp6UAaHgQSZkIm7FNXei5wBeBNBAcM2sw77EhR9XjaQR9B6_7-WIOhGsF89q4omRzD5QYCEa8zLooOizHkA_mwz8BGJP2814PM4bi9m-XcuMfHfxrn772zyTMISerdO6Dn6-CrPYdIo3tmpRxrGJTYTHqg=w1000-h700-no\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T06:12:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 170483910533651,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "4048.917 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-evolution-and-diversity-of-the-steemit-whale-past-present-and-future",
+    "post_id": 678851,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Evolution and Diversity of the Steemit Whale - Past, Present, and Future.",
+    "title": "The Evolution and Diversity of the Steemit Whale - Past, Present, and Future.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@mynameisbrian/the-evolution-and-diversity-of-the-steemit-whale-past-present-and-future"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6789476536682",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29060911755040",
+        "voter": "smooth"
+      },
+      {
+        "percent": "50",
+        "reputation": 0,
+        "rshares": "28856182775",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "8830389431712",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65730507058391",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6523804990505",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1965835885365",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5846608954036",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18962694857611",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2471563642",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2999847533",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562206278",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42121652946",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1324839354",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170734595",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53880737032",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5049809409356",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1050608613958",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257041190383",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497059573",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "735756350",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24204174129",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67419834921",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230196550",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39273276810",
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34806671164",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410854861624",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100000733772",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "20408344700",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2050540352",
+        "voter": "gekko"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "26795757890",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1729661907602",
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3562975741",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2149581894",
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "627712922",
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76849604989",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425520017",
+        "voter": "yoona-lee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59010351871",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4105151979",
+        "voter": "mrkhuffins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45596034197",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1799453027",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19196721390",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1773113356",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49772843795",
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313324511768",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "409936241711",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362198296",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93824978400",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16534866092",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10284080069",
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90245633242",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181224843039",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9346126115",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244961482082",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346981747642",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55090474424",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12627152083",
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63901507013",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197365623559",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1201347285",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19659075136",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76490270052",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "732569491",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1532215131",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1379016378",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40339580667",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137721329373",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5412463822",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183482843560",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73958830030",
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49863343348",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2474423956",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13226027320",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26180732963",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13676545628",
+        "voter": "omarbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8832015393",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019490436",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252877894",
+        "voter": "glongsword"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6470273968",
+        "voter": "emhaze222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2868382485",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "298381626",
+        "voter": "kosimoos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4932946013",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4829598529",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250436670",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "111266128",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12371658632",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135252917712",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91030642353",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290611180",
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64620383869",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638237394",
+        "voter": "suchnewb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264925687623",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1486173587",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "589197515",
+        "voter": "iamjmgx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41304962133",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36628991837",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "43495419958",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10793107776",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "485360466",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "537655521",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "497561630",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236683394",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103401762820",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427602632",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268810206",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14636537190",
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243392987",
+        "voter": "bittog9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4106394291",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1859411946",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18687506137",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327801258320",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116030738839",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52751435068",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203840552",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70927942430",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9614201114",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2015944159",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1670193490",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128872715192",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379074481",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240049444",
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145855812",
+        "voter": "christianus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240374641",
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6863072932",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25839521482",
+        "voter": "creemej"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "1498848826",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4195791223",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8583188022",
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3768463510",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84252377918",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117448996",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12295332022",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14188958368",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7161509485",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10807655536",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14615339974",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117526541",
+        "voter": "skybean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10935349548",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69428316195",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114838181",
+        "voter": "ggabi.loper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1761920939",
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109399116",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11757087467",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "932255453376",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362267920",
+        "voter": "queiroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2170744241",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "16436451789",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27776873855",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435182410",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4828928518",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49852905345",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115387959",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6140076559",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1734714340",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159990554605",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120834885",
+        "voter": "takahan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2635314385",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6669357952",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "511819814",
+        "voter": "fnait"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "502109046",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2851899479",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18579856385",
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59005064575",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157335893",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "828379504",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102166412",
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331324485",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "109236400",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7218545168",
+        "voter": "carlosf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "739574722",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96979241",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16804387213",
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14690691636",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13386638185",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2076712286",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102348882",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388918755",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7354265245",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7177146400",
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4509628668",
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95896124",
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8543127520",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7388132669",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2790097930",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36517014867",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132361142",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63700992",
+        "voter": "rataloclaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1409516878",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277163214",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1823929112",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662317039",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88945026",
+        "voter": "doapsauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63105810",
+        "voter": "loot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4748460884",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83829373",
+        "voter": "cryptogal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177807693",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13330430797",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11942664690",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62645030",
+        "voter": "labeller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97611154398",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419523963",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38827607895",
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60333839",
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61439317",
+        "voter": "tammyyin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "481938011326",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1137177309",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106783648",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59271464",
+        "voter": "jayseedubya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1009423454",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391266485",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58964015",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1459760283",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-60040051",
+        "voter": "icecreamyolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2148269823",
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1148874646",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24992183908",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7684085092",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67029397",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19427714782",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3987815940",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2040550619",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2834310245",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14668414085",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444410635",
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "426936350",
+        "voter": "aviator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156468479",
+        "voter": "steemlinks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1176722422",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65731104",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13976239286",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56064665",
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53864235",
+        "voter": "eslopez92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60300302",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58015930",
+        "voter": "vitalik1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97542204",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55961425",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59588125",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1941328082",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57272682",
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65086623",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30838917918",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51158399771",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38713955875",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88706692",
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55546061",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57637549",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54561850",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28262440512",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2175237384",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1162013097",
+        "voter": "evolka"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-57181860",
+        "voter": "superagonist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57177794",
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57099237",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57098276",
+        "voter": "phonemonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2712604436",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56853225",
+        "voter": "mossid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58382726",
+        "voter": "vityass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "969730600",
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "358310593",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50084768",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51162623",
+        "voter": "iamjen2692"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "595544326",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56559977",
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57894807",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56025199",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55053663",
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512292840",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56126260",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59502865",
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1783186174",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "677884523",
+        "voter": "gerasim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55676046",
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54581855",
+        "voter": "baul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55654106",
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60615956",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69800956",
+        "voter": "cemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54324205",
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7144337023",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52094170",
+        "voter": "klents"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54184182",
+        "voter": "gastlep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1263992042",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52895316",
+        "voter": "michivollgas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53990613",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52783907",
+        "voter": "urbanchick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794249",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95090228",
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54857075",
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54798510",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50210263",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54706268",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52521499",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53602103",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50307404",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50222829",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54437501",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53400199",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54234303",
+        "voter": "incajack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58698753",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53092299",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264867027",
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53008528",
+        "voter": "santiagomaicon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3517656674",
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814320",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51813071",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53780945",
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52657220",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50550491",
+        "voter": "nospin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52653169",
+        "voter": "oneareis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53701277",
+        "voter": "elex-free"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53666720",
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50487723",
+        "voter": "youcan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53610063",
+        "voter": "skater777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53420728",
+        "voter": "bondarenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53407339",
+        "voter": "sknese"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53398372",
+        "voter": "p1r4t3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52346578",
+        "voter": "dporsche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52341353",
+        "voter": "jeffsvenstrup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53366748",
+        "voter": "gaurav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53366320",
+        "voter": "karazia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53355774",
+        "voter": "scatoclysm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52305841",
+        "voter": "mjholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52305084",
+        "voter": "fganz72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52285276",
+        "voter": "naknak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52281058",
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51231643",
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53310337",
+        "voter": "pieterb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51218103",
+        "voter": "fuminhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230107",
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53267460",
+        "voter": "kelombard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53235460",
+        "voter": "ant1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52028160",
+        "voter": "hardworx"
+      }
+    ],
+    "author": "tracemayer",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hey Steemitsters!</p>\n<p>Well, it seems the Steem community enjoyed my <a href=\"https://steemit.com/bitcoin/@tracemayer/trace-mayer-is-now-on-steemit\">introductory post yesterday</a> and I got some great questions so there will probably be more posts in the future as I continue digesting information on the subject. Just like with <a href=\"https://www.weusecoins.com/\">Bitcoin</a> I stayed up late last night and read the entire <a href=\"https://steem.io/#whitepaper\">Steem whitepaper</a>. Fascinating!</p>\n<p>A fellow podcast host <a href=\"https://steemit.com/@marketingmonk\">Chris Coney</a> (<a href=\"https://twitter.com/ChrisConeyInt\">Twitter</a>) reached out in the comments and we jumped on Skype to do a quick interview about the Steem network and some of my thoughts about it. Thanks to Chris for being patient with me. I am still a Steem noob but I do know that this area of content creation, journalism and social media currently have massive pain points because of misaligned economic incentives.</p>\n<p>In this <a href=\"http://www.bitcoin.kn/2016/08/what-is-steem-and-how-does-it-work/\">interview</a> we discuss <strong>(1)</strong> what the Steem network is, <strong>(2)</strong> the crypto-tokens it uses, <strong>(3)</strong> the economic value it adds, <strong>(4)</strong> attention in the Information Age, <strong>(5)</strong> censorship and voting brigades, <strong>(6)</strong> current pain points in this area [including massive governmental intervention and propaganda] and <strong>(7)</strong> much much more.</p>\n<p><center><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/naXVMdcJidw\" frameborder=\"0\" allowfullscreen></iframe></center></p>\n<p>I really hope the Steem community finds this interview helpful and I plan on bring more time and attention to bear on this subject!</p>\n<p>Please let me know what you think about it in the comments. Any discussion, comments or suggestions would be really helpful for this new experiment. We want to hear from you!</p>\n</html>",
+    "body_length": 2022,
+    "cashout_time": "2016-09-19T23:31:03",
+    "category": "steemit",
+    "children": 42,
+    "created": "2016-08-19T14:59:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"anarchy\",\"steemit-future\",\"blockchain\"],\"links\":[\"https:\\/\\/steemit.com\\/bitcoin\\/@tracemayer\\/trace-mayer-is-now-on-steemit\",\"https:\\/\\/www.weusecoins.com\\/\",\"https:\\/\\/steem.io\\/#whitepaper\",\"https:\\/\\/steemit.com\\/@marketingmonk\",\"https:\\/\\/twitter.com\\/ChrisConeyInt\",\"http:\\/\\/www.bitcoin.kn\\/2016\\/08\\/what-is-steem-and-how-does-it-work\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T07:46:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 159855426279758,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3430.244 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "what-is-the-steem-network-trace-mayer-dips-in-his-toes-with-chris-coney",
+    "post_id": 670885,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "What is the Steem Network? Trace Mayer dips in his toes with Chris Coney",
+    "title": "What is the Steem Network? Trace Mayer dips in his toes with Chris Coney",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@tracemayer/what-is-the-steem-network-trace-mayer-dips-in-his-toes-with-chris-coney"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29660001630495",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7691189763216",
+        "voter": "steempty"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28855332382",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17312795872991",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354858432524",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14530474215483",
+        "voter": "summon"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1288491147786",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36389534383121",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "509023434748",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7119704932823",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6329016355962",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223373121837",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5959775644184",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110779491046",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185144950688",
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32642296478",
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "934527471682",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1714882168698",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "857116088519",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2470238755",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2998129153",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "567603623",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41948298509",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1324164960",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5626480966288",
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170709221",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244244304709",
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33487303623",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4773926435633",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55154627735",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232548364142",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360253230565",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297316568817",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70879185478",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "978833973447",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11123561595",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "496873319",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "725575461",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "267626576398",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6901396611",
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "637122544679",
+        "voter": "clains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390512580501",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42341568608",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72633920246",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "330897500503",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "286078265937",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24179423583",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111848540139",
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230145753",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23219852563",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "14965628345",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25162621347",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11513900390",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13042098927",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "569109365",
+        "voter": "frxdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34031991718",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "419042084008",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99916319359",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14880521242",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16935127185",
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9872385447",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2907626165",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19296895263",
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8284825302",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21114832646",
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81433806691",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4180443790",
+        "voter": "sunjata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115613025248",
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96739427470",
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45575829971",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638716469",
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2177269778",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3562906824",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8621279999",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "627712922",
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78384808291",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5499450859",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60181240021",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59541191039",
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52495149686",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58906141859",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1798578468",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19196002726",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "422167045",
+        "voter": "sunny-mcjoyride"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46708470073",
+        "voter": "jay-kopinski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1737651089",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7004401480",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48492326395",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "613920603",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2911205113",
+        "voter": "scalextrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3144640411",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331272205093",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29598009899",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417817338",
+        "voter": "argsolver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5486331749",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20315788274",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494951057079",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354491950",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95211155163",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222485214768",
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193167939124",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3795697759",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86390428692",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181150600898",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10839992917",
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10368505517",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357060569",
+        "voter": "meg4freedom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400573725",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26580192651",
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485948225",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31391937717",
+        "voter": "brennanhm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14433489693",
+        "voter": "blindleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318582096666",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58524861554",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "10415027289",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109475226605",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119404288",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323564515862",
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3556687721",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19658653677",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13377969429",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80364066472",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129495757534",
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418647718",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23191344798",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "731063947",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1697694767",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41152763292",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96714390101",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187298320916",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13860915325",
+        "voter": "azzot88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23496964571",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5163259581",
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304955387",
+        "voter": "oleim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47328842656",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250387796380",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123942782756",
+        "voter": "vollumc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21037599820",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "917970441",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34902445645",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31277278439",
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67913818888",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2502037199",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1023497195",
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5894409181",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11661217192",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "717181655",
+        "voter": "renegadegaming"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5670350881",
+        "voter": "dailyfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039880244",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263778892",
+        "voter": "firenze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13320093550",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5558771551",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3849938100",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1472163723",
+        "voter": "dtsddace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4693343678",
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "400151923",
+        "voter": "cccmar71"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133176013855",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3619062225",
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2399740725",
+        "voter": "juansgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4813843518",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1830127738",
+        "voter": "billykeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3757765219",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5489238793",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250032476",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "673605747",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4898824737",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58799563312",
+        "voter": "krypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12371658632",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133976858831",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247870062",
+        "voter": "martiniblanco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12932467944",
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19832460217",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65911897798",
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "461256359",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "274755910",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8858516922",
+        "voter": "imjustsayintho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1248341549",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "667235750",
+        "voter": "mjoriginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38501623251",
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43524398445",
+        "voter": "ghostyeti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38458089845",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9295728972",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37312479364",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260537110",
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10789254334",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107391559396",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246089730",
+        "voter": "alex2649tw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "926265102",
+        "voter": "cousteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3209043458",
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20689766629",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "526029462",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6556006147",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41263329382",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15298660141",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263539417",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279748701964",
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4265580525",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18394319538",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3300368651",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41464431448",
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117883009692",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14720451078",
+        "voter": "guywinfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365869995",
+        "voter": "suicidemime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1114842104",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73056635304",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19068585244",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17567152399",
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341305277745",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241440929",
+        "voter": "omegastarscream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2418601869",
+        "voter": "frankenstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24378233955",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59944215860",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6239076539",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186734295527",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73657381102",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9495756808",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21856792978",
+        "voter": "raymondspeaks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240811407",
+        "voter": "further"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2013770318",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123811957066",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515193630",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15409573231",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17047624759",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235661413",
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26727753491",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25839187917",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70456928899",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3536528779",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84252002098",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234715590",
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1414729650",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240120981",
+        "voter": "yaremi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239087963",
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8982158958",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "249746626",
+        "voter": "sebhaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12353898954",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2609553595",
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138586395310",
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3823215987",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224702176",
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238723257",
+        "voter": "heybaebae"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3992203856",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238690018",
+        "voter": "durandal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238648652",
+        "voter": "highlander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143020455393",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111944290",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190243871149",
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14188132506",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1486614792",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32523451888",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119654521",
+        "voter": "thisischris225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5968367294",
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "200835346",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7161351637",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1097087466",
+        "voter": "mekongmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4525825446",
+        "voter": "drako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9191690423",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311209174",
+        "voter": "olinzodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557235822",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116436003",
+        "voter": "sovereignbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1765213918",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156547177327",
+        "voter": "baronofbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114054397",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118259307",
+        "voter": "rodarauj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "990217556",
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2321690640",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588330244",
+        "voter": "aleco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32150843547",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113369331",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260703859",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4924573498",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81010314755",
+        "voter": "thebear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46532818796",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557480846",
+        "voter": "rfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17402259069",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351280513",
+        "voter": "rcmdantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9397430702",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3714769512",
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6180853732",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203065875549",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48411270169",
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112351692",
+        "voter": "mikali4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116937273",
+        "voter": "ultratech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12881183680",
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4943699627",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19671096335",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18519200036",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2406185748",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221401214",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118593983",
+        "voter": "sazbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "933075721",
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3095026166",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4315879121",
+        "voter": "gapil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9277859814",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2728087601",
+        "voter": "mikeinfla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6368247167",
+        "voter": "sotura"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113536141",
+        "voter": "shapeshiftio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60180808157",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516085835",
+        "voter": "thnkr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11082296680",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "606232368",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5041328765",
+        "voter": "spookypooky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110245787",
+        "voter": "arslan7544"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "712124824",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110203683",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66778067",
+        "voter": "dras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "627642389",
+        "voter": "pr3ttyp3rf3ct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65320253",
+        "voter": "massrent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6936950147",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8300552993",
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7931494704",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4872148632",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63884179",
+        "voter": "beiaandluna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122068688",
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65056880",
+        "voter": "lolitroy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118578167",
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "286215488",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22566779542",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7048341805",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99385451",
+        "voter": "bajekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890051070",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1351204520",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5435472901",
+        "voter": "jrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63281877",
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6808312002",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64511726",
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382253852",
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "462611333",
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69133385",
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71828323",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3009702553",
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4937136035",
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7536445563",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2880838645",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63868569",
+        "voter": "assisjadue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132733122",
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3349612512",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63609725",
+        "voter": "myb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129209686",
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1990106983",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187055084",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939913393",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641776659",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412871786",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63370428",
+        "voter": "anarcist69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63616030",
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64533155",
+        "voter": "trotksi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7084643689",
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19466447372",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62710297",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19471051379",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5411852271",
+        "voter": "veryscience"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710166068",
+        "voter": "deepdarkweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "824981038",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39102011232",
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "547547035",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "409762528",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65286836",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86541852",
+        "voter": "teambitwala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1307958259",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61710083",
+        "voter": "mokhtar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17819078414",
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11616597380",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3908250284",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72759729",
+        "voter": "chinese-gandalf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69328915",
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62542956",
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62273194",
+        "voter": "r2d2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "460260053739",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60676805",
+        "voter": "elmariac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60676613",
+        "voter": "twixfingers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71513734",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "443274841",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60651985",
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1159364706",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55775081",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57093305",
+        "voter": "gmskov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109008307",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2546496041",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239224101",
+        "voter": "moonguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3439108470",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661912934",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66495348",
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246362842",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59922207",
+        "voter": "isalondono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52786041",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8121810865",
+        "voter": "jyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23196118509",
+        "voter": "jimmco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453791773",
+        "voter": "steemhorizon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59371769",
+        "voter": "yurybond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58739830",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1433564642",
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6857510977",
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15184471701",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59008544",
+        "voter": "sterl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075269056",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300847113",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74823513",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24113506597",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6939333901",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98475939220",
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7844031383",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57580866",
+        "voter": "embraceurdialect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59621658",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191999073876",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56308627",
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57886832",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84649109",
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4673123658",
+        "voter": "joeplummer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72182496",
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5521838461",
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6256216718",
+        "voter": "xbananax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "854187323",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1047175144",
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61338571",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336474373",
+        "voter": "metafzx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14243847171",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60982926",
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120465010",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58035992",
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92638073",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2625019093",
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69413590",
+        "voter": "darkflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61826880",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38711525771",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56641491",
+        "voter": "bradgoetsch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57767536",
+        "voter": "aaronjwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18029760839",
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55377253",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365799797",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77168451",
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79719071",
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148113908",
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57706606",
+        "voter": "sean-ryno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57971965",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57009820",
+        "voter": "getbithub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8136053037",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56314596",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47741769850",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56169240",
+        "voter": "ertinfagor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64473945",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57164394",
+        "voter": "redpillbetting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55976991",
+        "voter": "blockchainjen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53715939",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1779126575",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58073817",
+        "voter": "jeffereyjaxen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57042737",
+        "voter": "dumbclubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "514663850",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "874938648",
+        "voter": "mxu111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54875000",
+        "voter": "virgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839571930",
+        "voter": "leneg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381164023",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55660383",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56767767",
+        "voter": "venetor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57565305",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56749326",
+        "voter": "dailybitcoinnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6073759162",
+        "voter": "vtmdmd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1278285716",
+        "voter": "sile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1840903324",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "939741480",
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "769504542",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56413557",
+        "voter": "irfanpak10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54930587",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56222092",
+        "voter": "jdp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025746",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53893867",
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58363765",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55881328",
+        "voter": "erixter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54767752",
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54726577",
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56258393",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55736881",
+        "voter": "arrax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63986842",
+        "voter": "ender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40270926380",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61668627",
+        "voter": "avemend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59023455",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171651",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55571057",
+        "voter": "chaeya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1753199598",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55660488",
+        "voter": "lihua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55486361",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54321048",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001199334",
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74666188",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54050826",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "726890199",
+        "voter": "artsuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56581568",
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53967931",
+        "voter": "thiras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53951892",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55199674",
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54981722",
+        "voter": "evgenzap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54217891",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1149197263",
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54860980",
+        "voter": "sammiedata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55049232",
+        "voter": "fee.org"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53738763",
+        "voter": "bexir.oborael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65710026",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54761121",
+        "voter": "perkinstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327031815",
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53633596",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54687741",
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62737051",
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53586458",
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53565135",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53917369",
+        "voter": "parkus101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54626102",
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54602521",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52437364",
+        "voter": "steemvixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52343554",
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54417851",
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53313854",
+        "voter": "bik1980"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1266629534",
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54283208",
+        "voter": "treize"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54273258",
+        "voter": "mariov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54254324",
+        "voter": "swooshedits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53188832",
+        "voter": "angryredbarber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52075178",
+        "voter": "dooglet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52068903",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52041445",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52030453",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50955968",
+        "voter": "kyle.lapo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51972494",
+        "voter": "crmason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52968748",
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54013673",
+        "voter": "kimchiboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54010959",
+        "voter": "jetlejk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54008746",
+        "voter": "forklognews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863115",
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856379",
+        "voter": "cleateles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53962257",
+        "voter": "roolio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53961934",
+        "voter": "s1las"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53958495",
+        "voter": "thefuzzytrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53948330",
+        "voter": "qwertyuiop123456"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53943790",
+        "voter": "andyraddatz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53938511",
+        "voter": "belka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53937193",
+        "voter": "msjkuasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52846407",
+        "voter": "kitperez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51783297",
+        "voter": "noah.morris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52784673",
+        "voter": "oleg999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52772186",
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53820669",
+        "voter": "wanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52258173",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158302137",
+        "voter": "thehellenic"
+      }
+    ],
+    "author": "shapeshiftio",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<center><img src=\"https://www.steemimg.com/images/2016/08/17/SteemandShapeShift4b5a7.png\" alt=\"SteemandShapeShift4b5a7.png\" border=\"0\" /></center>\n<p><a href=\"https://shapeshift.io/#/coins\">ShapeShift.io</a>, the instant blockchain exchange service, is excited to announce the addition of <a href=\"http://coincap.io/STEEM\">Steem (STEEM)</a> to the exchange. Users can now buy or sell Steem instantly with bitcoin and dozens of blockchain assets including Ethereum, Ethereum Classic, Dash and XRP. No account is required.&nbsp;</p>\n<center><p><a href=\"https://www.steemimg.com/image/4EdmJ\"><img src=\"https://www.steemimg.com/images/2016/08/17/SteemonShapeShift04b39.png\" alt=\"SteemonShapeShift04b39.png\" border=\"0\" /></a></p></center>\n<p>Want to learn how to do an exchange on ShapeShift? Watch our demo video:&nbsp;</p>\n<center><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/n7OdD9HTT-4?list=PLHr4IxCUrjWmYzAvh-4y8Yxs_iVK_1V1v\" frameborder=\"0\" allowfullscreen></iframe></center>\n\n<p>Head on over to the exchange by clicking <a href=\"https://shapeshift.io/#/coins\">HERE.</a></p>\n\n<b>To stay in the loop with future ShapeShift announcements, please connect with us: </b>\n<p>Newsletter Sign-up: http://eepurl.com/bdbzO1</p>\n<p>Facebook: https://www.facebook.com/shapeshiftexchange</p>\n<p>Twitter: https://twitter.com/ShapeShift_io</p>\n<p>Public Slack: https://shapeshiftcommunity.herokuapp.com/</p>\n\n</html>",
+    "body_length": 1432,
+    "cashout_time": "2016-09-18T05:13:27",
+    "category": "steemit",
+    "children": 85,
+    "created": "2016-08-17T20:26:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"cryptocurrency\",\"bitcoin\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/17\\/SteemandShapeShift4b5a7.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/17\\/SteemonShapeShift04b39.png\"],\"links\":[\"https:\\/\\/shapeshift.io\\/#\\/coins\",\"http:\\/\\/coincap.io\\/STEEM\",\"https:\\/\\/www.steemimg.com\\/image\\/4EdmJ\",\"http:\\/\\/eepurl.com\\/bdbzO1\",\"https:\\/\\/www.facebook.com\\/shapeshiftexchange\",\"https:\\/\\/twitter.com\\/ShapeShift_io\",\"https:\\/\\/shapeshiftcommunity.herokuapp.com\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T21:03:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 157746955383174,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3346.744 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "official-announcement-shapeshift-has-added-steem-to-the-exchange",
+    "post_id": 646252,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "OFFICIAL ANNOUNCEMENT: ShapeShift has added Steem to the Exchange",
+    "title": "OFFICIAL ANNOUNCEMENT: ShapeShift has added Steem to the Exchange",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@shapeshiftio/official-announcement-shapeshift-has-added-steem-to-the-exchange"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "598539502036",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7239080969594",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29027553998213",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354858432524",
+        "voter": "berkah"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "19781220773197",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35675436782070",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147938687963",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "7900",
+        "reputation": 0,
+        "rshares": "407218747798",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6980120500284",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6344432030125",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223373121837",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5843958796192",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6721621207697",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108725056812",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32642296478",
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "891292329368",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1714932055191",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3427116689546",
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3076451088919",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3087945489",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3747843918",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709527559",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52460046216",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1655278834",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213388298",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131938054174",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56438227169",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "443683389073",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "402190863052",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "458551896765",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2816588148852",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "804146567420",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116242026851",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22176529762",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9059334445",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2388037166",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5120979430061",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232548364142",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360917713952",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312550029434",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256826026816",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27891582403",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621111136",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1057711793957",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "906997671",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382702328891",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "432390688762",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44987575146",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33380663218",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64439897254",
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24179423583",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287689277",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23735849287",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23365263631",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11288137638",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6596335515",
+        "voter": "bluestar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34803365337",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410825572557",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108242679306",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80184232655",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185053211350",
+        "voter": "bleepcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "533785882709",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7642649930",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501645966",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5676643197",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45575829971",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2049195085",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337393973750",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10034907487",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3490194440",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8819353174",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5499468924",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7562018196",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60183824069",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1478055908",
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51502167860",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68723832169",
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "187788157255",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1799001825",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19196327746",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1702188822",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5430960254",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20315788274",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473983400237",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362198296",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97461552973",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18522621619",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217886221590",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32617932414",
+        "voter": "daenerys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23787991811",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369143537",
+        "voter": "localether-com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36985708618",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94076287501",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090525823",
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745794847",
+        "voter": "malacandrahyoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485931938",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392202333",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244796144438",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "325674122325",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345683782",
+        "voter": "gabe92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57377315249",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "10414990943",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12867723357",
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3219868380",
+        "voter": "pangur-ban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30981210809",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183988250652",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2908355651",
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3668346416",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20051826751",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2985433139",
+        "voter": "ola-haukland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113446360961",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80364066472",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "427191549",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127845492565",
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1697694767",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1480961322",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41975818558",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115363335857",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191120735629",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23027268390",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46156913974",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239492600744",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123942782756",
+        "voter": "vollumc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208035429422",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39266668869",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21037599820",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37083542157",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23540373163",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2867119743",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70685811496",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48999936499",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3906088763",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1395816810",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4750346902",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6565043921",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346049160",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "652354570",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39569668489",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14275536405",
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20012906292",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019490436",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3312844812",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10502052474",
+        "voter": "nobodyishome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8224014275",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8790234040",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3116417057",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18643914874",
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4835340540",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138917486",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70802354370",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1956765579",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5655579363",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4803506606",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250032476",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14094358864",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333760331",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310292244",
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9107628818",
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25658932519",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5082852219",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57548508773",
+        "voter": "krypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3313120640",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20017583141",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126096104817",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115538212292",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50150767",
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61120769636",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246839370",
+        "voter": "andreaalexandria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "937937016",
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3488225046",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217278169153",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31775106834",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1218445066",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54368830189",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220688054540",
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37315003864",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7898664059",
+        "voter": "hammurabi"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "16250591322",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436999115215",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10577700327",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103180125694",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "181872883",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "201457116",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "186437755",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112400144011",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "926265102",
+        "voter": "cousteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1110948588",
+        "voter": "demyan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20284084930",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427457006",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245149849",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099399818",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543033400",
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252407179",
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1347676902",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4385267232",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4265580525",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3703064316",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10850011469",
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "2358060259",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11392025737",
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1167929823",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70134531425",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12381086291",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19449956948",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348131383300",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246269747",
+        "voter": "omegastarscream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11397117160",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116027032796",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3061488330",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2591611916",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7936216649",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55148678592",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203840552",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329447964",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13128556267",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7404235177",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7002493892",
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3420158950",
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3372986749",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2351802084",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392928485",
+        "voter": "alexoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244919377",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7160444141",
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399843632",
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7291948061",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1221391857",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2400141375",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38134289553",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53599003601",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7293377700",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3686362084",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263376582",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1984657080",
+        "voter": "chahredine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239409901",
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1546398672",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275758175",
+        "voter": "illlefr4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234399963",
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525889828542",
+        "voter": "ramta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234865291",
+        "voter": "valeri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413482907",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2365322836",
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1218114432",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4062221159",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151020771383",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114431941",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9516878585",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3458391154",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14470705397",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30817647673",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125768183",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22424712801",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "519264529",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21043486083",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7018124605",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10807532486",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162367721344",
+        "voter": "gabbans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2686624734",
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3251552616",
+        "voter": "jayjustmay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557218486",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5382937678",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2899841094",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914394435",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24905586054",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664885799",
+        "voter": "amor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "732840665",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1765399894",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277035330",
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111726756",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9956409307",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7627503076",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111302877",
+        "voter": "rodarauj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137758887922",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372610263",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "992815841030",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2069332962",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6155207922",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339159763",
+        "voter": "jeison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34342946516",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113369331",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1100179675",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248171732",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254193655",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147330103",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144870813",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82655604",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4828190086",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45620410584",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19292007499",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351280513",
+        "voter": "rcmdantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8822077802",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121757317",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220460475084",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4341716134",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4354702977",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8991351156",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "810700298",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13085352885",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638436185",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2608158760",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221401214",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247428720",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221406946",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136034937",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14348810962",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946359529",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74716626",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "191784574",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "188143036",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3093755210",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84206519",
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6959284437",
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112996238",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5435957975",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5955058211",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186902061",
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105249109",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3486573436",
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67712728526",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1052360420",
+        "voter": "jumpman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24851285157",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327673258",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3199186633",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686691794",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112407757",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112380478",
+        "voter": "donnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6865300336",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52810577",
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62755119",
+        "voter": "igorphoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14986975493",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6936211487",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5041482209",
+        "voter": "shaneradliff"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-83726924",
+        "voter": "nickskywalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2161323306",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362369875",
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63781255",
+        "voter": "lolitroy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4234530163",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291957878",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7488773093",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890051070",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63435975",
+        "voter": "delph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66568444",
+        "voter": "moneymike88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62016239",
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6397738626",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374758679",
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4509216404",
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5590371160",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70266838",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1266206625",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99810252",
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7535103949",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16516716503",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37378179298",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2854594198",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66036998",
+        "voter": "fruityloan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3872976365",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63700992",
+        "voter": "rataloclaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191977586",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1978711661",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641776659",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17151442251",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "395192793",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6480835436",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4928703525",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62710297",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177311949",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62830022",
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19594603685",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62668549",
+        "voter": "nuggplug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61385527",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1585500134",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124905016",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230038074",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841870387",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1944089747",
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6413587008",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101928704085",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64990311",
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112641010",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545877",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59551135",
+        "voter": "melissag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59927283",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61906848",
+        "voter": "frankbacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418299247",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1341594859",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72759729",
+        "voter": "chinese-gandalf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67716615",
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1359248893",
+        "voter": "tralawar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64764303",
+        "voter": "filmaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62542956",
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71412929",
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "471791545",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "460254110600",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31613585286",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58371530",
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "506164338",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60521896",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162355112",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7087974684",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4010611937",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1695151192",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199289634",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186649040",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63201866",
+        "voter": "daxinth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393253109",
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4207936549",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57640568",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1587975084",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13567361860",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133222141",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25722226492",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133499193",
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56903682",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58145166",
+        "voter": "ildanis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122630615",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59009965",
+        "voter": "christiansenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59437116",
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59008405",
+        "voter": "murrayvonhoppe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59369550",
+        "voter": "clintb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56686070",
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58997531",
+        "voter": "canambullion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58988877",
+        "voter": "li-enfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58984845",
+        "voter": "attacheguevera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47600960463",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012017935",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59126308",
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18857040542",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59198033",
+        "voter": "mckeever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92754956",
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300320702",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59296940",
+        "voter": "knyggajames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6758364138",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77941159",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10446807943",
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58269068",
+        "voter": "adam173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63526791",
+        "voter": "damon225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43612453081",
+        "voter": "albensilverberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6677277934",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58930451",
+        "voter": "vanessarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22855667033",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55120960",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6348828465",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58916638",
+        "voter": "layl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58932559",
+        "voter": "dorians"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57828186",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59263960",
+        "voter": "stevenlytle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58864493",
+        "voter": "shamballa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58863225",
+        "voter": "willdizon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222234138",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107768448",
+        "voter": "samwarner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72079195",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58855959",
+        "voter": "eggsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914557314",
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58846446",
+        "voter": "mediahound"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2716988832",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77146133",
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59174678",
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8000912011",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58782028",
+        "voter": "nuttofanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58768736",
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57614111",
+        "voter": "scooterrockets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1346327423",
+        "voter": "karisa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843596691",
+        "voter": "riceowladam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58732483",
+        "voter": "embraceurdialect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58722032",
+        "voter": "tsbloyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59099349",
+        "voter": "rawfreedom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58698612",
+        "voter": "smoken81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59228916",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58787702",
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60622154",
+        "voter": "christowner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58816543",
+        "voter": "anurbanmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191999073876",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58625501",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17818125151",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58619645",
+        "voter": "anarchodrew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418397623",
+        "voter": "aviator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54814897548",
+        "voter": "larkenrose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58584416",
+        "voter": "caborandy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914815424",
+        "voter": "voluntarismrules"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "785451248",
+        "voter": "rlziggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3206776891",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57295162",
+        "voter": "johnm862"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58435806",
+        "voter": "bettyanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51839643",
+        "voter": "abanks1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76866008",
+        "voter": "wilder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58434983",
+        "voter": "gigiswebs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58484155",
+        "voter": "shurik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72182496",
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58404253",
+        "voter": "padrof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037312719",
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58398357",
+        "voter": "wmitch58"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58364093",
+        "voter": "ronaldneil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66998944",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58330329",
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58325149",
+        "voter": "intrepidca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5521573955",
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58309524",
+        "voter": "waldencall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58305767",
+        "voter": "kurtlloyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58648262",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58268916",
+        "voter": "javichino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58841669",
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "814177942",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71898322",
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597059869",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60020555",
+        "voter": "jusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55941246",
+        "voter": "silvereagle1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55226811",
+        "voter": "deejayehn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58834956",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62003656",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4033737249",
+        "voter": "silverbug2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58179884",
+        "voter": "freedapeoples"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58167598",
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14244406400",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58140913",
+        "voter": "gordovious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69825852",
+        "voter": "daniel030"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56156330",
+        "voter": "eslopez92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62202585",
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58531767",
+        "voter": "tom1gorman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62650201",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58083507",
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58065672",
+        "voter": "rhysday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113497899",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56919346",
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58025713",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58513508",
+        "voter": "denisdiaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6706595944",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18185255552",
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57950964",
+        "voter": "travisrwilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57949625",
+        "voter": "danielsgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65813454",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74144473",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62955132",
+        "voter": "texkitten"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-57103495",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2625019093",
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58243271",
+        "voter": "mstudemeyer13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57103645",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57917120",
+        "voter": "anarchyroolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57909399",
+        "voter": "starbuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745617396",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56764104",
+        "voter": "ratinct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64015459",
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69413590",
+        "voter": "darkflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197447117",
+        "voter": "shanelohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52715164",
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52810460",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57851525",
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59464308",
+        "voter": "lukie257"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57848777",
+        "voter": "bddoolin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57844151",
+        "voter": "kymera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10505150406",
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51686374324",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55550808",
+        "voter": "nwoinfowarrior"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57817200",
+        "voter": "rhcastilhos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38712163448",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58554218",
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207081271",
+        "voter": "wizwom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57804401",
+        "voter": "richardkoontz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54380942",
+        "voter": "ryangbanister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71892286",
+        "voter": "quinneaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57774321",
+        "voter": "bradgoetsch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57765750",
+        "voter": "djpeezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59864488",
+        "voter": "malxdrakon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57744177",
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380020476",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54247105",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507000",
+        "voter": "stevep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4301371631",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57582000",
+        "voter": "glowmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54192703",
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1727715510",
+        "voter": "dennisoosterwaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2843892838",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79719071",
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148113908",
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57537502",
+        "voter": "autonomygarden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346370290",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56835260",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61485913",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56653604",
+        "voter": "marsalive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8468136835",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57479266",
+        "voter": "mrrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100188566",
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1805783063",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55188304",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57432859",
+        "voter": "rdennis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988343362",
+        "voter": "mister-t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73096652",
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46768142805",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1800633267",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58091241",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57370536",
+        "voter": "rcyan333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57363928",
+        "voter": "freewilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1025772806",
+        "voter": "liquidrainbowx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57200621",
+        "voter": "anarvol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57195282",
+        "voter": "freetobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56070721",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57189619",
+        "voter": "jaytaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64279725",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57154670",
+        "voter": "cryp71x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57116285",
+        "voter": "whoownsyou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52596857",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1909306568",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "540397043",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55917465",
+        "voter": "michaelmillman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57008181",
+        "voter": "lindseylambz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839571930",
+        "voter": "leneg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55770868",
+        "voter": "kenfitz3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56858421",
+        "voter": "xrayovac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55708086",
+        "voter": "mrbud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56807433",
+        "voter": "yoopercharged"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56025314",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "373540743",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54555981",
+        "voter": "howverydroll345"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55669133",
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56781082",
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1325569609",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59213106",
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55660383",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60833389",
+        "voter": "pierce-the-veil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124438627",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56911312",
+        "voter": "theunicornking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58435569",
+        "voter": "sanzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56718470",
+        "voter": "i-am-cuul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55579083",
+        "voter": "mrmike3rd7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56663411",
+        "voter": "gzen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167718520",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765600208",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56619031",
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54396426",
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "656815148",
+        "voter": "tylerdav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1253221290",
+        "voter": "sile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1840903324",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56524504",
+        "voter": "rktonny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "788243276",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53152469",
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28408156142",
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56759615",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2649813769",
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133176180",
+        "voter": "lapingvino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56422434",
+        "voter": "cowa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3991088976",
+        "voter": "gardenofeden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54289104",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56498160",
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1338292484",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55100682",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56939399",
+        "voter": "bighammerfitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7245455063",
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50644082",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56126260",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54993742",
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1934829584",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56047742",
+        "voter": "nima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58363765",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1829599731",
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55953309",
+        "voter": "inscrutable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142291804",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1812426354",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941666402",
+        "voter": "canalytic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55755220",
+        "voter": "fourfingerz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155287",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55736881",
+        "voter": "arrax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55849814",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41129675767",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61668627",
+        "voter": "avemend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57793799",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171651",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57642877",
+        "voter": "libertarianism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65508674",
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55609288",
+        "voter": "billgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55572977",
+        "voter": "shingrae"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52300009",
+        "voter": "t-killa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001199334",
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55392038",
+        "voter": "natural"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55390495",
+        "voter": "widto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55312794",
+        "voter": "stark2081"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55290988",
+        "voter": "rasfos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "896395562",
+        "voter": "ateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97248059",
+        "voter": "maytons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55131842",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54608517",
+        "voter": "lilmisjenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51815820",
+        "voter": "michivollgas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53973109",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53951892",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025871",
+        "voter": "scottiemac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50751176",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53870477",
+        "voter": "jensk92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53133533",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53746826",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50603364",
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54873574",
+        "voter": "peacefulpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89309880",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54781771",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52615599",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54733052",
+        "voter": "angelfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53633596",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58459524",
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54234557",
+        "voter": "lifeworship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50361239",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54636437",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53555002",
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51394338",
+        "voter": "ms-awareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54602521",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52437364",
+        "voter": "steemvixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53486009",
+        "voter": "jrblackmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53478598",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53411790",
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53396102",
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54452240",
+        "voter": "rare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51230467",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54380131",
+        "voter": "bik1980"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53278513",
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54312208",
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53228997",
+        "voter": "ultiphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53190964",
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52104910",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53137936",
+        "voter": "dooglet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53131533",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54184927",
+        "voter": "balaji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53117133",
+        "voter": "zonpower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52041445",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54151856",
+        "voter": "sschulerr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54143294",
+        "voter": "activistnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50953995",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52012416",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51979174",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53033634",
+        "voter": "afmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54079697",
+        "voter": "thefrenchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53015112",
+        "voter": "cjsdns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54028123",
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50846073",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54013354",
+        "voter": "public-emily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52948493",
+        "voter": "christopherkemp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54002407",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53992164",
+        "voter": "ronaldbijl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53988449",
+        "voter": "frederickdenton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53975830",
+        "voter": "amiami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52902612",
+        "voter": "sic-savidicus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52900485",
+        "voter": "thefuzzytrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52890364",
+        "voter": "mikarasila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53739039",
+        "voter": "thisdayinanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51783297",
+        "voter": "noah.morris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52814743",
+        "voter": "konkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794653",
+        "voter": "herbdata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52781878",
+        "voter": "susanhope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52772186",
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52750237",
+        "voter": "angelus.silesius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52750104",
+        "voter": "unknown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52726417",
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51603627",
+        "voter": "nospin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52635830",
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53679242",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52557773",
+        "voter": "no-mercy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52540869",
+        "voter": "petrius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53381124",
+        "voter": "aine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53434588",
+        "voter": "infowarfare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52100450",
+        "voter": "finaleent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50900574",
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50917987",
+        "voter": "bebout98"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50376324",
+        "voter": "lightobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50274131",
+        "voter": "hankgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161889539",
+        "voter": "catvirus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154855305",
+        "voter": "ajvent"
+      }
+    ],
+    "author": "dollarvigilante",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://www.steemimg.com/images/2016/08/17/LarkenRoseAmandaRachwitzAnarchastSteem0b4bb.jpg</center>\n\nI had the pleasure of having a conversation with Larken Rose (@larkenrose) and Amanda Rachwitz (@dragonanarchist) this week to discuss progess on the Mirror Project and how Steemit has been helping fund the project.\n\nThe Mirror is an ambitious project which hopes to bring the philosophy of anarchy to the masses in game format.\n\nAs we all know, most people are too dumbed down from 12 years in government indoctrination camps (schools), fluoridated water and thousands of hours of mainstream media propaganda to be able to sit down and read a book.\n\nThe Mirror hopes to use a video game format to make even the most brainwashed statist realize the contradictions in their own head and, all on their own, become anarchists/voluntarists.\n\nIt's a huge project which encompasses 3-D modeling, game engine architecture, voice-overs and animation.\n\nAmanda Rachwitz was in Pennsylvania to record the voice-overs with Larken when I caught up with them to get an update.\n\nThe majority of the conversation centers around Steemit\n\nSome of the topics covered include:\n\n-How to cash out of earned Steem dollars\n-Steemit is not a scam as it is all voluntary and transparent\n-How Steemit incentivizes creating excellent content\n-Where does the money come from to pay content producers?\n-Why or why not to invest in Steem Power\n-Steemit's structure creates a mostly troll free environment.\n-Support activists through up voting\n\nYou can see the full interview, exclusively here on Steemit (it is unlisted on Youtube) for the next 24 hours here:\n\n<center>https://www.youtube.com/watch?v=Zm2QnuiUkDE</center>\n \nIf you've seen past Steemit videos of mine on Youtube, you'll notice it gets a lot of people down voting it and calling Steemit a \"scam\".  Please take this 24 hour period to \"like\" the video if you enjoyed it and also make comments on your experience with Steemit, before all the trolls get on.\n\nTomorrow I'll be publishing a debate/conversation with Tone Vays on Steemit.  Tone has been an outspoken anti-Steemer.  It'll be available here first exclusively on Steemit.\n\nRemember to follow me @dollarvigilante to ensure you see these exclusive videos and other articles first.\n\n[Edit: Steem dollars earned on this post will be shared with @larkenrose and @dragonanarchist]\n\n<center>https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/12/Steemitbio98756.jpg</center>",
+    "body_length": 2484,
+    "cashout_time": "2016-09-18T08:25:03",
+    "category": "steemit",
+    "children": 115,
+    "created": "2016-08-18T02:01:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\"],\"users\":[\"dollarvigilante\",\"larkenrose\",\"dragonanarchist\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/17\\/LarkenRoseAmandaRachwitzAnarchastSteem0b4bb.jpg\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/12\\/Steemitbio98756.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=Zm2QnuiUkDE\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T13:54:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 156169892729310,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3274.625 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-exclusive-larken-rose-on-steem-and-how-it-is-helping-power-the-mirror-project",
+    "post_id": 650131,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Exclusive: Larken Rose On Steem And How It Is Helping Power The Mirror Project",
+    "title": "Steemit Exclusive: Larken Rose On Steem And How It Is Helping Power The Mirror Project",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@dollarvigilante/steemit-exclusive-larken-rose-on-steem-and-how-it-is-helping-power-the-mirror-project"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27526380368282",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "493904989137",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7731774323941",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30963340603502",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376251845809",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38628577663382",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "39215528449249",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4574316664480",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6733379560466",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3066681879675",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "477966998971",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4555198258386",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1119290177600",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099134162323",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995902544214",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308753515461",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5113121585969",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726575642",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524583713",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821038130",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7061101034251",
+        "voter": "complexring"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "5152147344752",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66101488132",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996734414",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256577770",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79845179316",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63621891156",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7132023384",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5793517039266",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1201733691140",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37842725376",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750187822",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168126713",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23459060358",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10498292387",
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31824886550",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9588709514",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346070380",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3109456055",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8209280181",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153296056627",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10960361335",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14994955404",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15051023882",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78234456691",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16968715703",
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "6280",
+        "reputation": 0,
+        "rshares": "388803010656",
+        "voter": "eeks"
+      },
+      {
+        "percent": "700",
+        "reputation": 0,
+        "rshares": "6569044104",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61054775",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6453496039",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "735229559",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2154161049",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336024528357",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1300",
+        "reputation": 0,
+        "rshares": "4002829527",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "1200",
+        "reputation": 0,
+        "rshares": "1377965630",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "3046417496",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156573687746",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47413658846",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40699583041",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982799520",
+        "voter": "coar"
+      },
+      {
+        "percent": "1509",
+        "reputation": 0,
+        "rshares": "706760886",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150734011",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413982599009",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "37933469992",
+        "voter": "tinfoilfedora"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68637687828",
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24892673749",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10437999499",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418622798",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375186691312",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "22203455044",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "33744098418",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4581604470",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79211060582",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22806229743",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32998689739",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173891397847",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2747282701",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5441964146",
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6742343806",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "4664732981",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6406633281",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65327029498",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6466238081",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "2190216920",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5891286972",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7865292102",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510560493",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13966313707",
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52006965472",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20199692434",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369419860",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5480390590",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280810708",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160654406646",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322161583283",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5190612986",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51172289637",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73669227443",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039910629",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5263874133",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122425882381",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5478937966",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48661612606",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5773781115",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8195186985",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154748925594",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748609254",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29982688838",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15620672312",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550066409600",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10594766057",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98865572073",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16387519197",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164113821182",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4633652827",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61949102847",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "4648828220",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13786736208",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241151752567",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33649569687",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19899950500",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "664533963",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30406359089",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24966175354",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10633723041",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72122373888",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10116801758",
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349333115852",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503362754",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104275514857",
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "585128034",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21251528152",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41875574687",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91926117",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13498626934",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23642062334",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202466740034",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3432105137",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7168108020",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7665805497",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3067643706",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1514733088",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "32299149356",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6499288255",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428253908",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24289041861",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98784441443",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77100966",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19393495828",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436229754",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5115308538",
+        "voter": "favorit"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2725832001",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664224643",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1403214907",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283260879",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114849934",
+        "voter": "fsip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45674978438",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3699079514",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15825218986",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37392922224",
+        "voter": "smailer"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "116118859",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "862222696",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18456599281",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27770435610",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6474324531",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177738817",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71964844842",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1378717807",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235438675",
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24362034190",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4890113111",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65204048",
+        "voter": "cechirik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26122931456",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26100683859",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26110010937",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588607112049",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17279737369",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17727013483",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "6280",
+        "reputation": 0,
+        "rshares": "10306119254",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6907625180",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26105523826",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26103248276",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26100183826",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26096640233",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8291369593",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26092206591",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26090029262",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7963549449",
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376887643",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21044216417",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11354441708",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107983601750",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62556433",
+        "voter": "internistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14254306379",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1729954252",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80357718252",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1726441518",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43384212188",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275026678",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10739953721",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68550569",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3769464721",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39390555456",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77220767",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "254680718",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9679928412",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1489069575",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59750246",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273211506",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13665635092",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59992769",
+        "voter": "shuklix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7727181529",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26082953024",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3083989123",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2978336615",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5945926381",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42909923528",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16339966378",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8041485878",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1401458089",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59261081",
+        "voter": "disletti"
+      },
+      {
+        "percent": "5800",
+        "reputation": 0,
+        "rshares": "24655449762",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69721598",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2149430985",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258844947",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2230320600",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58025713",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3079600558",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "913227198",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117344778",
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57881817",
+        "voter": "novrik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52053227",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12007897380",
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2028200120",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57664781",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12089632983",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25202992641",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9593336727",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86165076",
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1532461481",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7426008331",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174713024",
+        "voter": "rusla"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "130992658952",
+        "voter": "cornerstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54391689",
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56582615",
+        "voter": "minihelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3335975740",
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633489640",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1162848474",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65457046",
+        "voter": "forest-revealed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "808370638",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54726577",
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115556600090",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646861838",
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453351131",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52088375",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369323003",
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2913602897",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59275415100",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54272135",
+        "voter": "mpmajo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3135075242",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54232595",
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1250337518",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568011923",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3312524129",
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84516562",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1195193402",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9640083850",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1173837106",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52549133",
+        "voter": "janeth111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52800226",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52864017",
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53548226",
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51615039",
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7301503729",
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2019020353",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1977855772",
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56856217",
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120476926",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9289382445",
+        "voter": "luzcypher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511233308",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82287966",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1317647622",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116937238",
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153687209",
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "508743849",
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155910854",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3795801841",
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146534462",
+        "voter": "nekrasov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166431444",
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10549884113",
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159048846",
+        "voter": "manuelgarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155110756",
+        "voter": "matteopoole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158170239",
+        "voter": "spacedout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474962663",
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157332453",
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157111992",
+        "voter": "emisfer2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311030765",
+        "voter": "aldentan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144468196",
+        "voter": "roman.est"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153571614",
+        "voter": "petrroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156505647",
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156489923",
+        "voter": "novium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156452773",
+        "voter": "yahooshua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135270873",
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156347190",
+        "voter": "wizardcrying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147091838",
+        "voter": "alkindi31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156226986",
+        "voter": "kmichaelkills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153075466",
+        "voter": "william007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116295959",
+        "voter": "mikerano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155748226",
+        "voter": "karles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152655283",
+        "voter": "jahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155688834",
+        "voter": "nathanael540"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155680732",
+        "voter": "rupelto"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I know many people have been very concerned with the block on NSFW content from all categories, and have been concerned about the chance of the platform continuing to block other content.\n\nI think Steemit are doing a great job, and I understand some of their position if they end up censoring content. Being a US business means they will quickly run into legal issues with the content on their site, and may have to do some censorship. \n\nOf course thanks to the blockchain, it's never truly censored, and sites like UnderSteem can show it.\n\nThis is a follow up to my post from a few days ago, where [I launced the first TOR RPC and SEED node for STEEM.](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy).\n\n**As people should know by now, I'm strongly concerned about privacy and freedom.** In the past week:\n\n - I set up a TOR node for the STEEM network (link above)\n -  [raised almost $200 USD for RiseUP](https://steemit.com/steem/@someguy123/proof-of-riseup-donation)\n -  Set up a site for [fully anonymous steem accounts](https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media)\n\n----\n\n\n![](https://i.imgur.com/UPxM1Jf.png)\n\n\nWhat is UnderSteem?\n-----\n\nTL;DR\n\n - Uncensored - UnderSteem promises to have no censorship, including on pornography and piracy\n - Private - UnderSteem is only accessible over TOR. This means your IP address is never disclosed, so you're protected\n - Secure - Because UnderSteem is over TOR, the server locations are unknown. This makes it much harder to be hacked, because the attackers do not know the IP address of the servers, and they're only able to access the website\n - [Open Source](https://github.com/Someguy123/understeem/)\n\nUnderSteem is \"Underground Steem\". It is a fork of Steemit (not STEEM. It's on the same network), and is fully [open source, available here](https://github.com/Someguy123/understeem/). UnderSteem promises to avoid censorship on the client level, and operates it's servers within a safe jurisdiction, **since just like steemit, it does not store any content at all, and cannot be held responsible for any illegal activity.**\n\nTo allow the safest, most private experience, it's only available over TOR. I strongly recommend [downloading TOR Browser](https://torproject.org) - it's free, open source, and available on nearly every platform, **even Android and iOS**. (Don't worry, TOR is completely legal almost everywhere, including the US, practically every European country + the UK)\n\nOnce you have TOR browser, you can just enter the following URL into the address bar, and you'll be on UnderSteem:\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\nIf you just want to take a quick look *without TOR*, you can access the site through a gateway such as ONION.TO, however the site will not function fully through a gateway because of the JavaScript trying to communicate with [my TOR node](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy):\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n\nWant to remember this URL? Just split the words up!\n\n<center>`usteem pc coap good`</center>\n\nDo I need to sign up?\n-----\n\n**You don't need to.** If you already have an account made on Steemit, or AnonSteem, you can log into the website with your username and password just like normal.\n\nIs it legal to access this site and use TOR?\n-----\n\nUnderSteem is not designed for illegal content any more than Steemit is, however the laws vary in every country. \n\nUnderSteem believes that the content should be free for the person to decide if they should view it or not, rather than their governments laws.\n\nWhile UnderSteem will avoid any form of censorship at all costs, **there's nothing illegal about using TOR** (in most countries), **or UnderSteem** unless you are purposely trying to access illegal content.\n\n----\n\n<center>Try it out!</center>\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n----\n\n**Frequently Asked Questions**\n\n**Why can't I see the upvote button?**\n\nYour security settings on TOR browser are too high. On the \"high\" setting, SVGs are blocked, which means the upvote button and other icons can't work. \n\nClick the TOR icon in the top left, and press \"Privacy and Security Settings\", and turn it down to at least Medium-High.\n\n**Why can't I log in?**\n\nYou probably need to enable javascript. Click the NoScript icon in the top left and whitelist the site.\n\n**Why are other categories/tags broken?**\n\nYou probably have Javascript disabled. Click the NoScript icon in the top left and whitelist the site.\n\nBe aware that the clearnet gateway (onion.to or onion.cab) isn't fully functional because of the javascript used on UnderSteem. To get a proper experience on UnderSteem, [download TOR](https://torproject.org)\n\n**I don't trust UnderSteem with my password, can I still use this service some other way?**\n\nYES. You can use your posting key as your password. Go to your Steemit account, click on \"Wallet\", then \"Permissions\". Click \"Show Private Key\" on your posting key, and paste that into the password box of UnderSteem. \n\nThis will only give the site the ability to make posts/comments, and upvote. It will not be able to access your wallet, or change your keys/password.\n\n**Is there an NSFW filter?**\n\nNO. We do not approve of any of the filtering. If you want filtered content (or are in a family/work setting), continue to use Steemit.\n\n\n---\n\nDo you like what I'm doing for STEEM/Steemit?\n----\n[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. \n----\nDon't forget to follow me for more like this.\n-------",
+    "body_length": 5830,
+    "cashout_time": "2016-10-12T21:37:15",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-11T16:40:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"censorship\",\"privacy\"],\"image\":[\"https:\\/\\/i.imgur.com\\/UPxM1Jf.png\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@someguy123\\/steem-tor-node-protecting-your-privacy\",\"https:\\/\\/steemit.com\\/steem\\/@someguy123\\/proof-of-riseup-donation\",\"https:\\/\\/steemit.com\\/steemit\\/@someguy123\\/anonsteem-create-anonymous-steem-accounts-without-social-media\",\"https:\\/\\/github.com\\/Someguy123\\/understeem\\/\",\"https:\\/\\/torproject.org\",\"http:\\/\\/usteempccoapgood.onion\",\"http:\\/\\/usteempccoapgood.onion.to\",\"https:\\/\\/steemit.com\\/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T22:43:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 200808528786505,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3050.626 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "understeem-steemit-without-censorship-nsfw-filter-removed-via-tor",
+    "post_id": 922912,
+    "promoted": "45.000 HBD",
+    "replies": [],
+    "root_title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28803919091549",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7546882456921",
+        "voter": "steempty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13460823470210",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "16080021738102",
+        "voter": "val-a"
+      },
+      {
+        "percent": "5900",
+        "reputation": 0,
+        "rshares": "21407571352875",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "118619738407",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8863760833999",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2279156593253",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "334187173481",
+        "voter": "justin"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "16497738254633",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "900467396964",
+        "voter": "silver"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2024540691355",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2483656360184",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "919986225502",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2473119326",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3001836775",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "562495952",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42255210749",
+        "voter": "bue"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2933485164",
+        "voter": "thepresident"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "16798027623",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "232818156325",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1325642399",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170794809",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4641818738132",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "8386329025",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106086870394",
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272929828324",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255207364455",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497314258",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "740353304",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41250980220",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64444376030",
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "284106302618",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230286157",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40104895894",
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19513926371",
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28799893563",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410896416946",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15489805591",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4779459041",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2824568506",
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5073340932",
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "576372358343",
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3063294418",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23885595382",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2050756986",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346612366074",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1137341188",
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3489651223",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9020074290",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3939143439",
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5502047299",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51642445508",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44024667559",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "395986949883",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1440300824",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19196845761",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336503355527",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68697197782",
+        "voter": "beerbloke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345529598268",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161833281",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "368445527",
+        "voter": "lightninggears"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27220362408",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9353005120",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51163991486",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30995912659",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1255953980",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3119831385",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13116796117",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217303550597",
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995515395",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49077164104",
+        "voter": "lat-nayar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122834295462",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5412463822",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195115992238",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366452037950",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686387673636",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "103517234451",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "216392016575",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13828133326",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2233941988",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49507039139",
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52214627593",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8410101902",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7265054512",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152799819717",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260424224",
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5002970057",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217297385433",
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10956634318",
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142699808834",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22686086206",
+        "voter": "firepower"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "222535041",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4719976979",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135258108874",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87298844534",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12502365042",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525127069",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6830379360",
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142793644",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45310613662",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9484434103",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75388778818",
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16476125783",
+        "voter": "jazzka"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "6245458164",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320286208",
+        "voter": "onthewayout"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "72118974",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "80660917",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "73949203",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91775193",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110356031880",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19952368671",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99266796796",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3345442816",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18033926620",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142129493846",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34260279506",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9565381348",
+        "voter": "revulv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2639487925",
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107243301266",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22613261364",
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47961353292",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208581030",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "269389937433",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13696846132",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11804087991",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2222009885",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "404296312",
+        "voter": "alexoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2774283311",
+        "voter": "rigel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1723503984",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1453226197",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199228255308",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1297714742",
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25927450587",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10146677177",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18787807577",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177634914692",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13907559564",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28274862429",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6607451048",
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7023642790",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2687668307",
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23490708029",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2525305035",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35251248496",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12216840328",
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62006066006",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111726756",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13784158275",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "940333523",
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "892248356216",
+        "voter": "james212"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2467235781",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34911772762",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115682991",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4828963344",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410075288",
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110286040",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190659116",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35510501911",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6452998093",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116274111",
+        "voter": "cronk"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "77473651",
+        "voter": "fnait"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "74625825",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33393614131",
+        "voter": "rznag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2931055842",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5471448531",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "95073477",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111137351",
+        "voter": "middleclicker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60188008025",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158874903",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120698196",
+        "voter": "alechahn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1842626655",
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30168136093",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "218486731",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3800170172",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51796751595",
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2470538012",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "943711557",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398411520",
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10510184099",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61858279",
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "589199119504",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16361768844",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13536900774",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4974812134",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127381736",
+        "voter": "btctoken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "865197927",
+        "voter": "letc"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "13216324667",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2078560081",
+        "voter": "rich77"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "112339707268",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3074215761",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30692880794",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67104652",
+        "voter": "stormblaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1730623991",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "783512776",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20361864418",
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382253852",
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "22295959904",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66501819",
+        "voter": "tiberius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "386282196",
+        "voter": "bitcoindon23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "852029551",
+        "voter": "havok777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7539327464",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8201249418",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66936134283",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "1787091651",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662534286",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70956487",
+        "voter": "dudu-hoffman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "673743536",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28292996011",
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62917434",
+        "voter": "kfw"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "408615947",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151615556",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "2442034567",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "522606938",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2578510492",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150585915",
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62056547",
+        "voter": "ttrof59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "248032218",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329573836",
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58919079",
+        "voter": "titan792008"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "17585936336",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588775942",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "794453323",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58148489",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214875108",
+        "voter": "ashleybeckwith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1902873783",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1430182565",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53067614",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60666250",
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439994",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "650780303",
+        "voter": "levycore"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-60040051",
+        "voter": "icecreamyolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1472628083",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1171329427",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26106675550",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3550134972",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6162137506",
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76837181",
+        "voter": "redlikecherry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21064576357",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2812110844",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2132014007",
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2214392625",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110550263547",
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56114502",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57529481",
+        "voter": "tamijj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57886832",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3594479028",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83815039",
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236132650",
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1834802564",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52585185",
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1565796952",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57791130",
+        "voter": "gearshiftrwife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4225982895",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129573135",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60526884",
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55791783",
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133141273",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "754244428",
+        "voter": "christiangruber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36116476799",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57813247",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57683187",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8467643107",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54247105",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55369146",
+        "voter": "tiituskangas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3488323747",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2465887706",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273374489",
+        "voter": "davincij15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55698555",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "831124898",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59128689",
+        "voter": "blackeyed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1385093282",
+        "voter": "mister-t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93508537",
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20505868480",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96267073",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2261984687",
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10417000727",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60934323",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56850962",
+        "voter": "darknight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56914472",
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56782516",
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59479703",
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54547175",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54536747",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168325699",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27680752440",
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53181164",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2594600965",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444096921",
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195838830",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515136503",
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171651",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115562685",
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55707824",
+        "voter": "knoble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55423328",
+        "voter": "umarm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115913696",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55384928",
+        "voter": "satoshigraphics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50275164",
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2053885248",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67051047",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52543123",
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54730697",
+        "voter": "donguillermo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58263366",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50288358",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4477688139",
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53358252",
+        "voter": "sofiaornati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54512166",
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54244027",
+        "voter": "alexanderem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52943536",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59097192",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53047492",
+        "voter": "kinghabib786"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54429762",
+        "voter": "elex-free"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52579820",
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51477686",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52420592",
+        "voter": "inphiknit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51231643",
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51174318",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51147992",
+        "voter": "irura"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53141273",
+        "voter": "idmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53097691",
+        "voter": "minesle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52013554",
+        "voter": "ascares"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53050941",
+        "voter": "himiko.ozaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53043761",
+        "voter": "cooltomato2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53041377",
+        "voter": "allesgruen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53018446",
+        "voter": "stickman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51972989",
+        "voter": "miriams"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51960814",
+        "voter": "pillar-of-autum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51939361",
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51935113",
+        "voter": "becenok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52866277",
+        "voter": "noehuertas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52701082",
+        "voter": "longe"
+      }
+    ],
+    "author": "capitalism",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover143893.png\" width=\"840\" height=\"494\"/><br>\n<img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover254dab.png\" width=\"840\" height=\"346\"/></p>\n<p>It is characteristic for all genius masterminds that aspire for world domination, that they occasionally spill the beans about their plans. Dr. Julius No, Auric Goldfinger and Ernst Blofeld did it. And Dan Larimer, Co-Founder of Steemit, did it as well.</p>\n<p>Did you ever wonder, why Dan doesn\u2019t write posts with his <a href=\"https://steemit.com/@dan\">@dan</a> account anymore and is using instead his <a href=\"https://steemit.com/@dantheman\">@dantheman</a> account? The simple answer is: he wants to hide <a href=\"https://steemit.com/steem/@dan/steemit-s-evil-plan-for-cryptocurrency-world-domination\">that post</a>:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-screenshot5fef5.jpg\" width=\"840\" height=\"656\"/></p>\n<p>One month ago, in a state of cockiness because of the near triumph of this ventures, Dan had carelessly revealed his plans for world domination in cryptocurrency to the public. Unfortunately he revealed his plans on a platform that was designed to be immune against censorship. So he couldn\u2019t delete the post after realizing that. Writing with another account name afterwards was the only possible way to cover that mistake.</p>\n<p><strong>Based on this secret document and further research I present you Dan\u2019s complete secret plan for world domination.</strong>&nbsp;</p>\n<p>The first part of this plan is to achieve world domination in cryptocurrency.</p>\n<h1>1. Cryptocurrency world domination</h1>\n<p>In his <a href=\"https://steemit.com/steem/@dan/steemit-s-evil-plan-for-cryptocurrency-world-domination\">accidentally revealed article</a> Dan is describing, how he will reach this goal with Steemit.</p>\n<p>First he admits openly that Steemit is not mainly a blogging platform. In truth it is a tool for \u201ebootstrapping a digital currency\u201c. The establishment of the blogging platform is only the way to create a community that is able and willing to use the new digital currency. Then Dan admits:</p>\n<h3><em>\u201eA blogging platform that makes it possible for everyone to earn &nbsp;their way in is just a trojan horse. It is a means of hiding the vegetables (honest money) in the food (fun content).\u201c</em></h3>\n<p>It\u2019s likely that Dan was laughing out loud when he was confessing with these words, how he is tricking the Steemit users into taking his honest digital currency as reward for their writing. What an ingenious plan.&nbsp;</p>\n<p>Next he outlines three phases for achieving cryptocurrency world domination:</p>\n<p><strong>\u201ePhase 1 - Bootstrap a Stable Currency\u201c</strong></p>\n<p>To outrival the other cryptocurrencies Dan wants to create a stable digital currency - the \u201eSteem Dollar\u201c. Because it\u2019s designed to be stable against the US Dollar, this Steem Dollar should hit Bitcoin and the Alt-Coins at their weakest spot, their unstable price.&nbsp;</p>\n<p>So, the blogging platform Steemit is just an outlet to bring this Steem Dollars to the ordinary people. Guess how many Steemit users have knowledge about this? How many of them know, that the sole reason to let them write articles is to give Dan the ability to give them Steem Dollars?&nbsp;</p>\n<p><strong>\u201ePhase 2 - Bootstrap a Marketplace\u201c</strong></p>\n<p>Dan describes now, how he wants to disrupt the online commerce in the second phase by building a marketplace \u201elike OpenBazaar, Craigslist, Angie\u2019s List, or eBay\u201c. With all the people that he had tricked into his venture by giving them Steem Dollars for their writing he has now the user base for his own Steem powered marketplace, where they can spend their Steem Dollars.&nbsp;</p>\n<p>Could you imagine something that is more alluring? - First he gives the people money for free and than he offers them the perfect place for spending it! Is that even legal?</p>\n<p><strong>\u201ePhase 3 - Sidechains, Smart Contracts and SmartCoins, Oh My!\u201c</strong></p>\n<p>In the final phase he wants to use his Steem technology to establish a complete blockchain infrastructure that can be used by others to build new applications and business models. Again, he wants to use a perfidious method to get users for this services. His trick is: \u201eno fees!\u201c - All Wall Street bankers will surely cry when they hear about that.</p>\n<p>You might think that creating such a stable cryptocurrency that has no fees is the whole plan of Dan. But this is only a small part of what he wants to achieve.&nbsp;</p>\n<h1>2. Building an \u201ealternative economy\u201c</h1>\n<p>In a <a href=\"https://steemit.com/steemit/@dollarvigilante/how-i-made-usd15-000-in-12-hours-on-the-new-blockchain-based-social-media-site-steemit\">recent interview</a> with Jeff Berwick (<a href=\"https://steemit.com/@dollarvigilante\">@dollarvigilante</a>), Dan had loosen his concentration for a moment and spilled again the beans out about his secret plan:</p>\n<p>https://www.youtube.com/watch?v=-W0EYe23or4</p>\n<p>At minute 38:56 Dan accidently revealed, what he is intending. He wants to get:&nbsp;</p>\n<h3><em>\u201ea new economic system for people who want to have free honest money rather than Federal Reserve money controled by central parties.\u201c</em></h3>\n<p>And than at minute 39:04 he admits:</p>\n<h3><em>\u201eThats the bigger picture here about creating an alternative economy thus is being bootstrapped through social media.\u201c</em></h3>\n<p>So, to get cryptocurrency world domination is not enough for Dan. He wants to change the whole economy.</p>\n<p>But still, this is not the end of his plans. His ultimate goal is:</p>\n<h1>3. Building an \u201ealternative to government\u201c</h1>\n<p>In my research I dug deep into Youtube and found a keynote speech by Dan at the <em>Inside Bitcoins</em> <em>Conference</em> in Las Vegas in 2014:</p>\n<p>https://www.youtube.com/watch?v=U44MujtVj00</p>\n<p>Dan speaks here mostly about his BitShares project. But at minute 28:54 he tells the audience the possibilities of the blockchain technology and stated openly that&nbsp;</p>\n<h3><em>\u201eyou can have complete governance on a voluntary basis, because blockchain technology allows us to reach a peaceful form of consensus and is the alternative to government which are a coercive violent for of consensus. It\u2019s just a matter of finding the free market solution to secure life, liberty and property. And that\u2019s what I\u2019m going for.\u201c</em></h3>\n<p>So, Dan Larimer is a real anarcho-capitalist thinker. But he is not only a thinker. Steemit is the first step to reach his goal of an alternative to government.&nbsp;</p>\n<p>Now I will finally expose how Dan wants to achieve this. His first instrument to create an alternative economy and an alternative to governments are Decentralized Autonomous Companies (DAC).</p>\n<h1>4. Decentralized Autonomous Companies (DACs)</h1>\n<p>Dan Larimer invented the concept of the \"Decentralized Autonomous Companies\" (DACs) some month before Vitalik Buterin came up with the term \"Decentralized Autonomous Organization\" (DAO), which became quite famous because of \u201eThe DAO\u201c.&nbsp;</p>\n<p>Dan had explained the concept of the DAC together with Brian Page in 2014:</p>\n<p>https://www.youtube.com/watch?v=abA4TuPHmNg</p>\n<p>In this video Dan is giving us confirmation for his secret plan that I am exposing here. At minute 2:01 he admits that he wants</p>\n<h3><em>\u201eto create a product that I hope gonna change the world\u201c.</em></h3>\n<p>Dan is speaking here about BitShares and how it is a platform for DACs. He explains that Bitcoin is a DAC and how a DAC is working. But I will not bore you with technical details. Fact is, that Steemit is a kind of DAC and that DACs are one of the two instruments of Dan.</p>\n<p>But what is a DAC strictly speaking? Let\u2019s get an revealing <a href=\"https://medium.com/@VitalikButerin/i-invented-the-term-in-2013-and-daniel-larimer-came-up-with-dacs-s-organization-corporation-a-ef86db1524d5#.srakglwfj\">explanation by Vitalik Buterin</a>:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-dacs917af.png\" width=\"840\" height=\"461\"/></p>\n<p>Many readers will be familiar with the <a href=\"https://en.wikipedia.org/wiki/Daemon_(novel_series)\">\u201eDaemon\u201c novel of Daniel Suarez</a>, where a software agent called \u201eDaemon\u201c and a decentralized network called \u201eDarknet\u201c was created by a software genius to change the world.&nbsp;</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemonbooks38fc9.jpg\" width=\"840\" height=\"448\"/></p>\n<p><em><strong>\u201eChange the world\u201c</strong></em> - does this sound familiar? These are the same words, that Dan Larimer was using in the DACs video.</p>\n<p>But is it possible that Dan wants to build such a Daemon and a Darknet that will change the world. I couldn\u2019t find evidence for this by him. But I was able to find a cryptic confirmation by his Steemit co-founder Ned Scott (<a href=\"https://steemit.com/@ned\">@ned</a>).</p>\n<p>Two month ago, <a href=\"https://steemit.com/@pheonike\">@pheonike</a> had started a Steemit book club with an <a href=\"https://steemit.com/books/@pheonike/steem-book-clubs\">article about the notorious book \u201eDaemon\u201c</a> by Daniel Suarez. Ned, who in all probability had knowledge of the secret plan of Dan, wrote a comment to this post:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-ned-comment3c240.png\" width=\"362\" height=\"111\"/></p>\n<p>At first sight Ned is simply saying that the book of Daniel Suarez was \u201ea fun read\u201c. But what about the \u201e+1\u201c? I\u2019m really sure that Ned is telling in a hidden way that another \u201eDaemon\u201c was created.&nbsp;</p>\n<p>Now everything makes sense. Dan is building his own \u201eDaemon\u201c.</p>\n<p>But wait, there is more evidence. Look at this:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemone9661.png\" width=\"333\" height=\"102\"/></p>\n<p>So, DAemoN = DAN.&nbsp;</p>\n<p><strong>It seems to me now, that Dan is in one person the brilliant programmer Matthew A. Sobol </strong><em><strong>AND</strong></em><strong> the Daemon from the novel of Daniel Suarez!!! </strong>And on the basis of the blockchain technology Dan is now building a \u201eDarknet\u201c like the one in the \u201eDaemon\u201c novels.</p>\n<h1>5. Steemians</h1>\n<p>I mentioned a second instrument that Dan has created to implement his secret plan. And this second instrument is: the Steemians!</p>\n<p>Yes, that's you and me.</p>\n<p>In the secret document that Dan was posting by mistake on Steemit he had admitted that he needs to build a community for bootstrapping his honest digital currency. But this is not the only function of this community.</p>\n<p>Do you know <a href=\"http://steemtools.com/\">SteemTools.com</a>? This is a terrific collection of tools that were build by Steemians in the last weeks. So, strictly speaking - <strong>the Steemians are the little helpers of Dan</strong>.&nbsp;</p>\n<p>Or, to give you a good analogy, the Steemians are his Minions:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-steemiansc1b38.jpg\" width=\"840\" height=\"482\"/></p>\n<p>The Steemians are the eager helpers for Dan to achieve his goals: to build an alternative economy and an alternative to governments.</p>\n<h1>Conclusion</h1>\n<h3>Steemit is much more than a blogging platform where people gets rewarded in a cryptocurrency for popular articles. It is a community of people who wanna create a better world through technology and friendship. The research for this post gave me high confidence in the future of Steemit and in the vision of Dan. I\u2019m happy and proud to be one of his Steemians.</h3>\n<p><br></p>\n<p>Follow me if you like my posts: <a href=\"https://steemit.com/@capitalism\">@capitalism</a></p>\n<p><strong># KeepingPledge</strong>: all Steemdollars that I will receive for this article will be powered up to Steempower.</p>\n</html>",
+    "body_length": 11891,
+    "cashout_time": "2016-09-21T05:39:27",
+    "category": "steemit",
+    "children": 109,
+    "created": "2016-08-20T21:56:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"cryptocurrency\",\"dan\",\"steemians\",\"keepingpledge\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/20\\/danssecretplan-cover143893.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/20\\/danssecretplan-cover254dab.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/20\\/danssecretplan-screenshot5fef5.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/20\\/danssecretplan-dacs917af.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/20\\/danssecretplan-daemonbooks38fc9.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/20\\/danssecretplan-ned-comment3c240.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/20\\/danssecretplan-daemone9661.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/20\\/danssecretplan-steemiansc1b38.jpg\"],\"links\":[\"https:\\/\\/steemit.com\\/@dan\",\"https:\\/\\/steemit.com\\/@dantheman\",\"https:\\/\\/steemit.com\\/steem\\/@dan\\/steemit-s-evil-plan-for-cryptocurrency-world-domination\",\"https:\\/\\/steemit.com\\/steemit\\/@dollarvigilante\\/how-i-made-usd15-000-in-12-hours-on-the-new-blockchain-based-social-media-site-steemit\",\"https:\\/\\/steemit.com\\/@dollarvigilante\",\"https:\\/\\/www.youtube.com\\/watch?v=-W0EYe23or4\",\"https:\\/\\/www.youtube.com\\/watch?v=U44MujtVj00\",\"https:\\/\\/www.youtube.com\\/watch?v=abA4TuPHmNg\",\"https:\\/\\/medium.com\\/@VitalikButerin\\/i-invented-the-term-in-2013-and-daniel-larimer-came-up-with-dacs-s-organization-corporation-a-ef86db1524d5#.srakglwfj\",\"https:\\/\\/en.wikipedia.org\\/wiki\\/Daemon_(novel_series)\",\"https:\\/\\/steemit.com\\/@ned\",\"https:\\/\\/steemit.com\\/@pheonike\",\"https:\\/\\/steemit.com\\/books\\/@pheonike\\/steem-book-clubs\",\"http:\\/\\/steemtools.com\\/\",\"https:\\/\\/steemit.com\\/@capitalism\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-21T17:47:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 138695121364094,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2824.519 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "capitalism-5-dan-s-secret-plan-for-world-domination-exposed-exclusive-cover-up",
+    "post_id": 688099,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "CAPITALISM #5: Dan\u2019s Secret Plan for World Domination Exposed [Exclusive Cover-Up]",
+    "title": "CAPITALISM #5: Dan\u2019s Secret Plan for World Domination Exposed [Exclusive Cover-Up]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@capitalism/capitalism-5-dan-s-secret-plan-for-world-domination-exposed-exclusive-cover-up"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28893645189293",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14535191507991",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41259330512478",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141337248364",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7154810700799",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "4200",
+        "reputation": 0,
+        "rshares": "9068686011028",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1696732608212",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3225565335203",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1235646206",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2016599249659",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1499730525",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "281080652",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3375344427585",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21034839900",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662345893",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85364487",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118102591202",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33428576420",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "359802776039",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2725486229852",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5037349079350",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "305019038127",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1020774163392",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248512921",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "366443930",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351461322450",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "831726581013",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29458661710",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66097877374",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115094057",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136700693544",
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48027202841",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8369502790",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20974743858",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74985145680",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7026975987",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14997799646",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9252847953",
+        "voter": "piranhax"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "15805368744",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454731626",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24358539349",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "20752781427",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "659982311479",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265820325911",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5176156064",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57828543405",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241272888452",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48851367464",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "2159280461",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431315632351",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "604174881",
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300547523",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28697384620",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84485273674",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181167644003",
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10841890602",
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5488585518",
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "325714641323",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55088452759",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69454017338",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146251978585",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6306835193",
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1378940549",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40337233208",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137721329373",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23975579810",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41087073599",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17433881797",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27631571433",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22006176295",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30668332410",
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2356326203",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5293803823",
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46878248431",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2468721262",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3209798088",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "307947269308",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3903498615",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6834101003",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9142889249",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2722238948",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262266700",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8489130636",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154515534205",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55576398818",
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2579337625",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255544185",
+        "voter": "goodcore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2036842578",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5006328473",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11075138908",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222530854",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4710786819",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2722457405",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121369746028",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17853677079",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4875559587",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2866423068",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237323110200",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38461824916",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282900680",
+        "voter": "arvydas"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "33434404943",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255220027",
+        "voter": "fydel"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "375991007",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "416486987",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "385436029",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087412640634",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105686790784",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7025504931",
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15299081307",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1100906252",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15484072314",
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1275373967",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18986893382",
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3600314227",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4279501396",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3784291284",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9641360528",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250344137",
+        "voter": "zizelevak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33586901348",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3954027129",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61402639016",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12392521703",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59944812577",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "944484104",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194359596",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2351934852",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217720229",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1223068461",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1930940424",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "182432504188",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57535973248",
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52529689352",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7154568164",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70593576131",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239397980",
+        "voter": "johannaparker284"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272002110",
+        "voter": "ashleybr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239146014",
+        "voter": "helenapeters051"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239098876",
+        "voter": "leoniestein3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239034812",
+        "voter": "alexandraberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239145342",
+        "voter": "susie4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2670183399",
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239099436",
+        "voter": "sarp871"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239130763",
+        "voter": "sarpton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239063369",
+        "voter": "stefaniek42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239247872",
+        "voter": "kellystone6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239109521",
+        "voter": "kathise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239082038",
+        "voter": "tsarp4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239091094",
+        "voter": "oneandonly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239296307",
+        "voter": "ts888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238981330",
+        "voter": "juliaevans717"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1243378929",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239052278",
+        "voter": "cryptobrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239215370",
+        "voter": "julwern002"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238981841",
+        "voter": "jul762"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238954586",
+        "voter": "willpower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239080360",
+        "voter": "juliap4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3985004526",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238996949",
+        "voter": "jenny-3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238828092",
+        "voter": "galaxy77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8810481536",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238842328",
+        "voter": "nancywood621"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238870108",
+        "voter": "jennyfeger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238817311",
+        "voter": "sunnyskies"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238765279",
+        "voter": "jeremybrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238847388",
+        "voter": "stevemitchell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238854943",
+        "voter": "jennifersteel807"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119540264",
+        "voter": "briantp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119401610",
+        "voter": "melinasanner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119397595",
+        "voter": "mrcryptocoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3393733116",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119531207",
+        "voter": "beckygee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2724355096",
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119371426",
+        "voter": "nataschasielers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30448894165",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7958656381",
+        "voter": "kristylynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7018176272",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119197760",
+        "voter": "mykingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119112592",
+        "voter": "sourcandy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119131506",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12513994178",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119037272",
+        "voter": "wildflower3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119071978",
+        "voter": "jessyperk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119010633",
+        "voter": "betsyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8381226852",
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119102335",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118845448",
+        "voter": "lucypier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118862056",
+        "voter": "penelopek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118900255",
+        "voter": "jenniferchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118914326",
+        "voter": "rosiemckoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118930318",
+        "voter": "stacykeller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5555058714",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118846334",
+        "voter": "luisapenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118810771",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118885999",
+        "voter": "abbybrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130149541",
+        "voter": "misseva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118775847",
+        "voter": "mandyrose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118832865",
+        "voter": "julesber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118805309",
+        "voter": "emily-s"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1503546920",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118782283",
+        "voter": "meetlisa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118957894",
+        "voter": "firedesire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118855870",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118853368",
+        "voter": "sammyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118797993",
+        "voter": "missclara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118815298",
+        "voter": "katiebell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118722719",
+        "voter": "evast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118819488",
+        "voter": "cassyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119413101",
+        "voter": "peacemaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118802816",
+        "voter": "chrism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118739098",
+        "voter": "dansteven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19873548965",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118783555",
+        "voter": "jackstiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118780455",
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118777297",
+        "voter": "tylermill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118773081",
+        "voter": "jacob-still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118749852",
+        "voter": "michaelpr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118880960",
+        "voter": "joshleon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118679777",
+        "voter": "mattgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70919127688",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118632683",
+        "voter": "andrew6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118616540",
+        "voter": "taylorcb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118573629",
+        "voter": "daniel-chris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118670825",
+        "voter": "timber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118561318",
+        "voter": "christopher7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118557498",
+        "voter": "williamger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118708222",
+        "voter": "alexander9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118543205",
+        "voter": "nilsbernsen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118579416",
+        "voter": "citruss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118605320",
+        "voter": "ryandavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118560736",
+        "voter": "david-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118575769",
+        "voter": "nickstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118513422",
+        "voter": "jamesab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118565669",
+        "voter": "johnbe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118540653",
+        "voter": "jonathan8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118498440",
+        "voter": "nathanburr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118529589",
+        "voter": "justusberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118548738",
+        "voter": "tedcook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118469646",
+        "voter": "jennyspeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118495263",
+        "voter": "bella4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118478585",
+        "voter": "samkk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118513185",
+        "voter": "annabellew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118449252",
+        "voter": "benjaminw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111423182",
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118467904",
+        "voter": "bitcoinpros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118379415",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118399962",
+        "voter": "kevinbr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118447715",
+        "voter": "brandontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118326435",
+        "voter": "timothyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116382038",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118276121",
+        "voter": "james-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118353137",
+        "voter": "evanpeters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118345023",
+        "voter": "lukethompson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118337740",
+        "voter": "jackson5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118281800",
+        "voter": "robert-sn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127957702",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118233062",
+        "voter": "luisstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118281137",
+        "voter": "lucasgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118250348",
+        "voter": "johnsnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118260671",
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "952395953790",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118182168",
+        "voter": "adriangreene"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118112958",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118086477",
+        "voter": "michael-brown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118078202",
+        "voter": "franklyn0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118110881",
+        "voter": "timclarke"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "12729188230",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29238814584",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1108062052",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248358280",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248731455",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144087185",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144901897",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82655604",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50913083207",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7480302114",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1826015095",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "795908327",
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6116401193",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164314623649",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168229291",
+        "voter": "cryptoknight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3944969275",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "744536546",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19671891232",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "614199054",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2474407029",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273154058",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136066020",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74716626",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "396486122",
+        "voter": "fnait"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "388960276",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5363964375",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81930668",
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19246484142",
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17848566103",
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179979763",
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8400490066",
+        "voter": "youngkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4177858606",
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2354667600",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116488065",
+        "voter": "jlwk0lb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218471399",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3117698144",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32119408578",
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2626075025",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841585029",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105795536",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50234451",
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9418579095",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2033447447",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377214574",
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382816536",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35971384414",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2029102864",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1339964315",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56967642",
+        "voter": "shanejonas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3210180886",
+        "voter": "veralynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "851591663",
+        "voter": "havok777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7536445563",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2848224971",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37411358461",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139369779",
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5190492365",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35648854625",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329526671",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1978801513",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641845888",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5325620380",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631288233",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342724480",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1745092688",
+        "voter": "unrealisback"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11693562054",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7109032370",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63311170",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99789005628",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60886073",
+        "voter": "tomeraddady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62023104",
+        "voter": "najibnoesis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117678752",
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1006800146",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313374070",
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2116950747",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17383762786",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34753501599",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55989019",
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102334329",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133403677",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223645521",
+        "voter": "ashleybeckwith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5124463672",
+        "voter": "hackfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "886297813",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1628709191",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1643997345",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1459736390",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58651156",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58479392",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14104601782",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55787428",
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52017537",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25539324528",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67029397",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21761190912",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2831572719",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14379167545",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5190528153",
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1759357936",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57723051",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59227338",
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55750195",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74181133",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30103518222",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56679654",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "388078993",
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8298370142",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54247105",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "970961663",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2307183228",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56810868",
+        "voter": "blackeyed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11546327403",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34105020530",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1802591050",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57204051",
+        "voter": "nbragg"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-55979644",
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335424340",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53423752",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53423593",
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121466526",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636616349",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28409046107",
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132376808",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1972297409",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57373019",
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1484135397",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53471592",
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142885947",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1032656866",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54276051",
+        "voter": "elmarco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100793544",
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52393318",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54658188",
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53428542",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54180479",
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52041445",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52030453",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51905367",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50759653",
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52870480",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51671889",
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52677876",
+        "voter": "martin001515"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52579820",
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52547970",
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53552086",
+        "voter": "lostpatriot"
+      }
+    ],
+    "author": "sirwinchester",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>It's unbelievable how many people you can meet through Steemit!</p>\n<p>You comment on each other's posts, talk on Rocket Chat, and today I could even meet some Steemers in real life.</p>\n<p><center><img src=\"https://picload.org/image/rridcoia/gruppenfoto.jpg\" width=\"3690\" height=\"3248\"/></center></p>\n<p>@fabio , who lives in Berlin (about 190 miles away) was visiting Hamburg for the day and wanted to use that opportunity to meet me. So I thought why not set up a little gathering with a few of other Steemers from Hamburg!</p>\n<p>I brought everyone together at our Lounge, and we were starting our little discussion / talk.</p>\n<p><center><img src=\"https://picload.org/image/rridcopi/225522584_1429451469002953113.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><center><img src=\"https://picload.org/image/rridcopl/225511827_9248916237993150945.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><center><img src=\"https://picload.org/image/rridcoii/225519670_10562233660494736798.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><br></p>\n<p><br></p>\n<p>We spoke about Tips for Newcomers, we made some plans for future projects, and talked about the Steemit Community in general.</p>\n<p>We had all noticed what a supportive Community Steemit has - that's amazing!</p>\n<p>We have also discussed plans on how to introduce new users to Steemit, especially locally, and foreign languages on Steemit.&nbsp;</p>\n<p><center><img src=\"https://picload.org/image/rridcopa/225515338_303193494895312178.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><br></p>\n<p>Also, we have started planning our Hamburg Steemit Meetup on Sept. 2. We created a timeline for the event and brainstormed about the talking points.</p>\n<p><a href=\"https://steemit.com/steemit/@sirwinchester/steem-meetup-steemit-s-first-meetup-in-hamburg-germany\"><em><strong>Everyone is very welcome to meet us on Sept 2, please read my separate post for all the details.</strong></em></a></p>\n<p><br></p>\n<p>Thank you to @fabio , @mrs.steemit , @agent , @najibnoesis and @erstklassich for joining us for this spontaneous gathering.</p>\n<p>I feel like we had very in-depth discussions and shared a lot of ides.</p>\n<p>The meeting definitely left me inspired!</p>\n<p><br></p>\n<p>Looking forward to meeting many more Steemers at our Hamburg Meetup!</p>\n<p><br></p>\n<p><br></p>\n<p><center><img src=\"https://picload.org/image/rridcoir/gruppe.jpg\" width=\"1280\" height=\"960\"/><center></p>\n<p><br></p>\n<p><center><img src=\"https://media.giphy.com/media/d31x43GtZG2hU2EU/giphy.gif\" width=\"480\" height=\"270\"/></center></p>\n<p>&nbsp;</p>\n<p><br></p>\n<p><a href=\"https://steemit.com/@sirwinchester\"><em><strong>Follow me \u2705</strong></em></a></p>\n<p><em><strong>\u00a9 Sirwinchester</strong></em></p>\n</html>",
+    "body_length": 2755,
+    "cashout_time": "2016-09-19T06:17:24",
+    "category": "steemit",
+    "children": 72,
+    "created": "2016-08-19T02:34:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"life\",\"photography\",\"blog\",\"meetup\"],\"users\":[\"fabio\",\"mrs.steemit\",\"agent\",\"najibnoesis\",\"erstklassich\"],\"image\":[\"https:\\/\\/picload.org\\/image\\/rridcoia\\/gruppenfoto.jpg\",\"https:\\/\\/picload.org\\/image\\/rridcopi\\/225522584_1429451469002953113.jpg\",\"https:\\/\\/picload.org\\/image\\/rridcopl\\/225511827_9248916237993150945.jpg\",\"https:\\/\\/picload.org\\/image\\/rridcoii\\/225519670_10562233660494736798.jpg\",\"https:\\/\\/picload.org\\/image\\/rridcopa\\/225515338_303193494895312178.jpg\",\"https:\\/\\/picload.org\\/image\\/rridcoir\\/gruppe.jpg\",\"https:\\/\\/media.giphy.com\\/media\\/d31x43GtZG2hU2EU\\/giphy.gif\"],\"links\":[\"https:\\/\\/steemit.com\\/steemit\\/@sirwinchester\\/steem-meetup-steemit-s-first-meetup-in-hamburg-germany\",\"https:\\/\\/steemit.com\\/@sirwinchester\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T02:34:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 130651714758446,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2231.912 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-gathering-in-hamburg-germany",
+    "post_id": 664662,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Gathering in Hamburg, Germany!",
+    "title": "Steemit Gathering in Hamburg, Germany!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@sirwinchester/steemit-gathering-in-hamburg-germany"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17414142157084",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7591036943097",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1212395973330",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26496870541984",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "4900",
+        "reputation": 0,
+        "rshares": "31922570071728",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2050921746033",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74782834751",
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18215133430656",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7455258218699",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205547473765",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3095692798866",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "134274665482",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "438936306475",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639468287855",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119632798758",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5690561825855",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4436015180917",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037635595716",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4769989859411",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1048047027107",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314690538248",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155266283237",
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3100718342",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233913763522",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3764425384",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690531024",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7247329309567",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1520787934823",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54254136072",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32973219608",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436334517545",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25233882165",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661675031",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213708849",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40192768803",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212974246287",
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16465300344",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80714654344",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1153791921957",
+        "voter": "cass"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "5029101849",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622948658",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45997014881",
+        "voter": "stoner19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967579918",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7851714417",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23043520727",
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288210104",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60068516234",
+        "voter": "lovelace"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "405027182",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "4740880170",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2191628106",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337827978927",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17606302474",
+        "voter": "richman"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "28581552321",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "928642599",
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5708604609",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16798550413",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57961908288",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24179610427",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710433980",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71223731862",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1419313845",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19107590376",
+        "voter": "bitswift"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190874541838",
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1506538062",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31956241190",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516633646190",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10980003052",
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6548188169",
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4828955800",
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7303027674",
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6471712577",
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4251247411",
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5894729975",
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24377713756",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4441045990",
+        "voter": "aizen12"
+      },
+      {
+        "percent": "1800",
+        "reputation": 0,
+        "rshares": "1025578887",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8442340916",
+        "voter": "badger311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8737964955",
+        "voter": "badger313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8701467224",
+        "voter": "badger312"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9000486826",
+        "voter": "badger316"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9122405890",
+        "voter": "badger319"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9030071213",
+        "voter": "badger3101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8483123529",
+        "voter": "badger3111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9045173581",
+        "voter": "badger3121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8653656280",
+        "voter": "badger3131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8761684821",
+        "voter": "badger3141"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8738093410",
+        "voter": "badger3171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8545576051",
+        "voter": "badger3181"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9131812184",
+        "voter": "badger3191"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8545412942",
+        "voter": "badger3112"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8886514803",
+        "voter": "badger3132"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8759733351",
+        "voter": "badger3162"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8990757728",
+        "voter": "badger3113"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8641479730",
+        "voter": "badger3123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8765242564",
+        "voter": "badger3133"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9116841650",
+        "voter": "badger3153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8795329440",
+        "voter": "badger3163"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8825853420",
+        "voter": "badger3193"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8775457673",
+        "voter": "badger3114"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8684302722",
+        "voter": "badger3124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8587179504",
+        "voter": "badger3144"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8508967843",
+        "voter": "badger3154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8376350982",
+        "voter": "badger3164"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8708249738",
+        "voter": "badger3174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8988660787",
+        "voter": "badger3194"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8884950618",
+        "voter": "badger3105"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8828479417",
+        "voter": "badger3135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8422524991",
+        "voter": "badger3145"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9006304447",
+        "voter": "badger3155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8699060163",
+        "voter": "badger3175"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8475184564",
+        "voter": "badger3195"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8117171592",
+        "voter": "badger3106"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8936184946",
+        "voter": "badger3116"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8984179593",
+        "voter": "badger3126"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8610919494",
+        "voter": "badger3136"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8257392549",
+        "voter": "badger3146"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8489108605",
+        "voter": "badger3156"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8705044314",
+        "voter": "badger3166"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8619852204",
+        "voter": "badger3176"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8754530095",
+        "voter": "badger3186"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8790334123",
+        "voter": "badger3196"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8717770934",
+        "voter": "badger3107"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8470003243",
+        "voter": "badger315"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8966327946",
+        "voter": "badger318"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9015982786",
+        "voter": "badger3151"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8688143631",
+        "voter": "badger3161"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8947563272",
+        "voter": "badger3122"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8884323219",
+        "voter": "badger3142"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9107472651",
+        "voter": "badger3152"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8410325342",
+        "voter": "badger3172"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8923914690",
+        "voter": "badger3182"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8679188557",
+        "voter": "badger3192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8593775732",
+        "voter": "badger3143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8856913569",
+        "voter": "badger3173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8563375507",
+        "voter": "badger3104"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8275398308",
+        "voter": "badger3134"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8682385560",
+        "voter": "badger3184"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8619470851",
+        "voter": "badger3115"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9092819860",
+        "voter": "badger3165"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8718494496",
+        "voter": "badger3185"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8780507780",
+        "voter": "badger314"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9015152673",
+        "voter": "badger317"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8753407318",
+        "voter": "badger3102"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8714835771",
+        "voter": "badger3103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8641812751",
+        "voter": "badger3125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8607937322",
+        "voter": "badger3183"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "7722261580",
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "409047397",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1709281731",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "316292142",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "370062297080",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56400039157",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26591192649",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13352341691",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171880926402",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108399240399",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "4717322072",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12549345118",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25359068530",
+        "voter": "djm34"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "87540066230",
+        "voter": "marina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7505907731",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167673940148",
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318065425752",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42081474906",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61303026913",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19421476800",
+        "voter": "hakise"
+      },
+      {
+        "percent": "6900",
+        "reputation": 0,
+        "rshares": "8263444101",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275204506970",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "952705678",
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1272198673",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "695779507922",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221080407941",
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646087329",
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3623254247",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265140254",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "359117036",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1287436138",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "409793835",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3259266314",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "195524058726",
+        "voter": "jesta"
+      },
+      {
+        "percent": "6800",
+        "reputation": 0,
+        "rshares": "22874440895",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4569207045",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2018092703",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367819702",
+        "voter": "knyaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3971212092",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20526346961",
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210920121710",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2870048598",
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2845434386",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9757718558",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1396976094",
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "14048732891",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5632357520",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8228883164",
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2403947514",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8046250295",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154183594",
+        "voter": "xondra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141272122",
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100131242",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193242078201",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412529332",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4928138588",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157385299",
+        "voter": "mikeoleksyuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10146541647",
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4506374345",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "10521746517",
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21372891456",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "454801055",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2596865502",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16629713553",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594613575",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1016915264",
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118911311",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18662765418",
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110940646",
+        "voter": "cryptoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110227366",
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452357783",
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "757751350",
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8316727603",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241393547",
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "555271744",
+        "voter": "bento01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1647347086",
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16437750157",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197110323276",
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5089683005",
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65253293",
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23836699917",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65245958",
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4887223428",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82548771",
+        "voter": "bento06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3581941741",
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18595215870",
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62947504707",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1026195773",
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64515016",
+        "voter": "ninetee110"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102472823",
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "652000677",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105623817",
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11081235284",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129504762627",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109223881",
+        "voter": "steemnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192492931",
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42454060089",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64316777",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26155356269",
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3509543381",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61746903",
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60425095",
+        "voter": "snwolak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1393798190",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180918550",
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60155589",
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1053111549",
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "837412090",
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234742436",
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "746911197",
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56202563",
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6708143785",
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55039851",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28759203578",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1064857867",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1186379197",
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61025322",
+        "voter": "enders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232614420",
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "441199270",
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11253943726",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107480036",
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "903248108",
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36214301506",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74850407",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2702536728",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "492056982",
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15796270641",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1265825098",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6841991895",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4510930013",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60968037",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196273792",
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64482924038",
+        "voter": "justinlaak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9606499416",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10593021578",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1500874232",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58701743",
+        "voter": "jimukgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1020035280",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288989103",
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236439691",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60129070",
+        "voter": "elenakrugina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "692721658",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1296717974",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56761351",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56790849683",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15280466869",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1902483494",
+        "voter": "stephthegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55709351",
+        "voter": "misscathy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58351459",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53238597",
+        "voter": "gumer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56653872",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61659373",
+        "voter": "lebedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13961361379",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "5400",
+        "reputation": 0,
+        "rshares": "96916589045",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179159674",
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282251870",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71748267",
+        "voter": "discernente"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25306881110",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101585304",
+        "voter": "illusiveman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123962303",
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475463267",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "609022092",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72893380",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54706268",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53671263",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53988734",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1648140955",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562143",
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843848361",
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51109965",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51537477",
+        "voter": "timothy.sykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "313348711",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "833131622",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54617017",
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53555683",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50938725",
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1659673971",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50708837",
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50704078",
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50433760",
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50372583",
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "439182056",
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74409850",
+        "voter": "motsna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69550030",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80764047",
+        "voter": "niklaszantner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74220519",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172891733",
+        "voter": "catmeowmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161180081",
+        "voter": "dikanevroman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164045768",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163883816",
+        "voter": "loam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163807422",
+        "voter": "aleks66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85691759",
+        "voter": "mikerano"
+      }
+    ],
+    "author": "aizensou",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Say hello to \"Steemion\"\n===================\n\nHey! Allow me to introduce my work from the last few weeks. \nIt's the working native Android app with many advance features:\n\n> **Features:**\n\n> - Blazing fast state-of-the-art techniques\n> - Carefully beautiful UI design\n> - Endless scrolling and many modern navigation design\n> - Archive and share to read it later\n> - Using my high performance own custom nodes (currently 3), not depends on steemit\n> - Local transactions signing\n> - Open source (later)\n> - Push notifications\n> - Markdown offline editor for posting\n> - Vote weight choosing on the fly\n> - Scanning keys/links through QR-code\n> - Export keys/links through QR-code\n> - Register new account through third-party (will be announced later)\n\nHere are screenshots and screen recording with Samsung S6 Edge.\n\n**Steemion in action**\n[![Steemion in action](http://img.youtube.com/vi/_O0MC5Vefkw/maxresdefault.jpg)](https://youtu.be/_O0MC5Vefkw \"Steemian in action\")\n**It's a screen recording uploaded to YouTube. Please click to view.**\n\n![enter image description here](https://s15.postimg.io/jt3x3f7vd/device_2016_09_02_230559.png)\n\n![enter image description here](https://s15.postimg.io/vtpd45fa1/device_2016_09_02_230830.png)\n\n![enter image description here](https://s15.postimg.io/a60etpevt/device_2016_09_02_230852.png)\n\n![enter image description here](https://s15.postimg.io/doceq3frt/device_2016_09_02_230925.png)\n\n![enter image description here](https://s15.postimg.io/dztv2uw7t/device_2016_09_02_230942.png)\n\n![enter image description here](https://s15.postimg.io/5t1vba655/device_2016_09_02_231012.png)\n\n![enter image description here](https://s15.postimg.io/b36u2kqe1/device_2016_09_02_231039.png)\n\n![enter image description here](https://s15.postimg.io/mr0vx4fix/device_2016_09_02_231053.png)\n\n![enter image description here](https://s15.postimg.io/tg7fd50ux/device_2016_09_02_231110.png)\n\n![enter image description here](https://s15.postimg.io/jhhvcx21l/device_2016_09_02_231212.png)\n\n![enter image description here](https://s15.postimg.io/7ecjpcqzd/device_2016_09_02_231236.png)\n\n![enter image description here](https://s15.postimg.io/yawixo9sp/device_2016_09_02_231328.png)\n\n\n\n**Current status**\nI currently disable any login feature since security is the most major concern in any \"non-official\" app. Taken @ned's advice, I'm currently debugging the local transactions signing and will re-enable these features after security tests and the code review are done by third-parties. \n**Distribution of the app**\nI have applied for Google Play Store, but because the app is still in early beta, it will be distributed through [Early access and beta testing program from Google.](https://support.google.com/googleplay/answer/7003180?hl=en)\nPlease leave me your email here in the comments if you want to test the app. I will add you in the beta list and you could get the app from Google Play Beta Channel.\n\nAny improvement, suggestion, and any kind of feedback please leave it here as well.\n\nLast but not least, if you're enjoy my app, [don't forget to vote for me as witnesses here.](https://steemit.com/~witnesses)\n\nThanks for reading.",
+    "body_length": 3152,
+    "cashout_time": "2016-10-03T23:40:24",
+    "category": "steemit",
+    "children": 43,
+    "created": "2016-09-02T22:48:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemapp\",\"mobile-app\",\"android\",\"steemion\"],\"users\":[\"ned\"],\"image\":[\"http:\\/\\/img.youtube.com\\/vi\\/_O0MC5Vefkw\\/maxresdefault.jpg\",\"https:\\/\\/s15.postimg.io\\/jt3x3f7vd\\/device_2016_09_02_230559.png\",\"https:\\/\\/s15.postimg.io\\/vtpd45fa1\\/device_2016_09_02_230830.png\",\"https:\\/\\/s15.postimg.io\\/a60etpevt\\/device_2016_09_02_230852.png\",\"https:\\/\\/s15.postimg.io\\/doceq3frt\\/device_2016_09_02_230925.png\",\"https:\\/\\/s15.postimg.io\\/dztv2uw7t\\/device_2016_09_02_230942.png\",\"https:\\/\\/s15.postimg.io\\/5t1vba655\\/device_2016_09_02_231012.png\",\"https:\\/\\/s15.postimg.io\\/b36u2kqe1\\/device_2016_09_02_231039.png\",\"https:\\/\\/s15.postimg.io\\/mr0vx4fix\\/device_2016_09_02_231053.png\",\"https:\\/\\/s15.postimg.io\\/tg7fd50ux\\/device_2016_09_02_231110.png\",\"https:\\/\\/s15.postimg.io\\/jhhvcx21l\\/device_2016_09_02_231212.png\",\"https:\\/\\/s15.postimg.io\\/7ecjpcqzd\\/device_2016_09_02_231236.png\",\"https:\\/\\/s15.postimg.io\\/yawixo9sp\\/device_2016_09_02_231328.png\"],\"links\":[\"https:\\/\\/youtu.be\\/_O0MC5Vefkw\",\"https:\\/\\/support.google.com\\/googleplay\\/answer\\/7003180?hl=en\",\"https:\\/\\/steemit.com\\/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T00:55:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 152261428208276,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2159.455 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "ann-steemion-native-android-app-for-steemian",
+    "post_id": 839285,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[ANN] Steemion - Native Android App for steemian",
+    "title": "[ANN] Steemion - Native Android App for steemian",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@aizensou/ann-steemion-native-android-app-for-steemian"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "9800",
+        "reputation": 0,
+        "rshares": "28494593960128",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "644738319706",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27839678307923",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "16235695906965",
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154585758780",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2286570489575",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "640199523100",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1945806510360",
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4799969952173",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4832055408955",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "894907708222",
+        "voter": "liondani"
+      },
+      {
+        "percent": "8200",
+        "reputation": 0,
+        "rshares": "5382808860939",
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3074579095952",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2469488785",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2997178884",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "567457327",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41886730242",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "496491346728",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1323782877",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170682241",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33468811566",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "472662273067",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2950983812313",
+        "voter": "recursive"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "108654343959",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1041432432055",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10258450142",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "493912489",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1105685783880",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "719698685",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "134047118974",
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60855743332",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5311414373",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230101732",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153648726923",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124865240972",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16987333910",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8146351014",
+        "voter": "fkn"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "411087770",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "445258050",
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "779138307254",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "4680592060",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23397364805",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45575829971",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10696286710",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9975187502",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "187543213255",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1797982008",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8659573260",
+        "voter": "gore84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1773113356",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72369352954",
+        "voter": "teamnearandl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53451993385",
+        "voter": "alyssas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181852059",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "323497419787",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5156886791",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55261474547",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "423707740",
+        "voter": "shane-loomb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537623020842",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23204872292",
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "584789970",
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144783423",
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14823717149",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-8515714613",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88309580492",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124126099025",
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356285718284",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "321402190",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241790193376",
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "215769092442",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53926827989",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107224012174",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66618489117",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48268642021",
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13378041682",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22263265794",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40778989049",
+        "voter": "foma17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44635912164",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218059467860",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489212642",
+        "voter": "peezaroni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19233912212",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25577064251",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31276936170",
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3067985295",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51409110588",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4179579990",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1493761252",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5082907228",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35004404650",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1418766292",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3544855809",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7963635086",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261023475510",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3691190161",
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "96706810",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3358845753",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2088345879",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110643363491",
+        "voter": "joshbreslauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19342377772",
+        "voter": "firepower"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "280674375",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5644933315",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3545161944",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59823210207",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3732528948",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168987550190",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "306347753",
+        "voter": "citizen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300375104",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-906034930",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9105383255",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12966130529",
+        "voter": "jazzka"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "17313730041",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578948921",
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "193906902",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "216810692",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "198776099",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1386708550",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45244529496",
+        "voter": "alexbeyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "193803067",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427404051",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1221200631",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108775983366",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1274170818",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263539417",
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4369989215",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238502555",
+        "voter": "tonydreher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6914761628",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117244986569",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6502449561",
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73056635304",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341305277745",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1505962723",
+        "voter": "tynx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256961410",
+        "voter": "anyx10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3059555770",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162820248",
+        "voter": "anyx11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24870513211",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58727755821",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227542942",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1213672355",
+        "voter": "anyx01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1051176534",
+        "voter": "anyx02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "957280186",
+        "voter": "anyx03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7913745558",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1476685561",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32732911135",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11803016955",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2069708383",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240570298",
+        "voter": "ricardolucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "768315964",
+        "voter": "anyx04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001317228",
+        "voter": "doctorstrange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7291788471",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2400092353",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3000133617",
+        "voter": "corinnestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1828284339",
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56929208091",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25832634803",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "604284037",
+        "voter": "anyx05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511220570",
+        "voter": "anyx06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418255711",
+        "voter": "anyx07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393829488",
+        "voter": "anyx08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "301931473",
+        "voter": "anyx09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1695099668",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2750506523",
+        "voter": "begstreets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3822601388",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6290084572",
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155427450587",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2384479531",
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120818710",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30998817641",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467828234",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21954025548",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5851340485",
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485646625",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51624318238",
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5373564790",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24899977231",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1834207609",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19433858245",
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19714255829",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1638562907",
+        "voter": "pitbull808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4286852708",
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114054397",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148243327693",
+        "voter": "jl777"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6560904621",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "332509571",
+        "voter": "jeison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32149688844",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99487372",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1148208847",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163507528",
+        "voter": "anyx12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115930003",
+        "voter": "anyx13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92624340",
+        "voter": "anyx14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116980543",
+        "voter": "anyx15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141445363",
+        "voter": "anyx16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115658479",
+        "voter": "anyx17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92610940",
+        "voter": "anyx18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69348528",
+        "voter": "anyx19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69347656",
+        "voter": "anyx21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "264975700",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265374319",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69342821",
+        "voter": "anyx22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69341840",
+        "voter": "anyx23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69335139",
+        "voter": "anyx24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69330968",
+        "voter": "anyx25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70642764",
+        "voter": "anyx27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153861416",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69308326",
+        "voter": "anyx28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154731677",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67493815",
+        "voter": "anyx36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88291213",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45618425990",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14882754829",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126830539",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4180514858",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122407260",
+        "voter": "ibai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1108713242",
+        "voter": "blueciruit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19671096335",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18518119373",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13075969179",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2071013549",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2185629468",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258325412",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145310046",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65154130069",
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "268508747",
+        "voter": "cheetah00"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125142712",
+        "voter": "cheetah01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102151684",
+        "voter": "cheetah03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102151302",
+        "voter": "cheetah04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102143988",
+        "voter": "cheetah05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102142054",
+        "voter": "cheetah06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79810941",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "204479372",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "200595065",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33179085087",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81917882",
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102090683",
+        "voter": "cheetah02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102070636",
+        "voter": "cheetah10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102068573",
+        "voter": "cheetah07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3375155212",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102060958",
+        "voter": "cheetah11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102060069",
+        "voter": "cheetah20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102058022",
+        "voter": "cheetah08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102048981",
+        "voter": "cheetah12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186777641",
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435533857",
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112027656",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "784157120",
+        "voter": "djinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282463107",
+        "voter": "scarlette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262729055",
+        "voter": "kain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157660788",
+        "voter": "lune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2455486317",
+        "voter": "mikeinfla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "781448489",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111043014",
+        "voter": "carnage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101798848",
+        "voter": "cheetah09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101768128",
+        "voter": "cheetah13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67338546192",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101759713",
+        "voter": "cheetah14"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-82777234",
+        "voter": "jlwk0lb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171380684",
+        "voter": "cheetah15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4430173251",
+        "voter": "viernas"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "275565480",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52049504623",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4744780014",
+        "voter": "spookypooky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "685226970",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101642876",
+        "voter": "cheetah16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101641586",
+        "voter": "cheetah17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101544314",
+        "voter": "cheetah18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123871578",
+        "voter": "cheetah19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6403236626",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101117824",
+        "voter": "cheetah21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101117125",
+        "voter": "cheetah22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188497505",
+        "voter": "cheetah23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144832499",
+        "voter": "cheetah24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18634290612",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1310561212",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51522514",
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "796630994",
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6603076013",
+        "voter": "najoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6438024771",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2295214548",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100855438",
+        "voter": "cheetah25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1689137354",
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187306376",
+        "voter": "cheetah26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187282002",
+        "voter": "cheetah27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25318793181",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6681118596",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143960361",
+        "voter": "cheetah28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40649504757",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2274460683",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1925907325",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1528345450",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58219327",
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4490056952",
+        "voter": "veralynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100620781",
+        "voter": "cheetah29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6804135939",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64511726",
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143386904",
+        "voter": "cheetah30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125323998",
+        "voter": "cheetah31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61578706",
+        "voter": "fairider1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100555632",
+        "voter": "cheetah35"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98573434",
+        "voter": "cheetah36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98569125",
+        "voter": "cheetah37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74951294",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34603854834",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690065226",
+        "voter": "ezel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83613551",
+        "voter": "ultima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118740462",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67225411",
+        "voter": "ritz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "373005221",
+        "voter": "lini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58465169",
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "654874142",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341933396",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1243865593",
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87873981",
+        "voter": "remedi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6934137885",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121193479",
+        "voter": "cheetah32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100129802",
+        "voter": "cheetah33"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "502434554",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100111679",
+        "voter": "cheetah34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121076691",
+        "voter": "cheetah40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19357707458",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141954789",
+        "voter": "cheetah50"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118670480",
+        "voter": "cheetah38"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98125545",
+        "voter": "cheetah39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100086195",
+        "voter": "cheetah41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100077813",
+        "voter": "cheetah42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100062045",
+        "voter": "cheetah43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100039180",
+        "voter": "cheetah55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100030834",
+        "voter": "cheetah51"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120880433",
+        "voter": "cheetah52"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1585319057",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100017063",
+        "voter": "cheetah53"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162614045",
+        "voter": "cheetah46"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141732299",
+        "voter": "cheetah44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120872328",
+        "voter": "cheetah45"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120890813",
+        "voter": "cheetah47"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120833397",
+        "voter": "cheetah48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51802213",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99980122",
+        "voter": "cheetah49"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-197038485",
+        "voter": "bittrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99951882",
+        "voter": "cheetah54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6149969581",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120697483",
+        "voter": "cheetah56"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99916622",
+        "voter": "cheetah57"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99910278",
+        "voter": "cheetah58"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99909932",
+        "voter": "cheetah59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99907438",
+        "voter": "cheetah60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99896533",
+        "voter": "cheetah66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99892250",
+        "voter": "cheetah61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99890841",
+        "voter": "cheetah67"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101879994868",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120570515",
+        "voter": "cheetah68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99869348",
+        "voter": "cheetah62"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60886073",
+        "voter": "tomeraddady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124607662",
+        "voter": "cheetah69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7453005338",
+        "voter": "deepsynergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99802358",
+        "voter": "cheetah70"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99799156",
+        "voter": "cheetah71"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15273606785",
+        "voter": "solar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91021945",
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99792957",
+        "voter": "cheetah63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99782371",
+        "voter": "cheetah64"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120389167",
+        "voter": "cheetah72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120381435",
+        "voter": "cheetah65"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5654923873",
+        "voter": "ioc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120373295",
+        "voter": "cheetah73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99741664",
+        "voter": "cheetah74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99741380",
+        "voter": "cheetah80"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99738105",
+        "voter": "cheetah81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181927110",
+        "voter": "cheetah75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120267884",
+        "voter": "cheetah76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99696600",
+        "voter": "cheetah82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99681042",
+        "voter": "cheetah77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99671651",
+        "voter": "cheetah78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99665235",
+        "voter": "cheetah79"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99663403",
+        "voter": "cheetah83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99661875",
+        "voter": "cheetah90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99655006",
+        "voter": "cheetah84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99650382",
+        "voter": "cheetah85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120081993",
+        "voter": "cheetah86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99620929",
+        "voter": "cheetah91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1330997485",
+        "voter": "tralawar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99616380",
+        "voter": "cheetah87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140399162",
+        "voter": "cheetah92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32458555579",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119973230",
+        "voter": "cheetah88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140275655",
+        "voter": "cheetah89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99519512",
+        "voter": "cheetah93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2357495176",
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99486611",
+        "voter": "cheetah94"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99486173",
+        "voter": "cheetah97"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99465345",
+        "voter": "cheetah98"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99451343",
+        "voter": "cheetah99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "508905664",
+        "voter": "acacia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594100722",
+        "voter": "alorya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50114625",
+        "voter": "highnye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "974326813",
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28295412704",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76569573",
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99380266",
+        "voter": "cheetah95"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99376103",
+        "voter": "cheetah96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60676805",
+        "voter": "elmariac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "443274841",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339531801",
+        "voter": "reverie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60376477",
+        "voter": "anyx00"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173824123",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2613509095",
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "860457185",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1500225344",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56305110",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55056512",
+        "voter": "ethansteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54970628",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14379714199",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58739830",
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26222994430",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14098692115",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67029397",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2083596161",
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1454878966",
+        "voter": "jms21y"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196167738566",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53035120",
+        "voter": "onlyvoluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57346302",
+        "voter": "rainingtrips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64745673",
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "934958518",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60704882",
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208772031",
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61338571",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54003219",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156902846",
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89410093",
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13964573755",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "381992155",
+        "voter": "celestial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96587737",
+        "voter": "defender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96570908",
+        "voter": "guard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127493671",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55780959",
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5940167503",
+        "voter": "alexandre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64818321",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92595506",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55638442",
+        "voter": "starbuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55386580",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29165831568",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55888886857",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39486406717",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57814202",
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8730370697",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56835260",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57009820",
+        "voter": "getbithub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48716091684",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996093230",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "469965215",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "373540743",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121327662",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171072890",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3604800369",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57064498",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9444303420",
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1242700163",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183611094",
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57819438",
+        "voter": "farmwars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5889661123",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55960386",
+        "voter": "ramonphillips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55955465",
+        "voter": "tommyboyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62707105",
+        "voter": "ender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70030040089",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63876983",
+        "voter": "bmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53495781",
+        "voter": "apolloearth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400985",
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60253110",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56275084",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125638446",
+        "voter": "advinio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61344846",
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53378714",
+        "voter": "prestonslove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78263876",
+        "voter": "happyramonel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54120410",
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54321048",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6699358198",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51797295",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51699969",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162281274",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327031815",
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53633596",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62737051",
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51432754",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52490824",
+        "voter": "rook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53452043",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51230467",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53168275",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54194635",
+        "voter": "darkzhadow20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54178316",
+        "voter": "pingu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53103516",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52030453",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53045729",
+        "voter": "inwoxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53039974",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51972494",
+        "voter": "crmason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122515769",
+        "voter": "charli"
+      }
+    ],
+    "author": "anyx",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![](https://pixabay.com/static/uploads/photo/2014/04/03/10/55/theater-311730_960_720.png)\n[[Source: Pixabay.](https://pixabay.com/p-311730/?no_redirect)]\n\nTo quote wikipedia (HEEL @cheetah), a Tragedy of The Commons is defined as follows:\n\n>The tragedy of the commons is an economic theory of a situation within a shared-resource system where individual users acting independently according to their own self-interest behave contrary to the common good of all users by depleting that resource through their collective action.\n\n&nbsp;&nbsp;&nbsp;&nbsp;It has been my experience over the past few weeks that Steemit is descending quite rapidly into a situation where the above definition is being applied almost verbatim.\n\n&nbsp;&nbsp;&nbsp;&nbsp;There are a few major topics I want to touch on today. Unfortunately I do not have much in the way of solutions, but I want to raise questions so that the community can openly engage in discussion with their opinions as well. I fight actively for, and am invested in, the future of steemit (I pay for @cheetah bot to run), so I hope we can garner some improvements as a result of this post.\n\n----\n\n# Curation, Voting, and Flagging Strategies\n&nbsp;&nbsp;&nbsp;&nbsp;As independent actors, we are all trying to maximize our own rewards here at steemit. We are acting as individuals, rather than as a community. I am guilty of this myself, having toyed with a curation strategy (bot) to use my vote power to improve my own Steem Power (according to @trogdor [I am doing fairly well too.](https://steemit.com/bots/@trogdor/building-better-bots-ranking-the-top-curators)), *and this means using my vote power selfishly, rather than using my vote power on something that I enjoyed reading.* [Perhaps curation rewards should stop after a post is trending, reducing the pile-on effect?](https://steemit.com/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page)\n\n&nbsp;&nbsp;&nbsp;&nbsp;The problem is that this incentivizes the individual, not the community as a whole. When all users start doing this, voting on a \"sure shot\", we only further centralize the reward pool on a small minority, and leave minnows with little reward for their efforts.\n\n&nbsp;&nbsp;&nbsp;&nbsp;Unfortunately, I, like you all, are witnessing firsthand the effect that this selfish voting imparts. Our famous actors are becoming more famous, to the point where the few who realize have begun using their fame to promote lists of hidden gems and featured authors. But they still gain the steem power, getting fatter and fatter. \n\n&nbsp;&nbsp;&nbsp;&nbsp;Furthermore, using a flag on low-quality posts is disincentivized due to the threat of retaliatory flagging across all posts. I am a victim of this constantly and am used to it, but for most minnows they do not have the power or reputation to risk this possibility. In this regard, the action of self-interest is to avoid calling out spam, plagiarism, or scams, an instead focus only on the self and their own posts or rewards. @liondani suggested anonymous flagging, which may solve this issue, but potentially may lead to anonymous abuse, so I do not have an answer to that either. The question of flagging has become larger and larger, on the use cases [and accountability](https://steemit.com/steemit/@sparkeddev/steemit-flag-accountability-system-idea) of using flags, as well.\n\nTo quote @tuck-fheman:\n> It appears that Steem has become all about flagging, downvoting and opposing instead of the original idea of upvoting for rewards. :(  \n\n----\n\n# What is *Fair?*\n&nbsp;&nbsp;&nbsp;&nbsp;A second issue is fairness, and the distribution of reward from the reward pool. I have strong opinions on content, enough to continuously butt heads with several whales (no names -- no need to brigade).\n\n&nbsp;&nbsp;&nbsp;&nbsp;The fact is that whales have the ability to make a post trend instantly. This can be a good thing or a bad thing -- given a benevolent whale, a really strong minnow post can be put into the spotlight despite the user not having a large following. But if the quality of the post is low, we run into a very distinct issue: users view the front page as a metric to gauge successfulness of their own posts. Then it becomes a case of \"monkey see, monkey do\", where the average user, seeing plagiarism, copy paste, and low-quality posts on the front page, contemplates their risk to reward of each and every blog post.\n\n*Why would someone spend hours on a quality post, when they can spit out 4 low quality posts a day on multiple accounts, and randomly get chosen by a whale?*\n\n&nbsp;&nbsp;&nbsp;&nbsp;When a whale upvotes a low-quality post, and causes it to trend, it only further incentivizes this in the future. However, curation rewards are given mostly to the whale anyways, so they have selfish reasons to NOT remove their vote (and use vote power), and keep the resulting curation reward, contributing to the tragedy of the commons.\n\n\n----\n\n# What is *Right?*\n&nbsp;&nbsp;&nbsp;&nbsp;As one of the head combatants of abuse and plagiarism over the past weeks, I have had many discussions and many arguments over the direction of content on Steemit. While I believe that copy paste is a waste of my time, again, many users disagree, and mine and others' combative nature against what we feel is abuse has been more vigilante actions than anything else.\n\n&nbsp;&nbsp;&nbsp;&nbsp;Personally, I feel that Steemit should NOT be a news aggregation source, unless the provider of the information IS a news source. In this case, I believe people who copy paste articles that are not their own, whether or not it contains a source, should NOT be encouraged. This is equivalent to the difference in a reddit post or facebook status. Do you copy paste the article to reddit? NO! You just have a link and promote (and provide) discussion. Do you make your facebook status a full article? NO! You just have a link and promote (and provide) discussion. \n**We can do so much better than that; Steemit is something new and original. Lets be original too.**\n\n&nbsp;&nbsp;&nbsp;&nbsp;**But what is RIGHT?** If the answer were unclear, that would be one thing, however *there currently is no answer as far as I am aware.* Neither @dan nor @ned have made a public stance on official or unofficial set of rules for the content on steemit.com. Also, note that I am saying steemit.com here, not the blockchain steem. I think in the future there can and perhaps should be avenues on the steem blockchain that can be independent from the company and website, but that is off this topic.\n\nAre reposts okay? Is copy paste okay? What is right?\n\n*I don't actually know.*\n\nBut what I do know, is that everyone is acting independently on what they feel is **right**. And this independent selfishness is again contributing to the tragedy of the commons.\n\n----\n\n# Transparency of Leadership\n\n&nbsp;&nbsp;&nbsp;&nbsp;Here's another topic that I am likely to recieve a lot of hate for bringing up, but I feel the need for this to be discussed. This likely will ruin my chances as a back up witness, as this will not put me on the good side of some of the whales/employees but I feel that this needs to be said.\n\n**There is an issue in the transparency of leadership and witness activities, as well as the development towards the future of steemit.**\n\n&nbsp;&nbsp;&nbsp;&nbsp;If you don't believe me, I have a few examples. Lets start with [the latest witnesses exposed edition, here.](https://steemit.com/witness-category/@clains/witnesses-exposed-what-have-witnesses-done-for-us-this-week-fourth-edition)\nThere are a few issues that come to mind to start. Not all witnesses felt the need to respond, or were discussing stuff not explicitly steemit related. **Why is this?** This is not an issue with the witnesses themselves, but more with the transparency of actions -- the witnesses do **A LOT of work**, and they do not have the time or willpower to justify all their actions. Their updates are only a small part of the picture: they do a lot behind the scenes.\n\n*Behind. The. Scenes.* **That** is the issue.\n\n&nbsp;&nbsp;&nbsp;&nbsp;Furthermore, there is a private slack that only the witnesses and employees are invited to. Who is invited to these discussions? It does not appear to be a community decision.\nWhy are back up witnesses not invited to the private slack? Do they have no say? Is it only the bitshares witnesses, whom are very similar to the steemit witnesses, that are invited? I don't actually know -- it is not transparent.\n\n\n&nbsp;&nbsp;&nbsp;&nbsp;As a second example, I will start with an issue that has arisen just today. If you are aware of the history of bot wars on steemit, you are also probably aware of @williambanks and myself continuously in (reasonable/gentleman's) debate.\n\nBut what do you know, we are on the same page today.\n\n### [There is an open issue on the steemit github here](https://github.com/steemit/steem/issues/279).\n&nbsp;&nbsp;&nbsp;&nbsp;This issue is less than a day old and already is one of the most discussed issues. The code has already been implemented and is on track to be included in the next hardfork. There has also been a MASSIVE discussion on this in steemit.chat, and we have been debating the potential issues that this change could impart.\n&nbsp;&nbsp;&nbsp;&nbsp;[There is already a very forward response to the issue here,](https://steemit.com/steem/@bacchist/dan-needs-to-be-stopped) and while I think the tone of the post is a bit exaggerated, it shows that there are people already speaking out on the potential for censorship of users.\nCould this be another case of acting in what only one believes in, contributing to the tragedy of the commons?\n\n----\n----\n# To Be Clear...\n\nThis post is meant to incite discussion, on the following points (summarized):\n\n- How can we prevent the tragedy of the commons by inciting communal behaviour rather than selfish behaviour?\n- What is right, or fair, and are there (unofficial) rules to steemit?\n- How can we improve transparency with the witnesses and leadership?\n\n\n&nbsp;&nbsp;&nbsp;&nbsp;I hope to use what voice I have as \"the cheetah bot creator\" to get some some attention on these matters. As I am a believer in Steemit (I'm not powering down), I hope we can discuss and solve these issues, so let's try and be civil in the comment sections, and think of strategies to improve the current situation.",
+    "body_length": 10432,
+    "cashout_time": "2016-09-17T12:59:51",
+    "category": "steemit",
+    "children": 114,
+    "created": "2016-08-17T06:13:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitabuse\",\"steemit-abuse\"],\"users\":[\"cheetah\",\"trogdor\",\"liondani\",\"tuck-fheman\",\"dan\",\"ned\",\"williambanks\"],\"image\":[\"https:\\/\\/pixabay.com\\/static\\/uploads\\/photo\\/2014\\/04\\/03\\/10\\/55\\/theater-311730_960_720.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T00:00:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 111529566818423,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2117.833 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "the-steemit-tragedy-of-the-commons",
+    "post_id": 637563,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Steemit Tragedy of The Commons",
+    "title": "The Steemit Tragedy of The Commons",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@anyx/the-steemit-tragedy-of-the-commons"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28649815191672",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17256001472124",
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550210431801",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30334952370576",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376239996939",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14443275652261",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2030833515963",
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74801504808",
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18126239783174",
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1987335593735",
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2159517848267",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4890023621806",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4323004097906",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1086320405624",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28968312235",
+        "voter": "interteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23773277234",
+        "voter": "jaewoocho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5486441611828",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726450269",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1867163157068",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524421464",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821023379",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6910892966349",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663662907027",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66083666244",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996677258",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256577770",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1800658342642",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78084353044",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "455313528588",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2844060262292",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1353362516",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792990678741",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113067927565",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7724274359",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1911794927",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5635626434210",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1194582733596",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1315783901010",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "461603109709",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "48760534992",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1155054183813",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750173071",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168097212",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7861629418",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346066692",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10083532428",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "394234007436",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76669767557",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60083245520",
+        "voter": "lovelace"
+      },
+      {
+        "percent": "9763",
+        "reputation": 0,
+        "rshares": "628030219874",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20789435933",
+        "voter": "fkn"
+      },
+      {
+        "percent": "700",
+        "reputation": 0,
+        "rshares": "6569044104",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61054775",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10253626779",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "735222183",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30368411048",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "315863056656",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "682204156759",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152428550598",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47409568998",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "210664792527",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99060598425",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "634334591302",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "1509",
+        "reputation": 0,
+        "rshares": "706760886",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14784987971",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41765598481",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58465406817",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32250958083",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9741553971",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8443385846",
+        "voter": "badger311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8739185833",
+        "voter": "badger313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8702688102",
+        "voter": "badger312"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9001802877",
+        "voter": "badger316"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9123753448",
+        "voter": "badger319"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9031387264",
+        "voter": "badger3101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8484216079",
+        "voter": "badger3111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9046505395",
+        "voter": "badger3121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8654861145",
+        "voter": "badger3131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8762905699",
+        "voter": "badger3141"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8739314288",
+        "voter": "badger3171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8546700919",
+        "voter": "badger3181"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9133175793",
+        "voter": "badger3191"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8546537809",
+        "voter": "badger3112"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8887799290",
+        "voter": "badger3132"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8760954229",
+        "voter": "badger3162"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8992073779",
+        "voter": "badger3113"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8642652851",
+        "voter": "badger3123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8766463442",
+        "voter": "badger3133"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9118189207",
+        "voter": "badger3153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8796550318",
+        "voter": "badger3163"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8827090232",
+        "voter": "badger3193"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8776678551",
+        "voter": "badger3114"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8685523600",
+        "voter": "badger3124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8588304371",
+        "voter": "badger3144"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8510076281",
+        "voter": "badger3154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8377315418",
+        "voter": "badger3164"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8709470616",
+        "voter": "badger3174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8989976838",
+        "voter": "badger3194"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8886235105",
+        "voter": "badger3105"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8829716229",
+        "voter": "badger3135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8423538028",
+        "voter": "badger3145"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9007620498",
+        "voter": "badger3155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8700281041",
+        "voter": "badger3175"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8476261207",
+        "voter": "badger3195"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8117957824",
+        "voter": "badger3106"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8937469433",
+        "voter": "badger3116"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8985495645",
+        "voter": "badger3126"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8612060436",
+        "voter": "badger3136"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8258276111",
+        "voter": "badger3146"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8490201155",
+        "voter": "badger3156"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8706265192",
+        "voter": "badger3166"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8620993146",
+        "voter": "badger3176"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8755750973",
+        "voter": "badger3186"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8791555001",
+        "voter": "badger3196"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8718991812",
+        "voter": "badger3107"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8471079885",
+        "voter": "badger315"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8967628181",
+        "voter": "badger318"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9017298837",
+        "voter": "badger3151"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8689364509",
+        "voter": "badger3161"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8948847759",
+        "voter": "badger3122"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8885607706",
+        "voter": "badger3142"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9108820208",
+        "voter": "badger3152"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8411338379",
+        "voter": "badger3172"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8925199177",
+        "voter": "badger3182"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8680409435",
+        "voter": "badger3192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8594916674",
+        "voter": "badger3143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8858198056",
+        "voter": "badger3173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8564484466",
+        "voter": "badger3104"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8276297968",
+        "voter": "badger3134"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8683606438",
+        "voter": "badger3184"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8620611793",
+        "voter": "badger3115"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9094167417",
+        "voter": "badger3165"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8719715374",
+        "voter": "badger3185"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8781728658",
+        "voter": "badger314"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9016468724",
+        "voter": "badger317"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8754628196",
+        "voter": "badger3102"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8716056649",
+        "voter": "badger3103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8642970122",
+        "voter": "badger3125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8609078264",
+        "voter": "badger3183"
+      },
+      {
+        "percent": "3600",
+        "reputation": 0,
+        "rshares": "1383757253274",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2093729289",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "11069842155",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "47240597828",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53347836964",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "529669416151",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50628223074",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "87177804275",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2066448490",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "285128952159",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32152347662",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6190804275",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2268092631",
+        "voter": "alefernandez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "276756301049",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5195620390",
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4374490018",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5335777148",
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6824457191",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6887949260",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6284039437",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28957795188",
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8378230900",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "497469198",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52003248432",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5837807367",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3806797783",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166092958393",
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160643235057",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60562042587",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322313735791",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5529131224",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3374751710",
+        "voter": "orly"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "2306802186",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24660074212",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5836260007",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19226458378",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342755672893",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "251828480",
+        "voter": "murat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6150332058",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15365648590",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25035268804",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "314301027",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6934434149",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154741390656",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73450100987",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "561480099896",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2962435381",
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494660240",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "555157483",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "508820718",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15905492768",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214457049",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1256123540",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "626701245",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101872192",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60734261073",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5608128967",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31632983607",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646052407",
+        "voter": "timer-the-teemer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19899950500",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "664473119",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24466851846",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72123710901",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6392075053",
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14205588702",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38705026266",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503362754",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641753327",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "402973019801",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20834831521",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239794058",
+        "voter": "bertrandlarsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40854219207",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91926117",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3868894451",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43807930344",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4319373614",
+        "voter": "deadloop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2554645343",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194555411604",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37285057515",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7311548067",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3491503652",
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19871122291",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2896607843",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28543460231",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5469654172",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44957550735",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "32297662559",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "415527006",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6308071966",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33886796864",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16853611003",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1822860319",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275186674",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275598583",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159279578",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160178852",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91302559",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23812617244",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96785152044",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102801288",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36727269719",
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "940261675",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2598366417",
+        "voter": "marriedbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18100596106",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376683720",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42594716412",
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2725719548",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664191453",
+        "voter": "curator"
+      },
+      {
+        "percent": "8600",
+        "reputation": 0,
+        "rshares": "3023072933",
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "441466598",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236391913",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17988796915",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82681797",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2904570052",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "576651577",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512280280",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12259724017",
+        "voter": "youngkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152970347",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "116062982",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5505803812",
+        "voter": "sulev"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-115662469",
+        "voter": "emule"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123034077406",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45960416179",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090189555",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3258481751",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5192525040",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110594049844",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1075326746",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102667622",
+        "voter": "yulia98"
+      },
+      {
+        "percent": "4700",
+        "reputation": 0,
+        "rshares": "35213037108",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1378577681",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5164661053",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61911147",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63085782",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22900312138",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21687473969",
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3181752579",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25557164122",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "9763",
+        "reputation": 0,
+        "rshares": "16647443247",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2327473286",
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4178217960",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5543927005",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8291369593",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19051460504",
+        "voter": "bayareacoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7963549449",
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "437078703",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21043141156",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11099072108",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63472197",
+        "voter": "mamawoozy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115485663577",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5463070096",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1650566366",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61274515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "1600",
+        "reputation": 0,
+        "rshares": "36994693442",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77140211414",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2913370061",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "190598788",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63570195",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58467607",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11440310311",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43034424521",
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57914427",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23044255345",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57765027",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65288764",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74494304",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29004100192",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69130289",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3687519836",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51199976",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58653788",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255827992",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71309540",
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "254680718",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9490125894",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56726999",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1947948907",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59006436",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59000019",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "706565490603",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1488994709",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58555241",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6296644545",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104626278782",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "284837528",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14990672231",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55414210",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55396880",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55394920",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55406673",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55387660",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452630821",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3655759735",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "274397336",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9363681169",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7424154802",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9176628168",
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54991366",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "531925070",
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65832393788",
+        "voter": "justinlaak"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "21907603645",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77054215495",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73706708",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11298857233",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25514833584",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11575032175",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3203110252",
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8062501015",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56937117",
+        "voter": "disletti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80071335",
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "4508761861",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "179361341",
+        "voter": "onlyvoluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53853911",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2835472183",
+        "voter": "caleballen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663775549",
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4751652415",
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55845079",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4517701031",
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10198416327",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3009517183",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28207588875",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507401",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22620763423",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21173348443",
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4630419959",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55150378",
+        "voter": "thomas777young"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52836995",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76012855",
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1727489852",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180273650",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57084876",
+        "voter": "gabriellehughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52842496",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52505412",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52496656",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133209914",
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1456313438",
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45199910296",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50110893",
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16209819005",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63269642",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3944650249",
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113791291",
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5914987448",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8590642702",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52916909",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51812703",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389378512",
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1091417527",
+        "voter": "smisi"
+      },
+      {
+        "percent": "2200",
+        "reputation": 0,
+        "rshares": "3824759512",
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59219559",
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792520233",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51465774",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "279559670206",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52236265",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52230725",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2786340772",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54103263",
+        "voter": "skwidman157"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51922012",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1423442573",
+        "voter": "mcsvi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51830988",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350935961",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2556835195",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1514529911",
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "355019569",
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50377764",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376900580091",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57714808227",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45161623360",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "403009508",
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633626870",
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16295354133",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50933404",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1217183875",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3053880719",
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105399694",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "8900",
+        "reputation": 0,
+        "rshares": "8182004429",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62915469",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66596881",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52314834",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2039801166",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "5965037248",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503257893",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82403648",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "832147254",
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5004037720",
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10814629865",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50454901",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5015495901",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51238118",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51227561",
+        "voter": "battalar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50536471",
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50479027",
+        "voter": "sunlight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50351738",
+        "voter": "aschwin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4034354736",
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117880628",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3842413697",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66534263",
+        "voter": "dharma.queen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76034330",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83022113",
+        "voter": "robermulima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80674477",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154501261",
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "385757858",
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159723319",
+        "voter": "ctu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1522634311",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161849597",
+        "voter": "iberia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161693690",
+        "voter": "shadowproject"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161096439",
+        "voter": "bethsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194447487",
+        "voter": "james1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157706877",
+        "voter": "cybergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160845765",
+        "voter": "caseyneistat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151445352",
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160260561",
+        "voter": "rage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159387371",
+        "voter": "bosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156043541",
+        "voter": "disneypixar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159143891",
+        "voter": "reef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159062820",
+        "voter": "rule"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158732321",
+        "voter": "steemwallet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92121908",
+        "voter": "socialbutterfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124965692",
+        "voter": "modernbukowski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155378485",
+        "voter": "zendesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149788300",
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "539760886",
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157332453",
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153732097",
+        "voter": "ancapman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149602177",
+        "voter": "jahti"
+      }
+    ],
+    "author": "steve-walschot",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "# Are the upper rank whales just a bunch of scammers? I got involved in a debate yesterday with a user who believes they are. \n\nhttp://s3.amazonaws.com/thumbnails.illustrationsource.com/huge.102.514926.JPG\n\n### Let me break down just why he thinks they are, and how easy it is to assume this when following his logic.\n\n----\n\n\n\n# Statement 1: Having multiple accounts is considered scammy.\n\n\n\n> \"Big whales have created many alt accounts to suck the rewards away from the system\"\n\n\n\nIn fact, having multiple accounts was a requirement in the beginning of Steem. Way before the majority of us even knew what steem was. Most of the upper ranks have multiple accounts for obvious reasons; A witness account, a miner account, a blog account, and maybe some more accounts for whatever purposes. \n\n\n\nDid they create multiple accounts for fraudulent purposes? Simply put: No.\n\n\n\n# Statement 2: Stealing rewards from the platform.\n\n\n\n> \"Upvoting your own alt account with super whale powers is stealing money from steemit\"\n\n\n\nWe need to stop for a moment and look at what makes someone a whale. Those users are the very same users who invested their own time, money and resources in making steemit as we know today. Their investment is what most of us are chasing, the monetary reward by their huge balances. There is no such thing as stealing on steemit. Most of us joined here to make some rewards, just like the **early investors** did. Sure, having millions of SP on your account may be impressive, but it won't pay your bills. \n\n\n\nYet we assume whales are only here to share the rewards with any john doe making some introduction on steemit, however, if they upvote themselves, we start screaming it has to be a scam! Don't we all check the 'upvote post' check box upon submitting? Don't we all pray for a big whale to vote our content? \n\n\n\nHow do you justify the expectation of those guys investing everything they had, pouring money in a new platform, sharing everything with us, yet not receiving anything in return themselves but greed and envy? If some day, an anonymous person builds you a castle, just like that, for free, would you close the door on him if he asks you to have a coffee with you ?\n\n\n\nFrom my perspective, if a whale upvotes his own alt account, they are only rewarding themselves instead of you. \n\n\n\n# Statement 3: Voting patterns reveal scammy accounts.\n\n\n\n> \"Account X upvotes a post and within seconds 40 others do! SCAAAAAAAMMMMMM!!!\"\n\n\n\nSteem is a wonderful platform and blockchain. It even has this cool thing called **\"proxified voting.\"** Let me explain you some of the basics.\n\n\n\nEvery user can authorize another user to cast votes using his keys. We have a main curator, lets just call him @maincurator. All that @maincurator does, is scan steemit for new and good content. Now i don't have the time to scan 24/7 on new potential trending content, for whatever reasons. But i really like what @maincurator is doing, and his upvotes are mostly inline with what i like. I can authorize @maincurator to vote with my account using nothing but our own blockchain. Nothing scammy, no hocus-pocus. Just code.\n\n\n\nNow let's extend this, and 50 other users love what @maincurator does. This would mean, by every vote @maincurator makes, a total of 50 other users will cast their vote within the same second. What if @maincurator follows me, loves my posts, and upvotes every single post I make? It would show that all my posts are getting the same votes within the same time span.\n\n\n\nDoes this imply my account is a 'fake, scammy' account? No. Does this mean many of those accounts got created just to suck away rewards and upvoting my own posts? No.\n\n\n\n----\n\n### It is my belief this community is being poisoned by greed, hatred and envy from the new userbase towards the old userbase. \n\nPeople are actually accusing and investigating such simple actions like proxified voting because they rather believe in conspiracy theories and assumptions than taking a look at steemd and acting with knowledge. Even worse is that those users are assuming they have the knowledge.\n\nAt a slow pace, we'll see the intellect and childish behavior of bitcointalk appearing on steemit.\nIf anyone ever has doubts about anything, talk to this community instead of spreading rumors around.\n\n\n\n# Knowledge is king.",
+    "body_length": 4314,
+    "cashout_time": "2016-10-13T08:46:12",
+    "category": "steemit",
+    "children": 104,
+    "created": "2016-09-11T11:48:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"knowledge\",\"scam\",\"debate\",\"philosophy\"],\"users\":[\"maincurator\"],\"image\":[\"http:\\/\\/s3.amazonaws.com\\/thumbnails.illustrationsource.com\\/huge.102.514926.JPG\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T11:57:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 171804021373966,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2031.052 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "investigating-the-wale-scam-assumptions-above-knowledge",
+    "post_id": 921026,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Investigating the whale scam - Assumptions above knowledge.",
+    "title": "Investigating the whale scam - Assumptions above knowledge.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32488903849247",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1298993547649",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38642501010403",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2559375484760",
+        "voter": "simpson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173052576029",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7326216692438",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191868443924",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9333524132870",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1956064698749",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "624317613010",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4952993725420",
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039007994833",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "962425732243",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3101125372",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225327980518",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3764938590",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "690600205",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54329833113",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32327859355",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425189357557",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26287239651",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1661876136",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213713678",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2084239062405",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62056410763",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15820358065",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444274202211",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632065436036",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2718724053558",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1821027030",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1087977483833",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2489349893",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5880199687764",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "406100573753",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163930696090",
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11952017746",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "623009796",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114255089939",
+        "voter": "chainreaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "967681267",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7851901285",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "212266828968",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131564064858",
+        "voter": "team"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "48807720961",
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288231022",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "138323581213",
+        "voter": "chris4210"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "14796403307",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38490650011",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1840795653",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83710409543",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14797967454",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146347815988",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1579031296",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15617108700",
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7747023149",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22732782886",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2105681906",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337837195815",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31232898244",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "757181955812",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459952549",
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "262962866011",
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7584918683",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56781868577",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239335567062",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22687743059",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55111854558",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "755492570",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76937983304",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1419540456",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7173458731",
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2685934276",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "634415904849",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65803910629",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218290642465",
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23894590125",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39307813752",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11477689506",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3834752002643",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389685034683",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151936035302",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "6500",
+        "reputation": 0,
+        "rshares": "35750027466",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48150885418",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126958361529",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428112930",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13352502314",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19565655294",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16053649834",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2117599813",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "271437176072",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2879792051",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6319872011",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115999616054",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45128464069",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2743979895",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2883967098",
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17550246480",
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5588706172",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "4800",
+        "reputation": 0,
+        "rshares": "87540066230",
+        "voter": "marina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329019253742",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42081820791",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1070481921",
+        "voter": "gidlark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254364900",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34736143686",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19810118925",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "288636625887",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2929841623",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136127337739",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14533748384",
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "952705678",
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1246754700",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24969764155",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6917632695",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6639968318",
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8855531477",
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67721946738",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "512086268530",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3551688228",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554507630",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "622088048",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570249468",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160880392727",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1240333583",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41267573080",
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351788117",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15315160167",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1322598664",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17111691722",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4681072966",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6449589399",
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3096315218",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10807385753",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33639636820",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16106721139",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4414157547",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25447107111",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293775000598",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87796397320",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "357237636",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44195954192",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18733691323",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131039739025",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3863654810",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5531768448",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239397980",
+        "voter": "johannaparker284"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272203551",
+        "voter": "cryptomania"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "272002110",
+        "voter": "ashleybr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13263636801",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239146014",
+        "voter": "helenapeters051"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239098876",
+        "voter": "leoniestein3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234347855",
+        "voter": "alexandraberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239145342",
+        "voter": "susie4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239099436",
+        "voter": "sarp871"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239130763",
+        "voter": "sarpton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239509465",
+        "voter": "stefaniek42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239696086",
+        "voter": "kellystone6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239701207",
+        "voter": "kathise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239082038",
+        "voter": "tsarp4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239091094",
+        "voter": "oneandonly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239331957",
+        "voter": "ts888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238981330",
+        "voter": "juliaevans717"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2541852174",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239275051",
+        "voter": "cryptobrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239215370",
+        "voter": "julwern002"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238981841",
+        "voter": "jul762"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239344824",
+        "voter": "willpower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3082351842",
+        "voter": "febird"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "8755877882",
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3962393528",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393542795",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238817311",
+        "voter": "sunnyskies"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238765279",
+        "voter": "jeremybrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270411868564",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238847388",
+        "voter": "stevemitchell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238854943",
+        "voter": "jennifersteel807"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119763037",
+        "voter": "briantp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119401610",
+        "voter": "melinasanner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119397595",
+        "voter": "mrcryptocoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119531207",
+        "voter": "beckygee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119371426",
+        "voter": "nataschasielers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64522627042",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8081970110",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119353097",
+        "voter": "mykingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119112592",
+        "voter": "sourcandy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119181485",
+        "voter": "jack-f"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1003794429",
+        "voter": "krystox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18917841190",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119037272",
+        "voter": "wildflower3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119071978",
+        "voter": "jessyperk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119010633",
+        "voter": "betsyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119135632",
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118845448",
+        "voter": "lucypier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118862056",
+        "voter": "penelopek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118900255",
+        "voter": "jenniferchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118914326",
+        "voter": "rosiemckoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118930318",
+        "voter": "stacykeller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8474919553",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118846334",
+        "voter": "luisapenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119377197",
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118885999",
+        "voter": "abbybrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130149541",
+        "voter": "misseva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118775847",
+        "voter": "mandyrose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118832865",
+        "voter": "julesber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118805309",
+        "voter": "emily-s"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119060933",
+        "voter": "meetlisa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119196722",
+        "voter": "firedesire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120669807",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27657630617",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118853368",
+        "voter": "sammyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118797993",
+        "voter": "missclara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118815298",
+        "voter": "katiebell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118722719",
+        "voter": "evast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4663787411",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118819488",
+        "voter": "cassyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119604275",
+        "voter": "peacemaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118802816",
+        "voter": "chrism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118739098",
+        "voter": "dansteven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118783555",
+        "voter": "jackstiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118813749",
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119062497",
+        "voter": "tylermill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118773081",
+        "voter": "jacob-still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118749852",
+        "voter": "michaelpr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118880960",
+        "voter": "joshleon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118679777",
+        "voter": "mattgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80652231432",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118632683",
+        "voter": "andrew6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118616540",
+        "voter": "taylorcb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118750441",
+        "voter": "daniel-chris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118960267",
+        "voter": "timber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118561318",
+        "voter": "christopher7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118557498",
+        "voter": "williamger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118708222",
+        "voter": "alexander9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118543205",
+        "voter": "nilsbernsen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118579416",
+        "voter": "citruss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118605320",
+        "voter": "ryandavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118560736",
+        "voter": "david-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118575769",
+        "voter": "nickstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118513422",
+        "voter": "jamesab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118565669",
+        "voter": "johnbe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118540653",
+        "voter": "jonathan8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118498440",
+        "voter": "nathanburr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118529589",
+        "voter": "justusberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118548738",
+        "voter": "tedcook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118487471",
+        "voter": "jennyspeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118495263",
+        "voter": "bella4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118478585",
+        "voter": "samkk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118513185",
+        "voter": "annabellew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118449252",
+        "voter": "benjaminw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118467904",
+        "voter": "bitcoinpros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118379415",
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118399962",
+        "voter": "kevinbr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118447715",
+        "voter": "brandontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1478779307",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118326435",
+        "voter": "timothyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100131242",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118276121",
+        "voter": "james-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118353137",
+        "voter": "evanpeters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118345023",
+        "voter": "lukethompson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116485718",
+        "voter": "avleo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118337740",
+        "voter": "jackson5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118281800",
+        "voter": "robert-sn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214761882746",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "406308077",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118233062",
+        "voter": "luisstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118316787",
+        "voter": "lucasgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118250348",
+        "voter": "johnsnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118260671",
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "996235538271",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118182168",
+        "voter": "adriangreene"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118612745",
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118086477",
+        "voter": "michael-brown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118078202",
+        "voter": "franklyn0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118110881",
+        "voter": "timclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118031066",
+        "voter": "bryanpeters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19234718299",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688997871",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55647723694",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4506374345",
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11424595106",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696400833",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "571676546",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3820934326",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19696586244",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "2600",
+        "reputation": 0,
+        "rshares": "9964952332",
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18480910583",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "619638656",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1980568811",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "629160937",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574075822",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1071660744",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119767322",
+        "voter": "esqil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037668636",
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117657114",
+        "voter": "aishwarya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "544359710",
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "5600",
+        "reputation": 0,
+        "rshares": "14032792449",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2846913750",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18454014165",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457591730",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114404796",
+        "voter": "sandroieva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1588457502",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "4068045543",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116022432067",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110227366",
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1305194939",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9244548775",
+        "voter": "taker"
+      },
+      {
+        "percent": "4700",
+        "reputation": 0,
+        "rshares": "3742692054",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765260757",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14600132704",
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3795619054",
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15475401412",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83547862361",
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24592412278",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7742892072",
+        "voter": "cmp2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25072466391",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3801678787",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10656756393",
+        "voter": "mrs.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19758189330",
+        "voter": "essra"
+      },
+      {
+        "percent": "4700",
+        "reputation": 0,
+        "rshares": "29622647720",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1740239112",
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97436716",
+        "voter": "bajekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66261891",
+        "voter": "mr-anderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25208551261",
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1965200089",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6290623320",
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70099630715",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1291949856",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10368438493",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97118664455",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4765636568",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149835324593",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2058409213",
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62432789066",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8685969979",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099555508",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196342790",
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3509543381",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61746903",
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9238652193",
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4181286599",
+        "voter": "lgm-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12254250998",
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1228793177",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88468362402",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1911242984",
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51186720",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62305619",
+        "voter": "besmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119086239",
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6057209799",
+        "voter": "gonzo"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "243771797",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1379470909",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61387499",
+        "voter": "belohndichselbst"
+      },
+      {
+        "percent": "1600",
+        "reputation": 0,
+        "rshares": "2445838408",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81220654",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "596158753",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61268366348",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7802331627",
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85632413843",
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12508744135",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2560692758",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86288802547",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2030980979",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71768449",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2018264707",
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633578244",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "944616878",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62854980",
+        "voter": "erstklassich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13835790192",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391997751",
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11694781833",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "965087932",
+        "voter": "booky"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "3949973220",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60000454",
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "706576091",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1245866289",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53508471",
+        "voter": "indise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8841751428",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "801146103",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57896578",
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91098050158",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57818188",
+        "voter": "nwoinfowarrior"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1939186245",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57664781",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9905906393",
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15280466869",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "953833783",
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2483028724",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1790524620",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121905705",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7485783526",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "444723846",
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112478247",
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83514025",
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56782516",
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35841701617",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16583390231",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5670514670",
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59172099",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "612120792",
+        "voter": "frick"
+      },
+      {
+        "percent": "2000",
+        "reputation": 0,
+        "rshares": "72041846618",
+        "voter": "cornerstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56559977",
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6121203049",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55456872",
+        "voter": "gumer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3147348325",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68569991779",
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "431424422",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155943749755",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56774491",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6049896148",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "534249342",
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287913287",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26362283709",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103617011",
+        "voter": "illusiveman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2885182964",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5114828701",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53470504",
+        "voter": "jessicalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "350328059",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54990945",
+        "voter": "doudou252666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1079421644",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588256083",
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54636437",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22807637376",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56526555",
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3480826171",
+        "voter": "steemokto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2748591245",
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "1780736904",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53257299",
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890756",
+        "voter": "forklognews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5569248072",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2566774104",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52628456",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52573342",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52570928",
+        "voter": "cwb"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "6637319758",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69855627",
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52271094",
+        "voter": "okan31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363434619",
+        "voter": "soldier"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "6986378593",
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53096459",
+        "voter": "olisan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1646601994",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53048051",
+        "voter": "andibachi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "289256527",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5732660222",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60506836",
+        "voter": "verbal-d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51014644",
+        "voter": "marcel1965"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467018216",
+        "voter": "zombiedoll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309195494",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5191056765",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166222327",
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51319229",
+        "voter": "sskorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6138400862",
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1659673971",
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099542760",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57699557",
+        "voter": "aksinya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50756081",
+        "voter": "matts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50173916",
+        "voter": "steemboatmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3232659559",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51393104",
+        "voter": "buit1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50367720",
+        "voter": "baboyes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "450093003",
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80670418",
+        "voter": "adogslife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161158355",
+        "voter": "michael.collett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157609424",
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106050867",
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163802438",
+        "voter": "kolhoznik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160293199",
+        "voter": "kellychen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163311230",
+        "voter": "paras1432"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163194880",
+        "voter": "lovemyking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131094648",
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159822180",
+        "voter": "steemichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146964842",
+        "voter": "vera.platonova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162923354",
+        "voter": "elitklub"
+      }
+    ],
+    "author": "sirwinchester",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<h2><center>Yesterday, we held the first STEEMIT MEETUP in Hamburg, Germany!</center></h2>\n<p><center>I had announced that I will organize a Meetup a few weeks ago, and it's amazing how many people showed up!&nbsp;</center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadal/img_0780.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p>Some people have<strong> traveled across Germany</strong> to attend, and even one of the only <strong>German whales</strong> @pharesim turned up! It's crazy to think that we all just knew each other from Steemit, and gathered together to exchange thoughts and ideas.&nbsp;</p>\n<p>It was an amazing and very informative evening of chatting and exchanging with like-minded people.</p>\n<p>Steemit is already a great platform with an awesome community, <strong>but meeting and connecting with these users in real life is even better.</strong><br>\nI have spent so much time on Steemit these last few weeks, that it felt really great to talk to people who were doing exactly the same thing, and talk about everything that's happening on Steemit, as well as our plans and ideas.&nbsp;</p>\n<p>I had also invited some people that were very interested in the concept of Steemit, but still had some questions before getting started.<br>\nSo this was both an exchange for Steemit \"experts\", as well as an educational event for new Steemit users! Over 10 new people have signed up to Steemit after the event.</p>\n<p><br></p>\n<p>We started off with some <strong>presentations</strong> of fellow Steemers, then had a little <strong>Snack break</strong>, continued with some demonstrations and a <strong>Q&amp;A</strong> with @pharesim , and then we talked in a relaxed atmosphere with a small group of people <strong>until the early morning hours.</strong></p>\n<p><br></p>\n<h2>Here is a little video Clip to summarize the evening:</h2>\n<p><center>https://youtu.be/C6zjHmBLVes</center></p>\n<p><center><em>For everyone that's in Germany and can't watch this Video because of Gema, <a href=\"https://vimeo.com/181327884\">CLICK HERE to watch the video on Vimeo.</a></em></center></p>\n<p><br></p>\n<h3>The evening began with some presentations.</h3>\n<p>I started with a little introduction and telling the story of how I discovered Steemit.</p>\n<p><center><img src=\"http://im.ezgif.com/tmp/ezgif-1971665009.gif\"/></center><br>\nThen we heard @fabio and @aaronkoenig talking about Cryptocurrency, Bitcoin and Bitfilm, @mrs.steemit presenting her thoughts about Steemit and how to approach new members, Team @erstklassich talking about or motivational speaker project, and last but not least @pharesim doing a little whale Q&amp;A.</p>\n<p><br></p>\n<p><center><img src=\"http://picload.org/image/rrwdadrl/225516810_16824298408775479072.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p>@fabio , talking about how he discovered Steemit and his connection to cryptocurrency,<br>\nand<br>\n@aaronkoenig, explaining basic principles of Cryptocurrency, Blockchain and Bitcoin, and also his project @bitfilm (A film competition on Steemit)</p>\n<p><br></p>\n<p><center><img src=\"http://picload.org/image/rrwdaddl/226617159_7463757454871938376.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p>@mrs.steemit sharing her thoughts on Steemit and how she has approached new Steemit members,</p>\n<p>Team @erstklassich talking about our motivational speakers project and how that connects with Steemit,</p>\n<p>and @pharesim answering the questions that the audience had to a witness / whale!</p>\n<p><br></p>\n<p>Hearing these stories and views from various people was very interesting, and it was followed by some socializing and chatting.</p>\n<h2>Here are some more impressions from the Meetup:</h2>\n<p><center><img src=\"http://picload.org/image/rrwdaddw/img_0608.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdaddr/225524011_12364742947699769041.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadda/226613097_6355941482000593044.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadrw/225521560_7222838089252003561.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadri/225519178_3069428707073226626.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdaddi/img_0600.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdlagg/img_0690.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdldwp/img_0671.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadaa/img_0668.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdoida/img_0666.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><br></p>\n<p><br></p>\n<h3><center>I wish even more people could have attended the Meetup, connecting with Steemers in real life is such a great experience.</center></h3>\n<h3><center>We will definitely repeat this event, and have already agreed to stay in contact! Thank you to everyone that attended, it was great to meet you and looking forward to re-connecting soon!</center></h3>\n<p><br></p>\n<p><br></p>\n<p>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<br>\n- <a href=\"https://www.instagram.com/sirtonywinchester/\">Instagram -</a></p>\n<p><a href=\"https://www.facebook.com/groups/397766613731804/\">- Steemit FB Group -&nbsp;</a></p>\n<a href=\"https://steemit.com/@sirwinchester\"><img src=\"https://img1.steemit.com/0x0/https://picload.org/image/rrpgppid/followbtn.gif\"/></a>\n<p><em><strong>\u00a9 Sirwinchester</strong></em></p>\n<p><br></p>\n</html>",
+    "body_length": 5780,
+    "cashout_time": "2016-10-04T17:43:54",
+    "category": "steemit",
+    "children": 94,
+    "created": "2016-09-03T15:17:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"life\",\"photography\",\"meetup\"],\"users\":[\"pharesim\",\"fabio\",\"aaronkoenig\",\"mrs.steemit\",\"erstklassich\",\"bitfilm\"],\"image\":[\"http:\\/\\/picload.org\\/image\\/rrwdadal\\/img_0780.jpg\",\"https:\\/\\/img.youtube.com\\/vi\\/C6zjHmBLVes\\/0.jpg\",\"http:\\/\\/im.ezgif.com\\/tmp\\/ezgif-1971665009.gif\",\"http:\\/\\/picload.org\\/image\\/rrwdadrl\\/225516810_16824298408775479072.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdaddl\\/226617159_7463757454871938376.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdaddw\\/img_0608.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdaddr\\/225524011_12364742947699769041.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdadda\\/226613097_6355941482000593044.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdadrw\\/225521560_7222838089252003561.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdadri\\/225519178_3069428707073226626.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdaddi\\/img_0600.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdlagg\\/img_0690.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdldwp\\/img_0671.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdadaa\\/img_0668.jpg\",\"http:\\/\\/picload.org\\/image\\/rrwdoida\\/img_0666.jpg\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/picload.org\\/image\\/rrpgppid\\/followbtn.gif\"],\"links\":[\"https:\\/\\/youtu.be\\/C6zjHmBLVes\",\"https:\\/\\/vimeo.com\\/181327884\",\"https:\\/\\/www.instagram.com\\/sirtonywinchester\\/\",\"https:\\/\\/www.facebook.com\\/groups\\/397766613731804\\/\",\"https:\\/\\/steemit.com\\/@sirwinchester\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T19:00:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 131139680731101,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1746.343 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "first-steemit-meetup-in-hamburg-germany",
+    "post_id": 845131,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "First STEEMIT MEETUP in Hamburg, Germany!",
+    "title": "First STEEMIT MEETUP in Hamburg, Germany!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@sirwinchester/first-steemit-meetup-in-hamburg-germany"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56552146057",
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7407974462660",
+        "voter": "steempty"
+      },
+      {
+        "percent": "4600",
+        "reputation": 0,
+        "rshares": "7743922580184",
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14423169571983",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40461646370697",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "1400",
+        "reputation": 0,
+        "rshares": "9024654368742",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270934718663",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120823881116",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "903658154834",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "955547237819",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304707236256",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3717560623",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209125168098",
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4512963560",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836545296",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6988007861700",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1648795625161",
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "2590155272571",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64607818458",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64079611952",
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1992338387",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256356620",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39580133428",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452601473655",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1331198190646",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745373510191",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80690179844",
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1135475906992",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17701813434",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747044457",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "414357548",
+        "voter": "grumlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160257208",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2607869395086",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399850120693",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20695739170",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91827078269",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67474894872",
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345705172",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84752175156",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22534917345",
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3560867980",
+        "voter": "mazi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8289316407",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8549093805",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13832117218",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "875162057",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "554084160",
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50655692786",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3208539412",
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78056810253",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90344487995",
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15464522800",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "170836582467",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241453016290",
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24534315886",
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "489114702",
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2516602969",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81946124349",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485266432",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9897310096",
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5696495054",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2056130698",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "347538684630",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1985132858",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459952549",
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3342731574",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59223927709",
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "603366563",
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20201603994",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57937290943",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23511967149",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1192571560",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "223682916687",
+        "voter": "stino-san"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1787431173",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "371808665",
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3085996565",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29602129325",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "421703362290",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "570783738",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45416460571",
+        "voter": "pixellated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18898061785",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254584445613",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12013107301",
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40287404686",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365694018",
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11260827752",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "309925863",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6799149594",
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379019004",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151933693977",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231631602196",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339982051793",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50737326005",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76218554853",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4356049611",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8770878211",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6250725075",
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1486037286",
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4794047234",
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21377142974",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135526440615",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696282704",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2108324979",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151313598203",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191362456407",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1487612496753",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23705317509",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112950429384",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240146584523",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46163941246",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "356509174",
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8413352005",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12772401769",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59607501207",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24845976067",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59296970731",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234933448",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74131257427",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3124603257",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "188239143185",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52093500846",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "299499765807",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4237212015",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39865290374",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4804447101",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122032656334",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7756851652",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10101627148",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132655071824",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213390961525",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10295818487",
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1285715500",
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322495553",
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "149731266",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1926175201",
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53506579516",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12408616589",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "486652600963",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10584865103",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3610613523",
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76946377242",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14091345831",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7725614667",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15305263755",
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5124085338",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393022921",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "516433597",
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3320614763",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187770538787",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4876469889",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97667262071",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1509601460",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38214691392",
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8479287635",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51605156715",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77914375364",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247320271",
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9037187000",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10168306524",
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2210167101",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74715503526",
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240222938",
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594203592",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17310974719",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "270329604",
+        "voter": "astorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225794427",
+        "voter": "chris0502"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20755384335",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40253682612",
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6775073251",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120620705591",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373524020",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5600683141",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12972669244",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13846050753",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2415655330",
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1463600004",
+        "voter": "slocum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38295325599",
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424094754",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196293057448",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322651547057",
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14306641323",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1462310422",
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7167353076",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2324876192",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8983200296",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70427611427",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2424409113",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25628695064",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4830973273",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "266607399",
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117695718",
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9416293870",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207767589679",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "780032261",
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4960761826",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "452064608",
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10907428587",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156827413",
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20531175873",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702425502",
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225878684",
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172444925",
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27072053846",
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111147984",
+        "voter": "ryland.townsend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29014024080",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4491631626",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11220431469",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1201523852",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59673355",
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5637635502",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159797889",
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946313851",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23830043508",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8097262355",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2589493888",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1011196107",
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "513266800508",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28746462244",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32699512403",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2266924190",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "823550089",
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "698557363",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1291152324",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14436760417",
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11737514005",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113446972",
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61274515",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8958644029",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2442169380",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63412334",
+        "voter": "bayern000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53662708495",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7679228543",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "229421947",
+        "voter": "naifaz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-61439588",
+        "voter": "gost111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5328695539",
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61400550",
+        "voter": "mrdsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1934306097",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54984896",
+        "voter": "decred"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-64218845",
+        "voter": "johnhtims"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54969817",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3733986684",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4916474731",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77430111",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "537557601",
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69848769518",
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59723329",
+        "voter": "blubeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5475203821",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62279229",
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120171572",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109008307",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2309373844",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "87991131377",
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3574312402",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53588479",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55945663",
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17973584280",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "925612937",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5448891234",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24215091196",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59008544",
+        "voter": "sterl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12403401241",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6718277898",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12002684748",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1499467547",
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11478715301",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56443564",
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24537271972",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236422965",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57911021",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67699642",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2212272906",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58155541",
+        "voter": "federicofragola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115043900",
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11145697310",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3614336062",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56679654",
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84754573",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55377253",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11501310305",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59216026",
+        "voter": "coolty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12307778400",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "688853443",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58818711",
+        "voter": "m12r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2125462805",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7076868967",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111770582",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4073388292",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1628427434",
+        "voter": "carlyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52320760",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58351459",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55620764",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2922171431",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59562278",
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19561952912",
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56042508",
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2305186237",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1250725025",
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "632649253",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56143941",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3309390130",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "666711159",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "189407661696",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55416927",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91152561",
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25813907256",
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4685765533",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73380620",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41760420240",
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52393318",
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "364794611",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71464098",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52597837",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "85301011",
+        "voter": "johnygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54232595",
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52192153",
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51871529",
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51814320",
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176715413",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52774418",
+        "voter": "walteraze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50592846",
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71251561",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2392485349",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8258021605",
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577247264",
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "807542498",
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80106845",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54672126",
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2360647659",
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1008239952",
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55523890",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66564537",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50996649",
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52763087",
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107344655",
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52291016",
+        "voter": "bkasante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51080933",
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1398865101",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50827953",
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "583302856",
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50238161",
+        "voter": "robertdpickett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155435909",
+        "voter": "duckfever"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "**Currently, there are two ways to get a STEEM Account.** The first is to sign up for Steemit with a Reddit or Facebook account, the second is to create an account using CLI_WALLET or Piston and have the account **permanently linked to your own account.**\n\nNeither option really allows you to be anonymous. Want to post controversial posts, or say something that would otherwise be illegal in your country? (e.g. poor free speech laws) Then Anonsteem is here to help.\n\n## Introducing: @anonsteem\n\n![](https://i.imgur.com/Y6QDDbD.png)\n\nPUBLIC INTERNET: [anon.steem.network](https://anon.steem.network/)\n----\n\nTOR: [steemlohs6air4h2.onion](http://steemlohs6air4h2.onion/)\n----\n\n----\n\n**So what actually is this?**\n\nAnonSteem allows you to purchase an account using either Bitcoin or Litecoin, and it will be created by the @anonsteem account within a minute of payment.\n\nTo protect your privacy, there are no IP logs, we have a TOR hidden service, and we allow you to remove your keys from our server as soon as you create the account.\n\n![](https://i.imgur.com/4aa6tR7.png)\n\nWe give you detailed instructions on changing your keys after creating the account, so you can be sure we're not just going to steal your account later on.\n\nHow long does it take to get an account?\n-----\n\nTransactions are scanned once a minute, and we accept 0 confirmation transactions. This means you'll most likely have your account within 1-2 minutes of sending the payment, regardless of which coin you paid with.\n\nCan I pay with STEEM?\n----\n\nWe don't accept STEEM directly, as that would ruin your privacy. However, if you REALLY want to pay with STEEM, you can send it via [ShapeShift (precise mode)](https://shapeshift.io/#/inputs/2) to the BTC or LTC address you get during payment.\n\nDoesn't this service mean more spambots?\n----\n\nWe don't have any plans to allow en-masse account creation. Every order has to be placed one at a time, with individual payments. Someone looking to create spam bots would most likely look elsewhere.\n\nAnonsteem is targeted at persons or groups looking for one, or a few accounts, with no social media link, and no third party tracking.\n\n**HELP - my transaction expired?** - The 15 minute limit is just to avoid us checking transactions for abandoned orders. If you've already paid, just PM me on SteemitChat, or send me an email (bottom of the anonsteem page) with your order ID and I'll reset the expiry.\n\nTry it out at [anon.steem.network](https://anon.steem.network)\n----\n\nDo you like what I'm doing? Follow me, and [vote for @someguy123 to be a witness](https://steemit.com/~witnesses)\n====",
+    "body_length": 2607,
+    "cashout_time": "2016-09-30T03:10:42",
+    "category": "steemit",
+    "children": 58,
+    "created": "2016-08-29T21:00:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"bitcoin\",\"litecoin\"],\"users\":[\"anonsteem\",\"someguy123\"],\"image\":[\"https:\\/\\/i.imgur.com\\/Y6QDDbD.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T22:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 119299865028571,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1520.911 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "anonsteem-create-anonymous-steem-accounts-without-social-media",
+    "post_id": 793668,
+    "promoted": "76.500 HBD",
+    "replies": [],
+    "root_title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28860514021",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391426812318",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14120650654273",
+        "voter": "summon"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "45117432600399",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6518146212756",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5854150614156",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20635756969526",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107349543567",
+        "voter": "sandra"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "396806428091",
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3093545084",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3755057743",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703501029",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53181933411",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49249621989",
+        "voter": "simba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1658107144",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213538362",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36659478835",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23799202672",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3341577368",
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1042255270764",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621948259",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "945666355",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2696250071528",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43444094205",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187994716064",
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30514007949",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287931874",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47041466386",
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4226306800",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1645694497",
+        "voter": "radium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "797026378393",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45649146893",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2053344329",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "326280015954",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7260345362",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3987500390",
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1802719482",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1666726555",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38634162189",
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "604174881",
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60049910",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9555139442",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71100938161",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10654121065",
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393603233",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13824695928",
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361661182474",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52331004969",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20054955418",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "449208322811",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393016225",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "903637957",
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1735608906",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3452699820",
+        "voter": "antizvuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7265953407",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686432621235",
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10822822886",
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2671348291",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52117602552",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4905665806",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11899711089",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8361700931",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148396198082",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3755253381",
+        "voter": "cultura.bitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83555712",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30927136868",
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86951139",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1230200541433",
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125119189797",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32924787942",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75390909382",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1788522523",
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10616441877",
+        "voter": "fogspam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24914308822",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10333666419",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1389920428",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128892647775",
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638960304",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16392109417",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20232798047",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231415584",
+        "voter": "m34ndy0u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258212335",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3843585250",
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2369871956",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152781835168",
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6880369404",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2494221700",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124361678",
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57168180522",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "455428831",
+        "voter": "bitlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109399116",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014720738596",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1769063236",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194724816539",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316752015",
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "898853087",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22280046707",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3042553840",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3915315366",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "520868206",
+        "voter": "kaykunoichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17319529998",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168036530",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1953557909",
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "791537526",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23315521183",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2403063642",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66201979",
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "211945178",
+        "voter": "elizabetemaia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39673780208",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31910148976",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33658993502",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53249660022",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2221322487",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "408370540949",
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1157211304",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "760484966",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62034512",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6761581030",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1923090938",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10342319613",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18100015422",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66743765623",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "961957559",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57638744",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "758193571",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61796362",
+        "voter": "drmedwurst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20794149830",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2283696091",
+        "voter": "milaoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1512118630",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5147101628",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67397958",
+        "voter": "filmaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "577231315",
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "979995628",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53401673",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109008307",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2008043269",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1205296670",
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58355386",
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52786041",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220036295",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3434338886",
+        "voter": "alisonleigh21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "883932853",
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55806010",
+        "voter": "garri74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12471794375",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3647430855",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89149760",
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1713289166",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5521112640",
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1583489986",
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329220009",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5153127499",
+        "voter": "sharingeverybite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40002373821",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54247105",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3885554239",
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11730632423",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23457317187",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14439599299",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7469779593",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1217128011",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86833062",
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "665747360",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55383044",
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "140120300",
+        "voter": "judyd100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53732571",
+        "voter": "jimking001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55887769",
+        "voter": "charzard10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71903196",
+        "voter": "ender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78381272391",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52540446",
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2094496802",
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157479257",
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186120161",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63856110",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369359852",
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53613080",
+        "voter": "abdology8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55317779",
+        "voter": "theblondepoptart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75074905",
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4121072004",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52905613",
+        "voter": "alkamyst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127717490",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1829632070",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51007656",
+        "voter": "maximsm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72253303",
+        "voter": "regeneration"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103650339",
+        "voter": "koalax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52369726",
+        "voter": "steemitmag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52300316",
+        "voter": "teryani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52205583",
+        "voter": "mahilu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50099463",
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50973868",
+        "voter": "tagonist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51250382",
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1238157813",
+        "voter": "robotev"
+      }
+    ],
+    "author": "shenanigator",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "## Please bear with me, this is going to be a long post, as I've spent 60+ hours on it over the past five days. If you read through it, you'll learn a lot!\n\nhttp://i.imgur.com/fnQJ8rVm.jpg\n\n**Follow me to get updates on my subsequent drafts!\u200b**\n\nLast week, @ned [posted about writing a Steem FAQ page.](https://steemit.com/steem/@ned/the-first-phase-of-the-steem-faq-and-wikee-consolidation-of-knowledge)\n\nI promptly contacted him volunteering to put the FAQ together. In case some of you Steemians are skeptical, here\u2019s proof I\u2019ve been in touch with him:\nhttp://i.imgur.com/u2Sf5rfl.png\n\nRather than having a 40-page FAQ, I\u2019d eventually like to see it organized something like this screenshot. I\u2019ll have to see if the Steemit team agrees with me.\nhttp://i.imgur.com/ByOQ9vdl.png\n\nAfter working on this nearly non-stop for the last five days, doing a lot of research, and a significant amount of writing, I finally have a very rough draft. \n\nMore editing is required. Some answers are too wordy, and others don\u2019t give enough information. Some questions have no answer at all. The document needs to have a consistent voice throughout, and I think it mostly lacks that. The organization needs works. Some questions are likely redundant, and other important everyday issues weren\u2019t even put on here, or so I presume. These are all legitimate criticisms, and I deserve those rebukes.  \n\n## Here\u2019s where you come in, it would be incredibly helpful if you could look for the following things:\n**- Is everything is factually correct?** Correct answers are more important than anything else; we don\u2019t want to spread misinformation. I certainly don\u2019t know everything and in my research, a significant amount of conflicting information was found.\n**- Are there any questions that need to be on here, but aren\u2019t?** I\u2019d rather have too many questions than too few because we can always delete some later.\n**- Please answer the questions that haven\u2019t been answered, (mostly in the Security and Technical categories).** My knowledge in these areas is lacking and best left to experts.\n**- Are any answers incomplete, misleading, confusing or wordy?**\n**- Suggestions to make them better?**\n**- Grammatical errors?**\n**- Suggestions for better organization? More categories? Sub-categories? Remove categories?**\n**- Particular questions moved to another heading?** \n**- Are any questions redundant?**\n**- Suggestions for more words in the \u201cSteemit Lingo\u201d section?**\n**- Do you have better, more concise answers?**\n**- Are there excellent Steemit articles we can link to for particular questions?**\n**- Any other advice?**\n\nI\u2019ll try to provide a list of just the questions from the FAQ in the comments, with the **unanswered ones in bold.**\n\n**Thanks in advance for your help!**\n\n\n\n# Steemit FAQ\nCompiled and partially written by @shenanigator with the help of a lot of people.\n\nHuge thanks to the following users, I noticed your names repeatedly appearing in the comments of @ned\u2019s recent post. Your questions and answers were extremely helpful!\n@alexgr - Seriously, your expert, well-written answers helped a ton! Thank you!\n@kakradetome - So many comments and thoughtful answers! Thank you!\n@innuendo - Asked quite a few questions I wouldn\u2019t have thought or even known to ask, thanks!\n@minion - Gave a lot of helpful answers and links, thanks!\n@samupaha\n@anduweb\n@timcliff\n@mrosenquist\n@team-leibniz\n@wingz\n@frystikken\n@bhavnapatel68\n@ultimus\n@elyaque\n\nAlso, thank you to everyone else who gave their time as well, it\u2019s appreciated! Sorry if I missed anyone who participated a lot. I probably did, since there were 450+ comments.\n\n\nAlso, thanks to everyone who had previous work I ended up linking to:\n@donkeypong\n@cryptoctopus\n@stellabelle\n@steemship\n@ash\n@steemrollin\n@wingz\n@shredlord\n@hisnameisolllie\n@dantheman\n@knozaki2015\n@nanzo-scoop\n@piedpiper\n@psylains\n@b0y2k\n@craig-grant\n@billbutler\n@algimantas\n@minion\n@steemitblog\n@liberosist\n@tuck-fheman\n@pfunk\n@artist1989\n@steemapp\n@jesta\n@g-dubs\n@firepower\n@jl777\n@alexgr\n@shenanigator\n\n\n# Steemit Basics\n\n## What is Steemit.com?\nFounded by @ned and @dan, Steemit is a blockchain-based social network that rewards users for posting and voting. The technology is advanced, but the proposition is simple: Blog, earn Steem.\n\n## Who are @ned and @dan?\nNed Scott, CEO @ned\nhttps://www.linkedin.com/in/nedscott\n\nDaniel Larimer, CTO @dan @dantheman \nhttps://www.linkedin.com/in/daniel-larimer-0a367089\n\n## What is the difference between Steem and Steemit?\nSteem is the name of the entire blockchain-based & censorship-resistant system. Steem is also a name for the system\u2019s value token (currency).\n\nSteemit, Steemit.com and Steemit, Inc. are all names for a privately-owned company and a website which offers people a secure way to interact with Steem, the system. Steemit is simply an interface to view the blockchain content of Steem.\n\n## Can I earn money on Steemit? How?\nBy sharing your original and unique posts that people want to upvote and providing value to others and the community. You can also earn rewards by curating - upvoting content that later becomes popular (although Steem Power is necessary to make money this way). Additionally, you can earn money simply by holding Steem Dollars. Currently, it is 10% APR, but the APR can change.\n\n## \u200bFrom where does the money come?\nThe currency of Steemit.com is Steem. The value of Steem comes from liquidity providers, investors, and traders on exchanges. The network continually creates new Steem, and some of the newly-created currency gets transferred to users who add value to Steemit.\n\nSteemit is a decentralized, incentivized content and curation ecosystem based on token seignorage with set and specific rules. The \"money\" at its core is like game tokens, distributed to creators and curators as rewards for successfully playing the game. What makes the system robust, is that the tokens, traded on markets, have a real-time value. The markets allow Steem Tokens to demonstrate their subjective value. This way, when one has One Steem Token, that person can know what the value of their token is worth to other people. It's similar to how someone playing a video game could obtain a rare item by playing the game. If they have the scarce item, then they could potentially sell it on video game item markets. Think of Steem as a game system for content, where the rewards people earn are video game tokens that have real market value and are readily tradable for Bitcoin and USD.\n\nFurther background for understanding is that Steemit is a website much like Reddit. However, it is different in that it pulls its information from a blockchain and cryptocurrency database called Steem rather than a centralized, private database. In this way, Steemit is also analogous to other blockchain-based businesses such as Blockchain.info, which pulls its data from the Bitcoin network. Regarding its difference from Steemit, Steem is a cryptocurrency and the blockchain database that rewards posters and voters for bringing new information to the community. It is an independent entity from Steemit. The Steem networks' awards paid to bloggers and curators is mining seignorage, and it works the same way miners are paid to secure the Bitcoin network. Rewards paid to bloggers do not come from Steemit Inc nor investment in Steemit Inc. There has been more than $3 million dollars worth of Steem tokens paid by the Steem blockchain to these creators and curators. Steemit does not and will not ever compensate the contributors of the Steem network for curating and creating content. Steemit is not a middleman to any of the blockchain processes, and the technology remains completely open source and transparent for anyone to audit and verify (Many software engineers are currently leveraging the open-source code to build their applications on Steem. There are more than sixty so far.). \nClaims that there is somehow a scam or that money is from coming from new investment in Steemit are categorically false. Rather, the natural inclination of the platform Steem is to continue building and improving an incredibly exciting social media network that is decentralizing the value of the web and genuinely betters the lives of thousands of people around the world.\nhttps://steemit.com/steem/@steemrollin/steem-where-does-the-money-come-from\n\n## I don\u2019t have the skills to create quality original content, why should I join?\nDon\u2019t sell yourself short; everyone is good at something. Okay, you don\u2019t write well. That\u2019s fine! Are you a good photographer? Start a blog displaying your photos. Do you know a lot about football? Start a fantasy football blog, giving your best predictions each week and become the expert people seek for advice on their team that week. Maybe you are interested in arts and crafts? Display the work you\u2019ve recently done. Video game connoisseur? Write reviews and tips for your favorite games. Can you make food look beautiful? Start a food blog!\n\nIf you honestly cannot think of anything you are good at or interested it, keep it in mind. Something will come to you. Until then, read the posts on Steemit and enjoy the great, fresh content! Even if you don\u2019t like to read content, you will probably benefit from having a Steem wallet because it gives you a fast, cheap and easy way to transfer money around the world without restrictions.\n\nFurthermore, Steemit gives you access to the earliest stage of this new exciting web technology and allows you to participate by doing things you may have already been doing! For example, posting and voting on content around the internet. Steemit is more than *blog to earn*. It\u2019s social networking. Come and enjoy your time on the internet, let your voice be heard and join others curating a great place for content and networking.\n\n## Why is the money there in the first place?\nThe money is there primarily because of high user growth. The 'Steemit' network effect is beginning to take hold, and speculators can see it growing further.\n\nThe key for Steemit\u2019s success is arguably to reach a critical mass of active users, allowing it to take advantage of the network effect. Once that happens, everything else will likely become a self-fulfilling prophecy. The Steem Dollar becomes a relatively stable currency supported from multiple sources of demand and supplied by the Steemit printing press.\nhttps://steemit.com/steemit/@wingz/instead-of-asking-where-the-money-comes-from-ask-why-it-s-even-there-in-the-first-place-digging-deeper-into-the-steem-economic\n\n## Is Steemit a scam?\nA scam usually starts with you having to give money to someone else. Steemit gives you money just for signing up and doesn't require you to invest anything if you don\u2019t want to; most users don\u2019t. Steemit does require effort, however. Write and share your unique and original content, if the community upvotes it enough, you get paid. How is that a scam?\n\n## How does Steemit, Inc. make money?\nSocial media companies can have tremendous market values without actually making any money because investors are forward-looking. Facebook, Instagram, Tinder and Snapchat, what did they all have in common? At one time, they were all losing massive amounts of money each year, while being valued in the billions of dollars. Why? Because they had a vast user base and investors know there are many ways to monetize a company with a large active user base.\n\n## Wait, there are multiple currencies in Steemit? What is STEEM, Steem Power, and Steem Dollars?\nAll three currencies in Steem fall under the umbrella of Steem Tokens. All three types of Steem Tokens perform a vital role in the Steem ecosystem. They are:\n\n**STEEM** - The most liquid form of currency in the platform. It should only be held for short-term trading because you will be diluted 50% per year due to ever-increasing supply. You may convert STEEM into Steem Power, Steem Dollars, or another currency altogether.\n\n**Steem Power** - Having Steem Power is similar to owning shares in a company. It is a measurement of how much influence you have on the platform and determines how much your vote is worth. It is important to note, when you decide to cash out your Steem Power (Power Down), you will get paid equal payments of STEEM for the next 104 weeks, taking two years to cash out your Steem Power completely.\n\n**Steem Dollars** - A smart contract promising you will get about $1 USD worth of Steem at the current market price. One Steem Dollar is always worth around One US Dollar, although it can vary a little. Steem Dollars must be turned into STEEM before they can be \u201cPowered Up\u201d into Steem Power. You may also convert Steem Dollars to another currency outside the Steem economy.\nhttps://steemit.com/steemit/@shredlord/steem-steem-dollars-and-steam-power-explained\nhttps://steemit.com/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy\n\n## If Steem consistently creates new currency, how much am I being diluted by holding STEEM, Steem Power, and Steem Dollars?\n\n**STEEM** - When the curve stabilizes, it will be a 50% dilution on Steem. On an annual basis, there will be 100% increase of Steem in existence. The numbers are higher now because Steem is still in distribution mode. \n\n**Steem Power** - Steem Power you hold increases at 90% per year, versus the 100% increase in Steem supply, so the dilution of Steem Power is the difference between these two. If you hold Steem Dollars and get zero curation awards, you will be diluted by 10% per year. Once again, the numbers are different now while Steem is in distribution mode.\n\n**Steem Dollars** - No dilution, rather they gain 10% interest per year. This interest rate could change.\nhttps://steemit.com/steemit/@hisnameisolllie/steem-dilution-rate-explained-currently-much-higher-than-you-might-think\n\n## Why won\u2019t Steem Dollars become inflated?\nThe Steem Backed Dollar will always have sufficient backing regarding Steem tokens to ensure a price near 1 USD. It does not matter if the Steem token is inflated or devalued. More Steem tokens will then be used to back the Steem Backed Dollar.\nhttps://steemit.com/steemit/@dantheman/steem-dollars-have-limits\n\n## What does the little number next to my name mean?\nThe number is your reputation score. It\u2019s a way of measuring how much value you have brought to Steemit. \n\nIt uses a log10 scale, meaning:\nA score of 30 is 10x better than a score of 20\n40 is 10x better than 30\n50 is 10x better than 40, and so on\n\n## What is Powering Up and Powering Down?\n**Powering Up** - If you wish to gain more influence in the network, you need it increase your Steem Power. Powering Up is the process of turning your Steem into Steem Power.\n\n**Powering Down** - If you have Steem Power, and wish to cash out, you can begin to Power Down. While powering down, the network has calculated your Vests, which are a stable measure of STEEM supply. The system will transfer 1/104 of your Steem Power, computed as Vests, to STEEM each week. One can continue to curate and earn curation rewards while powering down.\n\n## I just signed up, are there any steps I should take before I get started?\nYes! First and foremost, your account is worth money, so you should secure it.\nhttps://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n\nhttps://steemit.com/steemit-guides/@pfunk/a-user-s-guide-to-the-different-steem-keys-or-passwords\n\nSecondly, we urge you to read the rest of the FAQ, so you know the ins and outs of Steemit. It may seem like a daunting task, but we promise you will come out the other end a much more knowledgeable Steemian. Knowledge is power, and with your new superpowers, you are significantly more likely to achieve a high level of success.\n\n\n# Account Management\n\n## How do I improve my reputation score? What hurts my score?\nTo put it simply, add value to the Steemit community to improve your score. But harm the community and your score will suffer.\n- Create and post quality original content. It\u2019s all about quality, not quantity.\n- Engage in discussions.\n- Up-vote thoughtfully. Don\u2019t upvote junk, only vote up quality content.\n- Build your following.\n- Avoid bad behavior; it can get you flagged.\nhttps://steemit.com/steemit/@stellabelle/how-i-achieved-the-1-reputation-ranking-on-steemit-and-how-you-can-improve-yours\nhttps://steemit.com/steemit/@knozaki2015/steemit-has-introduced-a-new-reputation-score-what-is-it-and-how-can-you-boost-up-your-score\n\n## Do inactive accounts ever get deactivated? If so, how long until removal?\nThere is no such rule addressing that to this date, so currently once the account is created it can not be closed or deactivated.\n\n## Why are only the 20 most recent comments shown in a user\u2019s profile? If due to a technical limitation, will this issue be overcome?\n\n## Where can I see who I follow and who follows me?\nGo to your Steemit profile by clicking your avatar. Then click on the underlined \u201cfollowers\u201d (people who follow you) or \u201cfollowed\u201d (people you are following).\n\n## I come across a lot of posts I would like to save for later, can I bookmark a post within Steemit?\nBookmarking posts is not an option at this time, but until then, there is an excellent Google Chrome extension called Bookmark Manager that you may find useful.\nhttps://steemit.com/steemit-howto/@ash/two-great-chrome-extensions-i-use-to-save-and-manage-great-steem-posts\n\n## How can I auto-post my Steemit blogs to Twitter and Facebook?\nYou can set this up through ifttt.com. Step-by-step instructions:\nhttps://steemit.com/steemit/@ash/how-to-auto-post-your-steem-posts-to-twitter-fb-everything\n\n\n# Payouts\n\n## Why does my time until payout keep changing? When do I get paid?\nAfter you make a post, a 24-hour timer starts counting down. Every time you get upvotes, there is time added. The amount of time added depends on how much Steem Power the curator possesses. A small fish like @shenanigator might add a few minutes to your clock with an upvote, whereas a whale like @ned will add hours.\n\nNearly all first payouts occur within 48 hours of posting. If you get additional upvotes after the first payout, you will receive a second payout four weeks later.\n\nDistribution of rewards for all curation and comments happen at the first payout.\n\n## Why does my payout estimate keep changing when I\u2019ve received no new upvotes or flags?\nThere is only a select amount of Steem to be dispersed in a rolling 24 hour period. At any given time, the system is making an estimate of how much you will be paid based on what percentage of Steem Power-adjusted votes your post possesses.\n\nLet's pretend a piece of content is currently worth $5. But then, many other articles suddenly become highly-upvoted. The money to pay those popular posts needs to come from somewhere, so a portion of your post's value is reallocated to these newly-popular posts. Now your post may only be worth $4.\n\nAnother reason your payout will change is price movements in the seven-day moving average of Steem.\n\n## My post said I was going to get paid $500, why did I only make $377?\nThe value appearing on your post is not the amount of your payment. You, as the author, are guaranteed at least 75% of the total. As much as 25% goes to the curators (the people who upvoted your post).\n\n## How do reward distributions work?\nPayouts are separated into the author reward and the curation reward:\nAuthor is guaranteed at least 75%. Curators get up to 25%.\nAuthor reward are paid out:\n50% in Steem Dollars\n50% in Steem Power\nCuration rewards are paid out:\n100% in Steem Power\n\n### What determines how much of the payout goes to the author vs. curator?\nIt depends on how long after posting the vote was cast, using a linear function:\n- If a post is upvoted the moment it's posted, 100% goes to the author\n- If a post is upvoted 30 min after posting, 100% of the curation award goes to the curator.\n- Between 0 and 30 minutes, each moment that passes, more of the reward goes to the curator.\n- At 15 minutes it's a 50/50 split.\n- At 3 minutes, 90% goes to the author and 10% to the curator\n- At 27 minutes, 10% goes to the author and 90% to the curator\n\n### I\u2019m upvoting posts at the right time, why am I not getting any curation awards?\nCuration awards are based on the **square** of your Steem Power\nExample: \nBob has 10 SP, the square is 100\nJim: 100 SP, the square is 10,000\n*In this example, Jim has only 10 times more Steem Power than Bob, but Jim will get 100 times higher curation award than Bob, all other things equal.*\n- Double your Steem Power, get 4x the curation award\n- Quadruple your Steem Power, get 16x the curation award\n- Increase your Steem Power by 100x, get 10,000x the curation award\nhttps://steemit.com/steem/@shenanigator/re-asksteem-asksteem-can-someone-explain-steemit-payouts-20160817t073736913z\n\n\n## Steem rewards users for commenting and upvoting. Why not for sharing?\nBlogging Adds value. Commenting adds value. Upvoting (in the form of spotting good content quickly) adds value. If sharing a link is found to add value, it will probably be implemented as a function and incentivized.\n\n\n## Can I choose to be paid in 100% Steem Power?\nAt this time, it is not an option.\n\n## Now that I earned some Steem Dollars, what can I do with them?\nYou have a few options:\n- Visit a Steem marketplace (Note: Do any exist yet?)\n- Hang onto them\n- Cash them out\n- Buy STEEM\n- Power Up\nhttps://steemit.com/steemit/@piedpiper/so-you-just-earned-your-first-steem-dollars-now-what\n\n\n\n# Money\n\n## How can I invest in Steemit?\nInvesting in Steem Power is the closest thing to buying \u201cshares\u201d of a company, or in this case the Steem blockchain. Increase your Steem Power and you\u2019ll have more influence on the network. You have the option to invest your time to earn Steem Power by commenting, curating and posting. You also have the opportunity to make a monetary investment.\n\n## How do I get more Steem Power?\nIf you have Steem Dollars, you can convert them to Steem from your wallet. Once you have Steem in your wallet, click Power Up to turn it into Steem Power.\n\nIf you don\u2019t already have Steem or Steem Power in your wallet, you\u2019ll first need some Bitcoin or another cryptocurrency. You may purchase Bitcoin on various exchanges. A few popular Bitcoin exchanges are Coinbase.com, Circle.com, and Localbitcoins.com. Once you have your bitcoin:\n- Click the three horizontal lines in the top right corner of Steemit.com\n- Click \u201cBuy Steem\u201d\n- Send the amount you want to purchase to the address on the screen.\n\nHere are a few other tutorials on how to buy Steem and transfer it to Steemit:\nhttps://steemit.com/steem-tutorials/@psylains/steem-tutorials-2-how-to-buy-steem-and-transfer-them-to-steemit\n\n\n\n\n## How do I withdraw money?\nYou can withdraw money many ways. Here are step-by-step tutorials for several different options:\n\nSell Steem Dollars via Poloniex:\nhttps://steemit.com/steemit/@ash/steemit-how-to-sell-steem-dollars-via-poloniex-newbie-friendly\n\nTo withdraw Steem Dollars to a bitcoin address check out this video:\nhttps://steemit.com/steem-help/@piedpiper/how-to-withdraw-your-steem-dollars-in-less-that-a-minute\n\nConvert Steem Dollars to bitpay debit card (USA ONLY):\nhttps://www.youtube.com/watch?v=_Rlf23gAGAw\n\nConvert Steem Dollars to WIREX debit card (USD EURO & GBP Supported)\nhttps://steemit.com/money/@b0y2k/convert-your-steem-dollars-to-physical-money-to-spend-or-withdraw-anywhere\n\n\n\n## Why should I power up and not cash out? \nEveryone has different priorities. Some may want to power up to increase their voting influence and curation awards. Others may want to cash out. It\u2019s strictly a personal choice.\n\n\n## Is it true that payout money is coming from new investment in Steem?\nIt is highly misleading to say so. When you cash out, you effectively decrease your investment in Steem. At the same time, an individual increases his investment in Steem. Therefore, it is not fair to only mention the \"new investment\" and skip the fact that simultaneously a current investment ceases to exist.\n\nPayout money is always in the form of Steem tokens. For your convenience, and to hedge against price volatility, those tokens are packaged as Steem Dollars.\n\nThese tokens have value since they are like shares in an enterprise which has a real market value. When you cash out, you sell those tokens (shares), and somebody else buys them from you. Therefore, these are just shares of a company changing hands: one person exits, the other takes their place.\n\nLet's consider an example: If Mark Zuckerberg wanted, he could reward the most popular Facebook pages with shares of the Facebook. Those users could then cash out by selling their shares, and somebody would surely buy them. This hypothetical scenario is akin to the daily happenings in Steem.\n\n\n## How can I make a profit by powering up?\nPowering up does not ensure that you will automatically benefit. Profiting is contingent on how the price of Steem changes over a given period as well as how much Steem Power you earn as a curator.\n\nPowering up (converting Steem to Steem Power) allows one\nIncrease their voting power and claim curation rewards\nProtect against dilution (90% protection compared to the running inflation rate)\n\n\n\n## How do I send money to another user?\n\nClick on your avatar to get the drop-down menu, select \u2018wallet.\u2019\nClick the down arrow where your Steem Dollars are displayed\nIn the drop-down menu click \u2018Transfer.\u2019\nIn the box \u2018To\u2019, type in the username of who you want to send the Steem Dollars\nType your password to authenticate\nCheck your history to confirm your transfer\n\nhttps://steemit.com/steem/@steemrollin/steemit-how-to-send-another-user-steem-dollars\n\n## What are fees for transferring money between Steem\u2019s three currencies and between other users?\nThere are never any fees within the Steem network.\n\n\n## What is the \u201cdistribution phase\u201d of Steem Power? \nThe purpose of a distribution phase is to get Steem currency in a large number of peoples\u2019 hands. During the distribution phase, Vests are compounding at 3% per week, so if you calculate the cost per Mv (million vests) and see a significant dip, then and only then would waiting to purchase Steem Power make sense.\n\nHowever, if you have to wait for 1 month for a 10% dip, it would have been better to pay 10% more and get 4 weeks of 3% gains, compounded.\n\nIf your timeframe of waiting to purchase Steem Power is 3 months, then you need a 42% drop in price just to break-even against this increasing ratio of steem_per_mvest.\nhttps://steemit.com/steem/@jl777/re-alexgr-investing-long-term-with-steem-time-as-an-overlooked-parameter-20160805t120032075z\nhttps://steemit.com/steem/@alexgr/investing-long-term-with-steem-time-as-an-overlooked-parameter\n\n## If I invest x Steem Power and do not curate or post content, how much will I have at the end of the \u2018distribution phase\u2019 compared to a similar timeframe after the dispersal period?\n\n## What happened to the liquidity incentive rewards, were they allocated elsewhere?\nIt is apparent that the liquidity reward systems are not achieving their desired effect. We have disabled these rewards until we find a better solution, which should reduce the amount of liquid STEEM on the market.\nhttps://steemit.com/steem/@steemitblog/steem-version-0-12-0-released\n\n## If I\u2019m inactive, or the total amount of Steem Power Vested is below 90%, do I lose VESTS or are they stable?\n\n## Does the amount of Steem Power held by an account have a DIRECT impact on the visibility of its posts?\nIf the account owner votes up her post, then yes. It will add some money to the payout, which has the effect of making the post more visible.\n\n\n# Posting\n\n## Will I earn money by sharing links?\nSteemians tend to support original content because it\u2019s what provides the most value to users. If you are only posting links, you probably won\u2019t make money. In fact, you will likely get flagged as \u201clink spam.\u201d However, if you have valuable insight to add to an article, and you give credit to the proper source, there is a much better chance the community will value the post.\n\n## How do I add pictures and videos to my blog posts and comments?\nSimply post the image or youtube link inside your post or comment.\nhttps://steemit.com/steem/@billbutler/adding-images-to-your-steem-posts\nhttps://steemit.com/steemitguide/@algimantas/detailed-guide-how-to-add-videos-in-steemit\n\n## Does it cost anything to post comments or content?\nNo, it is free to post on Steemit.com.\n\n## Can you post unlimited comments and blog posts, or is it limited in some way?\nThere is a 20 second with time in between comments to prevent spam comments.\n\nNo hard limits exist regarding the number of blog posts a user may share, but if other users feel you are spamming, you will likely start getting flagged.  \n\nFurthermore, each account can post four blog posts per day and get 100% payout for each one. If you post five blog posts in a day, it drops the payout for all five to 65% of the amount it would have otherwise paid.\n6th = 45%\n7th = 33%\n8th = 25%\nhttps://steemit.com/steem/@steemitblog/steem-version-0-12-0-released\nNote: The \u201cChanging Payout Periods\u201d section of the above link is no longer valid.\n\n## What are Steemit\u2019s policies on plagiarism and spam? \nPlagiarized posts and spam are not allowed and will be flagged by users. If you are posting someone else\u2019s content, you must give them credit!\n\n## How do I delete one of my blog posts?\nYou cannot remove a blog post; you may only edit them. The blockchain permanently records every post and comment.\n\n## I see people using high-quality photos that clearly are not their own. Is it okay to use random pictures from the internet?\nNo, it is not allowed. You may, however, use photos from \u201cfree image\u201d websites such as: \nPexels.com\nStockfreeimages.com\nUnsplash.com\nPixabay.com\nFreeimages.com \n\n## For how long after posting can I make edits?\nYou may edit your posts until the first payout occurs.\n\n## How do I format a post if not using the editor?\nYou can format blog posts and comments by using HTML and Markdown. Here are basic commands that should be helpful to you:\nhttps://steemit.com/writing/@minion/professional-tutorial-for-post-formatting-both-for-beginners-and-advanced-users\n\n## What is @Cheetah? \n@Cheetah is a bot that scours Steemit for plagiarized content. Cheetah will not flag you, but it alerts other users to look into it further.\n\n\n# Voting\n\n## Why are my blogs posts not making very much money? They are higher quality than a lot of the \u201cTrending\u201d posts I see.\n\nVoting patterns may be affected by the social connections a blogger has. The more \"connected\" a blogger is, the better his chances to get more upvotes. Bloggers with a bigger history or more connections will tend to have more upvotes even if their content is worse than others with less connections.\n\nImagine a scenario, if you will, where you share something on facebook and it gets 10 likes from your 100 friends. Someone with 1000 friends may get 100 likes for posting the exact same thing.\n\nAnother explanation is that a successful blogger may have been doing very well for a long time and as thus he may be the favorite choice for upvoting by the so-called \"whale\" voters. This kind of \"relation\" usually takes some time to build as an author has to prove himself that he is able to deliver quality content on a consistent basis.\n\nFor strategies to improve your long-term success:\nhttps://steemit.com/steemit/@shenanigator/what-william-learned-the-hard-way-your-strategy-may-be-crippling-your-steemit-potentential\n\n## My comments rarely earn any money, how can I change that?\nThere are many things that make for popular comments, but some of the best tips are:\n- Spot soon-to-be popular posts and strike early.\n- Praise the post if you enjoyed it.\n- Highlight a point the author made and respond.\n- Add useful information, correct something or ask a question.\n- Aim for one paragraph in length\nhttps://steemit.com/steem/@donkeypong/writing-popular-comments-top-5-tips-for-posting-an-honest-high-paying-reply\n\n## Does my reputation score affect the amount my vote is worth?\n\n## What are the legitimate reasons for flagging a post?\nYou **can** flag a post for: Plagiarism, Verbal Abuse, Deceptive Tagging, Spam, Threats, etc.\nYou **cannot** flag a post for: Disagreement, Political Incorrectness, Envy, Retaliation\n\nIf you flag a post, you should leave a comment saying the reason for the flag.\n\nIf you come across a post that needs to be flagged, please post it in the chat room:\nhttps://steemit.chat/channel/steemitabuse-classic\n\n## How is the value of a user\u2019s vote calculated?\nThe value of a single person\u2019s vote varies based on: \nSteem Power - More Steem Power means a higher vote weighting\nVoting Power - With each vote you cast, your voting power decreases. It will regenerate from 0% in 5 days. Keeping your total number of votes in the 20-40 per day range will maximize your voting power.\nCurrent value of a post - If your vote is worth $0.02 on a new post, it\u2019s worth about $0.45 on a post already worth $250, or several dollars if the post is already worth $1000s.\n\nTo find out how much your vote is worth, check out this tool:\nhttp://steemdollar.com/dollar_per_vote.php?name=\n\n\n## What is Voting Power?\nTo incentivize users to only upvote quality content, your voting power percentage (vote worth) will decrease with each vote and regenerate over time.\n\n## Does flagging use up my voting power?\nYes, it does.\n\n## Does flagging bring any reward to the curator?\nNo, it doesn\u2019t.\n\n## How are curation awards distributed?\n**Depends on amount of time that has passed when the upvote is made:**\nIf a post is upvoted the moment it's posted, 100% goes to the author.\nIf a post is upvoted 30 min after posting, 100% of the curation award goes to the curator.\nBetween 0 and 30 minutes, the amount going to the author decreases linearly.\nAt 15 minutes it's a 50/50 split.\nAt 3 minutes, 90% goes to the author and 10% to the curator.\nAt 27 minutes, 10% goes to the author and 90% to the curator.\n\n**Post value before and after you upvote**\nIf the post has a low value before you upvote it and it later becomes popular, you are rewarded very well for discovering valuable content.\nSteem Power you possess\n**Curation awards are based on the square of your Steem Power**\n**Example:** \nBob has 10 SP, the square is 100\nJim: 100 SP, the square is 10,000\nIn this example, Jim has only 10 times more Steem Power than Bob, but Jim will get 100 times higher curation award than Bob, all other things equal.\nDouble your Steem Power, get 4x the curation award\nQuadruple your Steem Power, get 16x the curation award\nIncrease your Steem Power by 100x, get 10,000x the curation award\nhttps://steemit.com/steem-help/@liberosist/mind-your-votes-an-investigation-and-guide-to-maximizing-your-curation-rewards\nhttps://steemit.com/steem/@steemitblog/latest-curation-reward-solution\n\n\nGiven all these curation rules, what is the best time to vote?\nUnless you\u2019re a whale, simply vote when you come across something you like.\n\n## Can I get curation awards for voting up comments? Does the same 30 minute rule apply?\n\nYes, you can get curation awards for upvoting comments. No the 30 minute rule does not apply. \n\n\n\n# Security\n\n## How secure is Steemit?\n\n## How can I keep my Steemit account secure?\n**Save your master key and keep it somewhere safe**\n**Log into your account using:**\n- Posting Key (Recommended, can be used to upvote/comment/post)\n- Active Key (All permissions of posting key + Ability to transfer funds)\n**Change your key frequently**\n**Be mindful of third parties claiming to keep your keys safe. They may not be safe and could even have malicious intentions.**\nhttps://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n\nhttps://steemit.com/steem/@ash/steem-how-to-create-store-and-change-a-secure-password\n\n## How do I make my active key and owner key different from my posting key? Does the GUI allow this?\n\n## Is it safe to use my account while on private wifi?\nNo, not without first taking additional steps. To prevent someone from hacking into your account while on a public wifi network, you should use a service like Private Tunnel VPN. Also, if you\u2019re only posting, commenting and voting, log in using your Posting Key.\nhttps://steemit.com/steemit/@ash/how-to-steem-it-secure-in-the-wild\nHow are private keys used in Steem?\nhttps://steemit.com/steemit-guides/@pfunk/a-user-s-guide-to-the-different-steem-keys-or-passwords\n\n## How do I use private keys properly and safely?\n\n## What is the relationship between password and private keys?\n\n## I heard Steemit got hacked and some people had their money stolen. How did that happen? What has been done to prevent it from happening again?\n\n## Is Steem, Steem Dollars, or Steem Power insured in the event of a hack or if someone takes over my account?\nNo it is not. If your money is in Steem Power, however, it is impossible for a hacker to take out more than 1/104 per week.\n\n## How do I set my recovery account? \n\n## How does the recovery process work? What should I do first if I discover my account has been compromised?\n\n\n\n# Technical Questions\n\n## Can I mine Steem? How do I start?\nYes, you can.\nhttps://steem.io/documentation/how-to-mine/\nhttps://steemit.com/steem/@tuck-fheman/how-to-mine-steem-in-windows\n\n## Steem is 100% mined? How is it possible for me to mine something that is already wholly mined?  \n\n## In Bitcoin, the supply only increases when someone mines new coins. If Steem was already fully mined, how does the supply of Steem continue to grow?\n\n## What is the best rig for mining Steem?\n\n## What are Steemit witnesses?\nTechnically, there is no such thing as a Steemit witness. But rather a witness for the Steem blockchain. The Steem blockchain requires a set of people to create blocks and uses a consensus mechanism called Delegated Proof of Stake, or DPOS. The people delegated to create these blocks are called witnesses.\n\nThey are voted on by owners of Steem accounts, using a steem-power weighted system, so they are some of the most trusted members of the community, as well as being tech savvy. They are expected to keep a node running every second of every day.\n\nBlocks are produced in rounds, 63 seconds per round and 21 blocks per round. Every round, the top 19 witness accounts are delegated to generate a block, a backup witness produces one block, and the last by a miner.\n\nIn addition to producing blocks, witnesses are also responsible for providing a price feed of the US dollar value of Steem as well as setting the Steem Dollar interest rate. As an incentive to do all their required tasks, the system rewards witnesses one Steem for each block they produce.\nhttps://steemit.com/steemit-guides/@pfunk/a-full-steemit-user-s-guide-to-steem-witnesses\n\n## Where can I vote for witnesses?\nhttps://steemit.com/~witnesses\n\n\n## How are witnesses expected to behave?\nWitnesses are employees of the blockchain. They are responsible for critical jobs and paid very well. Therefore, the community should hold witnesses to the highest of standards.\n**A well-qualified witness should have satisfactory answers to all these questions:**\nWhat makes you qualified for the job?\nAre you reliable?\nWhat kind of hardware are you using?\nYour internet connection?\nIf things break, how fast you can fix them?\nHave you prepared to serious threats like coordinated attacks against all Steem witnesses at the same time?\nAre you helping other witnesses?\n\n## Is Steemit open source?\n\n## Is there an API?\n\n## How do I use cli_wallet?\nSteem Command Line Guide - A Learner\u2019s Guide to Using cli_wallet\nhttps://steemit.com/steemhelp/@pfunk/a-learner-s-guide-to-using-steem-s-cliwallet-part-1\n\n## What is available for developers interested in Steemit? \nhttps://github.com/steemit/steem\n\n## Who are the Steemit developers? How big is the team? What is their background? Who is doing what?\n\n\n\n# Other Topics\n\n## Where can I purchase official Steemit merchandise?\nThere is no official merchandise yet, but it is easy to make Steemit gear on zazzle.com. For instructions, check out this link:\nhttps://steemit.com/art/@artist1989/custom-steem-and-steemit-art-and-instructions-on-how-to-create-your-very-own-steem-steemit-gear-t-shirts-coffee-mugs-etc\n\n## What can I post about? Is anything banned?\nProhibition of content from the blockchain is not possible; at most, removed from the front-end layer, Steemit.com.\n\nThe lack of clarity may be a result of non-uniform laws across the globe. What is legal in one country may be illegal in another. Entire networks or mail providers are affected in some cases where a particular government bans their operation. The emergence of a clear-cut \"guideline\" may not happen for years to come, if ever, in part because of the global differences in their legal framework. Also, in part due to the difficulties involved in enforcing anything at the level of the blockchain (which is not very desirable).\n\n\nWhile trying to remain uncensored, as a US company, Steemit, Inc. may be required to remove some things from Steemit.com, such as child pornography. \n\nSteemit is intended for a general audience and, as a result, some Steemit Content may discuss or depict adult-oriented topics. We realize that this content may not be appropriate or desirable for some of our readers depending on their current location, age, background or personal views. As a result, we mark this content as Not Safe For Work (\u201cNSFW\u201d).\n\nMarking Steemit Content as NSFW does not prevent you from being able to access this content but, instead, helps you make informed decisions about the type of content you view on Steemit. \n\n\n\n## Am I allowed to have multiple Steemit accounts?\nYes, you may have multiple accounts.\n\n## What is a blockchain?\nA public ledger of all transactions ever executed. It is essentially a distributed database where pieces of information are added in a sequence of small blocks, hence the name \u201cblock-chain.\u201d\n\n## How is Steem different from Bitcoin?\nOn a technical level, the two cryptocurrencies are running different technologies for their blockchain. Based on \u201cGraphene\u201d Steem uses a system of \u201cWitnesses\u201d to carry out the bulk of the work involved in maintaining the blockchain.\n\nRegarding economic differences, Bitcoin has a maximum number of coins at 21 million and a relatively low inflation rate. Steem is different in that regard with no maximum number of the amount of possible coins in existence as well as built-in dilution protection in the form of Steem Power. Steem users can also avoid volatility through the existence of the Steem-Backed-Dollar (SBD or SD), a token which is floating in value around the $1 mark. Additionally, SBDs currently pay 10% interest.\n\n## Is there a Steemit mobile app?\nNot yet. There is, however, a mobile app called \u201cSteemy\u201d in development by a 3rd party.\nhttps://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem\n\n## What are minnows, dolphins, and whales?\nFrequently users give fish names to others based on the amount of Steem Power they hold. Not STEEM, not Steem Dollars, just Steem Power. Henceforth, fish in the Steem Tank will be quantifiable:\n**<250 SP** = **Plankton**\n**250-10k** = **Minnow**\n**10k-30k** = **Baby Dolphin**\n**30k-100k** = **Dolphin**\n**100k-300k** = **Orca (Killer Whale)**\n**300k-600k** = **Humpback Whale**\n**600k-1 Million** = **Fin Whale**\n**1 Million+** = **Blue Whale**\n\n## Why aren\u2019t whales voting up my posts?\nIt\u2019s impossible to answer that question in general, but there are some things you can ask yourself:\n- Am I always writing quality, original content?\n- Am I providing value to the community with my content?\n- Am I steadily building up a following with each post?\n- Am I learning from my mistakes?\n- Am I learning from others\u2019 successes?\n- Am I actively engaging in discussions and providing a unique perspective?\n- Am I offering to help other Steemit users when they ask for help on projects?\n- Am I starting/joining/participating in local Steemit meetup groups?\nIf you are doing all the above things, it is only a matter of time before your content starts getting upvoted by whales.\n\nThis website shows you if the biggest of whales are currently active:\nhttp://catchawhale.com/\n\n## What are Vests?\nTo put it simply, Vests are another way of looking at Steem Power. Steem Power is essentially Steem held in a fund. Vests are Shares in that fund.\nhttps://steemit.com/steem-help/@hisnameisolllie/what-are-vests\n\n## Which way is better to format a post for SEO purposes, HTML or Markdown? Does it matter?\n\n## Can I receive notifications when I get votes?\nCurrently, there are no options to receive notifications directly on Steemit.com. The third-party application https://steemstats.com/#/ has an option to set up notifications on your computer.\n\n## Why can I only add five tags?\nSteemians can merge many tags into one; therefore they are redundant. Also, it helps prevent spam.\n\n\n## What should I know about bots on Steemit?\nBots are like dogs, some are good dogs who have good owners, others are not. Some are stray dogs; others have a leash and a caring owner. Who's the owner? A caring one? As every caring owner, he will always try to \"correct\" the bad owner's behavior and teach him how to treat his dog well. Bots are here to stay, the only thing \"we\" must do is that they are proper vaccinated, checked by the vet regularly, well cared for and are not running wild without a leash.\nBenefits:\nThey support \"low SP\" members\nThey fight bad bots by getting better\nThey \"hunt down\" Plagiarism\n\n## What is the difference between Proof of Work and Proof of Stake?\nProof of work - Miners solve a complex mathematical problem. The miner that solves the problem first adds the block to the blockchain. The network rewards the miner for doing so.\nProof of stake - Requires ownership of the cryptocurrency. The more cryptocurrency you own, the more mining power you have. Benefits: eliminates the need for expensive mining rigs, runs on a tiny fraction of the power, and it forces miners to have a stake in the network.\n\nhttps://steemit.com/cryptocurrency/@g-dubs/more-on-the-nxt-cryptocurrency-proof-of-stake-vs-proof-of-work\n\n## Can users connect to and use Steemit from countries which have national firewalls, such as China?\n\n## Is there a place I can view the Steemit development roadmap? I would like to divest more BTC into Steem Power, but cannot pull the trigger until I know where things are going.\n\n## What are activity shares? Do they have any function?\nThey were an idea that Steemit ultimately scrapped. They do not have a function.\n\n## What third-party tools are there for Steemit?\nThere are a lot of them, and people are constantly developing more.\nhttp://steemtools.com/\n\n## Will I get a 1099 from Steemit?\nNo, you are not being paid by Steemit. You are being paid by the Steem network. It is your responsibility to determine what, if any, taxes apply to the transactions you for which you have submitted transaction details via the services, and it is your responsibility to report and remit the correct tax to the appropriate tax authority. You agree that Steemit is not responsible for determining whether taxes apply to your Steem transactions or for collecting, reporting, withholding or remitting any taxes arising from any Steem transactions.   \n\n## What determines the price of STEEM?\nMuch like how the price of a stock goes up and down, the value of STEEM varies, determined by buyers and sellers on exchanges.\n\n## Where is the Steemit Privacy Policy?\nhttps://steemit.com/privacy.html\n\n## What are the age requirements to join steemit?\nAlthough we welcome users from all walks of life, Steemit is not intended or directed at individuals under the age of 13. Therefore, people under the age of 13 may not create an account or otherwise access or use the Services.\n\n## What languages are supported?\nEnglish is the primary language used on the platform. Some users post in other languages, but it\u2019s a small niche at the moment.\n\n## If posting in a language other than English, are there particular hashtags I should be using?\n\n## What is the Steemit Whitepaper and what is its purpose?\nFor clarification, there is only a Steem Whitepaper. There is not yet a Steemit Whitepaper.\n\nThe Steem Whitepaper was written to describe the mechanics of the token system that makes decentralized content incentives and distribution possible in a way that can improve web technologies across the board. It is also applicable to Steemit, one of the first websites to plug into the Steem blockchain. Users who have read the Steem Whitepaper will better understand how their interactions with Steemit are interactions with Steem, the decentralized network.\nhttps://steem.io/SteemWhitePaper.pdf\n\n## Is Steemit decentralized? What about Steem?\nSteem as a blockchain is more decentralized than Steemit.com. Steemit, Inc. as a company, may be subject to laws that Steem (as an impersonal blockchain database distributed all over the world) is not.\n\n## Right now Steem is useful for transient content. What about the authors who would like to publish more permanent writing and be rewarded for it long term, rather than just 30 days? Will Steem be able to offer a solution for them?\n\n## I read through the FAQ but still need more help. Is there a place to go for more help?\nThere are a few things you can do:\n- Search Steemit for blog posts on the subject, you will likely find a lot of information on the topic.\n- Read this free book about Steemit. It is full of helpful information:\nhttps://steemit.com/steemit/@donkeypong/simply-steemit-your-no-nonsense-guide-to-getting-started\n- Head on over to Steemit Chat, this is highly recommended! https://steemit.chat/home\nhttps://steemit.com/steemit/@firepower/dummies-guide-to-using-steemit-chat-effectively-everyday\n- Just ask. We think you\u2019ll find the Steemit community very helpful.\n\n\n\n\n## Steemit Lingo A-Z\n**Baby Dolphin** - User with 10k-30k Steem Power\n**Blockchain**\u200b - A public ledger of all actions ever executed.\n**Blue Whale** - User with 1 Million+ Steem Power.\n**Curation** - The act of sorting through content by voting on posts and comments.\n**Curator** - Someone who votes on a post.\n**Dolphin** - User with 30k-100k Steem Power.\n**Fin Whale** - User with 600k-1 Million Steem Power.\n**Humpback Whale** - User with 300k-600k Steem Power.\n**Minnow** - User with 250-10,000 Steem Power.\n**Nuke** - A community initiative to downvote someone into oblivion for some \u200babuse.\n**Orca** - Also known as a killer whale, a user with 100k-300k Steem Power.\n**Plankton** - User with less than 250 Steem Power.\n**SBD** - Steem Backed Dollar, also known as a Steem Dollar.\n**SD** - Another frequently used abbreviation for Steem Dollar.\n**Steem** - A reference to the entire network. Also utilized for the system\u2019s value token.\n**STEEM** - A form of Steem Token that one should only hold for short-term trading.\n**Steemer** - A Steemit user.\n**Steemian** - A Steemit user.\n**Steem Token** - The currency of the Steem ecosystem. SP, SBD, and STEEM are all forms of Steem Tokens.\n**Vests** - Steem Power is essentially Steem held in a fund. Vests are shares in that fund.",
+    "body_length": 51226,
+    "cashout_time": "2016-09-24T02:09:33",
+    "category": "steemit",
+    "children": 98,
+    "created": "2016-08-23T23:07:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steem-improvements\",\"faq\",\"steem-help\"],\"links\":[\"http:\\/\\/catchawhale.com\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T03:49:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 104723010093080,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1510.320 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "official-steemit-faq-rough-draft-your-edits-are-needed",
+    "post_id": 724641,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "OFFICIAL Steemit FAQ - Rough Draft - I Need Your Input!",
+    "title": "OFFICIAL Steemit FAQ - Rough Draft - I Need Your Input!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@shenanigator/official-steemit-faq-rough-draft-your-edits-are-needed"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535865093370",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7405186164487",
+        "voter": "steempty"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3158588256459",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376176586472",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40233571019113",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36030329149089",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4864123568306",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6847196651107",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3005342728266",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "477966017811",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120833961629",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1135427604741",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1076909161669",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1014689335929",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "302577919311",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4687165160027",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726053019",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1866548300871",
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4523918882",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "820962414",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66005205841",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996490651",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256572228",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1709684574816",
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82589597013",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3110536581035",
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413225884266",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2707254251218",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "792613900745",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157630041348",
+        "voter": "fuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7510841593",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1861943202",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "588250683864",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351177110683",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10095993336",
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750123187",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168002988",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "1500",
+        "reputation": 0,
+        "rshares": "439213978593",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7859851792",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102025711820",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646176422",
+        "voter": "fractalnode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "102112666665",
+        "voter": "coindup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67501627365",
+        "voter": "pnc"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "4965235022",
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346057454",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2586562348",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139607881909",
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1663932042",
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83479541085",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10960361335",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11110809116",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73847062209",
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "377012387231",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75103692101",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3500585753",
+        "voter": "kenmonkey"
+      },
+      {
+        "percent": "8306",
+        "reputation": 0,
+        "rshares": "523168472516",
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19251810527",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66109863467",
+        "voter": "dimimp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5881363855",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30980403538",
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "335276344720",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25322256078",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "665850528451",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3826622576",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "2100",
+        "reputation": 0,
+        "rshares": "5483379570",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152200751082",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7457684559",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1598892108",
+        "voter": "mookid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45035216336",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "205868241690",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38967300240",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1072019185",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "93388234702",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1413055989",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24274898558",
+        "voter": "gridcoinman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267010889",
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5678150836",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42656662312",
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "968286372957",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57134744579",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24891606145",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6478113798",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32233497838",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10901118309",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412453962985",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1231798069",
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7828439381",
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2011381584",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390478868475",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234380327895",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51419883219",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "3500",
+        "reputation": 0,
+        "rshares": "24294272469",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57040314927",
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30626258833",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135104358114",
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "476259593959",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56090864924",
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13621812006",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4020273271",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32141834595",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "181116038648",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "6042801843",
+        "voter": "igl00"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110157887038",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "145211226298",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275489218169",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76518327656",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "365446340672",
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36104365176",
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10723512807",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510500434",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56704794072",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4080647197",
+        "voter": "azaan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362176333",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68364335075",
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346181197528",
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7580707573",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171019207075",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34306006348",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322161583283",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82272797081",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5157797283",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "3100",
+        "reputation": 0,
+        "rshares": "11533923646",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5023647197",
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260496118",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24658739351",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2770253704",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3461118281",
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "495574357",
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1630899500",
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1010587746",
+        "voter": "bartcant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67733557028",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10594627728",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "459183195",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "515287168",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "472320215",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114929330858",
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241378964",
+        "voter": "acc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "163497435295",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28089762464",
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "797296323",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159428716760",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19149087656",
+        "voter": "cryptobarry"
+      },
+      {
+        "percent": "8400",
+        "reputation": 0,
+        "rshares": "4767499706",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "176051780606",
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33648660545",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4593535958",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17036885437",
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "232667596",
+        "voter": "danielkt"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "442868725",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19544762197",
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23466141588",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10858288049",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73624923344",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1455160505",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "341723696171",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14804857032",
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8744035178",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38686636744",
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3284680477",
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104264406314",
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47329466415",
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1988790807",
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54832916139",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19349340603",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91926117",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130392942665",
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3868586690",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1538357286",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12680019535",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5937123302",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2288626154",
+        "voter": "iamwne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4172380416",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35282662185",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8250069099",
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4036179836",
+        "voter": "metalcrypto86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7168108020",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3576577878",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2410290253",
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38361289406",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84354470928",
+        "voter": "rea"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "21527861128",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "409144442",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115810043",
+        "voter": "hightek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6881355781",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33871774853",
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15605236672",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124974272",
+        "voter": "biternator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56769565392",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231302899",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "194918932533",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164930677",
+        "voter": "cryptoknight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921456442",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12104248869",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1834534741",
+        "voter": "proto"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "23131411260",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1480317362",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58282395736",
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5997467417",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2935325626",
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "535245969",
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "475520671",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2853376889",
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6333362306",
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3623431607",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32524585720",
+        "voter": "smailer"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "114993452",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2440103819",
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2720074239",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6107263629",
+        "voter": "jed78"
+      },
+      {
+        "percent": "4500",
+        "reputation": 0,
+        "rshares": "6144702800",
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137429559187",
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11261995202",
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "658133591",
+        "voter": "tkembo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "918794886",
+        "voter": "taker"
+      },
+      {
+        "percent": "5700",
+        "reputation": 0,
+        "rshares": "8934982195",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5976541708",
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4484961525",
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "240147448",
+        "voter": "frozendota"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "793698975040",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24107366239",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18210815655",
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8269753895",
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2020288379",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22362837512",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22876250710",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22884607514",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "27625757276",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "174357493624",
+        "voter": "somebody"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "6521141507",
+        "voter": "flysaga"
+      },
+      {
+        "percent": "8372",
+        "reputation": 0,
+        "rshares": "13867449577",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10404248096",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "38521454257",
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72945502690",
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267327596",
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4085877023",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3201532166",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6623452381",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22880696557",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22879003651",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22876327957",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22873403059",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22869645142",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "776319043",
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22867985411",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "8000",
+        "reputation": 0,
+        "rshares": "92496439725",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21039886213",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11099072108",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112939027604",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1561551841",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56272514",
+        "voter": "nickche"
+      },
+      {
+        "percent": "2300",
+        "reputation": 0,
+        "rshares": "54153946243",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63769259",
+        "voter": "gunde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2157887018",
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "3012874531",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55985375",
+        "voter": "rinaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1407653561",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222365253",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "21000312892",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "6072143772",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1590670250",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3362885111",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70633121",
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3851409606",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52467942",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57295211",
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6526978016",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58970189",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222804436",
+        "voter": "party1999"
+      },
+      {
+        "percent": "7800",
+        "reputation": 0,
+        "rshares": "398324868",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29748874355",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59006436",
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59000019",
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "713740913223",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57360236",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6429005086",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94635072912",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4872520319",
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60290273",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14491280131",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3466697876",
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2360296333",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9572956760",
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58570757",
+        "voter": "ethansteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22861987673",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58431340",
+        "voter": "steemchina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "402776568",
+        "voter": "dave-mohican"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64415365542",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "5800",
+        "reputation": 0,
+        "rshares": "24263639051",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82641728996",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78411391",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24503611101",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8200065121",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53436717446",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58187582",
+        "voter": "sensualceleb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55845079",
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3078557050",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56704316",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2632034946",
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8591508881",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56439015",
+        "voter": "dabrarital1972"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129045750",
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14206254829",
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3771335099",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22523811629",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39104372032",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2909670405",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1563110711",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "180001817",
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7422089296",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7689702094",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "31622277566",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2413590426",
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3752156606",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "182788854",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57466894",
+        "voter": "mercosity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633459410",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "405872365",
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "958919043",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2941654196",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132311119",
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "462418154",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9972856155",
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54258724",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "316502139",
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748363853",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "384531628132",
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57687894080",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "7000",
+        "reputation": 0,
+        "rshares": "31595293803",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2692323783",
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3826309632",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1366253956",
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1347280944",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59890114",
+        "voter": "nelsonmandelabay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213811228335",
+        "voter": "robinhoodwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96067289",
+        "voter": "paketkita.net"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67956001",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2081512014",
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51890765",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88742390",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9640083850",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55113679",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110630295",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51616527",
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208566777",
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1040013475",
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199821196",
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52815612",
+        "voter": "robocraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50431113",
+        "voter": "stringer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51240567",
+        "voter": "billkappa442"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50233449",
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51232949",
+        "voter": "dragonice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50214183",
+        "voter": "weare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50197894",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "5100",
+        "reputation": 0,
+        "rshares": "1631179533",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57988919",
+        "voter": "codeinc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50975390",
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50873654",
+        "voter": "palladium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50868434",
+        "voter": "jumbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50865840",
+        "voter": "sting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50796122",
+        "voter": "factom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50540827",
+        "voter": "amstel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55142010",
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50479027",
+        "voter": "sunlight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64263708",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1867843363",
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63057417",
+        "voter": "vuyusile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1317647622",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157266009",
+        "voter": "cruise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2002213189",
+        "voter": "senseye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162925257",
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162911190",
+        "voter": "front"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1363441329",
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161089804",
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197680233",
+        "voter": "james1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160900665",
+        "voter": "digitalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160835930",
+        "voter": "skrillex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150633482",
+        "voter": "cosco07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159984914",
+        "voter": "correct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159539963",
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148114487",
+        "voter": "jasonxg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159143891",
+        "voter": "reef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159110812",
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159286033",
+        "voter": "mastercoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166431444",
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9637724412",
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157484049",
+        "voter": "lovesickchris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154247502",
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "150433706",
+        "voter": "kramj007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153436909",
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153385071",
+        "voter": "yahooshua"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>[![IMG_2881.png](https://s19.postimg.org/66thkewwj/IMG_2881.png)](http://www.steemit.com/@steemdrive/)</center>\n\nSouth Africa stands proud; being the first country to ever host a blockchain crowdfunded billboard campaign flighted in August 2016 by the @steemdrive initiative on the Steemit Blockchain Social Media Platform; where content creators get paid to blog and publish noteworthy content, as well as for participating in curation voting of the varied content of other community authors.\n\nWith the help of advertising partners, Outdoor Network, the @steemdrive billboard campaign has successfully flighted two digital billboards ([as per initial proof of flight blog post](https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa)) and now officially the first Spectacular size 5M x 20M billboard, flighted on the 23rd of August 2016 in Durban\u2019s South Coast region, on the M4 highway just before the Jacobs, Quality Street on-ramp. \n\n<center>[![outdoor_networksml.png](https://s19.postimg.org/iwxpxi4ur/outdoor_networksml.png)](http://www.on.co.za)</center>\n\n[Outdoor Network](http://www.on.co.za) is one of the largest South African Out of Home media owners, offering national reach with a host of billboards and street furniture platforms. \n\nEstablished in 1999, the company\u2019s advertising platforms reach diverse consumers in iconic high-density locations. Its reputable and customer centric staff service South Africa\u2019s leading media and creative agencies, as well as corporates and SME\u2019s (Small-to-Medium-Enterprise\u2019s). The [Outdoor Network](http://www.on.co.za) is passionate about Out of Home media; maximising advertising opportunities through creative and unique execution. \n\n@steemdrive is proud to have given the contract, of approximately two months, of billboard flight time to the [Outdoor Network](http://www.on.co.za), whose staff have been very helpful, friendly and efficient. Thank you [Outdoor Network](http://www.on.co.za) for helping us bring Steemit to South Africa! For more information on Outdoor Network, please visit: [www.on.co.za](http://www.on.co.za)\n\n## <center>Audiovisual Presentation of South African Billboard Campaign\n\n<p><center><iframe width=\"480\" height=\"270\" src=\"https://www.youtube.com/embed/r_zha1iQW58\" frameborder=\"0\" allowfullscreen></iframe></center></p>\n\n## <center>Print Billboard \u2013 Mobeni East, KZN, Durban, South Africa</center>\n\n<center>[![map.jpg](https://s19.postimg.org/3yt38atxv/map.jpg)](http://www.steemdrive.com)</center>\n\nSituated on the Albert Luthuli Highway M4 Southern Freeway at Bluff Road facing traffic from Durban CBD to Mobeni, Jacobs, Isipingo, Umlazi, Amanzimtoti and various suburbs with a good run up on a busy arterial road throughout the day and at peak periods.\n\n**Size:** 5m x 20m (16.4\u2019 x 65.62\u2019)\n\n**Traffic Flow:** Approx. 2 667 600 vehicles per day, this figure excludes pedestrian exposure.\n_(this traffic data is several years old and therefore not current, the values should now be much higher, new data coming later in 2016)_\n\n**Income Group:** 4-8 \n\n**Night Time Illumination:** Front Lighting \n\n------------------\n\nI am proud to have realised the South African Steemit billboard campaign in its entirety, and look forward to the proof of flight posts for Chicago and New Zealand shortly. The billboard campaign truly is a spectacular way to unite the Steemit community and showcase what the platform can do. \n\nIn solidarity with our cause, the [Gridcoin](http://www.gridcoin.us) community has offered their support in upvoting our content and have been added below to our campaign partners section, thank you to Custom Miner ( @cm-steem ) for making that happen for us.\n\nI look forward to comtinually stand with the community to bring Steem to the world, one country at a time! \n\nPlease **SHARE**, **[FOLLOW](http://www.steemit.com/@steemdrive)** and **UPVOTE**!\n\nSincerely,\n\n[![signature.png](https://s19.postimg.org/56ul3axar/signature.png)](http://www.steemit.com/@steemdrive)\n\n------------------------\n\n## @steemdrive in the Media:\n\n+ http://themerkle.com/steem-blogger-raises-thousands-of-dollars-to-fund-real-world-billboard-campaign/\n\n+ http://bitcoinhub.co.za/new-social-media-platform-steemit-set-to-take-south-africa-by-storm/\n\n+ https://coincheck.com/en/blog/1845\n\n+ [Beyond Bitcoin E166 2016-07-29](https://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts#t=30:07)\n\n+ [Beyond Bitcoin E169 2016-08-19](https://soundcloud.com/beyond-bitcoin-hangouts/e169-beyond-bitcoin-dollarvigilante-talks-steem-blockpay-ico-grc-hangouts-steem-billboard-campaign#t=2:21:51)\n\n-------------------\n\n## Campaign Partners:\n\n<center>[![beyondbitcoin.jpg](https://s19.postimg.org/qj95pqxar/beyondbitcoin.jpg)](http://www.steemit.com/@officialfuzzy)</center>\n\n\n--------------------\n\n\n<center>[![blocktrades.jpg](https://s19.postimg.org/sf0jenbir/blocktrades.jpg)](http://www.blocktrades.us)</center>\n\n\n--------------------\n\n\n<center>[![blockpayfinal.jpg](https://s19.postimg.org/ek28w6h3n/blockpayfinal.jpg)](http://www.blockpay.ch)</center>\n\n--------------------\n\n\n<center>[![IMG_2877.jpg](https://s19.postimg.org/f349ocnir/IMG_2877.jpg)]( http://www.gridcoin.us/)</center>\n\n\n---------------------\n\n## <center>Witness @smooth.witness (campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @delegate.lafona (liaison and campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @liondani (campaign supporter)</center>\n\n---------------------\n\n## @steemdrive Supports the Following Initiatives:\n\n+ @robinhoodwhale ([info link here](https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed))\n\n+ @steemcleaners\n\n+ [steempay.io](http://steempay.io)\n\n----------------------\n\n## Terms and Conditions:\n\nSteem Dollar payout funds raised from this Steemit post shall be allocated to any billboard site or @steemdrive public project where funds may be required in and paid in accordance with the general campaign terms and conditions.\n\nThe domain steemit.life on the artwork points to a referral link for campaign tracking by steemit.com, otherwise not possible if steemit.com was advertised.\n\nAll images are either royalty free, public domain, supplied by the billboard agencies or paid for by the campaign or liaison, credits will appear beneath any other image sources.\n\n-------------------------------------------------\n\n## Direct Donations Welcome:\n\n<a href='https://steempay.io/payment?&receiver=steemdrive&amount=0&currency=0&callback=http://www.steemdrive.com'>\n<img src='https://steempay.io/media/badges/donate/badge_steem-donate--light-v1.0.png'>\n</a>\n\n**Direct donations on this post so far:**\n+ 2.5 SBD Donated by @cm-steem, thank you so much!\n\n+ 5 SBD Donated by @kus-knee, awesome thank you!",
+    "body_length": 6899,
+    "cashout_time": "2016-10-12T01:41:24",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-10T18:19:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"life\",\"news\",\"crypto-news\"],\"users\":[\"steemdrive\",\"cm-steem\",\"smooth.witness\",\"delegate.lafona\",\"liondani\",\"robinhoodwhale\",\"steemcleaners\",\"kus-knee\"],\"image\":[\"https:\\/\\/s19.postimg.org\\/66thkewwj\\/IMG_2881.png\",\"https:\\/\\/s19.postimg.org\\/iwxpxi4ur\\/outdoor_networksml.png\",\"https:\\/\\/s19.postimg.org\\/3yt38atxv\\/map.jpg\",\"https:\\/\\/s19.postimg.org\\/56ul3axar\\/signature.png\",\"https:\\/\\/s19.postimg.org\\/qj95pqxar\\/beyondbitcoin.jpg\",\"https:\\/\\/s19.postimg.org\\/sf0jenbir\\/blocktrades.jpg\",\"https:\\/\\/s19.postimg.org\\/ek28w6h3n\\/blockpayfinal.jpg\",\"https:\\/\\/s19.postimg.org\\/f349ocnir\\/IMG_2877.jpg\",\"https:\\/\\/steempay.io\\/media\\/badges\\/donate\\/badge_steem-donate--light-v1.0.png\"],\"links\":[\"http:\\/\\/www.steemit.com\\/@steemdrive\\/\",\"https:\\/\\/steemit.com\\/steemit\\/@steemdrive\\/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa\",\"http:\\/\\/www.on.co.za\",\"http:\\/\\/www.steemdrive.com\",\"http:\\/\\/www.gridcoin.us\",\"http:\\/\\/www.steemit.com\\/@steemdrive\",\"http:\\/\\/themerkle.com\\/steem-blogger-raises-thousands-of-dollars-to-fund-real-world-billboard-campaign\\/\",\"http:\\/\\/bitcoinhub.co.za\\/new-social-media-platform-steemit-set-to-take-south-africa-by-storm\\/\",\"https:\\/\\/coincheck.com\\/en\\/blog\\/1845\",\"https:\\/\\/soundcloud.com\\/beyond-bitcoin-hangouts\\/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts#t=30:07\",\"https:\\/\\/soundcloud.com\\/beyond-bitcoin-hangouts\\/e169-beyond-bitcoin-dollarvigilante-talks-steem-blockpay-ico-grc-hangouts-steem-billboard-campaign#t=2:21:51\",\"http:\\/\\/www.steemit.com\\/@officialfuzzy\",\"http:\\/\\/www.blocktrades.us\",\"http:\\/\\/www.blockpay.ch\",\"http:\\/\\/www.gridcoin.us\\/\",\"https:\\/\\/steemit.com\\/steem\\/@repholder\\/the-robinhood-whale-initiave-community-feedback-needed\",\"http:\\/\\/steempay.io\",\"https:\\/\\/steempay.io\\/payment?&receiver=steemdrive&amount=0&currency=0&callback=http:\\/\\/www.steemdrive.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T17:30:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 138742313025948,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1498.015 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa",
+    "post_id": 913543,
+    "promoted": "1.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: Second Proof of Successful Crowdfunded Billboard Flight in Durban, South Africa!",
+    "title": "Steemdrive: Second Proof of Successful Crowdfunded Billboard Flight in Durban, South Africa!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "668937734218",
+        "voter": "barrie"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "28856334255",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14541676017396",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65738868122357",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104885942087",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "829611980239",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3523609766263",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3091083868",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3751872670",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "703078134",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52785528915",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1656894481",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213491769",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109905473578",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34790108629",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382123413420",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "331163120465",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "974591820760",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "132765011181",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9413487452",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2389001052",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280440782260",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1071702906604",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621602758",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "923628524",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "390763860408",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "687299672",
+        "voter": "timifey2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25093971445",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43215312611",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287852470",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48031112568",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11259119702",
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-34125390164",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410899538831",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3514308118",
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143442050992",
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "576043212174",
+        "voter": "eeks"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "510496812",
+        "voter": "fkn"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "422431208",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "4967938453",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45577213666",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2007820761",
+        "voter": "gekko"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "670268914",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "733646916464",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8431808575",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5502047299",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90134391614",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417009617",
+        "voter": "yoona-lee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57850241507",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1884956348",
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44024667559",
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1440033247",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17927406157",
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "328846755510",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367083089332",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161833281",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141944533",
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12177340917",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382410007997",
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": "330247725",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52803777568",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61950416028",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19053336845",
+        "voter": "minfon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1147181770",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74901396295",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152610751574",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33844146844",
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5412463822",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23575160787",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47564957024",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234224501190",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15030579703",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23287378544",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31920382172",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2257465592",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70687509671",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3075354623",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8578286187",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3739710609",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7578611454",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5614905936",
+        "voter": "dailyfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2608200595",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4010352187",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220050702",
+        "voter": "russle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48991282543",
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4903045253",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2471065942",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78969067407",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23147643255",
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245616724",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222532257",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4907399969",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39910277653",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2608101796",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2675116157",
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60746961944",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2746300635",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28718147185",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25692929626",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300550721",
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360927957",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1248883243",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "227022848",
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20350277957",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427602632",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "989117228",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1349522322",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4466904026",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92736156531",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6127335881",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24899403513",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4501034549",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56352134799",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1051966022",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208581030",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236993728",
+        "voter": "nysemax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261906883616",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69835502463",
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2464852335",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1507108159",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7551319150",
+        "voter": "tryptamin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3316247889",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "253048089",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10662899418",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12360591730",
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "242858237",
+        "voter": "willytrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1219639516",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141918879021",
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4385329257",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167174613555",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13623464709",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7023608765",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6639090671",
+        "voter": "cryptobro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5897621131",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2712122271",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4867537049",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37699663541",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58864388268",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "539576877",
+        "voter": "qonq99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111726756",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265192596484",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361850682",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2345937029",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "411164157",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "435316007",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2822357406",
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5950638457",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112583666",
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4251171596",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111850189",
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "788422149",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20509443094",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25256579030",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "590354284",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2843794852",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "6945529841",
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "226048695",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "236094999",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3039205816",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84206519",
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3375155212",
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9280314440",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186939870",
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98468959",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1763032500",
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "657021964",
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "218472801",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "739655756",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50160146364",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12824835130",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51522514",
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1355029444576",
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16361768844",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12454746135",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1988328132",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "14976676708",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "255846109048",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369818210",
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5548966133",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30691300049",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15039009354",
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3205465594",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2306673067",
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7030674025",
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52390149955",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61660086",
+        "voter": "zahar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3955342930",
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1578106770",
+        "voter": "alitas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "662456490",
+        "voter": "skavkaz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "1985162457",
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225195111",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5333573793",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14326940992",
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5782229020",
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10836029309",
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71246492",
+        "voter": "sparkeddev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "484482156",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1267824755",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2632229460",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60886073",
+        "voter": "tomeraddady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126983452",
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "574344398",
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66981954",
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56572793",
+        "voter": "belohndichselbst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37626356958",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70111504",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58148489",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127672859",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "119293113",
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1603120138",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436540984",
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1677565738",
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54246894",
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1714091420",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51613018",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2191235220",
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15596792368",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24992952529",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6857689066",
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18363936092",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61804840",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55998234",
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1082600609",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133141273",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "440009576",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53116957",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54239164",
+        "voter": "tiituskangas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26338007740",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94079185",
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57259315",
+        "voter": "cryptohazard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50422782",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54575672",
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327816074",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50094345",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124340468",
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52073223",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76666804129",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171651",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6836656977",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2110924737",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50751176",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73182404",
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50377764",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50288358",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52089873",
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50663734",
+        "voter": "libertyism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50513896",
+        "voter": "mobilebestdeal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52322404",
+        "voter": "ksc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52319921",
+        "voter": "karazia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50186099",
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53287995",
+        "voter": "jamebuffalobill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50104155",
+        "voter": "irura"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51109965",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53052986",
+        "voter": "vorona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51983748",
+        "voter": "ahmedeblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51972989",
+        "voter": "miriams"
+      }
+    ],
+    "author": "dragonho",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://img1.steemit.com/0x0/http://i.imgur.com/eCWkyEJ.jpg\nThis is a fundraiser for **steemwiki.com** - I have at the moment to much on the plate and I want to give away  part of  the Managment of steemwiki.com to the community . \n\nWhat is the plan:\n\n1) This should be a fundraiser, and  all the STEEMDOLLAR raised will be used for the Managment of steemwiki.com \n- I will still remain the rights Admin of the Domain. \n- I will as well still pay for the hosting and everything like Domain. \n- I will as well act as Director of the Managment \n\nLet me know whey you are the person who is able to manage the project and maybe pitch as well with a short outline how you would like to push steemwiki.com and build it up .  A minimum requirement of 10 to 15 hours a week is required for at least for the next 3 to 4 Month to get it going. \n\n**How to apply**\n- Pitch in the Comment whey you or you and your friends are capable and interested in doing so via the Comments.\n\n\nPS: this initiative is started as  a response to @ned post two days ago \nhttps://steemit.com/steem/@ned/the-first-phase-of-the-steem-faq-and-wikee-consolidation-of-knowledge\n\n\nUPDATE:\nI have been already in discussion with @ned and got pinged by several people on the Chat. Thanks for the interrest. I will come up with a outline and Roadmap for the Project.",
+    "body_length": 1326,
+    "cashout_time": "2016-09-20T18:47:36",
+    "category": "steemit",
+    "children": 33,
+    "created": "2016-08-20T16:06:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemwiki\",\"fundraiser\"],\"image\":[\"https:\\/\\/img1.steemit.com\\/0x0\\/http:\\/\\/i.imgur.com\\/eCWkyEJ.jpg\"],\"users\":[\"ned\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T19:37:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 97285668269875,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1452.624 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "fundraiser-for-http-steemwiki-com-community-management",
+    "post_id": 684406,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Fundraiser for  http://steemwiki.com  Community Management.",
+    "title": "Fundraiser for  http://steemwiki.com  Community Management.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@dragonho/fundraiser-for-http-steemwiki-com-community-management"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "715315172073",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26084308890374",
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14715414919440",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35326666852152",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172835954392",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7482155520439",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "214652058757",
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "3300",
+        "reputation": 0,
+        "rshares": "2865325068000",
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3188671074569",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1812257881409",
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "416503924007",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "639384198293",
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5506505053664",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4762859094259",
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1660910088894",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1066986711207",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "998562973442",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320974921478",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "304756534498",
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3719692356",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4515835729",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "836889771",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7499265704293",
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64923946309",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32970927171",
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436297198302",
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26810455650",
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1993438790",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256413698",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32513183306",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "212937539828",
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16141562092",
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411833981689",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2601120756120",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1856507042",
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106094458746",
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20907140377",
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9947524418",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2487731941",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452802537128",
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "458224030530",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "794125962546",
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1136275760996",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "747375166",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45089271576",
+        "voter": "stoner19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1160802522",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2771190486001",
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23042189465",
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6855649113",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345799676",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83918919690",
+        "voter": "unosuke"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "14794401312",
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67334888003",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80516415012",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13089076163",
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177791083963",
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "500844011790",
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8045407692",
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1100208079865",
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7585655457",
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "829397963387",
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23177468426",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485628257",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "844706378593",
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5583524515",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2099078596",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337675588507",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "16585060976",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9268239812",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "710121833182",
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2951167683",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19249171782",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4153646240",
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14807014456",
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60315621224",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "238737488748",
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76844247566",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "594987180387",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1432241835",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19104550961",
+        "voter": "bitswift"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164448492017",
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7156786337",
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410319321581",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31247867646",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511460192391",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89597122663",
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65642195685",
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92462968418",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3753157111546",
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22408237751",
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "407989965",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "379270713",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151933994804",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "233199908960",
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53002130456",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "5500",
+        "reputation": 0,
+        "rshares": "316675250983",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114566705956",
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1350589595",
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "286220637357",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511103797703",
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13619157612",
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75955452647",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839896459",
+        "voter": "marc-e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128826617413",
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19561969515",
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16046775777",
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1866168070",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282110250186",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2749451100",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146263584999",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4044936568",
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "753613791659",
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7270905104",
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6263227831",
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74113311286",
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12466312895",
+        "voter": "tocode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265574018732",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45048190319",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "1347191339",
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5387502462",
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31058131849",
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5046241283",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70523012933",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6735464595",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3399879014",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8190519067",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44578228756",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59637366736",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16659999864",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25354368267",
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15528192240",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59673903079",
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151155773",
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5828114720",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261414560",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7787326905",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "209244968044",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27263746865",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "324226766632",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4353569931",
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5520554489",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40356554063",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58766063190",
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3182234606",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5856940069",
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145268013436",
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14939382244",
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33277274268",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46861474191",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16603817687",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5946822118",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10804761828",
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130005360599",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14449795714",
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6014285246",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560187721984",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32990208092",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6453350423",
+        "voter": "handsolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "293427569",
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6769322507",
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "83937432850",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "1900",
+        "reputation": 0,
+        "rshares": "128959864700",
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "822719684",
+        "voter": "okkiedot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10585994983",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3542969768",
+        "voter": "owdy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "330615256",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "305988016",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1457651198",
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "943863353",
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67225543967",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10366174839",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "143680329409",
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44025895979",
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "243356345",
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1135178647",
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7726853303",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "762881799",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "975960321",
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46655397353",
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14141868605",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2351322578",
+        "voter": "cloh76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10814346001",
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32289566590",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4881740391",
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17335357040",
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114935388111",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19450247154",
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12342669795",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4407297625",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37027431730",
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25444045727",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8552837523",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1425576016",
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "237985094",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "342458473",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "353825909723",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4155445347",
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2267677227",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "128370003552",
+        "voter": "gbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4288651910",
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16414904601",
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45342144303",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "265550459336",
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40699637402",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21204167062",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15108541311",
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20794770252",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4373589253",
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2085545098",
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5735509271",
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1854925119",
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3069554555",
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "429170927",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12854579330",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2472742939",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192640340236",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "257517265490",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3477776250",
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "196930561",
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7024261765",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1760042037",
+        "voter": "gfxmotion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18788691426",
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3023124781",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231657211746",
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21923339702",
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4339560483",
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8987015568",
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33266270159",
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203809607198",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1036656297841",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2555637099",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "12649575608",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1720985289",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "260899548",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "261290501",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151145512",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151999037",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86657502",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18119899907",
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "696318020",
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "560402362",
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2582334157",
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112070311",
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16329157309",
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376683720",
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252897379",
+        "voter": "viktorrabec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24876632889",
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7847509038",
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158640204",
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18462743020",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1758235206",
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "618911664",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225852101",
+        "voter": "dubraman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417962899",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224168164",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78475461",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10711784398",
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "972381129",
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35361125351",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115507974",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14373799320",
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "129091453",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843609166",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "171651493",
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27754843148",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1588457502",
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4144725324",
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110227366",
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "921046665",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52649085689",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9229282677",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "778544423",
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6316770118",
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52489886",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42726678567",
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2232080424",
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53473560",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24331253993",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48290580198",
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1020300827",
+        "voter": "handmade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2701763485",
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23058527966",
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29198889941",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25323296438",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33434515648",
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35537072494",
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "604216404",
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3967443654",
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6102104454",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1307922822",
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26056997730",
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60678739",
+        "voter": "michellek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62581334482",
+        "voter": "poteshnik83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138994752",
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104232350508",
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1964682505",
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "417771456",
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49542850500",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "96624970971",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3936367661",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51270513",
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113159907",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109589358725",
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9753374668",
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2377300146",
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "5300",
+        "reputation": 0,
+        "rshares": "858177561",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55745109552",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53884258",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52099594",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11180006820",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25610537414",
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14175720656",
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51753317",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19704922706",
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51619811",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1675077833",
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1588889351",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "290150684",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18350971736",
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65288764",
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234905614",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "391466063",
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61515128",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28581470314",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1227614779",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86899730",
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62193914",
+        "voter": "tommycordero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61056742",
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81479984950",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114992597",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167279718",
+        "voter": "njall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62391219",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61906848",
+        "voter": "frankbacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52400873",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61110411",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4081769072",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51899170",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71551855",
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60661014",
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1157301308",
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11671878170",
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37801718569",
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76396543",
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20120598983",
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61280240854",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5477211959",
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890579467",
+        "voter": "crazycow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71522788415",
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7891748407",
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122575003",
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1284562774",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "278901402",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51863356",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51860909",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51859074",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51856300",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51852278",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "297177089",
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58816907",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71768449",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2515145412",
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6707334696",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51481279",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58276258",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17451575270",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58573454",
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25844812596",
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "583716864",
+        "voter": "fungusmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58064982",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "88566696",
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1452152725",
+        "voter": "indykpol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40533784938",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12977696308",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76843163",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6745333673",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12312214943",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7602805802",
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1885804953",
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51562255",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57141055",
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232405079",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8631426165",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61596105",
+        "voter": "uri-bruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17764396323",
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56716182",
+        "voter": "sammie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72949544569",
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90048180",
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74584024",
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7007253599",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1150475918",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "702944498",
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2038682352",
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1785470813",
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7483402975",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56649566562",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51718188",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51388276",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1498342749",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16530233402",
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57184430",
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "219451496",
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13415180082",
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52143228",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5980090861",
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100654728",
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "109707855",
+        "voter": "xvickx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346743386",
+        "voter": "masonmiler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354598090",
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55043079",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16347941669",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1648532870",
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3325509658",
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54632424",
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "389973123",
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51154263",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51148009",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51142585",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "282251870",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9400497569",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62308270",
+        "voter": "plotbot2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2876576574",
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5043672027",
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54012814",
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53990613",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94397808",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106768414",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159885110",
+        "voter": "gracewriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380010632",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70034816",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50377764",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20473094261",
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53531096",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52597837",
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4418418711",
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "757836116",
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53400199",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3956902718",
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54408230",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50918375",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4309234760",
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82477022",
+        "voter": "lilli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55408421",
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186528421973",
+        "voter": "jamielefay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511475810",
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54685141",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5277939809",
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3301289240",
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2841142234",
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50523318",
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50470409",
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50468091",
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54497066",
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2662692080",
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1642000278",
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50852949",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160840003",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6905558856",
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "873940602",
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3416103209",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50441122",
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50439559",
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "856913286",
+        "voter": "clayboyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63781944",
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "816795708",
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "656281830",
+        "voter": "antifragile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65259350",
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5174844467",
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81680073",
+        "voter": "flourishing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52128958",
+        "voter": "sroka87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7358303027",
+        "voter": "hustle-no-more"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51185859",
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1013227798",
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "539612153",
+        "voter": "judithgpordon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50217794",
+        "voter": "sobechronicles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1665210501",
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "448144955",
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79254686",
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329629477",
+        "voter": "aldentan"
+      }
+    ],
+    "author": "donkeypong",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "![Results7d0831505b.png](https://www.steemimg.com/images/2016/09/01/Results7d0831505b.png)\n\n## How a group of Steemit\u2019s senior writers forged a partnership with @nextgencrypto to help direct whale votes for a good cause\n\n**The \u201cProject Curie\u201d Team:** @donkeypong @the-alien @liberosist @kevinwong @anwenbaumeister @infovore @gavvet @steemship, plus contributors including @cryptogee @andrarchy @piedpiper @nanzo-scoop @rok-sivante and others. Several team members volunteer their time for free, others make a small income from curating posts, and many of us contribute SBD from our own payouts to this project. \n\n**The Voting Power and Support:** @nextgencrypto, other whale accounts who prefer to remain unnamed, and our group\u2019s own orca-level accounts. \n\n# Announcing Project Curie\n\nHave you seen Steemit\u2019s Trending page lately? Scroll down past the VIP section. Beyond the Top 10-20 posts, you\u2019ll begin to notice something truly wonderful: an amazing diversity of fresh content.  \n\nNew authors, artists, and photographers are finally starting to get the rewards and visibility they deserve.\n\nA few weeks ago, it was quite a different story. \n\n![HeadinSand0b838.jpg](https://www.steemimg.com/images/2016/09/01/HeadinSand0b838.jpg) \n\nBarely three months after the Beta launch, a crisis was emerging: Steemit was attracting new users and content faster than the largest Steem Power holders could distribute resources.\n\nNot too long ago, most of those rewards were going to a handful of content creators. There was a stunning lack of diversity on the main page. We know, because WE are some of the authors who have made those big rewards. We still enjoy writing (and many of us depend on the income from our posts), but our group of writers also realized that we needed to help get some rewards to others. \n\n\n**Steemit was failing the unknown writers and artists: they were posting great content but not getting rewarded.**\n\n\nContrary to popular belief, some of the largest whales had the same objectives that we did. They also were trying to find undiscovered content to upvote and reward. But they didn\u2019t have enough hours in the day to sort through the increasing volume of posts. \n\nFaced with an increasing number of newcomers, with new hopes, new dreams, new aspirations, and overall, new human stories\u2026 Some people thought that maybe some of us should offer our help, because otherwise it could be just a matter of time until we all start scrolling down the boulevard of broken dreams.\n\nMeanwhile the number of new users kept increasing. And there were more good posts that were going unrewarded. Newcomers with new hopes, new dreams, new aspirations, and new stories\u2026who would have broken dreams and no rewards if we didn\u2019t take action. \n\n**So we offered to help.**\n\nEarlier, Tom @donkeypong had helped organize a group of Steemit\u2019s senior writers and content creators to discuss issues that we had in common. And it turned out that our writers\u2019 group was not interested in making ourselves more money. We were primarily concerned with helping others who were posting good content and not being rewarded. \n\nMost members of this group spend a lot of time mentoring newer writers and artists. Others in our group wanted to take a more active role in voting. And so we decided to pool some of our own votes to see if we could make a difference in rewarding some of the best quality posts from newer authors. \n\nUnfortunately, we\u2019re just orcas, not big whales. And so our votes together added a few dollars, but not enough to bring sizeable rewards or visibility to these deserving posts. \n\n![puzzle-piecescc805.jpg](https://www.steemimg.com/images/2016/09/01/puzzle-piecescc805.jpg)\n\n# The Partnership\n\nSo @donkeypong began discussing a possible partnership with @nextgencrypto. The two had talked previously about their common interests in building other original content areas on Steemit, so Tom thought they might be able to work together on this. @nextgencrypto has been vocal about ending the Steemit \u201ccirclejerk\u201d on the front page. He wants to build communities in other topic areas and reward high quality writing, photography, blogging, and other original content. But the large SP holders\u2019 duty of re-allocating Steemit\u2019s resources to emerging content creators was becoming a burden. He also was impressed with the writers group and its dedication. \n\nAfter seeing the types of deserving posts that the writers group was discovering, @nextgencrypto recognized what a rare opportunity this group provided. He and the writers group developed a partnership. @nextgencrypto would contribute whale accounts to provide voting power, while the writers would curate posts from undiscovered and deserving authors. \n\nSince that partnership was born, additional whale accounts are joining with Project Curie to provide more Steem Power. You\u2019re probably familiar with @berniesanders, who still makes some votes on his own but allocates others to this project. Some of our other clients prefer to stay unnamed. We are open to adding more whale accounts if the partnership is a good fit. \n\nBecause the project\u2019s curators are some of Steemit\u2019s most successful content creators, we have an eye for talent. Working together, we can find the best posts from a diversity of topic areas and genres. We can help them succeed.  \n\n![Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg](https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg)\n\n# The Guidelines\n\nAfter the team members were brought in, some guidelines were established for curation. These are just guidelines and we can make exceptions, but we do so rarely. Here are the main ones:\n\n1.) Only original content. Articles, poetry, photography, videos, recipes, etc. that appear nowhere else on the Internet (yes, we\u2019re checking, and we\u2019ve only missed a few plagiarized articles so far out of 1000\u2019s of votes). \n\n2.) No Steemit-related posts, unless they are truly unique (in which case, they usually get enough upvotes from others anyway)\n\n3.) No overtly religious or political posts (aiming for a diversity of other topics)\n\n4.) Generally, no introductory posts, unless there is something additional in the posts that merits consideration\n\n5.) We discuss the posts and triage the most worthy of them into different tiers. For Tier 1 posts (which get hit with a full 100% whale power vote), the author must have a track record of having made a few good quality posts on Steemit, and we must be convinced by a previous introductory post or via outside social media or blogs that the person is verified, but that author has NOT made any large rewards yet and does NOT have a big account yet. \n\n6.) As for the other voting tiers, which get lower scaled % votes from us, the criteria is a trade secret. Our lips are sealed. The recipients do include authors who have been working very hard and posting consistently great content, but still struggling to get consistent rewards. We hope we can help get them established and encourage them to keep posting good work on Steemit. And there are other criteria also, but we\u2019ll stop there.  \n\n![Curie5d60d.jpg](https://www.steemimg.com/images/2016/09/01/Curie5d60d.jpg) \n\n# The Curation Work\n\nHiring a team of primary curators to help us, we started to work in teams that cover all time zones in 24/7 round-the-clock shifts so that we do not miss too many deserving posts. We divide the work with some of our members scanning feeds, digging through posts, and finding those high quality gems. Other group members check for plagiarism and provide another level of review for the selected posts, which we discuss and sort. \n\nAnd other members operate our proxy accounts that vote on the posts. Unfortunately, @laonie and the bots catch onto our voting accounts very quickly. We have nothing against the bots, but if we let them have their way, they siphon off rewards that could be channeled to deserving authors. So we must constantly switch out the proxy accounts that we use. Bots, could you please help our project by adding a 5-minute delay on following Project Curie accounts? \n\nWe put a lot of effort and due diligence into our curation work. As individuals, we even provide mentoring help as needed or we refer emerging writers and artists to other volunteer mentors. \n\n![GalleryCornelisVanDerGeestd3286.jpg](https://www.steemimg.com/images/2016/09/01/GalleryCornelisVanDerGeestd3286.jpg) \n\n# The Results\n\nWe are constantly searching for new authors, writers and artists who haven\u2019t given give up, bloggers who persisted, artists who stayed true to themselves, and more importantly, quality posts that add some sort of value to the community. \n\n## So far, we have made more than 1,000 votes for Project Curie. \n\nIf you see Trending posts from non-established authors (particularly those just outside the Top 10 or 20 posts), chances are very good that our project helped find them and boost them up to where others can see and evaluate their work. \n\t\nWe found one very good author who had made 19 posts on Steemit, all completely undiscovered, and had earned about $2 in total from them all, but he kept going. Once we found him, we helped this author\u2019s most recent post become noticed by the community, who rewarded it up to one of the top positions on the Trending page and gave this man a few thousand dollars in well-deserved rewards. \n\nAlso importantly, other authors we have found have made more than 23 cents on a post; perhaps our scaled % votes have given them $25 or $50 or $100, encouraging them to keep working hard and producing good quality content on Steemit. \n\n![pandas-helping-each-other-upa62e0.jpg](https://www.steemimg.com/images/2016/09/01/pandas-helping-each-other-upa62e0.jpg)\n\n**You should see some of the comments from these authors; some of them have cried with joy to finally make a few dollars in rewards. Some of us cry with joy after reading their comments.** \n\nSteemit is expanding, and with it we may need to expand too in order to reach more and more new great authors, and fresh new content, and cover more themes. Out of 5,000 posts made daily on Steemit, we are able to curate only about 1,000 currently. We would welcome a few additional whale accounts to add voting power for Project Curie, which could help us reward the deserving posts that we still cannot quite reach and boost the most worthy posts higher on the Trending page. In time, we will add more members to our authors group and to our curating team, too. \n\nBut we will not grow too big, because we value our original purpose and we also enjoy working with each other in this group. \n\nSteemit\u2019s resources need to be redistributed to reward a broad base of content creators. The whales can\u2019t do it all on their own, and maybe we shouldn\u2019t blame them for everything. When they need help, we\u2019ll be here to offer a willing hand to help bring something beneficial for both the individual and the platform in its organic expansion, helping out in the transition through smart work, dedication, and a lot of due diligence.\n\n# How You Can Help Project Curie\n\n**1.) Support the authors we find, if you like their work.** We are working hard to get them noticed and rewarded, but then it\u2019s important for them to become established in the community. If the broader community likes their work and decides to follow and reward them, then Project Curie\u2019s pipeline can end. We give them that chance. And then, we can move on to support others. \n\n**2.) Do your own curation and help find deserving authors.** Use our criteria above, or develop your own. If a post has been active for more than 3 hours and has less than $10 in rewards, that means others have missed it so far. Find some worthy authors to support and share their work with everyone. You can share it with us, too, by submitting it to the #curie channel on Steemit.chat, which we monitor (link: https://steemit.chat/channel/curie ). If you submit posts from other authors (not yourself) who meet our guidelines, and if we include that post in our project, then we will pay you a finder\u2019s fee also. But please do not spam our project members or whale supporters with your posts, who need to spend their time on this project. \n\n![telephone-operatorb02b1.png](https://www.steemimg.com/images/2016/09/01/telephone-operatorb02b1.png) \n\nIn fact, to value their time, we must make a bright line rule here: anyone who spams links to our members directly will be REMOVED PERMANENTLY from consideration for our curation project. Instead, if you have a post that meets our standards and is worthy of consideration, please submit your posts to the #curie channel on Steemit.chat (link: https://steemit.chat/channel/curie ). We will monitor that channel, find them, and consider including them.\n\n**3.) Leave comments with feedback on deserving posts.** New and emerging content creators often appreciate the comments even more than the money. A good comment will help them feel welcome and provide some encouragement to continue working hard. \n\n**4.) Support undiscovered and deserving authors first. Yet please do not forget that the members of Project Curie are writing fewer posts themselves, curating more, and putting some of their own earnings back into this project.** When you see their posts on Steemit, assuming you like those posts, please do not forget what they are doing for this community.\n\nSome of our members do this for free and others receive some small payment, since they are humans and have bills to pay. We are not getting rich by curating. If you see our whale friends upvoting the posts we write or sending us payments, you also will notice that we are paying most of that money back into Project Curie. We cannot cover all the work ourselves, so we have hired a small team of primary curators to assist us in finding posts to consider, discuss, and sort. We need to pay our curation team a fair wage for their help. \n\n**5.) As Steemit grows, feel free to borrow our model and create your own curation team!** \n\nWe hope you agree that Project Curie is an important addition to Steemit. We basically operate it like a non-profit organization. It is our way of helping to make Steemit more diverse, more representative of different authors, and a more welcoming home for deserving content creators. We can encourage people to post about what interests them. Instead of following trends, they will be driving Steemit\u2019s natural expansion. \n\n![Social_Network_Analysis_Visualizatione07f8.png](https://www.steemimg.com/images/2016/09/01/Social_Network_Analysis_Visualizatione07f8.png)",
+    "body_length": 14608,
+    "cashout_time": "2016-10-02T12:45:48",
+    "category": "steemit",
+    "children": 167,
+    "created": "2016-09-01T09:12:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"curation\",\"curie\"],\"users\":[\"nextgencrypto\",\"donkeypong\",\"the-alien\",\"liberosist\",\"kevinwong\",\"anwenbaumeister\",\"gavvet\",\"steemship\",\"cryptogee\",\"andrarchy\",\"piedpiper\",\"nanzo-scoop\",\"rok-sivante\",\"berniesanders\",\"laonie\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/Results7d0831505b.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/HeadinSand0b838.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/puzzle-piecescc805.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/Curie5d60d.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/GalleryCornelisVanDerGeestd3286.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/pandas-helping-each-other-upa62e0.jpg\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/telephone-operatorb02b1.png\",\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/01\\/Social_Network_Analysis_Visualizatione07f8.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T10:17:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 149062061070924,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1423.062 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors",
+    "post_id": 821564,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Announcing Project Curie: Bringing Rewards and Recognition to Steemit\u2019s Undiscovered and Emerging Authors",
+    "title": "Announcing Project Curie: Bringing Rewards and Recognition to Steemit\u2019s Undiscovered and Emerging Authors",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3200",
+        "reputation": 0,
+        "rshares": "9305098550743",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7540631789209",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346793468149",
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14532994747651",
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38716048904800",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "5600",
+        "reputation": 0,
+        "rshares": "295233592153",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3312720859409",
+        "voter": "wackou"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "1116865609185",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6721298561938",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "8655333156110",
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108317724579",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "934527471682",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3088126066",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3748070527",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709555888",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52490407712",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1655369126",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213388298",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56433829125",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "320142432924",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "5200",
+        "reputation": 0,
+        "rshares": "1529885561813",
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8646031228",
+        "voter": "bloggersclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1020605791078",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621134153",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "908810301",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5042495742",
+        "voter": "sammy007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "367081825671",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66744755769",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64440059766",
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "352966729328",
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287692819",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78402291464",
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11062374885",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "863955534",
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91597111116",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15487907462",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136442495929",
+        "voter": "vato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "198346153782",
+        "voter": "camilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9872385447",
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "81366978889",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2177269778",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8033465454",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75310894240",
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "412754937",
+        "voter": "cortegam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52532211218",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "198392624448",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1799010661",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3878298841",
+        "voter": "innocent22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "601900636",
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3082980795",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29017656764",
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5242494783",
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19909472509",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "494920527180",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354491950",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203051058866",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3795644601",
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "90236952087",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142532647556",
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14150480091",
+        "voter": "blindleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "318591204229",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55085867186",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19312518291",
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27826933601",
+        "voter": "vladislav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74404878273",
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1697811008",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228255590314",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3452316468",
+        "voter": "antizvuk"
+      },
+      {
+        "percent": "9900",
+        "reputation": 0,
+        "rshares": "1423331702798",
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77146762746",
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17431154136",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363929328660",
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69299815192",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6295300422",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14314776607",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1356407638",
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13058436832",
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3849938100",
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "224613017",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39812001527",
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11340687079",
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20017583141",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11977770740",
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "295108200",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1278063967",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16470040273",
+        "voter": "jazzka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110179598891",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6298907866",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66728686671",
+        "voter": "katecloud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8739465314",
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3703064316",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6375163539",
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34257528322",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "849409157",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18687213539",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241440929",
+        "voter": "omegastarscream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7914350834",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9495756808",
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8993282230",
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "378872031",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3761240828",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82600002057",
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234715590",
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1645034477",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8982158958",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1193254954",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "224702176",
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3992362851",
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "106968988",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23098291588",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7018124605",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568625642",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "303128536",
+        "voter": "bitlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7952077675",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113621687",
+        "voter": "rodarauj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "130516856",
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "486277146627",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2271219104",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "358306124",
+        "voter": "rcmdantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13819924532",
+        "voter": "fleuri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24412291969",
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6309606122",
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8372079992",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "467010373",
+        "voter": "raphma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1264471196",
+        "voter": "theflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15167628795",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7444900103",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4413967283",
+        "voter": "gapil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115236334",
+        "voter": "xanimes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58998581895",
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203221691",
+        "voter": "steemitdude"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "220520245",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3115442152",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "661258765",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "110203683",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19389616150",
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1426732738",
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1761021146",
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12738290170",
+        "voter": "amy-goodrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12929787124",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7048341805",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890051070",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1468410335",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63221491",
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108300081",
+        "voter": "boloyang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "878675358",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3872792870",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86145041",
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62451953",
+        "voter": "rataloclaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2135724567",
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "187055084",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1631288233",
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61456091",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120429011",
+        "voter": "bmcv001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61385527",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62588711",
+        "voter": "bachthilien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2403607785",
+        "voter": "dcpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70977665",
+        "voter": "sarita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62079098",
+        "voter": "totogta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "168334510",
+        "voter": "njall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "401225808",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5767999635",
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1341495651",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67716615",
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61292097",
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158047570",
+        "voter": "clf999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "496239547",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54588377",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57093305",
+        "voter": "gmskov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "786907831",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246362842",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "172828705",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59922207",
+        "voter": "isalondono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51613018",
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1563888700",
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "178377386",
+        "voter": "tlarsen2080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15495377006",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70147043",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6677260940",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6644043097",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55159471",
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58852647",
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55646141",
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1794545095",
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "118704463",
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56887954",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64818321",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111116739",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61826880",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58186044",
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57752912",
+        "voter": "kevanbalmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103021052",
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57706367",
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55698555",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11310688069",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57721493",
+        "voter": "landslide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45793806497",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054519",
+        "voter": "kita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53839107",
+        "voter": "nbragg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56071235",
+        "voter": "evolka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1865913237",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53755102",
+        "voter": "virgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53433968",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59832112",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55620764",
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56731590",
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54634677",
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "895999478",
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "636616349",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97717969",
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51914983",
+        "voter": "gsdalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025746",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21203734506",
+        "voter": "natureofbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597704733",
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68629439287",
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61482765",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54481429",
+        "voter": "chaeya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73202145",
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55704800",
+        "voter": "francesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171849",
+        "voter": "gateguy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54050826",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54996833",
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52049175",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53707619",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52493832",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52437364",
+        "voter": "steemvixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53278513",
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53250634",
+        "voter": "edfremantle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52068903",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53042099",
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52968748",
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51820992",
+        "voter": "fatalmongoose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52870480",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51800762",
+        "voter": "working"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52788917",
+        "voter": "insaneroots"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52784673",
+        "voter": "oleg999"
+      }
+    ],
+    "author": "rampant",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "# Why I love Steemit\n\nI'm inspired by the possibilities of steemit.  As someone who has built artist communities from the ground up I know how STUPID HARD it is for creators to get paid.  So I love steemit, it gives creatives a real chance to shine.\n\n# My Girlfriend doesn't really believe\nSo I told her I was going to bodypaint her for steemit.  It took some convincing, but she went with it.\nhttps://s20.postimg.io/kuo7d1l0t/DSC05416_up.jpg\n\n## UPDATE: She's a believer now.  She loves you all.  Thank you so much!\n\nThis was kind of a spur of the moment thing.  She didn't believe I was going to do it, and was actually surprised when I brought out the paintbrush and bodypaint supplies that had been sitting in the bottom of a bag ever since I moved to Vietnam.  It had been years since I'd used them.\n\nhttps://s20.postimg.io/i4jgtldpp/DSC05418_hd.jpg\n\n## What to do... what to do...\nTo be honest I really didn't have a clue what I was going to paint.  I thought about it for a sec and decided to use the steemit colors (which I luckily had in my smalll supply of options) and do something that was both robotic/cyberpunk and artistic.  There were a few missteps and I ended up erasing a few ideas as I went (you'll see in photos below.\n\nhttps://s20.postimg.io/xejc0s97x/DSC05419_up_hd.jpg\n\n## Settled on tribal steemit cyborg\nSteemit is a bunch of different tribes - art people, writing people, crypto people, and general anarchists - all thrown together sharing and creating.  \n\n### It's an online burning man\nhttps://s20.postimg.org/7zkt40v59/DSC05417_u.jpg\n\nMy girlfriend had never been painted before, so it was an experience for her.  It was weird at first but by the end she loved it.  She wants to do it again.\n\nMy dog on the other hand is just confused:\nhttps://s20.postimg.io/5wadwcvcd/14068091_10153685253407601_2376440152659051098_n.jpg\n> Dog: WTF IS ALL THIS??\n\n### Notes from my girlfriend (written by her)\n\"At the beginning I felt it was a bit scary and weird.  Weird to take my clothes off, get painted on, and I'm scared cause I don't know how my skin will react to all the paint.  But @rampant said it would be ok.  But I threatened to kill him if he was wrong ;)\n\nOriginally I didn't like it because it was cold.  The AC was on.  But then I liked it because it's very intimate and close and it felt very good between us.  When it was finished I really liked it.  \n\nThere is something about being a work of art that's really satisfying.\"\n\n## What I Used\nMostly wolfe and diamond FX brand bodypaint, with a few other brands thrown in.  I may do a writeup about all the major brands shortly and what they are good/not good for.\n\nYou can use just about any type of paintbrush you want, water color brushes are generally your best bet.  I also use sponges, which are used for covering large areas fast and evening out brush strokes.  You might notice that the brush strokes here are NOT evened out, because the sponges i had were old and just didn't help.\n\nThe other thing is paint brands: Kryolan does a better job of looking \"even\" than wolfe, but can't get crisp lines.  Really making things pop like some of my other work requires having the right blends of different paint types, or a lot more work to make up for it.\n\n## Like Bodypainting and art? [Follow @rampant](https://steemit.com/@rampant)\n\n### In Process shots from my phone:\nhttps://s20.postimg.io/w5vgf5h9p/14068317_10153685253272601_8230334669199790134_n.jpg\n\nEnded up erasing these lower back ideas, just didn't like them compared to clean white.\nhttps://s20.postimg.io/oeeqgld4d/14063928_10153685253237601_2249842057911555349_n.jpg\nhttps://s20.postimg.io/hcgsue9il/14040146_10153685253192601_876211917429005061_n.jpg\n\nPre-texture\nhttps://s20.postimg.io/q8w6c2pil/14051834_10153685253107601_8283450409394248330_n.jpg\n\nBack piece done:\nhttps://s20.postimg.io/9u28zi7jh/14068317_10153685252362601_5863664764406146057_n.jpg\n## Like Bodypainting and art? [Follow @rampant](https://steemit.com/@rampant)",
+    "body_length": 3982,
+    "cashout_time": "2016-09-18T04:38:30",
+    "category": "steemit",
+    "children": 34,
+    "created": "2016-08-17T18:48:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"photography\",\"art\",\"bodypainting\",\"cyberpunk\"],\"users\":[\"rampant\"],\"image\":[\"https:\\/\\/s20.postimg.io\\/kuo7d1l0t\\/DSC05416_up.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T15:26:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 101559866012604,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1409.413 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "first-original-steemit-bodypaint",
+    "post_id": 645063,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "First Original Steemit Bodypaint",
+    "title": "First Original Steemit Bodypaint",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@rampant/first-original-steemit-bodypaint"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..1b41712f85b9d36f580eaa3fc07580a6b69fcc5b
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit.pat.json
@@ -0,0 +1,53892 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 29065026087965,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 39193647153,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "0",
+        "reputation": 83122046,
+        "rshares": 350983411353,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": 100010071,
+        "voter": "style"
+      },
+      {
+        "percent": "0",
+        "reputation": 32455846463901,
+        "rshares": 644561565411,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28851409050,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 16629632053912,
+        "voter": "rainman"
+      },
+      {
+        "percent": "0",
+        "reputation": 14765040488827,
+        "rshares": 678749154221,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "0",
+        "reputation": 13823888326286,
+        "rshares": 290442248826,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1133069631465,
+        "rshares": 31846016835584,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13270505121655,
+        "rshares": 64424123116414,
+        "voter": "ned"
+      },
+      {
+        "percent": "0",
+        "reputation": 43394593255,
+        "rshares": 40990136716,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "0",
+        "reputation": 1582895535608,
+        "rshares": 1465429338,
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "6500",
+        "reputation": 27004834032159,
+        "rshares": 335898961474,
+        "voter": "modprobe"
+      },
+      {
+        "percent": "0",
+        "reputation": 19032535635212,
+        "rshares": 344351841045,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3894279128605,
+        "rshares": 6300691402888,
+        "voter": "wackou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6374112970391,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3183104033800,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223360548647,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 384933625306,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6854979526916,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 684870754215,
+        "voter": "justin"
+      },
+      {
+        "percent": "8000",
+        "reputation": 16685610555705,
+        "rshares": 16484473824725,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120610759042,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5645824730155,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 2203971895865,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4798801965393,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18336382560162,
+        "rshares": 177869761105,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1000072774079,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 5307342946866,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1714782870044,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 790134973068,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314382747160,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3084952552,
+        "voter": "boy"
+      },
+      {
+        "percent": "0",
+        "reputation": 89703349977794,
+        "rshares": 39514772539,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3744099613,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 708916690,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3778265352120,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1408131653617,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5874464366093,
+        "voter": "clayop"
+      },
+      {
+        "percent": "2500",
+        "reputation": 49280708331375,
+        "rshares": 1587095276274,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9510507624851,
+        "rshares": 490952568782,
+        "voter": "ajvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52162307417,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1653744064,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8717425187,
+        "rshares": 5353703077673,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213265420,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1344827833395,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33415320588,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4768294498878,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 462168403886,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 440397344978,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2948934371032,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 724454198454,
+        "rshares": 145153034071,
+        "voter": "signalandnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 365218637510,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 320054757231,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 836053297246,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 252012000857,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 8983689584,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 613500608,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 883033583,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 18831931707,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 847367661232,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1187445991060,
+        "rshares": 8541231709,
+        "voter": "fbsvk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465223733544,
+        "rshares": 2468314738,
+        "voter": "konelectric"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 131059028668,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 99407442284,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2890780562959,
+        "rshares": 18422461105,
+        "voter": "jakev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1301587831477,
+        "rshares": 22980185355,
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287496994,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19048759573,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3120299664537,
+        "rshares": 14049617378,
+        "voter": "valtr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 153266720533,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 28030491514,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 10809412876,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12594877551576,
+        "rshares": 78677360557,
+        "voter": "nenad-ristic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15484655885,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 4114116979,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 80912126570,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 91920078762,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 16986781098,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2120743942708,
+        "rshares": 19581497371,
+        "voter": "ninzacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2965778688,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4743131139239,
+        "rshares": 19864981951,
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1421425103482,
+        "rshares": 4953536758,
+        "voter": "full-measure"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 59389567521,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "0",
+        "reputation": 3828884985898,
+        "rshares": 1176938440,
+        "voter": "lovelace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 22730046248,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5174412203,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3989110433,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2766508550901,
+        "rshares": 29123857192,
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 483152352,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5998136643,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 6860622525,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6307970519,
+        "rshares": 539229693,
+        "voter": "manu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 46486294798,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 753324601733,
+        "rshares": 613633859,
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 1792970687,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1695482795421,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 17970582996,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3997942209174,
+        "rshares": 40256285576,
+        "voter": "himalayanguru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17814707827319,
+        "rshares": 121040089554,
+        "voter": "bbqbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 598749018,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3197564021,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4599317604,
+        "rshares": 2164745847,
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6703300627334,
+        "rshares": 16501701210,
+        "voter": "jonnybitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59189682608,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 7522215721,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5498455770,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 60171794063,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 14553627890,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 52133457039,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1450594023,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 421830528,
+        "voter": "viet-ngo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3971811465,
+        "rshares": 9012478291,
+        "voter": "gore84"
+      },
+      {
+        "percent": "0",
+        "reputation": 9084038135515,
+        "rshares": 928498426,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3144640411,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6511494,
+        "rshares": 401086480,
+        "voter": "bkz-mark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 323291888380,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670625346868,
+        "rshares": 99230266456,
+        "voter": "oscarp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 5155051731,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29597883122,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5607058267,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775122446878,
+        "rshares": 48191210281,
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217755916442,
+        "rshares": 423526577,
+        "voter": "shane-loomb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 580447736426,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4271275461,
+        "rshares": 3379051883,
+        "voter": "crypton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 292841176,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18892584759,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 227661174549,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 14825107442,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238101508714,
+        "rshares": 9160294327,
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 3641210640,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 184127210501,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2663003206978,
+        "rshares": 10839974752,
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10367032406,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 400302600,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1005278051807,
+        "rshares": 2732164481,
+        "voter": "patrick-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 311649953,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 154650902490,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 258682311783,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 218701281553,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53913190618,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65989046107177,
+        "rshares": 420660720773,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 62485569470,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525238421,
+        "rshares": 74930713836,
+        "voter": "a48"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 32242309393,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 72465284432,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 187339395265,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1071159098,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19853951219,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 130506723134,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48263580054,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4225748527,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13376879780,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 77121637987,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6877012376448,
+        "rshares": 129350122394,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6469924381,
+        "rshares": 38007430652,
+        "voter": "kun7788"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 692586897,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217927530425,
+        "rshares": 3820890867,
+        "voter": "g-dubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5174686594,
+        "rshares": 316079910,
+        "voter": "james-ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 130135983609,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7263761479745,
+        "rshares": 130569937219,
+        "voter": "victor-lucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 3713808326,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 19734517919,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5163259581,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217222224,
+        "rshares": 299624307,
+        "voter": "knopki"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 5886979119053,
+        "rshares": -43295372595,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 208893515786,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 846666893,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 27044457127,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 688333510,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 35617668938,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 862610149295,
+        "rshares": 5530404220,
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6209409248,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6335831989133,
+        "rshares": 73156015714,
+        "voter": "riensen"
+      },
+      {
+        "percent": "0",
+        "reputation": 2758500001611,
+        "rshares": 102193068,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2552582711,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "0",
+        "reputation": 1019011681813,
+        "rshares": 139217694,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18388231908063,
+        "rshares": 83171001282,
+        "voter": "blocktalk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8405765844,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1557874437556,
+        "rshares": -2388357578,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "0",
+        "reputation": 2445708956667,
+        "rshares": 169304350,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 36430901543,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6696004846,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 36090146114,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 51252420180,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 17647343278,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9400857896911,
+        "rshares": 842304582512,
+        "voter": "coinfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 956637447308,
+        "rshares": 1625043848,
+        "voter": "justoneartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27961065610,
+        "rshares": 3875913318,
+        "voter": "steskoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67229955621,
+        "rshares": 343023700,
+        "voter": "gerber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 54498249470,
+        "voter": "norbu"
+      },
+      {
+        "percent": "0",
+        "reputation": 1691376287481,
+        "rshares": 118076270,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 4090523115,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 262266700,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 25984358555464,
+        "rshares": -41659756587,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 46307425448,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2018069960576,
+        "rshares": 8356388356,
+        "voter": "nobodyishome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 7699122159,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544044850677,
+        "rshares": 16220061534,
+        "voter": "eindbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110873902249,
+        "rshares": 4783947613,
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3178291674,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "0",
+        "reputation": 36391001943292,
+        "rshares": 3317397556,
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891519743447,
+        "rshares": 3690681721,
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39616835526,
+        "rshares": 261479355,
+        "voter": "stompy"
+      },
+      {
+        "percent": "0",
+        "reputation": 15603689614497,
+        "rshares": 96259058,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 280744944256,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 54361788954,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1402029831983,
+        "rshares": 13811194874,
+        "voter": "wefdi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 2520944846,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4179624293,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "0",
+        "reputation": 1160886081198,
+        "rshares": 111881284,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 255316245,
+        "voter": "jn024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 668633470533,
+        "rshares": 3704365763,
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 253533017,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4066839697461,
+        "rshares": 10058326169,
+        "voter": "getssidetracked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 4704791719,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 6985662723,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 15899597932,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247349335,
+        "rshares": 310292244,
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 108195012801,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25970499549,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 6208426188,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12569064381,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "0",
+        "reputation": 1035952800698,
+        "rshares": 118086118,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20416680494,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 131321480287,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 1648092544,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 9774380648,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 2068007241,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91531121710,
+        "rshares": 279214663,
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 63749936823,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 49577785960,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17910661583686,
+        "rshares": 211325523817,
+        "voter": "guerrint"
+      },
+      {
+        "percent": "0",
+        "reputation": 2237331858240,
+        "rshares": 124327762,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44761293560,
+        "rshares": 24590582170,
+        "voter": "sonsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 442037344,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 163154891628,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 32840023620,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 281009593849,
+        "rshares": 1749258576,
+        "voter": "jaysanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 278125905,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6164439153,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 415946152,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1921778079,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1158676315,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217622810430,
+        "rshares": 249351212,
+        "voter": "ryno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 38500935552,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1389411746,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1321799982,
+        "rshares": 249212724,
+        "voter": "sintal1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 33866686438,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 353762811,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9272236814,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46057798112,
+        "rshares": 249223280,
+        "voter": "leonalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5093280360794,
+        "rshares": 17384527304,
+        "voter": "freiheit"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 57372201,
+        "rshares": -242222642,
+        "voter": "vernik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17642820126,
+        "rshares": 251825448,
+        "voter": "mahnunchik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 337493913398,
+        "rshares": 351594067,
+        "voter": "apes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 51232668486,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 12019557908,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 116814208271,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 198026604,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48602068855,
+        "rshares": 255250482,
+        "voter": "davman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 490975552659,
+        "rshares": 999982966,
+        "voter": "themax37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978354715302,
+        "rshares": 13627675834,
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 963672133449,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 105556931353,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549279741905,
+        "rshares": 10231659869,
+        "voter": "becerra18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47264506487,
+        "rshares": 1780499448,
+        "voter": "gazm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727668809534,
+        "rshares": 3825830255,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38925032909,
+        "rshares": 836023833,
+        "voter": "alkemix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 309808815,
+        "rshares": 4463547529,
+        "voter": "yun093"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 536550051,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6555644383,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41262623155,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1670378553,
+        "rshares": 239665790,
+        "voter": "sairji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 970743271,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131860560605,
+        "rshares": 304214503,
+        "voter": "zhuvazhuva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43291626440,
+        "rshares": 252407179,
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 47581149959,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97646232305,
+        "rshares": 244217894,
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2993850661147,
+        "rshares": 17625843355,
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4691528458,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4123768079,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 2841500925,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3863607637,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 338909620445,
+        "rshares": 11061811644,
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 116961796010,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 234379829569,
+        "rshares": 2523930332,
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26199931018,
+        "rshares": 845201623,
+        "voter": "bmmmmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": -110718366028,
+        "rshares": 358696073,
+        "voter": "suicidemime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 567047214,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 73040531109,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19449504237,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1724220774,
+        "rshares": 241723619,
+        "voter": "linktype"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17506904849,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274178159,
+        "rshares": 236954632,
+        "voter": "dashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629304079354,
+        "rshares": 19440035025,
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 10208713003,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116021930707,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3714148047,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1129586281,
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13254037,
+        "rshares": 236405035,
+        "voter": "geezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205753119776,
+        "rshares": 2831943731,
+        "voter": "cashbandicoot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 25365048399,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 50327671232,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1975952307044,
+        "rshares": 4874784593,
+        "voter": "karoline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 241764375,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77829333771,
+        "rshares": 71993072510,
+        "voter": "valen55"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 156801812336,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 58942331065,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 7862851677,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2162692228861,
+        "rshares": 3350952714,
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3441787535,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 10098916070,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 537350564306,
+        "rshares": 16900513758,
+        "voter": "rukrasnov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11802802859,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1705318675121,
+        "rshares": 2865743759,
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1708370487,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 240939573,
+        "voter": "gottod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 570074959,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7160262860,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116541357,
+        "rshares": 399143272,
+        "voter": "mrshade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2839205289091,
+        "rshares": 12987519532,
+        "voter": "logicwins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 235633387,
+        "voter": "hanno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 102723261419,
+        "rshares": 350361322,
+        "voter": "r3b37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8273541325,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 104866231144,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1453154289,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 408980570,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17682694261,
+        "rshares": 235474350,
+        "voter": "mazzaneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 1827915010,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 33087660059,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274966694,
+        "rshares": 240031646,
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2347565634738,
+        "rshares": 8875408008,
+        "voter": "shla-rafia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510987855,
+        "rshares": 235661413,
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 1759819007,
+        "rshares": -240333753,
+        "voter": "phuocsim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 26195832780,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 14473739170,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25830030559,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363833141690,
+        "rshares": 537351543,
+        "voter": "wojooo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3288381181,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 258070573,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 4692425081,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84104019612,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239689633,
+        "voter": "ripexz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -376076725935,
+        "rshares": 234592637,
+        "voter": "jamique"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 2456113284,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692822335938,
+        "rshares": 229711964,
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3662471,
+        "rshares": 239086107,
+        "voter": "ibeyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 6791005950,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 11864195113,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 6131226904,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 18779239474,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549388274509,
+        "rshares": 1992096822,
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15850485128,
+        "rshares": 4405666697,
+        "voter": "deadloop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1215490422294,
+        "rshares": 5844362550,
+        "voter": "inti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4601273074,
+        "rshares": 254024586,
+        "voter": "licianek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 149368383295,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 13333004595,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1456542211,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1172088990,
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26442156052,
+        "rshares": 5968161933,
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200835346,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6731469625,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1351490919959,
+        "rshares": 12701757033,
+        "voter": "substance"
+      },
+      {
+        "percent": "0",
+        "reputation": 10910231620999,
+        "rshares": 277530511,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12248503488,
+        "rshares": 749090420,
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 391587960,
+        "rshares": 204669482,
+        "voter": "pizarrojesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 8643387438,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 51623937057,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 992215238,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118779815,
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 21969020834,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34507940819,
+        "rshares": 595197487,
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5045722000,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 187096397373,
+        "rshares": 149637322,
+        "voter": "teia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172953944203,
+        "rshares": 1216029463,
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 17344594034,
+        "voter": "angor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4282571209,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158788211039,
+        "rshares": 2988502587,
+        "voter": "loewan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1861971243,
+        "rshares": 276817993,
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7947869919,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 179910154045,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 357938237,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1033153794528,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47365374,
+        "rshares": 181079553,
+        "voter": "ianvaughan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 918911822347,
+        "rshares": 528470842,
+        "voter": "aleco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117875563,
+        "voter": "valkir81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817267563963,
+        "rshares": 15694880977,
+        "voter": "steemedbroccoli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 17043832502,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 165521214,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1639613775527,
+        "rshares": 2946897680,
+        "voter": "jedau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5792218123,
+        "rshares": 1518428878,
+        "voter": "boity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 35209974404,
+        "rshares": -126987527,
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3118106567,
+        "rshares": 112740514,
+        "voter": "sllockes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17493057977,
+        "rshares": 311064378,
+        "voter": "krassvs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078296488269,
+        "rshares": 2159001014,
+        "voter": "moon32walker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 5785415084,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 247327953874,
+        "rshares": 195811507,
+        "voter": "innerexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 496208892,
+        "rshares": 117074773,
+        "voter": "cyonic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59110845037,
+        "rshares": 175703647,
+        "voter": "turretkilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1849155799051,
+        "rshares": 2876726818,
+        "voter": "crypto.owl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 203037808685,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 173066031,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 117013137,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 12589604473,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5143473734,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2972768949,
+        "rshares": 117327347,
+        "voter": "tklinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131194405091,
+        "rshares": 3313398970,
+        "voter": "overlord"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 459170283182,
+        "rshares": -300785948,
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 615406581,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 314792076,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 17144601973,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15872861414,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526503358940,
+        "rshares": 2318927905,
+        "voter": "anon.news"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7172977970558,
+        "rshares": 646330460,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 1255524871,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230402080,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 2515077363,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 239266696,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4292618600,
+        "rshares": 116360217,
+        "voter": "kukuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112498145,
+        "voter": "tuppu91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5711413280,
+        "rshares": 134416011,
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 427093789,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2977035695,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27855371709889,
+        "rshares": 34395328042,
+        "voter": "healthyrecipes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1771004589580,
+        "rshares": 157514413,
+        "voter": "steemuwe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3821319838891,
+        "rshares": 20990748319,
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 5596136858,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -469690438,
+        "rshares": 435533857,
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11506198408,
+        "rshares": 117385102,
+        "voter": "arrogantobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 209082900599,
+        "rshares": 272289480,
+        "voter": "karchersmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26059897,
+        "rshares": 113500096,
+        "voter": "peace77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177484158355,
+        "rshares": 76809298881,
+        "voter": "ecom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17114822932753,
+        "rshares": 219824678620,
+        "voter": "originate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 488829491,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 58993378905,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18318392845,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15461414574,
+        "rshares": 106608430,
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1805608597,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 1580113648,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 25847116022,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5243422,
+        "rshares": 112595631,
+        "voter": "im2hard2resist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 2819175239,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2889656462700,
+        "rshares": 3721016208,
+        "voter": "uwe69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3045078021,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 73734761820,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 10656358989,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 913005014,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 328735209616,
+        "rshares": 1782126949,
+        "voter": "gaitan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7772862051,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2975376827,
+        "rshares": 66778067,
+        "voter": "dras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 1334955560,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4306793943,
+        "rshares": 109986570,
+        "voter": "aleks123rus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65341032,
+        "voter": "ladeiafr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493258919,
+        "rshares": 65444875,
+        "voter": "pawlo74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 192101250,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 827559373,
+        "voter": "merej99"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 585115000042,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 15285736731,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 3679188122176,
+        "rshares": -6602930413,
+        "voter": "najoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3793696193,
+        "rshares": 65255531,
+        "voter": "douglasrherron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 19606865230,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 16956284188,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8300135915,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 13210619967,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16945948625,
+        "rshares": 65373514,
+        "voter": "rjarmon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 958503,
+        "rshares": 61344206,
+        "voter": "southbaybits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 122068688,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 118578167,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 190566920,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3602804983584,
+        "rshares": 4243869059,
+        "voter": "kryptik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 21464239330,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60819457705,
+        "rshares": 75999211,
+        "voter": "shaerox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3715674298536,
+        "rshares": 8391266213,
+        "voter": "mrweed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2806306672700,
+        "rshares": 64925456,
+        "voter": "denn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 332067508,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178440469678,
+        "rshares": 122650466,
+        "voter": "belgorogdmitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1560160637,
+        "rshares": 32402400556,
+        "voter": "tikal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 710731872,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 1976759708,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1252343433,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5446779285,
+        "rshares": 64920623,
+        "voter": "mr-anderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 812896951,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5469988436993,
+        "rshares": 17449741801,
+        "voter": "r0achtheunsavory"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1520432126093,
+        "rshares": 3377785978,
+        "voter": "spiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63245124,
+        "voter": "breastsono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3209909513,
+        "rshares": 20361449685,
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 147557970,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 666229621,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163705995,
+        "voter": "adc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4914371585,
+        "rshares": 65146782,
+        "voter": "ajareselde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28427048731,
+        "rshares": 11377231920,
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1692800631124,
+        "rshares": 2696012606,
+        "voter": "hrottie"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 22149484172,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61639012,
+        "voter": "bonus1602"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1875888695,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2015798675,
+        "rshares": 349060440,
+        "voter": "bitcoindon23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40103426445,
+        "rshares": 77113695,
+        "voter": "danilathemasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 877691020,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7567372889,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 125365589,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 4433662398,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "0",
+        "reputation": 73944659327428,
+        "rshares": 700194274,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 147867259,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27438553635,
+        "rshares": 4559264999,
+        "voter": "blocksurf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112984103,
+        "rshares": 653009919,
+        "voter": "haley-liz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12969824499,
+        "rshares": 62019780,
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 63501809,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63396741,
+        "voter": "aiaconelli707"
+      },
+      {
+        "percent": "10000",
+        "reputation": 971138,
+        "rshares": 63395918,
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 58465169,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1900541345,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 641706818,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60818394,
+        "voter": "kojektea"
+      },
+      {
+        "percent": "0",
+        "reputation": 8749882391690,
+        "rshares": 744261148,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": 230964609,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 1599302189,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57209648142,
+        "rshares": 3790738716,
+        "voter": "dv8silencersteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2461770643,
+        "rshares": 63246427,
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16903801181,
+        "rshares": 7013888258,
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10809787058917,
+        "rshares": 2108123426,
+        "voter": "cristi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 21624247635,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 177703525,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 430813147,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 88542079780,
+        "rshares": 94035076,
+        "voter": "ninjaboon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 3862280709,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 606096537951,
+        "rshares": 825186326,
+        "voter": "kdugar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23266490918,
+        "rshares": 72470774,
+        "voter": "agrawalrohit1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80947204062,
+        "rshares": 27278230959,
+        "voter": "dowha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2686158006671,
+        "rshares": 3305432410,
+        "voter": "melek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 65028083,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 553100399,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3578630226,
+        "rshares": 64119004,
+        "voter": "jupiter.zeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -752010553427,
+        "rshares": 1943836237,
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 6504510560,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 62373416,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2739523879,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36325725,
+        "rshares": 62479088,
+        "voter": "just-me-nobody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373631604819,
+        "rshares": 502206413,
+        "voter": "sharper333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80723007188,
+        "rshares": 664730807,
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9371670886,
+        "rshares": 64053985,
+        "voter": "tolgasak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15097834744,
+        "rshares": 54983603,
+        "voter": "efrageek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 113089000,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 64006701,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705177068813,
+        "rshares": 291582909,
+        "voter": "jtoubia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 100437770,
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 746690081,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 54300455,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 8751917059,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23206755125,
+        "rshares": 62542956,
+        "voter": "kana"
+      },
+      {
+        "percent": "0",
+        "reputation": 31215012571,
+        "rshares": 790357703,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8633178908,
+        "rshares": 59560024,
+        "voter": "andrey000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7250270199,
+        "rshares": 58850431,
+        "voter": "trimpy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 524021704,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 588703041,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 411377435651,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90145056711,
+        "rshares": 119505043,
+        "voter": "sirwagginston"
+      },
+      {
+        "percent": "10000",
+        "reputation": -584610310041,
+        "rshares": 64672968,
+        "voter": "erotic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2051850885932,
+        "rshares": 69981308,
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234726497,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60637775,
+        "voter": "dazatherton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83638535,
+        "rshares": 60566656,
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1158711475,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 60521896,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 685971508,
+        "rshares": 59404268,
+        "voter": "lucasnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -277998787,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27504418847,
+        "rshares": 78840073283,
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 2813206335,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13147662,
+        "rshares": 60336688,
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2422086213510,
+        "rshares": 2311894727,
+        "voter": "matherly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1909276298998,
+        "rshares": 241826833,
+        "voter": "gdsprgdd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63704154867,
+        "rshares": 71213188,
+        "voter": "hutch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 417896642,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24003660,
+        "rshares": 59989087,
+        "voter": "johanherman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 294269657262,
+        "rshares": 110882929,
+        "voter": "jaggs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1125810373,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 599588088,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 59908156,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 109781085,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28120669,
+        "rshares": 59837209,
+        "voter": "chrisremus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 2012644058,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 59824180,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 6861320744353,
+        "rshares": -304371474,
+        "voter": "anarchyhasnogods"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59547267,
+        "voter": "andrew21w"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3934561602,
+        "rshares": 59521667,
+        "voter": "dave-mohican"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 133222141,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 106960350,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 59855735,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3077370360823,
+        "rshares": 136150988,
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44679463800,
+        "rshares": 5214999573,
+        "voter": "professorx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 57565034,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 841764781,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 905566,
+        "rshares": 59115407,
+        "voter": "ejosev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2834815402,
+        "rshares": 59049216,
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111174011,
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 351191377036,
+        "rshares": 70389547,
+        "voter": "zakharsmirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26471610,
+        "rshares": 56695901,
+        "voter": "gosteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1054185349,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 17182681895,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 9337355845,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 300847113,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 67898302,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -300111851,
+        "rshares": 399837706,
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63845074863,
+        "rshares": 1850437029,
+        "voter": "themadmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6945828193,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 25426770744,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58525745813,
+        "rshares": 59810146,
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4775359646971,
+        "rshares": 449613087,
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1688297092,
+        "rshares": 58064383,
+        "voter": "libertyminded"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 58984750,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 200209705,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 60680583,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 66567281,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 68532961,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9570070658,
+        "rshares": 58806132,
+        "voter": "capehost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 7844013650,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21467555148,
+        "rshares": 60893633,
+        "voter": "tcstix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57445547225,
+        "rshares": 80039263,
+        "voter": "alexalbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6382951558,
+        "rshares": 58993287,
+        "voter": "jurisnaturalist"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -538163035070,
+        "rshares": -54323980,
+        "voter": "rysabi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5881944684,
+        "rshares": 59261081,
+        "voter": "disletti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 57283554,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25773560575,
+        "rshares": 64184750,
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17390154,
+        "rshares": 57549944,
+        "voter": "viebie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1802656474490,
+        "rshares": 1701639624,
+        "voter": "lantto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2688695430,
+        "rshares": 59196527,
+        "voter": "rgla216"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 200326837006,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "0",
+        "reputation": 2484336960082,
+        "rshares": 55537337,
+        "voter": "cryptovpn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182781392,
+        "rshares": 58606938,
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 59044569,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1230516,
+        "rshares": 58582901,
+        "voter": "herbertflores"
+      },
+      {
+        "percent": "10000",
+        "reputation": 970572315676,
+        "rshares": 50476255,
+        "voter": "fiat19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 894851,
+        "rshares": 58398424,
+        "voter": "oliv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 60092482,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15692079038,
+        "rshares": 75596244,
+        "voter": "pery"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8680921051,
+        "rshares": 592998202,
+        "voter": "bennytremble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1107674703,
+        "rshares": 58558284,
+        "voter": "alex1994"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2405909145226,
+        "rshares": 2795636168,
+        "voter": "xbananax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 459441131,
+        "rshares": 57155862,
+        "voter": "sinner2winner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34004319054,
+        "rshares": 66067014,
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865434814444,
+        "rshares": 59991526,
+        "voter": "ptmikesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716083654011,
+        "rshares": 57698673,
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 1177495059,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 589293675197,
+        "rshares": 137097811,
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4346098256,
+        "rshares": 2479630826,
+        "voter": "wymetto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39279686642,
+        "rshares": 60744703,
+        "voter": "jusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 61681826,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 60588978,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53741835953,
+        "rshares": 194058019,
+        "voter": "zrc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58172886,
+        "voter": "nullpointer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2426698255,
+        "rshares": 58145581,
+        "voter": "tylerg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101814429368,
+        "rshares": 67716447,
+        "voter": "ragingliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 59050884,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272429773,
+        "rshares": 59284524,
+        "voter": "peterjhendrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 289788537,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 61422695,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153076232,
+        "rshares": 56909672,
+        "voter": "konstantinrf"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30862157954,
+        "rshares": 58035992,
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77767196646,
+        "rshares": 76074009,
+        "voter": "adnanefs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8652306644,
+        "rshares": 50027958,
+        "voter": "alktoni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19091993730,
+        "rshares": 61922359,
+        "voter": "kirby1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16261261524,
+        "rshares": 18184610664,
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21167134650,
+        "rshares": 60043805,
+        "voter": "genzai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149085976126,
+        "rshares": 118587240,
+        "voter": "billstclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 55452158,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7454996083,
+        "rshares": 59241410,
+        "voter": "erob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 59482963,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 735839549,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 53394118,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18234699449,
+        "rshares": 58186044,
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57844972,
+        "voter": "freemanmccoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 17186561644,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55885794784,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 39484524724,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84601036,
+        "rshares": 773922739,
+        "voter": "kasecucuzza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10684992176630,
+        "rshares": 71380097,
+        "voter": "quinneaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5296652630527,
+        "rshares": 14872611192,
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 902211,
+        "rshares": 56609375,
+        "voter": "alanslaug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51171516723,
+        "rshares": 64281289,
+        "voter": "myvilz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 364408983,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 57664781,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 57653356,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57652422,
+        "voter": "patrickulrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 4553068392,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57620009,
+        "voter": "sfateev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1115296338676,
+        "rshares": 86267182,
+        "voter": "freeinthought"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2402508418,
+        "rshares": 58004860,
+        "voter": "jones-wills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 196799154,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4386763010,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 448323753,
+        "rshares": 291086336,
+        "voter": "trimtab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339886160,
+        "rshares": 54256199,
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176135418881,
+        "rshares": 79719071,
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 7085277650,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 54561850,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1681782448716,
+        "rshares": 297512605,
+        "voter": "exoexo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 8549581647,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 58449865,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804735971045,
+        "rshares": 59804320,
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 57173176,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 141175939237,
+        "rshares": 115279794,
+        "voter": "koningsbruggen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 452142815,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 57729316,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54987076112,
+        "rshares": 55717566,
+        "voter": "socalguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56169240,
+        "voter": "ertinfagor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2284064858,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6716765571,
+        "voter": "alasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14582441571,
+        "rshares": 419652844,
+        "voter": "marz.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740011830,
+        "rshares": 57193795,
+        "voter": "buster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 353119892,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1488797,
+        "rshares": 57169840,
+        "voter": "earnings"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51013445,
+        "rshares": 56024009,
+        "voter": "darwilliam"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17751314058,
+        "rshares": 57099237,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66311335718,
+        "rshares": 54835021,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 378486516,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14565129670,
+        "rshares": 335535004,
+        "voter": "neurosploit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156450786,
+        "rshares": 56860845,
+        "voter": "notorious4life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 629095349859,
+        "rshares": 1235057220,
+        "voter": "victor-smirnoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 55961578,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121961200382,
+        "rshares": 486184889,
+        "voter": "hej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10121332649,
+        "rshares": 57032457,
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135537419,
+        "rshares": 56770550,
+        "voter": "dobermansden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 800035,
+        "rshares": 56767767,
+        "voter": "venetor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56762567,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5724645,
+        "rshares": 56761820,
+        "voter": "esraulgil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 56184814,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56749063,
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 55620764,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20920557,
+        "rshares": 54500387,
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1137548074,
+        "rshares": 55737590,
+        "voter": "kingsjack123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56705083,
+        "voter": "kamisaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1246651487,
+        "rshares": 56864664,
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 275001369,
+        "rshares": 54319587,
+        "voter": "sile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1688587641,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 201362230,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 871723041,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55379722,
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 55340759,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 550680214413,
+        "rshares": 157546256,
+        "voter": "kevbonneau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 11257010710,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26897821824,
+        "rshares": 65212139,
+        "voter": "gemmas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 99156770,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55261899,
+        "voter": "shakimclark7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327621924,
+        "rshares": 55259368,
+        "voter": "pumpndumptrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949895649943,
+        "rshares": 136828832,
+        "voter": "nebcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1603239948,
+        "rshares": 55543546,
+        "voter": "kralizec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56332547,
+        "voter": "murph785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 394487282,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1576645269,
+        "rshares": 56288884,
+        "voter": "phusionphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19272336927,
+        "rshares": 152591420,
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93821903009,
+        "rshares": 56224562,
+        "voter": "dennislee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56208181,
+        "voter": "omars3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 470889239,
+        "rshares": 56137183,
+        "voter": "upshot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56126260,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136191934687,
+        "rshares": 54304778,
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56051583,
+        "voter": "maestro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42790439089,
+        "rshares": 51626433,
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 53939047,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 673915909724,
+        "rshares": 1434361093,
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": -6734925555,
+        "rshares": 54839161,
+        "voter": "cyborg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136256524,
+        "rshares": 55931162,
+        "voter": "sweeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54813939,
+        "voter": "craftercrafter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 55903826,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2459082,
+        "rshares": 55894632,
+        "voter": "djmagrobel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27324223075,
+        "rshares": 64241966,
+        "voter": "tyrannyunmasked"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30965802380,
+        "rshares": 65870847,
+        "voter": "russ512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37531793657,
+        "rshares": 58810758,
+        "voter": "bobworks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54690280,
+        "voter": "eef87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 256088885,
+        "rshares": 54660184,
+        "voter": "nevid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 51374607,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 54910567,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119788937,
+        "rshares": 54594928,
+        "voter": "thomasdh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55676046,
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1923827715,
+        "rshares": 56185313,
+        "voter": "kinchent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 50406805,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4702037886,
+        "rshares": 56634879,
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 55171651,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20839933826,
+        "rshares": 58614624,
+        "voter": "edniredo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3933689675127,
+        "rshares": 47462900247,
+        "voter": "ummjackson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113271884921,
+        "rshares": 85225954,
+        "voter": "ethereumnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267108721,
+        "rshares": 761529483,
+        "voter": "tdygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1694198168,
+        "rshares": 55872960,
+        "voter": "luvtolook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 50096233,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2504507,
+        "rshares": 55525348,
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138501388,
+        "rshares": 55498559,
+        "voter": "peteyates"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55486361,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53481180877,
+        "rshares": 55456592,
+        "voter": "unblogd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55420308,
+        "voter": "naokiohno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 55407469,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3074503409423,
+        "rshares": 999968844,
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55388667,
+        "voter": "surfkid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865011,
+        "rshares": 53844705,
+        "voter": "reza9090"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 70864781,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55305082,
+        "voter": "gratitude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35525606700,
+        "rshares": 55290988,
+        "voter": "rasfos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55252692,
+        "voter": "bradgarratt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 471891378,
+        "rshares": 55237172,
+        "voter": "renijra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58659918189,
+        "rshares": 76879588,
+        "voter": "project11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54129624,
+        "voter": "occultreviews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21326690,
+        "rshares": 55160756,
+        "voter": "rockabilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55138616,
+        "voter": "ehkbd396vgls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55131842,
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3448291,
+        "rshares": 55126911,
+        "voter": "jusjayce19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55113519,
+        "voter": "mrstraume92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 859154846,
+        "rshares": 55102522,
+        "voter": "ingwald"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172617333471,
+        "rshares": 54012416,
+        "voter": "morningdoodle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7805684953,
+        "rshares": 52918124,
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1824527596237,
+        "rshares": 52911110,
+        "voter": "forcestaff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 55052571,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557026783,
+        "rshares": 55038370,
+        "voter": "petertahoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54996833,
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54977054,
+        "voter": "bitbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -32546858309,
+        "rshares": 54957779,
+        "voter": "kam1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53870477,
+        "voter": "jensk92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12368054643,
+        "rshares": 54942327,
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54941471,
+        "voter": "aharmlessspider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700129,
+        "rshares": 54937147,
+        "voter": "vanessagomes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 559572250,
+        "rshares": 52778255,
+        "voter": "o627492o"
+      },
+      {
+        "percent": "10000",
+        "reputation": 580482162746,
+        "rshares": 54923082,
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2797191,
+        "rshares": 53845766,
+        "voter": "reza9898"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 143366278,
+        "voter": "dereremit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 841198,
+        "rshares": 53836674,
+        "voter": "missagandonian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53826294,
+        "voter": "toopoorforsf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54899345,
+        "voter": "warock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54880208,
+        "voter": "smduchess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288672343,
+        "rshares": 53798418,
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2184996,
+        "rshares": 54873574,
+        "voter": "peacefulpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54863076,
+        "voter": "milohdz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54861623,
+        "voter": "pirosb3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54860980,
+        "voter": "sammiedata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 856838,
+        "rshares": 53762419,
+        "voter": "yoyoyoram"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29099060923,
+        "rshares": 54834816,
+        "voter": "ripper234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 52683284,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20614019,
+        "rshares": 54826051,
+        "voter": "holdthedoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8518576343,
+        "rshares": 54813538,
+        "voter": "bexir.oborael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 51563976,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54766433,
+        "voter": "teekay79"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 54763174,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53679390,
+        "voter": "hg8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54736573,
+        "voter": "mikebroemmel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54706268,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53622370,
+        "voter": "waverider"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19167887439,
+        "rshares": 54693928,
+        "voter": "tazouka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 835515368056,
+        "rshares": 52547166,
+        "voter": "digitalbrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1666032,
+        "rshares": 51470815,
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54675427,
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 737348426612,
+        "rshares": 54670057,
+        "voter": "lifeworship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3330241441,
+        "rshares": 54668641,
+        "voter": "endergirl197"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -54663894,
+        "voter": "zanovosib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54663364,
+        "voter": "alexseeker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54661520,
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22804640137,
+        "rshares": 54657249,
+        "voter": "jomo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54656951,
+        "voter": "noam32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53577545,
+        "voter": "j0oboi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565135,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53555002,
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": -80436159,
+        "rshares": 54609325,
+        "voter": "dapathfinder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56635602,
+        "rshares": 54598809,
+        "voter": "steemhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54592999,
+        "voter": "dal5ton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 236015276,
+        "rshares": 53522017,
+        "voter": "sungminz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -304515584476,
+        "rshares": 52447972,
+        "voter": "olivianakano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 507964430,
+        "rshares": 50305873,
+        "voter": "steemninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54037838,
+        "voter": "redrohx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80764047,
+        "voter": "niklaszantner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155927730,
+        "voter": "drakmail"
+      }
+    ],
+    "author": "steemapp",
+    "author_reputation": 5743108025054,
+    "beneficiaries": [],
+    "body": "![SteemyLoginLogo3xca352.png](https://www.steemimg.com/images/2016/08/15/SteemyLoginLogo3xca352.png)\n\n# Introducing Steemy - Native Mobile apps for STEEM! \n---\nWe've been hardcore fans of the STEEM social network since its launch.  As full-time mobile developers, we've been passionately building a genuinely *compelling* experience on iOS and Android for the STEEM network!  Today, we're excited to announce **Steemy** and show off some screenshots.  While you can't download the app in the app store just yet, our public beta is around the corner and we'd love to hear from you. Thanks and STEEM ON!   \n\n(We've included a short youtube clip of the app in action as further proof of the app's existence..see end of post)\n\n\n# Features\n---\n\n- On-device transaction signing - your private keys never leave the device\n- Master Password or Import Key login options\n- Remote push notifications for replies, up votes, follows and more\n- WYSIWYG, markdown and html editors with offline saving\n- Easily import photos from your mobile device and include them in your posts\n- Advanced blockchain searching capabilities to find relative content in new ways\n- Night mode and other theming options\n- Our backend uses our own full STEEM nodes - we don\u2019t rely on congested public endpoints\n- Open source signing components\n- more super-secret, mobile-specific features to be announced shortly ;)\n\n# iOS Screenshots\n---\n\n![IMG_1962b40b2.png](https://www.steemimg.com/images/2016/08/15/IMG_1962b40b2.png)\n\n![IMG_19548a086.png](https://www.steemimg.com/images/2016/08/15/IMG_19548a086.png)\n\n[![IMG_195501d5b.png](https://www.steemimg.com/images/2016/08/15/IMG_195501d5b.png)]\n\n[![IMG_19567a603.png](https://www.steemimg.com/images/2016/08/15/IMG_19567a603.png)]\n\n[![IMG_195792032.png](https://www.steemimg.com/images/2016/08/15/IMG_195792032.png)]\n\n\n# Android Screenshots\n---\n![Screenshot_20160815-115508414f2.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-115508414f2.png)\n\n![Screenshot_20160815-11550536f6f.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-11550536f6f.png)\n\n![Screenshot_20160815-1155007f489.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-1155007f489.png)\n\n![Screenshot_20160815-11545556c4a.png](https://www.steemimg.com/images/2016/08/15/Screenshot_20160815-11545556c4a.png)\n\n\nhttps://youtu.be/kHbOHuXQWg4",
+    "body_length": 2367,
+    "cashout_time": "2016-08-22T17:42:09",
+    "category": "steemit",
+    "children": 220,
+    "created": "2016-08-15T17:42:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemy\",\"steemapp\",\"\"],\"links\":[\"https://youtu.be/kHbOHuXQWg4\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T06:15:24",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 255613028723179,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "10210.727 HBD",
+    "percent_hbd": 10000,
+    "permlink": "introducing-steemy-fully-native-ios-android-apps-for-steem",
+    "post_id": 820430,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM",
+    "title": "[Introducing Steemy] - Fully Native iOS/Android apps for STEEM",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 446491524573,
+        "rshares": 941731279,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7630664486754,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 26546851529009,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28860901543,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26275719549142,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 399415745083,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14697797604728,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40261538120634,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36399158476733,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7287284495784,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 219042566758,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3218865983058,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 385464769392,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6527288225551,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 629235972940,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 107368706156,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1202364403012,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 2778620786382,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 788303906273,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4624143270559,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1012546698102,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 948645888607,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320894214580,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3094227321,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 2018308331283,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3755919142,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703611913,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 5895452407610,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53261625751,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5461062957,
+        "voter": "chloe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5248796936,
+        "voter": "jen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 31020409685,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 435835894301,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25224828032,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1658434658,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213555429,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8980249791516,
+        "rshares": 251650600185,
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 12302450425,
+        "voter": "steemservices5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4645434442291,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 15486432504,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 322742522737,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2539528091657,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 4677672750501,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1288478836630,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 364488541490,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 76269518609,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1064112656314,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 261059857577,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 15879310527,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622043795,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 947518714,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2706369432682,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 758092952414,
+        "rshares": 6901450215,
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 391300852031,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5116325730997,
+        "rshares": 1759901644,
+        "voter": "nexusdev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3991861275580,
+        "rshares": 49087071558,
+        "voter": "full-steem-ahead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 47676868957,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2294989396894,
+        "rshares": 15744448168,
+        "voter": "cryptoprometheus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 282481919881,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6218388754,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287957469,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2165622245848,
+        "rshares": 22851068453,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 26339332178,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 81271314308,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 28827731919,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13857797589,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2858514112,
+        "rshares": 569109365,
+        "voter": "frxdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 51569034114,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 3381707663,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 10283360038,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55171927909,
+        "rshares": 25990954524,
+        "voter": "cyan91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2968414276,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3675361198293,
+        "rshares": 16325220071,
+        "voter": "sock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 6963898563,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 468329075252,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8112324606,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 83561852958,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264531409615,
+        "rshares": 10788357562,
+        "voter": "georgedonnelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24290958657,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2181695613,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 339902561070,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1696048914135,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 233102958062,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 7456570912,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 15513837266,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5394181231,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 141860095137,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7722626018,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396875428337,
+        "rshares": 1630869950,
+        "voter": "mookid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 59046327388,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1686985722639,
+        "rshares": 8089463236,
+        "voter": "censor-this"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1011606523,
+        "voter": "coar"
+      },
+      {
+        "percent": "0",
+        "reputation": 161089556767,
+        "rshares": 1647918993,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 491733834025,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2164048830,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46690451470,
+        "rshares": 934691204,
+        "voter": "slickwilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1702188822,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 41463145095,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 375485571343,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5794630789,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 342876699663,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 818564943128,
+        "rshares": 6176350844,
+        "voter": "motivational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 90078948,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 232932917905,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 12457434054,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8330279054423,
+        "rshares": 63707549495,
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 31690136419,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -2683858617900,
+        "rshares": -8838503984,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 73021925789,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 354956224005,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257181187,
+        "rshares": 352209566,
+        "voter": "jabravo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 344356380936,
+        "rshares": 1231798069,
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2584344852600,
+        "rshares": 8706722974,
+        "voter": "jessica-miller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1376656930605,
+        "rshares": 5489887265,
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3169024240074,
+        "rshares": 53417323094,
+        "voter": "martin-wichmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 376432512152,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 111873962064,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 20273054154,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 56613707223,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -577089724709,
+        "rshares": 43936012834,
+        "voter": "rednetkjh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4620523428308,
+        "rshares": 19944193958,
+        "voter": "minfon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61288297136,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 32282987109,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 211066627674,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 117389810764,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 250779134032,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 449244898326,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48314646957,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4225748527,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13381225324,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 75015159271,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23672766314,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9131956116299,
+        "rshares": 128017998380,
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1372538034,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 186181525556,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 673023307194,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23620081773,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5359058455,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "3500",
+        "reputation": 598181152117,
+        "rshares": 70382421728,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4581391356317,
+        "rshares": 10606399776,
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 354175466732,
+        "rshares": 367993454,
+        "voter": "alextsvirko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2727866888,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 36251103104,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 3803302124,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2296189896,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 35110341502,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6447225666,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4394946495,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 3930145143,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 920884829152,
+        "rshares": 1233769087,
+        "voter": "phanie90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2085539735789,
+        "rshares": 1963122914,
+        "voter": "rowbvp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 176517920920,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6095326280934,
+        "rshares": 18420587434,
+        "voter": "thebatchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 142479249108,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642153385789,
+        "rshares": 1174733183,
+        "voter": "stupidteenboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 3178114846,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 4163072671,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 11629950938,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3893522363454,
+        "rshares": 231222031627,
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 26189252148,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4916727099,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13090894039053,
+        "rshares": 70050996082,
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5020716018,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250697653,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 1724889475,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 108665344051,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25440234426,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 13382892819,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 129978663055,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257546332,
+        "rshares": 252518634,
+        "voter": "avantyris785"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 49613914926,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 20715599247,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25437941218,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 83555712,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 361720448,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9298606221,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657547218546,
+        "rshares": 6187628336,
+        "voter": "qamarpinkpanda"
+      },
+      {
+        "percent": "3800",
+        "reputation": 4667991454724,
+        "rshares": 216627523583,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 536841739867,
+        "rshares": 2126899035,
+        "voter": "obfuscate-me"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 77739321482,
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 19130291257,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10583075740,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 103574158909,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 213368336,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 197468232,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 86951139,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1230306794251,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 119931099578,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 8501400238,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3185202465,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7878946500,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41265637686,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 245149849,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 14190084617,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 210282477056,
+        "rshares": 279828314,
+        "voter": "johanniellano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 158558212807,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 269516049,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4356428789,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4446869322,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3549473866,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 144657204853,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33597624083,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 399687388945,
+        "rshares": 246503487,
+        "voter": "fintekneeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1621656248557,
+        "rshares": 5487522068,
+        "voter": "mastertrader777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 81193986566,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 15047061152,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 2181125028,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3728295687,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57622403315,
+        "voter": "shark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 57587125095,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 344216939,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 18563733049,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8640015168,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11804173407,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1705318675121,
+        "rshares": 2923324702,
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 722979920,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7028930352,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8998707956,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128897415203,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1396236934,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17787390532,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 35572192110,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 41117209832,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 5581133833,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 22827120414,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 120162058,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75155947399,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4460619227,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2595832893,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 9297731115,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3773408670,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9261130965,
+        "rshares": 240861118,
+        "voter": "m34ndy0u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 1450587245,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84785197552,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51478739136,
+        "rshares": 36691375796,
+        "voter": "sbq777t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3921772813,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10589572085,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 6133928089,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 37786807870,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817588332083,
+        "rshares": 2670183399,
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 189803128958,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 198815487354,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 131930031,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 50745949960,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 7915132341,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2352380220223,
+        "rshares": 2371757513,
+        "voter": "metalcrypto86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200835346,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7310496375,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 16418209916,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 792476477,
+        "rshares": 118997456,
+        "voter": "tatekitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 8272759658,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 145088625,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 3429908815,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 32840277809,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 50446860889,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4205952736,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 22490571930,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1931724325,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 897000392259,
+        "rshares": 469444219,
+        "voter": "foxxycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1417716803,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 107071475,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 8120745406,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 180766867333,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 130516856,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37347150,
+        "rshares": 118191498,
+        "voter": "gosha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1014720738596,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 1638021515,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6533566864,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 37104363071,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5528318017618,
+        "rshares": 2526892289,
+        "voter": "lpfaust"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5651142,
+        "rshares": 117518172,
+        "voter": "burtnyy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725570292123,
+        "rshares": 3073348452,
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 55609255744,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9223165225,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3860903638,
+        "rshares": 118110720,
+        "voter": "kamirus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75169935562,
+        "rshares": 190746623,
+        "voter": "strictlybusiness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1073927278,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 5163105975,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 898853087,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35557408613,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 6043552466,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 15778369711,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201338440700,
+        "rshares": 348055214,
+        "voter": "frk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 634677740,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 6627911515,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "2500",
+        "reputation": 17698439393799,
+        "rshares": 4966581120,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1277366753949,
+        "rshares": 16359584188,
+        "voter": "noodles.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 265859568,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 32802459469,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176296837750,
+        "rshares": 10607133925,
+        "voter": "npl77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 4266663174,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 10878913683,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": -469690438,
+        "rshares": 435708310,
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4179769209,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137150233782,
+        "rshares": 122951400,
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314229959204,
+        "rshares": 8543172549,
+        "voter": "jamesbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 750360616481,
+        "rshares": 711696098,
+        "voter": "cybercodetwins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 551563663183,
+        "rshares": 335450273,
+        "voter": "loum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 692722967,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3427179893,
+        "rshares": 125562936,
+        "voter": "blysards"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 1693612096,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3690715185,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 4668432597,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 2977376953,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 111012764140,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11060114610,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1823153221,
+        "rshares": 113431670,
+        "voter": "mms2209"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 714975270,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 51359081888,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 7804620168,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 4909898227,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1439465905530,
+        "rshares": 100621269618,
+        "voter": "giffordde2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 2133895656,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192578386836,
+        "rshares": 75908853,
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 301833943,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 41323733064,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 516171402732,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24803457022,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 16960531436,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8258629596,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4882606765,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97123078718,
+        "rshares": 19746665322,
+        "voter": "yng-entrepreneur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 25379157632,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26985239652,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 27000068578,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "2000",
+        "reputation": 18027204457681,
+        "rshares": 4686531546,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "3500",
+        "reputation": 5776723480371,
+        "rshares": 81445607576,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 20404007761,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16577047541,
+        "rshares": 7608055360,
+        "voter": "sunshine"
+      },
+      {
+        "percent": "3700",
+        "reputation": 206355094166,
+        "rshares": 3338294019,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 15842330986,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 31910148976,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 8964678925,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "3500",
+        "reputation": 97845484474,
+        "rshares": 13274553574,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 418252412559,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1579699570,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 180458407,
+        "rshares": 50651622,
+        "voter": "shanejonas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 365766868225,
+        "rshares": 155802538,
+        "voter": "snowflake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26997864488,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26997159973,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26994977927,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26993476889,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26991282056,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26990193303,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28427048731,
+        "rshares": 22114403402,
+        "voter": "blockchain-info"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 42489259779,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39744649494,
+        "rshares": 16142463064,
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 989801091,
+        "rshares": 70516052,
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053978638105,
+        "rshares": 3071190621,
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601536515,
+        "rshares": 64088762,
+        "voter": "donnablacktail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 9285793397,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5608801378,
+        "rshares": 65105820,
+        "voter": "korose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 48612921342,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 63775516,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 77473387847,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "3100",
+        "reputation": 1851205309677,
+        "rshares": 1012260894,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 374581913,
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 235921562,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 71461631,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1785678779,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 62650809,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -257389679751,
+        "rshares": 100809807,
+        "voter": "darthnava"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 28303329252,
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8826323850,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91384020663,
+        "rshares": 63082929,
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 253851679,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19541417328,
+        "rshares": 62864549,
+        "voter": "alejoshy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 1088539665,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 20915742890,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "3400",
+        "reputation": 4195733833721,
+        "rshares": 1697398641,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1173918713,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 61385527,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1555626413,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 649597112137,
+        "rshares": 62539910,
+        "voter": "jfelton5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 15480226673,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 1512118630,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4829784286,
+        "rshares": 4274024399,
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2256397676,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 710891266725,
+        "rshares": 81481591,
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 257190613,
+        "rshares": 62300623,
+        "voter": "nhuberfeely"
+      },
+      {
+        "percent": "3600",
+        "reputation": 730408370151,
+        "rshares": 183175490,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 64006701,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 5549884244,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 11322866467,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 32936248663,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2085306269,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 554142063,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 586268356840,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 218198619612,
+        "rshares": 163702640,
+        "voter": "duans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 44719852844,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83638535,
+        "rshares": 60566656,
+        "voter": "napafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 54588377,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 113457626,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13147662,
+        "rshares": 60336688,
+        "voter": "tolik8080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 2021838220,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3440154807,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2510155648,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 1945712531,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4218808165,
+        "rshares": 60713021,
+        "voter": "krishbas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 5933699497,
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213488752136,
+        "rshares": 123199538,
+        "voter": "nelkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1205296670,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 202747295,
+        "rshares": 59958658,
+        "voter": "mgd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1694357387,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 56605454,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 791158815026,
+        "rshares": 140126974,
+        "voter": "spalser"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 53959064,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 2832905693,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 217084653,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26984764634,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 59648980,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 16498891421,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 224437021,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 39959999159,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2921148382,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 381954099,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26672558843,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 941542283,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 182784126217,
+        "rshares": 151908779,
+        "voter": "letsgo.asino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305959994445,
+        "rshares": 218436997,
+        "voter": "freerubens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3757912509,
+        "rshares": 53628399,
+        "voter": "alphabit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2834815402,
+        "rshares": 59590162,
+        "voter": "blueeyedpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 310843991,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3244771590977,
+        "rshares": 46099719842,
+        "voter": "albensilverberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 15592330951,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 4377285201,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 58226150,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318687464222,
+        "rshares": 90932755,
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 2380044342,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2995790342,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 10644392346,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14701563258,
+        "rshares": 77909231,
+        "voter": "xindex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 59797501,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 59044569,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 68338923,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28397805329,
+        "rshares": 57686991,
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23296483960,
+        "rshares": 58283876,
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2322269215556,
+        "rshares": 61577027,
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 4325283932,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 195118598,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1527616438386,
+        "rshares": 13472124826,
+        "voter": "antoinev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 62540266,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8349370222,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11923402406,
+        "rshares": 57131220,
+        "voter": "hotgirlktm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16261261524,
+        "rshares": 18931402331,
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 657881264,
+        "rshares": 58078172,
+        "voter": "dcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 246917049,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41221286829,
+        "rshares": 2625089602,
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150536937083,
+        "rshares": 74582547,
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 57813247,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1805922,
+        "rshares": 57789562,
+        "voter": "frankfriendly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 545808703,
+        "rshares": 6492226260,
+        "voter": "ready4freddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 57683187,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 649448205,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692817924311,
+        "rshares": 5202403828,
+        "voter": "io-io-io"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 4217367409,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 339886160,
+        "rshares": 378298430,
+        "voter": "hpk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11500654084,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254157559022,
+        "rshares": 173536408,
+        "voter": "justyna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11938411155,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 1941925835,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2711414,
+        "rshares": 56318766,
+        "voter": "suz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 26584702950,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 25411200606,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2136857314,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1595948373990,
+        "rshares": 2300578574,
+        "voter": "liquidrainbowx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 97421272,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96018554976,
+        "rshares": 215371673,
+        "voter": "kita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 62245792,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 60247981,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14762167320947,
+        "rshares": 36265063494,
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 7619175185,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2527008,
+        "rshares": 56883857,
+        "voter": "supersune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56749063,
+        "voter": "travisbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 879417837,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48699492408,
+        "rshares": 87104967,
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 2703939308,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 57894807,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818977100,
+        "rshares": 55971428,
+        "voter": "jimking001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55803830,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26491323630,
+        "rshares": 56340092,
+        "voter": "mercosity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 644939263,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 53942218,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3521631459073,
+        "rshares": 4472747649,
+        "voter": "betamusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 67679386,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 173705520,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 9907002500,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 129741556,
+        "rshares": 55982050,
+        "voter": "ian89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 56267680,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 3048578115,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 55222754,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 50351260,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26786197501,
+        "rshares": 62018150,
+        "voter": "giselletje"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 97810726,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276225890,
+        "rshares": 55410689,
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 26856814801,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1527134893374,
+        "rshares": 603258997,
+        "voter": "michaelmcdermott"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53099160,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 3005615324,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 346099916175,
+        "rshares": 154391429,
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 55192267,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 53034981,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 498489025358,
+        "rshares": 470399270,
+        "voter": "monattalent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 175780152,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53871683,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 52393318,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 54971826,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 63856110,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25713525688,
+        "rshares": 52841577,
+        "voter": "waterfirepaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641341984,
+        "rshares": 54658188,
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53593366,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 53602103,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59354601485,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 267516181499,
+        "rshares": 3677273797,
+        "voter": "heyrhett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53458617,
+        "voter": "joseph1117"
+      },
+      {
+        "percent": "10000",
+        "reputation": 353288883728,
+        "rshares": 53369320,
+        "voter": "floweroflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371982243,
+        "rshares": 1294007075,
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 514384460,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1455592982586,
+        "rshares": 520406986,
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 52943536,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207506656,
+        "rshares": 54104748,
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39083745,
+        "rshares": 53968679,
+        "voter": "bobbrasil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2007874792,
+        "rshares": 53031074,
+        "voter": "monkeytraveller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 130434883,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52826202,
+        "voter": "kbregu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 1958906475,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53631416,
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10341114686313,
+        "rshares": 15100509688,
+        "voter": "robinhoodwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7370152734,
+        "rshares": 53623038,
+        "voter": "bellphorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58562334246,
+        "rshares": 53604743,
+        "voter": "jakeawake"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 52710031,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 50092741,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 50066904,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1713402087003,
+        "rshares": 9229831703,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64941758686,
+        "rshares": 66618246,
+        "voter": "oksano4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 50852949,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 60249241,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451747,
+        "rshares": 51654766,
+        "voter": "sargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5766569295559,
+        "rshares": 52603451,
+        "voter": "orcish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 399936191,
+        "rshares": 51501667,
+        "voter": "sike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197832234,
+        "rshares": 51479169,
+        "voter": "kylemanning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396934417378,
+        "rshares": 52470232,
+        "voter": "justallen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 860350269,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 50405458,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972344082,
+        "rshares": 50368568,
+        "voter": "nathan.chinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3385955943,
+        "rshares": 52412324,
+        "voter": "saifer87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54957783711,
+        "rshares": 50353356,
+        "voter": "takemyfive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37017310378,
+        "rshares": 51339379,
+        "voter": "jeffreykauffman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125300438974,
+        "rshares": 52353519,
+        "voter": "felipe1alexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6215412,
+        "rshares": 50279703,
+        "voter": "talos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959133,
+        "rshares": 52324894,
+        "voter": "faissal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9560708,
+        "rshares": 50255013,
+        "voter": "rjv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811382585,
+        "rshares": 52254529,
+        "voter": "ross001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127354956,
+        "rshares": 51207930,
+        "voter": "abhinavsolan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52211132,
+        "voter": "arche416"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 52159157,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51121901,
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": -6697604264,
+        "rshares": 50083306,
+        "voter": "kairat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865080474552,
+        "rshares": 52124582,
+        "voter": "frajer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2577729396,
+        "rshares": 50076010,
+        "voter": "funthing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15610174724,
+        "rshares": 50039213,
+        "voter": "wolfclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": -519870545601,
+        "rshares": 50024358,
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": -159993241351,
+        "rshares": 52065485,
+        "voter": "clips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1218589182,
+        "rshares": 50009457,
+        "voter": "smolofaguess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1654538,
+        "rshares": 50000886,
+        "voter": "levlupsfamily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19993849,
+        "rshares": 51009490,
+        "voter": "codeman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 309120726,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118194583220,
+        "rshares": 52013777,
+        "voter": "kclement"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -50983830,
+        "voter": "amdj30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50983001,
+        "voter": "thistruthisfree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50977373,
+        "voter": "cobizig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50973868,
+        "voter": "tagonist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51991682,
+        "voter": "sboehm4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51987939,
+        "voter": "olblueyez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51986809,
+        "voter": "bizarroworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50960646,
+        "voter": "donal1682"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51974334,
+        "voter": "werty1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51968647,
+        "voter": "superpuffin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50937964,
+        "voter": "michelleshaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601633300,
+        "rshares": 50924850,
+        "voter": "shaolinmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51900403,
+        "voter": "malibu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 272497517948,
+        "rshares": 50878690,
+        "voter": "bobbybillbob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51875429,
+        "voter": "linzgraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99160090205,
+        "rshares": 51813325,
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1423888772,
+        "rshares": 51809372,
+        "voter": "figyshkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51788323,
+        "voter": "francis-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51780689,
+        "voter": "raasta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108718912,
+        "rshares": 51774444,
+        "voter": "steven15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1601583,
+        "rshares": 50743270,
+        "voter": "drinkout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9050222935,
+        "rshares": 52030157,
+        "voter": "neophonic"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -51060649,
+        "voter": "ssedmaker"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 17701690051649,
+    "beneficiaries": [],
+    "body": "<center>[![thumbfinal2.jpg](https://s19.postimg.org/89t73ydjn/thumbfinal2.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nThe @steemdrive billboard campaign continues to power throughout the world, with the next site targeted being Chicago, USA. \n\nThe first official Steem blockchain crowdfunded billboards are already fully flighted in Durban, South Africa with two digital boards in flight since our last report and details of the print billboard to follow in an upcoming post. \n\nSteemit.com, the social media platform front-end for the Steem blockchain, was founded in the United States by Ned Scott and Dan Larimer (of [Bitshares](http://www.bitshares.org)]. The @steemdrive billboard campaign team is proud to launch this initiative to once again crowdfund a billboard, but this time in the USA, the home of Steem(it)!\n\nWe are proud to introduce Nolan Jacobson as our youngest campaign liaison, someone who has truly impressed us with his determination and spunky ideas. Our campaign is fortunate to have him aboard and is our pleasure to hand over to him to present the Chicago campaign he assisted in organising.  \n\nThank you Nolan for your good work and kind words!\n\n[![signature.png](https://s19.postimg.org/56ul3axar/signature.png)](http://www.steemit.com/@steemdrive)\n\n# Introduction \u2013 Nolan Jacobson\n------------------------------\n\n<center>[![14123948_320909574911079_1188490028_o.jpg](https://s19.postimg.org/xz3txsvmb/14123948_320909574911079_1188490028_o.jpg)](http://www.steemit.com/@theprophet0)</center>\n\nFellow Steemian\u2019s, my name is Nolan Jacobson ( @theprophet0 ), I am 15 years of age; an entrepreneur and over-achiever. I am excited to say that I am the Chicago liaison for the @steemdrive campaign. \n\nSome of you may be saying to yourselves, you\u2019re 15 and you\u2019re an entrepreneur? Yes, I recently created [\u201cThe Steem Store\u201d](https://www.steemit.com/steem/@theprophet0/introducing-the-steem-store-a-store-where-the-only-payment-method-is-steempayments-created-by-the-15-year-old-steemit-guru) it is a store that uses [steempay.io](http://steempay.io/) as the sole payment method to buy Steem/Steemit merchandise. The products I will be selling are different from all the other Crypto/Steem markets and I am looking forward to promote Steemit any way I can through my store and other collabs like @steemdrive. \n\nBut, enough about my business; you have no idea how much \u201cdrive\u201d I have to promote Steemit! I can tell you that I devote myself 100% to all projects I work on; no matter if they are a success or not! Speaking of which, let us get into the Chicago/O\u2019Hare International Airport Billboards!  \n\nWouldn\u2019t that be great, to bring the first Steemit Billboard in America to my hometown, that is home to over 2,700,000 citizens and has more than 50 million visitors every year! You may be thinking, why put up a billboard advertising an online platform? Well, I couldn\u2019t have said it better than Ricardo Goncalves, the founder of the @steemdrive billboard campaign. \n\nIn his replies to comments on previous posts, Ricardo doesn\u2019t classify the billboard campaign as a replacement for online marketing, but rather sees it as a supplementary and supportive initiative. He likes to use the analogy of Coca-Cola, indicating that they are omnipresent and top-of-mind; their ads are on billboards, vehicles, coffee shops, TV, and anything else you can name!\n\nPeople may not click on an online banner immediately, they could consider it is a scam or an internet gimmick, however if they saw it on a billboard previously, it gives it some \"real world\" validity. If a company is spending on a billboard, the public sees them as more legitimate, especially because of the price tag and impact they make. \n\nThe important thing about the campaign is that the community comes together and the billboards lift spirits, for example if you are in the car with your kids and drive past the billboard, your kids may say, _**\"Dad, look it\u2019s Steemit!\"**_, can internet advertising do that?\u201d In my opinion, that is such a great explanation, props to Ricardo! Anyhow, let\u2019s get right into this fantastic billboard drive!\n\n# Chicago\n-------------\n<center>[![views_of_the_beautiful_chicago_640_01.jpg](https://s19.postimg.org/x9gg7p5oz/views_of_the_beautiful_chicago_640_01.jpg)](http://www.steemit.com/@steemdrive)\n[Image Credits]( http://izismile.com/2012/12/27/views_of_the_beautiful_chicago_33_pics.html)</center>\n\nChicago! Everybody around the world has heard about this city! It is the third largest city in the United States. Chicago is home to many amazing sport teams including, The Chicago Cubs, The Chicago Blackhawks, The Chicago Bulls, The Chicago Fire, and The Chicago Bears. \n\n**\u201cChi-town\u201d**, as the citizens of Chicago call it, is also home to the second-tallest building in the United States, The Willis Tower! If you weren\u2019t aware, Chicago is sort of split into 77 different \u201ccommunity areas\u201d if you will; with the North Side and South Side being the two main ones. \n\nThe North Side of Chicago is home to the Chicago Cubs, home of over 1,300,000 people, and the median age is right around 34 years. \n\nThe South Side, on the other hand, is home to the Chicago Bulls, home of just over 861,000 people, and the median age is the same at around 34 years also. ([Information reference](http://www.point2homes.com/US/Neighborhood/IL/Chicago/))\n\n# O\u2019Hare International Airport\n------------------\nRight outside O\u2019Hare International Airport is the killer spot for a billboard in my eyes! According to [Wikipedia](https://en.wikipedia.org/wiki/O%27Hare_International_Airport), O\u2019Hare International Airport is the busiest airport in the world, since 2013, when it beat out Hartsfield-Jackson Airport in Atlanta. \n\n### The Busiest International Routes to and from ORD (2015)  are listed below:\n\n1.\tLondon | Passengers \u2013 1,029,216\n2.\tToronto | Passengers \u2013 843,372\n3.\tTokoyo | Passengers \u2013 712,579\n4.\tFrankfurt | Passengers \u2013 622,743\n5.\tMexico City | Passengers 493,747\n\n(Data Source: [Wikipedia](https://en.wikipedia.org/wiki/O%27Hare_International_Airport)) \n\nAfter seeing that many international travelling passengers; I would say that Steemit could get a ton of global attention in addition to domestic exposure.\n\n# Crime in Chicago\n------------------------\n\nSadly, crime is everywhere in the filthy world we live in. This year, Chicago has been in the thoughts of many; there have been 2,743 people shot to this day, of those 2,378 people shot, 2318 of those people were wounded, and 465 of them were homicides. \n\nThese are just despicable numbers. As of April 1st 2016, murder rates are up 72% and shootings are up more than 88%. ([Information source](http://heyjackass.com/))\n\nAccording to the Chicago Police Department, the disturbing rise in violence is driven by gangs and mostly contained to a handful of pockets on the city's South Side. Gangs are truly a scourge on our city, little kids these days are being recruited, joining at such a young age and sadly some are even being recruited out of elementary school. \n\n# Why do kids join gangs?\n---------------------\n\nHere are a couple risk factors that can lead children and adolescents to join a gang.\n\n\u2022\tThey see the people in gangs have a lot of money.\n\n\u2022\tThey have no positive role models or mentors.\n\n\u2022\tThey have a sense of hopelessness about the future because of limited educational or financial opportunity.\n\n# How can Steemit help these problems?\n-----------\n\nI will answer the bullet points listed above with statements in which Steemit can help these awful problems:\n\n\u2022\tOn Steemit, you get paid for just simply writing content. You don\u2019t have to risk your life every day to make money; in fact it\u2019s just the opposite!.\n\n\u2022\tIn the Steemit community everybody has a positive attitude! Negativity won\u2019t last on Steemit. In fact, Steemit is a good environment for every one of every age! Ricardo is my role model, who shows there are positive role models and mentors on Steemit!\n\n\u2022\tWith Steemit there are never worries about limited education or lack of financial opportunity because every day you are on Steemit, you learn something new. Steemit actually has a great impact on your education! \n\n# How Steemit will benefit Chicago\n-----------------------\n<center>[![views_of_the_beautiful_chicago_640_05.jpg](https://s19.postimg.org/6pnv5k55f/views_of_the_beautiful_chicago_640_05.jpg)](https://postimg.org/image/3vkps42z3/)\n [Image Credits]( http://izismile.com/2012/12/27/views_of_the_beautiful_chicago_33_pics.html)</center>\n\nJoining Steemit is a very positive alternative to joining the gangs; as you can see from reading the above. It actually may help children get out of gangs as they find out that they can make money without risking their life every day. \n\nAlso, with there being a young crowd in Chicago who are literate to smart phones and computers, I believe that Steemit will flourish and have a positive impact on the citizens of Chicago! \n\n# The Billboard Options, Are You Choosing Chicago or O\u2019Hare?\n-------------------------\nThe reality is that unless this post hits a very high figure, we will only be able to obtain one billboard and there are two billboard options we have selected that we need your help with. In the comments section of this post we need you to simply vote on comment #1 or #2 depending on which billboard you would prefer seeing incase we don\u2019t receive enough funds for both. _(Remember to first vote on the main post)_\n\nI will be showing you both of the options from a distance. (The artwork is done by me, keep in mind I am a rookie. This is NOT the final artwork) Also, keep in mind that the 1st billboard is located on the Tri-State Tollway and is located next to O\u2019Hare International Airport. The 2nd billboard is near the South Side of Chicago.\n\n## Option #1 - O\u2019Hare\n\n<center>[![newpng.png](https://s19.postimg.org/fktattjbn/newpng.png)](https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638)</center>\n\nThis DIGITAL bulletin gets prime exposure to traffic headed to O'Hare Airport. This affluent section of DuPage County is considered to be the fastest growing in the United States. Only 50 feet from the toll-way, this sign has excellent exposure to nearly 60,000 daily commuters to Metro-Chicago from the upscale northern suburbs.\n\n**Panel #:** 70082\n**Location:** TRISTATE (I-294) E/S .5 MI N/O NORTH\n**Lat/Long:** [41.9136/-87.9193](https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638)\n**Panel Size:** 20' 0\" x 60' 0\"\n**Weekly Impressions:** 552637 per spot (based on 18+ years of data)\n\n## Option #2 - Chicago South\n\n<center>[![newsteemitlife.png](https://s19.postimg.org/7th6904k3/newsteemitlife.png)](https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917)</center>\n\nLocated on the Tri-State Tollway in Chicago's South Side, this DIGITAL sign delivers traffic coming from the far-south suburbs and NW Indiana heading west to Joliet on I-80 and north to locations such as Midway Airport on I-294. This is one of the heaviest interstate truck-traffic areas in the country.\n\n**Panel #:** 70051\n**Location:** TRISTATE (I-294) N/S W/O HALSTED\n**Lat/Long:** [41.5787/-87.6430](https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917)\n**Panel Size:** 20' 0\" x 60' 0\"\n**Weekly Impressions:** 378483 per spot (based on 18+ years of data)\n\n# Why I chose these billboards\n--------------------\n\nI chose these billboards for a couple reasons\u2026\n\n1.\tWith O\u2019Hare International Airport being so close to each billboard, I think that is a killer location as O\u2019Hare International Airport is the busiest airport in the world.\n\n2.\tLots of traffic on the Tollway which means when people are backed up, they will look at the billboard.\n\n3.\tThe Billboards are available to see 24/7.\n\n4.\tO\u2019Hare International Airport attracts a ton of local and international visitors. With that being said it will get global exposure.\n\n5.\tIMHO, there is no better place to start a billboard campaign in the United States than Chicago!\n\n------------------------\n\n## @steemdrive in the Media:\n\n+ http://bitcoinhub.co.za/new-social-media-platform-steemit-set-to-take-south-africa-by-storm/\n\n+ https://coincheck.com/en/blog/1845\n\n+ [Beyond Bitcoin E166 2016-07-29](https://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts#t=30:07)\n\n+ [Beyond Bitcoin E169 2016-08-19](https://soundcloud.com/beyond-bitcoin-hangouts/e169-beyond-bitcoin-dollarvigilante-talks-steem-blockpay-ico-grc-hangouts-steem-billboard-campaign#t=2:21:51)\n\n-------------------\n\n## Campaign Partners:\n\n<center>[![beyondbitcoin.jpg](https://s19.postimg.org/qj95pqxar/beyondbitcoin.jpg)](http://www.steemit.com/@officialfuzzy)</center>\n\n\n--------------------\n\n\n<center>[![blocktrades.jpg](https://s19.postimg.org/sf0jenbir/blocktrades.jpg)](http://www.blocktrades.us)</center>\n\n\n--------------------\n\n\n<center>[![blockpayfinal.jpg](https://s19.postimg.org/ek28w6h3n/blockpayfinal.jpg)](http://www.blockpay.ch)</center>\n\n\n\n---------------------\n\n## <center>Witness @delegate.lafona (liaison and campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @smooth.witness (campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @liondani (campaign supporter)</center>\n\n---------------------\n\n## @steemdrive Supports the Following Initiatives:\n\n+ @robinhoodwhale ([info link here](https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed))\n\n+ @steemcleaners\n\n+ [thesteemstore.com](https://www.thesteemstore.com/password)\n\n+ [steempay.io](http://steempay.io)\n\n----------------------\n\n## Terms and Conditions:\n\nSteem Dollar payout funds raised from this Steemit post shall be primarily allocated to the **Chicago billboard campaign**, and/or any other billboard site or @steemdrive public project where funds may be required in and paid in accordance with the general campaign terms and conditions.\n\nNed Scott of Steemit, Inc. approved the use of the domain steemit.life on artwork, which will point to a referral link for campaign tracking, otherwise not possible if steemit.com was advertised.\n\nAll images are either royalty free, public domain, supplied by the billboard agencies or paid for by the campaign or liaison, credits will appear beneath any other image sources.\n\n-----------------------\n\n## Direct Donations:\n\n+ A special thank you to Fuzzy from [Beyond Bitcoin]( https://steemit.com/@officialfuzzy) hangouts for pledging to donate 200 SBD to the campaign.\n\n+ Another unexpected surprise pledge from @smooth in comment below, of 2000 SBD!!! Smooth you are a legend! \n\n+ 25 SBD received from @smailer , thank you for helping make history my friend!\n\n+ Confirmation received of 200 SBD from @liondani , we are truly blessed today, thank you so much for your support.\n\n+ Thank you to  @bhavnapatel68  for a 25 SBD contribution, our team salutes you!\n\n<center><a href='https://steempay.io/payment?&receiver=steemdrive&amount=0&currency=0'><img src='https://steempay.io/img/donate.png'></a></center>\n\n-----------------------\n\n## Funding Requirements:\n\nThe billboards are each the same cost per 4 week rental, taking into consideration the \"voters 25% haircut\", the 50% split into SBD, 20% SBD liaison pay and a 15% allowance for SBD peg variance and other charges; the pre-payout campaign value required to successfully fund one billboard for 4 weeks is approximately 10 500 dollars _(double this for both billboards)_.   \n\n**REMEMBER TO VOTE (WITH FULL POWER!) FOR THE MAIN POST AND THEN VOTE ONE FAVOURITE BILLBOARD LOCATION!**\n\nWe achieved a pre-payout value of just under 27 000 dollars on our first South African campaign, let us now see what America can do! \n\nThe @steemdrive team thanks you for your support thus far and hope you will support us once again, **bringing \"Steem powered\" billboards to Chicago, USA!!!**",
+    "body_length": 16385,
+    "cashout_time": "2016-08-31T16:22:21",
+    "category": "steemit",
+    "children": 160,
+    "created": "2016-08-24T16:22:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"life\",\"crypto-news\"],\"users\":[\"steemdrive\",\"theprophet0\",\"delegate.lafona\",\"smooth.witness\",\"liondani\",\"robinhoodwhale\",\"steemcleaners\",\"smooth\",\"smailer\",\"bhavnapatel68\"],\"image\":[\"https://s19.postimg.org/89t73ydjn/thumbfinal2.jpg\",\"https://s19.postimg.org/xz3txsvmb/14123948_320909574911079_1188490028_o.jpg\",\"https://s19.postimg.org/x9gg7p5oz/views_of_the_beautiful_chicago_640_01.jpg\",\"https://s19.postimg.org/6pnv5k55f/views_of_the_beautiful_chicago_640_05.jpg\",\"https://s19.postimg.org/fktattjbn/newpng.png\",\"https://s19.postimg.org/7th6904k3/newsteemitlife.png\",\"https://s19.postimg.org/qj95pqxar/beyondbitcoin.jpg\",\"https://s19.postimg.org/sf0jenbir/blocktrades.jpg\",\"https://s19.postimg.org/ek28w6h3n/blockpayfinal.jpg\",\"https://steempay.io/img/donate.png\"],\"links\":[\"http://www.bitshares.org\",\"https://www.steemit.com/steem/@theprophet0/introducing-the-steem-store-a-store-where-the-only-payment-method-is-steempayments-created-by-the-15-year-old-steemit-guru\",\"http://www.point2homes.com/US/Neighborhood/IL/Chicago/\",\"https://www.google.co.za/maps/place/306+Northwest+Ave,+Northlake,+IL+60164,+USA/@41.9136504,-87.9384504,15z/data=!4m5!3m4!1s0x880fb4ba06fe09a1:0xa1c5479944e73828!8m2!3d41.9136824!4d-87.9193638\",\"https://www.google.co.za/maps/place/1021+171st+St,+Hazel+Crest,+IL+60429,+USA/@41.5791421,-87.6451804,17z/data=!3m1!4b1!4m5!3m4!1s0x880e2275d1202425:0xd865eed47d7c6fdf!8m2!3d41.5791381!4d-87.6429917\",\"https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed\",\"https://steempay.io/payment?&receiver=steemdrive&amount=0&currency=0\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T11:35:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 227968562806338,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "7005.305 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream",
+    "post_id": 968983,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
+    "title": "Steemdrive: First Steemit Billboard to hit USA in Chicago, Illinois - Vote for the \u201cAmerican Dream\"!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-first-steemit-billboard-to-hit-usa-in-chicago-illinios-vote-for-the-american-dream"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 38451193659,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83122046,
+        "rshares": 17385412095137,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7688659622029,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 29652173029568,
+        "voter": "smooth"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28854853175,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 39486167539961,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36385063290586,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2049642827168,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1582895535608,
+        "rshares": 73272768589,
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "6600",
+        "reputation": 27004834032159,
+        "rshares": 346085143111,
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 17422262223173,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 6946368014897,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8832433017411,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3246757738413,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 384932387105,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6720670302195,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 115693124003,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1944790367140,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4895804718369,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 33307827345,
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 954858040877,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 803566613810,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320669746586,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3085197652,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1975747200682,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3744410921,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 708979370,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3372697687234,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1438694033657,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52275677031,
+        "voter": "bue"
+      },
+      {
+        "percent": "0",
+        "reputation": 3745363549909,
+        "rshares": 1281552306,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1653869296,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213274356,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 32550511782,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5309145361747,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1129010306514,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 304829401415,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 70877943888,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 716694338266,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 252087376835,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10210285256,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 613532784,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 893835290,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2672477130289,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 398157135647,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 17069621824,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 44104332762,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 94216559894,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287509506,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8864087428,
+        "voter": "yginting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 26315706357,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "100",
+        "reputation": 76633033946568,
+        "rshares": 14800880014,
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 89038138941,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 26838106632,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1339573287588,
+        "rshares": 10271411415,
+        "voter": "andzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 116313551950,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 91924984138,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 16989625299,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32994008304403,
+        "rshares": 142021953735,
+        "voter": "nkdk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2907626165,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3828884985898,
+        "rshares": 58847956204,
+        "voter": "lovelace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706294048292,
+        "rshares": 3989110433,
+        "voter": "hbhades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1845145940128,
+        "rshares": 67269861861,
+        "voter": "idealist"
+      },
+      {
+        "percent": "6000",
+        "reputation": 4931834878069,
+        "rshares": 15263430960,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2766508550901,
+        "rshares": 29123911687,
+        "voter": "greenman81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 473678777,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 94838484142,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45574888424,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2177251712,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 337331566741,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "6000",
+        "reputation": 5414208804644,
+        "rshares": 20041361318,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3342907840,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4599317604,
+        "rshares": 2164745847,
+        "voter": "bladetrigger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 73767981753,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9206411638386,
+        "rshares": 98635020280,
+        "voter": "limitless"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 58992402649,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178873113861,
+        "rshares": 4702449999,
+        "voter": "xav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 54214633364,
+        "voter": "tosch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1450853172,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 339984285,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29017585900,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775122446878,
+        "rshares": 47246284590,
+        "voter": "btcswag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 580523246157,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 315960216,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18522213380,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2272340357792,
+        "rshares": 218111827316,
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 222779231297,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3211087232972,
+        "rshares": 11474193919,
+        "voter": "btotherest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8330279054423,
+        "rshares": 64330796457,
+        "voter": "kanoptx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329767399573,
+        "rshares": 1613095208,
+        "voter": "arskiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 26145560412,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 95985729250,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 344356380936,
+        "rshares": 1231561594,
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4260826979219,
+        "rshares": 7935608077,
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 504962385,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57302509663422,
+        "rshares": 412671917575,
+        "voter": "the-alien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 290189917167,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55062940846,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 18924572691,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 61260862795,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -453869065378,
+        "rshares": 8398468481,
+        "voter": "somedude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 971544329,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 107568962014,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 3119386171,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19854078940,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 435396351969,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13557964207046,
+        "rshares": 80388659823,
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 47317933373,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1445317942,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4225748527,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13377007401,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 80341870005,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19574669,
+        "rshares": 713614971,
+        "voter": "menace.coin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1551377063,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 118983805142,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 20674508047,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 44252149522,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 216869687795,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 636117083,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 25241493318,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012910736351,
+        "rshares": 10527048441,
+        "voter": "vladon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26564452802341,
+        "rshares": 386335737081,
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 3474673641,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 50184326192,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 4733608063,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1691789720,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 5756639361,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 35716570141,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6829924943,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 427801121477,
+        "rshares": 565346205,
+        "voter": "nadejde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 250811301,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 13311207958,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 4014763201,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 4090541230,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 127433544240,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3116292841,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36391001943292,
+        "rshares": 165872891302,
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 266349543845,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10490437282665,
+        "rshares": 18675405646,
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11666102,
+        "rshares": 746630589,
+        "voter": "stalnionis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5846151368508,
+        "rshares": 2098337565,
+        "voter": "romanskv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 3804121527,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 668633470533,
+        "rshares": 3704365763,
+        "voter": "stijn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19988015698,
+        "rshares": 253533017,
+        "voter": "ivp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 146610995479,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 6985662723,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1260650049067,
+        "rshares": 1048586169,
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13253460317058,
+        "rshares": 17680389230,
+        "voter": "brunopro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 21098879051,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5172309447,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 245031826,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2638289178,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25550006177,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 6020292061,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12808729996,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 4015098030,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20017085495,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 133969627073,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 56214004774,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 5072625846,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9081117484953,
+        "rshares": 29530036864,
+        "voter": "yuliana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 49579926408,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 4227326061,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 470865866,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25692821957,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 273706533,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 415946152,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 38500990109,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223278762484,
+        "rshares": 16470022526,
+        "voter": "jazzka"
+      },
+      {
+        "percent": "6000",
+        "reputation": 19111656178138,
+        "rshares": 31369317052,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10574593346,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3891722,
+        "rshares": 363404265,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "6000",
+        "reputation": 9142611234,
+        "rshares": 406327478,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3871042,
+        "rshares": 372534009,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13191361,
+        "rshares": 246089730,
+        "voter": "alex2649tw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978354715302,
+        "rshares": 13093257174,
+        "voter": "lovenugz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727668809534,
+        "rshares": 4158546853,
+        "voter": "on0tole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38925032909,
+        "rshares": 836023833,
+        "voter": "alkemix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3146121037,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 188957990,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 536550051,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6427173743,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41263112632,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 240342989,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1670378553,
+        "rshares": 244459106,
+        "voter": "sairji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 302485212431,
+        "rshares": 532244432,
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1026390089,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43291626440,
+        "rshares": 252407179,
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97646232305,
+        "rshares": 239429308,
+        "voter": "sveokla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2993850661147,
+        "rshares": 17625843355,
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "5000",
+        "reputation": 25849925929525,
+        "rshares": 54345146257,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18394247275,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3783115811,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 40651190846,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 78889019157,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1546897172,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19068212733,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 348108726622,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 11395824102,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3059156583,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1245155906,
+        "rshares": 3077393881,
+        "voter": "kaneen74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 23376052723,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 53925388822,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 241764375,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 12628644739,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 179196273146,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 10360143599,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2348727450,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2556620116,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8453400920,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5183116321161,
+        "rshares": 3684539967,
+        "voter": "krystle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13378446228,
+        "rshares": 487886612,
+        "voter": "charles-d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 26196706184,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25830549400,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 55406335361,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 6734695477,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 148525300554,
+        "rshares": 14373754719,
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 258070573,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 4795024069,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84104965081,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 7615150102,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817588332083,
+        "rshares": 2670183399,
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3941133391991,
+        "rshares": 7858101339,
+        "voter": "peacekeeper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 116919592,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 9511446677,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1398571760,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1011214030,
+        "voter": "nika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 24615216974,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7161298409,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12248503488,
+        "rshares": 734402373,
+        "voter": "denverliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 485646625,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5034293849,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 972760038,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116450799,
+        "voter": "chrisd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 1971723463,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 275405933257,
+        "rshares": 290205209,
+        "voter": "sagar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19038668222,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116065815,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1928511507,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 111726756,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19590958,
+        "rshares": 118283572,
+        "voter": "theleximus1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 148183514305,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24394944,
+        "rshares": 115837887,
+        "voter": "sl-avik"
+      },
+      {
+        "percent": "6000",
+        "reputation": 10519849768972,
+        "rshares": 12293168978,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 143874373,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 32878858013,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 115682991,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 44705463796,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 115387959,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 23187314517,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 211677715438,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27988491601746,
+        "rshares": 1444157412,
+        "voter": "marius19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4538359177,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18558854696,
+        "rshares": 123258754,
+        "voter": "streem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 776294423,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1156777476755,
+        "rshares": 2440982239,
+        "voter": "marriedbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73386813,
+        "rshares": 226734950,
+        "voter": "aleksandra28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 6009180650,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 13073623412,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2405047992,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 230402080,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 2070076420,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 7116967446,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "6000",
+        "reputation": 147425730,
+        "rshares": 383206253,
+        "voter": "fnait"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3720753029,
+        "rshares": 375933865,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 32514332248,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19497864738,
+        "rshares": 405419067,
+        "voter": "remlaps"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3821319838891,
+        "rshares": 20990784022,
+        "voter": "sisters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34240178,
+        "rshares": 111995622,
+        "voter": "dushyant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5652176856,
+        "voter": "sulev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2493302761715,
+        "rshares": 5116087046,
+        "voter": "saulius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 57817214351,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1665681200140,
+        "rshares": 509338382,
+        "voter": "kaykunoichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1733966276,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 23834093727,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2480041506,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 283380527576,
+        "rshares": 4757360328,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 72289125531,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 10212393410,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21698735,
+        "rshares": 112450703,
+        "voter": "arslan7544"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 786742077,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 6402218596,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 1230387590,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 2033912739,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192578386836,
+        "rshares": 62220152,
+        "voter": "skyefox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 64056721,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14386644371,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 10892926265,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8300226776,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 12986522188,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8093308679,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4871794356,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2074751088,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1412252219445,
+        "rshares": 2593793851,
+        "voter": "anthonyj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 1653680090,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 25867914835,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32372239,
+        "rshares": 63671033,
+        "voter": "play"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64906381,
+        "voter": "crowdfundvibe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2369229878,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1431883444,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": -84745859,
+        "rshares": 64649163,
+        "voter": "holwylb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 63300522,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059781550,
+        "rshares": 63242540,
+        "voter": "impigrum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4549076794,
+        "rshares": 382253852,
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3591043,
+        "rshares": 64298241,
+        "voter": "crisstaken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601536515,
+        "rshares": 62743518,
+        "voter": "donnablacktail"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3394759517,
+        "rshares": 5534757981,
+        "voter": "tannukas6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7418993028,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98165336756,
+        "rshares": 89782930,
+        "voter": "jefflee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 21005913988,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 200157889,
+        "voter": "drzigfrid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62268668,
+        "voter": "nickgrosz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 172287577,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 57105514,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17896389,
+        "rshares": 63362435,
+        "voter": "oluwen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1762897311,
+        "rshares": 62368657,
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7853197446,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 1631288233,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 4831441172,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2461770643,
+        "rshares": 62006301,
+        "voter": "carlvanderpal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61704615,
+        "voter": "gatorjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 169623708,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10320676912,
+        "rshares": 61598061,
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19617748220,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 174221367,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2685807725,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 597889009267,
+        "rshares": 69558111,
+        "voter": "sarita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 969829,
+        "rshares": 62069093,
+        "voter": "giannicapasso"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263793010310,
+        "rshares": 149453758,
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 110871569,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5297329962603,
+        "rshares": 3954589158,
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 89034260,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118696303,
+        "rshares": 2048624792,
+        "voter": "emptyspace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 54300455,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7661878703,
+        "rshares": 60903916,
+        "voter": "thoth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 31647211554,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3978686892,
+        "rshares": 60467503,
+        "voter": "leraakulenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 577231315,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 459420482396,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 995507831,
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 26642706254,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 5047027984,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38037060915,
+        "rshares": 69850863,
+        "voter": "bitfish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60676805,
+        "voter": "elmariac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379898572,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1429700840,
+        "rshares": 60651985,
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 60521896,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 196915807,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 2813505777,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 835908919,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692776457,
+        "rshares": 79642959,
+        "voter": "steemcash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3439090381,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89368060,
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 199289634,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419194490202,
+        "rshares": 122271574,
+        "voter": "truthmomma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 576074830,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 56384147,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50271542021,
+        "rshares": 59183580,
+        "voter": "vegeta"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 50439994,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 58479392,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58423044,
+        "voter": "s666"
+      },
+      {
+        "percent": "10000",
+        "reputation": -41046442348,
+        "rshares": 62574066,
+        "voter": "ktbaeohana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1297778556911,
+        "rshares": 61805391,
+        "voter": "cehuneke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3463887645084,
+        "rshares": 7644756825,
+        "voter": "garywilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59236965,
+        "voter": "dauwken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 858943654,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 901378583777,
+        "rshares": 1592329786,
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3936001425,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26471610,
+        "rshares": 56695901,
+        "voter": "gosteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 33542477932,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 300847113,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 69441445,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7880148903461,
+        "rshares": 9951404773,
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 22543917173,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59043906563,
+        "rshares": 71103152,
+        "voter": "dasfarm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 259404517373,
+        "rshares": 205069063,
+        "voter": "gregoryschneider"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2763355474,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 53804048,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100538074328,
+        "rshares": 57570619,
+        "voter": "tsbloyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1255927681,
+        "rshares": 57875249,
+        "voter": "andyseo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25773560575,
+        "rshares": 64184750,
+        "voter": "kaderleha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 410676451,
+        "rshares": 58787702,
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 200332810318,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56332233,
+        "voter": "pacino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 58914198,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34004319054,
+        "rshares": 64745673,
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 893390250,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 57583148,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 55320371,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263257839975,
+        "rshares": 62202585,
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 2909500506,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 62361130,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 183777633,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 56887954,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17655222820,
+        "rshares": 1453468817,
+        "voter": "djdmc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1442187004,
+        "rshares": 56930391,
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 74072122,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 713159404291,
+        "rshares": 153933584,
+        "voter": "groovedigital"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 61826880,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7174766783,
+        "rshares": 59464308,
+        "voter": "lukie257"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5728419472436,
+        "rshares": 2412812207,
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 38710389758,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44144427219,
+        "rshares": 60206256,
+        "voter": "rainmnz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 55403417,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 98950105,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 365799797,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4387236391,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57549632,
+        "voter": "felixblanco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 281743750,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 59105066,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 232544963,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214277678030,
+        "rshares": 69012539,
+        "voter": "decentro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 111221218,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2147020967,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 606649786815,
+        "rshares": 58094402,
+        "voter": "lapants"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 377617397,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 54842347,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 1467546651,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10121332649,
+        "rshares": 57747508,
+        "voter": "toxicvenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50084618,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 246572435,
+        "rshares": 55628200,
+        "voter": "tocos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 621946161,
+        "rshares": 56911596,
+        "voter": "courtneybelyea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20920557,
+        "rshares": 54500387,
+        "voter": "spencermorris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3603226178,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 329465840,
+        "rshares": 56611081,
+        "voter": "buckychris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1511945712631,
+        "rshares": 913919467,
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1915680741,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1017211703,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 890717617,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 56447574,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896571460055,
+        "rshares": 1282363031,
+        "voter": "russianark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327621924,
+        "rshares": 56364556,
+        "voter": "pumpndumptrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 9444303420,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982285480,
+        "rshares": 55390353,
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19272336927,
+        "rshares": 277212432,
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174215430182,
+        "rshares": 187358259,
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737630,
+        "rshares": 55053663,
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6334668426,
+        "rshares": 51749039,
+        "voter": "gsdalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 51745040,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 53925231,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3954457383539,
+        "rshares": 53893867,
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42790439089,
+        "rshares": 55560454,
+        "voter": "alexskinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1749890,
+        "rshares": 54898534,
+        "voter": "roadie73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54861931,
+        "voter": "dirtyjr101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440270276,
+        "rshares": 55937830,
+        "voter": "luigimendi89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55919448,
+        "voter": "minisupport"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 131370012,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5202217,
+        "rshares": 54767752,
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110864068340,
+        "rshares": 77889825,
+        "voter": "powercouple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61924173,
+        "rshares": 55786422,
+        "voter": "mathewrush"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 55155287,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55675902,
+        "voter": "kenyan"
+      },
+      {
+        "percent": "10000",
+        "reputation": -242007231380,
+        "rshares": 62901999,
+        "voter": "avemend"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 4702037886,
+        "rshares": -55524391,
+        "voter": "freedompains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54468075,
+        "voter": "prestonslove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10569233,
+        "rshares": 53433189,
+        "voter": "cibernatan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2504507,
+        "rshares": 51170419,
+        "voter": "negocios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 55407469,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 54258724,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53122101,
+        "voter": "jimwhipple"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61903571255,
+        "rshares": 55143258,
+        "voter": "jessicalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29636187142,
+        "rshares": 63417242,
+        "voter": "haizuru-ishida"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 55018737,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3301652860610,
+        "rshares": 75687607,
+        "voter": "dexter-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54996833,
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 93233347,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 288672343,
+        "rshares": 335457095,
+        "voter": "spethoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 53758453,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 755669106,
+        "rshares": 53731875,
+        "voter": "protrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20477968943,
+        "rshares": 54806372,
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 52638225,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 53689387,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51488252,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53603360,
+        "voter": "basti.kju"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53594242,
+        "voter": "otis13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53589726,
+        "voter": "asshai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50351227,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5323658,
+        "rshares": 51363851,
+        "voter": "rafej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50207083,
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33107217,
+        "rshares": 53408323,
+        "voter": "adpt2apocalypse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54464024,
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51951433,
+        "rshares": 53381371,
+        "voter": "onlineworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -141407968658,
+        "rshares": 53362659,
+        "voter": "promaxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53360048,
+        "voter": "arkana"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -487558380270,
+        "rshares": -51218846,
+        "voter": "cooldemos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53333238,
+        "voter": "donzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 252269790,
+        "rshares": 51191809,
+        "voter": "ladyboss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53324358,
+        "voter": "pampers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53298526,
+        "voter": "tweek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 932570039,
+        "rshares": 53278513,
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21974595275,
+        "rshares": 54340900,
+        "voter": "cristine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53264688,
+        "voter": "mallamahesh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 935727204,
+        "rshares": 54254783,
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 830944,
+        "rshares": 53180419,
+        "voter": "alexanderem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53168377,
+        "voter": "kelsee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 52104910,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50983830,
+        "voter": "amdj30"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 17701690051649,
+    "beneficiaries": [],
+    "body": "<center>[![thumb_96.jpg](https://s19.postimg.org/cc8s49gnn/thumb_96.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nThe @steemdrive billboard campaign continues its world dominance of grand outdoor advertising for the promotion of Steemit, the blockchain based social media platform. Electronic billboards are already playing 15 second advertising loops in the _\u201cground zero\u201d_ city of Durban, South Africa as reported in [our last proof of flight post](https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa). Furthermore, the 20M x 5M print billboard is currently in production, with official updates to follow.\n\nAs promised, we will be engulfing all countries around the world with Steemit billboards for as long as we have the fantastic support of the Steemit community behind the @steemdrive campaign. \n\nThe next target location is Auckland, New Zealand; hometown of fellow Steemian, and @steemdrive liaison, Shayne Shiells; who an active member of the community and deserving of maximum support for his campaign, take it away Shayne\u2026      \n\n<center>[![intro.jpg](https://s19.postimg.org/vu80xy2z7/intro.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nHi fellow Steemians, most of you know me as @cryptoiskey, I recently joined Steemit on the 4th of July 2016, which already seems like a lifetime ago. \n\nI have a background in 3D Animation and Design and have been developing for a virtual world since 2007. \n\nWhen I believe in something I like to invest myself 100% with no exceptions and I believe heavily in Steemit and the direction it is moving. \n\nIn order to ensure Steemit's success, I believe _**we all need to do our part to bring Steemit to the world in whatever way we can**_. I have started promoting Steemit on the beaches of California which you can view [here](https://steemit.com/steemit/@cryptoiskey/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag). \n\nVenice beach was a great success and I will continue promoting Steemit on the California coast when I can, but for now I am excited to introduce the power of Steemit to my home country of New Zealand. \n\nI was born in Auckland and know the city very well. It is the perfect fit to start a Steemit billboard campaign and hope you will support this endeavor. The city of Auckland in New Zealand is a prime location for billboard displays,  let me explain why.\n\n<center>[![auckland.jpg](https://s19.postimg.org/fx4nnhl77/auckland.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nAuckland is the transportation central for the entire country. There are 1.4 million residents, not including the extended Auckland regions. Auckland holds 33% of the total New Zealand population.\n\nAuckland's cosmopolitan dominance in New Zealand is very visible with 40% of the population being born overseas.\n\nHaving a large mix of ethnic groups in one area means many of their family members are still overseas, this will intensify the exposure to other countries, by utilizing a faster chain effect. People are always excited spreading the Steemit word, which I am sure is a valid advantage.\n\nNew Zealand also attracts tourists from all over the globe, with 3 million international visitors landed in Auckland In 2015. Many of these international travelers are from a younger generation seeking high-octane adventures and publishing their experiences via social media. Steemit blogging is a perfect fit and a billboard in the right location can take advantage of this demographic.\n<b></b>\n### Below are the available Billboard locations.\n\n<center>[![bill-loc.jpg](https://s19.postimg.org/klp8wezrn/bill_loc.jpg)](http://www.steemit.com/@steemdrive)</center>\n\nYou will notice the 2 black arrows. These are 2 locations I think can take advantage of Aucklanders and International visitors.\n\n### Billboard 1 - Nelson St.\n\nThis first billboard is located on Nelson St. in city central and is perfect for the visitor demographic as well as Aucklanders. What I like about this billboard is its position in relation to the stop lights. It really stands out between the 2 buildings. It will also take advantage of the \"stop time\".\n\n<center>[![a112-original.jpg](https://s19.postimg.org/j7xm140ib/a112_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a112-steemit-added.jpg](https://s19.postimg.org/m4kn1e6c3/a112_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Nelson St. proposed artwork concept</center>\n\n+ Size 6M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,676,161\n\n### Billboard 2 - Great South Road, Penrose.\n\nThis billboard takes advantage of dual traffic flows. One of the traffic flows contains 3 lanes of busy traffic. The viewing time is extended because of the sheer volume of stop lights. The billboard is heavily illuminated at night as to peek interest 24 hours a day.\n\n<center>[![a215-original.jpg](https://s19.postimg.org/vewr4xh1v/a215_original.jpg)](http://www.steemit.com/@steemdrive)</center>\n\n<center>[![a215-steemit-added.jpg](https://s19.postimg.org/todq3fzir/a215_steemit_added.jpg)](http://www.steemit.com/@steemdrive)</center><center>Great South Road, proposed artwork concept</center>\n\n+ Size 12M x 3M\n+ Illumination (viewable at night time)\n+ Monthly Visuals: 1,119,333\n\nAll of the billboards locations in Auckland have great statistics and a rotation campaign would definitely work well.\n\n### The main reasons I like the two aforementioned billboards are:\n\n1. The locations take full advantage of stop lights which I believe is a key factor for driver awareness.\n2. The statistics are very high in both locations.\n3. They both are visible at night time giving them 24 hour exposure.\n\nAuckland is a great starting point to gather some statistics and see how the New Zealand market responds to the Steemit billboards. New Zealand is very touristic and if placed correctly it is possible to take advantage of certain cities at specific times of the year (The seasonal charge of tourists). Tourists = Global.\n\nThe @steemdrive team thanks you for your support thus far and hope you will support us once again, bringing Steem powered billboards to New Zealand. \n<center>[![auckland.jpg](https://s19.postimg.org/w9jaqyowj/backpackers.jpg)](http://www.steemit.com/@steemdrive)</center>\n<center>Remember to `VOTE`, `SHARE` and `FOLLOW`.</center>\n<hr>\n\n<hr>\n\n**Terms and Conditions:**\nSteem Dollar payout funds raised from this Steemit post shall be primarily allocated to the New Zealand billboard campaign, and/or any other billboard site or @steemdrive public project where funds may be required in accordance with the general campaign terms and conditions.\n\nNed Scott of Steemit, Inc. approved the use of the domain steemit.life on artwork, which will point to a referral link for campaign tracking, otherwise not possible if steemit.com was advertised.\n\n**Previous Campaign Links:**\nhttps://steemit.com/money/@steemdrive/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\n\nhttps://steemit.com/steemdrive/@steemdrive/steemdrive-the-last-mile-for-27k-billboard-campaign-and-vote-of-thanks\n\nhttps://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts. _(Ricardo Goncalves' @steemdrive interview with Beyondbitcoin Hangouts, FFWD to around 30 minutes)_\n\nhttps://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa",
+    "body_length": 7564,
+    "cashout_time": "2016-08-23T17:08:12",
+    "category": "steemit",
+    "children": 131,
+    "created": "2016-08-16T17:08:12",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"news\",\"life\",\"crypto-news\"],\"users\":[\"steemdrive\",\"cryptoiskey\"],\"image\":[\"https://s19.postimg.org/cc8s49gnn/thumb_96.jpg\",\"https://s19.postimg.org/vu80xy2z7/intro.jpg\",\"https://s19.postimg.org/fx4nnhl77/auckland.jpg\",\"https://s19.postimg.org/klp8wezrn/bill_loc.jpg\",\"https://s19.postimg.org/j7xm140ib/a112_original.jpg\",\"https://s19.postimg.org/m4kn1e6c3/a112_steemit_added.jpg\",\"https://s19.postimg.org/vewr4xh1v/a215_original.jpg\",\"https://s19.postimg.org/todq3fzir/a215_steemit_added.jpg\",\"https://s19.postimg.org/w9jaqyowj/backpackers.jpg\"],\"links\":[\"https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa\",\"https://steemit.com/steemit/@cryptoiskey/the-first-steemit-graffiti-on-venice-beach-california-our-mission-to-spread-the-word-with-100-steem-cards-and-steemit-swag\",\"https://steemit.com/money/@steemdrive/sa-s-city-of-durban-to-be-engulfed-by-steem-the-world-to-follow\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-16T17:08:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 213555656400500,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "6946.259 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails",
+    "post_id": 837346,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "title": "Steemdrive: New Zealand's First Billboard Campaign - Auckland the City of Sails!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-new-zealand-s-first-billboard-campaign-auckland-the-city-of-sails"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7091789419092,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 28421306818658,
+        "voter": "smooth"
+      },
+      {
+        "percent": "68",
+        "reputation": 85602977273,
+        "rshares": 28856182775,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "6800",
+        "reputation": 8151223409709,
+        "rshares": 11547432333778,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26908937960730,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 314859374093,
+        "rshares": 117153738816,
+        "voter": "penambang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14541454302697,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40478437385795,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "3500",
+        "reputation": 176979684007,
+        "rshares": 12844542811725,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 134841384049,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "3300",
+        "reputation": 16685610555705,
+        "rshares": 7010817118448,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3090883310,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3751600607,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703041511,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31405352060596,
+        "rshares": 5824533973993,
+        "voter": "clayop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52757873614,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1656788098,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213486537,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34612931967,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2596123420368,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 4953659261030,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1050743329481,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621573110,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "500",
+        "reputation": 147478489309626,
+        "rshares": 71545170677,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 921837962,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5992588876858,
+        "rshares": 21098625559,
+        "voter": "hcf27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 45179645003,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 5025012507,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287843749,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 87278685433,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 23130933355,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11259119702,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 829535747,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 3654082102,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25134704062,
+        "rshares": 543059088,
+        "voter": "f35720"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 127172358363,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5171467941,
+        "rshares": 14146724265,
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 4667473657,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 94995151405,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45576935659,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2135979533,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3489651223,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2177642624,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 91973363311,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 7170017526,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594921720930,
+        "rshares": 4023048939,
+        "voter": "mrkhuffins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 39133037831,
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 60877390332151,
+        "rshares": 213893213977,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1439678714,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 48503254530,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7564949611,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 313397420054,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 367001031531,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 354491950,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238101508714,
+        "rshares": 10493959254,
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 90250548483,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 361302473837,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 237316155902,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53949422400,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 19542347966,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 180361081869,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1147181770,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 178134182658,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13557964207046,
+        "rshares": 83756720354,
+        "voter": "soulsistashakti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 73330821390,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23195120933,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1455229073,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30097018787,
+        "rshares": 315272215,
+        "voter": "bitcoinnational"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 41162837415,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 152610751574,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2676865682314,
+        "rshares": 33167263907,
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696041082748,
+        "rshares": 593252311,
+        "voter": "proglobyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5412463822,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 11422730697,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 26197763695,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31294492326,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 2153768921,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 46942620740,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 2933990260,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2244371641,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 3567818391,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 999100627,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 61102671700,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 2488363646,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 153081523002,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55577398106,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 2357586913,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 13518403186,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 550545019366,
+        "rshares": 956499846,
+        "voter": "cuckoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250629310,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "3300",
+        "reputation": 213668684615,
+        "rshares": 111266825,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 11598524126,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 2488327899,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 86732863426,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 17490066959,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 4975078320,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 2620127809,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 231502490670,
+        "rshares": 625722935,
+        "voter": "suchnewb"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 29740244366,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 214183155,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1426776801,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8695455121,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5093280360794,
+        "rshares": 17386970458,
+        "voter": "freiheit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10581478212,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 119197615017,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 241513668,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1322665638,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3181701822,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 117075692961,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 105469798077,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 40456093013,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 263539417,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4375279402,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 14354150809,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18033891928,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4025876756,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 139437346399,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 138158323222,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19450243690,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 12111904102,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 59948957580,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 203840552,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2576891078,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1723503984,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8814210013,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1424731565,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363496863697,
+        "rshares": 494835022,
+        "voter": "jillfeint"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 195108235931,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25839609028,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 75093674684,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4195791223,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3693094240,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 148525300554,
+        "rshares": 14373825169,
+        "voter": "martin1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 82600823004,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1484107810,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1312824728,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10244507265,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 12360467699,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2248615528,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 19162351843,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34932026701489,
+        "rshares": 144757025244,
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3270068768,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 4207979237,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14191091653,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15484275207,
+        "rshares": 162548310,
+        "voter": "soulthug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6875049105,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 10808706161,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269270087101,
+        "rshares": 166034245,
+        "voter": "dnsz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37296084,
+        "rshares": 931679689,
+        "voter": "frankpryor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 985503736,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 2712122271,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34507940819,
+        "rshares": 595467367,
+        "voter": "siol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4971101667,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5043336912,
+        "rshares": 1893531816,
+        "voter": "idan4326"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 10938373493,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 67919004974,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172953944203,
+        "rshares": 1204340213,
+        "voter": "rushd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232725183972,
+        "rshares": 2236861513,
+        "voter": "ramblin-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1887835506,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 116382038,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 940333523,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "5000",
+        "reputation": 2795999874461,
+        "rshares": 466212714772,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1217965675,
+        "rshares": 362267920,
+        "voter": "queiroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2215583453,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115387523,
+        "voter": "skunik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 5949903064,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 114881292,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 1102035317,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4351101823,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4445653859,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20782968,
+        "rshares": 114132846,
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 438637419,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 38831196502,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191549314459,
+        "rshares": 914953153,
+        "voter": "coinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2427471195,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 5512637312,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2557225302857,
+        "rshares": 5091712349,
+        "voter": "puhoshville"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2851899479,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 95063711,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2642781889634,
+        "rshares": 6237229890,
+        "voter": "steve-mcclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 69869628014,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 863446792,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157137439238,
+        "rshares": 111635397,
+        "voter": "nighzmarquls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 938060542524,
+        "rshares": 711148677,
+        "voter": "candy49"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 29279615965,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 331498852,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65378762684,
+        "rshares": 134803255,
+        "voter": "mairavrg"
+      },
+      {
+        "percent": "3300",
+        "reputation": -4779249072914,
+        "rshares": 109237097,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 739615310,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112407757,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 2334340277,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14690691636,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 16361722939,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2387723771,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 170875886676,
+        "rshares": 83869834,
+        "voter": "nickskywalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2078560081,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 119675184,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228822204035,
+        "rshares": 880974380,
+        "voter": "toxichan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 102348882,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4563444086813,
+        "rshares": 2718091982,
+        "voter": "jokerpravis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 30691300049,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1293874910,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 63300522,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2337037146737,
+        "rshares": 7323618776,
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6544706071,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 68682650401,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361409840466,
+        "rshares": 147832214,
+        "voter": "margot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62842616,
+        "voter": "kevinhoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7538910886,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 16431877139,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 75436221,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851205309677,
+        "rshares": 4068639160,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12969824499,
+        "rshares": 63675345,
+        "voter": "varuas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1411972851,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 184775476,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1785122109,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 662317039,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404167627983,
+        "rshares": 6602889863,
+        "voter": "randolphrope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 26999446974,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5099237822,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36192115461,
+        "rshares": 78204962,
+        "voter": "millen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 4555849418,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 11391522918,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 849623403126,
+        "rshares": 698448734,
+        "voter": "vegascomic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 64019062,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 290868192700,
+        "rshares": 366093620,
+        "voter": "ottodv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 1358383666,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 25711420325,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2363634617,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101027252353,
+        "rshares": 190497451,
+        "voter": "spoonermlt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 571200841,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26311363874,
+        "rshares": 65668582,
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 59127162,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 94246101,
+        "rshares": 60234624,
+        "voter": "tammyyin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3746908961,
+        "rshares": 59915538,
+        "voter": "nbdeledrifts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 70111504,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 56961785,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 121862219,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27504418847,
+        "rshares": 83936892422,
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1009466314,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1629742923,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36514411336,
+        "rshares": 70986316,
+        "voter": "jacksteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 375935350,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 445271803,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 58964015,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 53959064,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 389157557895,
+        "rshares": 55769685,
+        "voter": "lasseehlers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 30581032443,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1126661725,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 841764781,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6857689066,
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3781665514,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 9065603232,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 67029397,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 20936336941,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 2806600152,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101524085,
+        "rshares": 58897154,
+        "voter": "purplelama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 57828186,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318687464222,
+        "rshares": 83305685,
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125125489484,
+        "rshares": 76802569,
+        "voter": "ozertayiz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 13518032278,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 547956452,
+        "rshares": 57632635,
+        "voter": "ihazaname"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1310859486,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 806039558963,
+        "rshares": 1250544103,
+        "voter": "terryrall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117598348160,
+        "rshares": 321001176,
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1565744970,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1761785202,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 1176722422,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 130889172,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5788018857372,
+        "rshares": 257577089,
+        "voter": "pseudopoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 55750195,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 118398300,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 120048594,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 645486275140,
+        "rshares": 1317394072,
+        "voter": "jchiogna"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 227415344771,
+        "rshares": -58245565,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60366373217,
+        "rshares": 70290056,
+        "voter": "raseukinapobri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 65086623,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18234699449,
+        "rshares": 58186044,
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3835217954,
+        "rshares": 56719431,
+        "voter": "lilbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 56661775263,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 120907621,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 398583502,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 8464337545,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55377253,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 3630029664,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6332865841,
+        "rshares": 57535214,
+        "voter": "davincij15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 57971965,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 29256369959,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2132585670,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 9500362322,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8113893564,
+        "rshares": 57176651,
+        "voter": "donneker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107374302,
+        "rshares": 55978702,
+        "voter": "phonemonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 62556489,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 2712604436,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14762167320947,
+        "rshares": 24617514571,
+        "voter": "daxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 1119030040,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 652958439639,
+        "rshares": 75243243,
+        "voter": "ksena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90062656329,
+        "rshares": 56914472,
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 350670901,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 54547175,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 173358680,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2544245232901,
+        "rshares": 93363315,
+        "voter": "getonthetrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 55649675,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 121466526,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 167718520,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 1041203488,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 56759615,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5471743844289,
+        "rshares": 2012627660,
+        "voter": "elewarne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 1125741534,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 501837884,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55025746,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508950818,
+        "rshares": 173158802,
+        "voter": "grayhorse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30965802380,
+        "rshares": 67314176,
+        "voter": "russ512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 209942172295,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 113710888944,
+        "rshares": 55713891,
+        "voter": "maarnio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54584359,
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 818442,
+        "rshares": 53471592,
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 193759655472,
+        "rshares": 115562685,
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1708267266,
+        "rshares": 832480836,
+        "voter": "stepa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 91733268,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276225890,
+        "rshares": 55410689,
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97476072754,
+        "rshares": 56693331,
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32457729298,
+        "rshares": 492433664,
+        "voter": "venusdehilo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55275332,
+        "voter": "jmendiola222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 2110924737,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25061971509,
+        "rshares": 54072807,
+        "voter": "q1248"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1709208580,
+        "rshares": 54990943,
+        "voter": "shax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20477968943,
+        "rshares": 54156428,
+        "voter": "samfi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 51301791,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 67051047,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142829147182,
+        "rshares": 374243560,
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -236066174395,
+        "rshares": 71027434,
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 53452043,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 50222829,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5014250342169,
+        "rshares": 86707783,
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 55668201,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11427084577,
+        "rshares": 55584646,
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1243780278579,
+        "rshares": 53774061,
+        "voter": "lloydy"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 53103516,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 54154145,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 53231948,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5156839136,
+        "rshares": 53393524,
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7766373,
+        "rshares": 407383334,
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5000717548,
+        "rshares": 51909373,
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 52943536,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 52871755,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52157712,
+        "rshares": 53877238,
+        "voter": "borntobealiveent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24959457597,
+        "rshares": 52916666,
+        "voter": "littenti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 52591467,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2914114578419,
+        "rshares": 51514185,
+        "voter": "rigaronib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 52528251,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52320341,
+        "voter": "gaurav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26745069665,
+        "rshares": 53352742,
+        "voter": "nemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52305084,
+        "voter": "fganz72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52281058,
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 52277186,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53318692,
+        "voter": "jibinkor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 522910185,
+        "rshares": 52272460,
+        "voter": "coyotespike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53287995,
+        "voter": "jamebuffalobill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13906758,
+        "rshares": 52230107,
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60463245122,
+        "rshares": 52218833,
+        "voter": "i-repost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248371338,
+        "rshares": 52218376,
+        "voter": "mudin"
+      }
+    ],
+    "author": "mynameisbrian",
+    "author_reputation": 9999779221262,
+    "beneficiaries": [],
+    "body": "In the beginning there were few...\n\n<img src=\"https://lh3.googleusercontent.com/bEdy50gH2ogFrQkAbbE0QOI4vwAbTct54hhDw6M9Mol-ULh4xOLoXyiCkHMRENVlGs_a__h1UST-hHpEf5Y4kP7CSosvQL8bniq6BTLpl0sJdrnjVyZyN1-EtVCmxfd30xOCRXUH0sdw9s38qhjanGvfNACdNYCbonDoReILddRRxzeJCwv66ugdh1p8IBZW0Wwlpzdfo-DA1jsTEwJguG3SNAxM6Qe8IZbpCsqjsPTKLOsVnA7F8bSyhjVSJ9ygUN1WWmxNW40OjzefMPVAbcLquSJiFjlpnKQW7e_-K0lI4Yh065DA6fb7YLu5VtIbruvDwCMAXJlUmRlYLUXN3GHubVinZiLbPmD8d0OJHWQR7CiZt-jLHkSvfu2HPtQO_9oYqrHen7a55O9AknTta7cJdGCnmZcDCVFTUG3nWPyOEvKKxTiOhK3EjvIwnoXaUgFONsgmk2w9-ZU0VXfzVM6Wjp6UAaHgQSZkIm7FNXei5wBeBNBAcM2sw77EhR9XjaQR9B6_7-WIOhGsF89q4omRzD5QYCEa8zLooOizHkA_mwz8BGJP2814PM4bi9m-XcuMfHfxrn772zyTMISerdO6Dn6-CrPYdIo3tmpRxrGJTYTHqg=w1000-h700-no\" />\n\nSteem was abundant and competition was low, thus the few gorged themselves until they became blubberous monstrosities capable of consuming any fish that dared to cross their path.\n\n![](https://lh3.googleusercontent.com/1gPOAJu7qWhMTu9B4KehylR_cyv_o9inydRGJlzmFrKOT958HjaXY8Mi_NBhwyrnFNpP94phoXZWthQaF2PRRXy5JBzk6pGS3q-RUBQGFGZfX7jvPsGRR-sbr_UvorIG4Qtd96E3i1p4HYa5Vs71nkIOwAGgnOgGfLhFDoK4h1V5AyGQtjfIGgKgjxNCp-lhkxkxdKxEmhIVr6Bkq0kkOviqXEphtQO2DrdTJgJGDKM9xzV7f5jGXrfARN-guqaF2qxvk4yzN7N0UlTomqVeyBfBMi-oDWcWM9GxtBQifGbYpL8QMwKzHpxC_8VpL46od1VZxssQmtm4HJLLRhSPNbMafBvYkk6wApdAidYb31JBG7krD_bqmgEq99Z41AwDslW4SlVkmtBYmelvml4moXLg6lPMcMKhCpJ-s7TIHoSgWoCRY9fCCk7FSUByGjEgWniEmvr3zJubq57EJfKWvrrXCvVoumDARU0PRjMLEaQXePn2OGx7AoipDWuIRMNvR0sXfGOt2tk_nDEqu2UmHCG7NIxF_T84y0UlhVgeOT6KLQ4vLG-HSL4WwSsS4FgtpYWD8rlmfxoQl7kV_44mmpRERbS6EM5IbuKi0HwlBhAjMBMpJQ=w1000-h700-no)\n\nThe whales remained fat and powerful - capable of pushing any post of their choosing to the top of the trending page.\n\n![](https://lh3.googleusercontent.com/UKVJNAA-PeWnEGYECCu9tOTgnk0pd28kVJKfmF2hSF4JeWGmRUqzNuKlGzdkImZHesmVXqISoccmfHlAZ9dw6FNuDgGvnf_5A6ksM2w90a_onFdpeug0IV-xIbfN3oL_GPtLafP2cre29pgsfLdma0VoWvkWoxhHo4A1uTauhQj8TwnfujUbDdFb-hN04AoJGeiQe-nxEWKfL6X16KsL6gqrK6_HLwfyWwGZYzOmLOXPDROfA8jUtOJa9mFNDaxKNTppOCYHMgspX1Msr7jgU8riJQhkzCl2auJkVod0o0jj4Z7dG2Kicyiv6sd8ePgTsxl-4CMG5Ku2l8B440OyFhXP-NxbPguu05fjx43YT5_8cuiL3zHXIURmCZyK4IPyQSh5FExe0PGLFc_r3Dx_1JDvVsSWaO1dGKxvwnDmitzT6oX3CtXu6hlWh9O3F0lygMarzKHk285QCYOUtfRGA3BlkqJY5GewyWBHdb3T00F1QF57nunOylj7l_R2o5BknamUuaz62CiUl14nOjAeJg9QOHywkATfe2A5rWAKS5BnCNbGmYq481Xy5j11TARh7u648sH0VSM0p7JoYfhHqCReLG93sIRb=w1000-h700-no)\n\nTimes were good for the Steemit whale, but down below there were rumblings of a revolt amongst the lowly, insignificant minnows.\n\n![](https://lh3.googleusercontent.com/qdiTMmJTmYBUR58_0E-QSgFUBvrxj7pAB_hoVwbbwFiuSKbVW1X7KkYpsu3wMXPzti1KhAFUpuU87RWidmr_VpGN6JOfF13dpk_Jbt_BVJhzMWGUqHWq22VoAioDZNr-QIZ1dI41HkZ1IlXIADv1kj-rJHGeE-YX-UxvkR1-tj7I-dT3NOCaQQILQ8djg2b9c4XAstjLiN598IkeN6f1ZQzIMHPP3Wj7HKd1gQrRsAoP89kAnFMtOoch9H_fFJWoOekzeJpKn1mgASOqGodffcxHSygJowzb-0x0t6p5lv_-xiBxWsjbiKKKSYGW3l9pzWHhd1AEpFw7pQQQwtzkw6LX6RexxiQDUQm8TKqmiMt14osKs826dNMkJ1NdwFGNOTJwaPcUgs8he8ojef8xDqJD_t5eK1vZUg3hidxuZJXopUQ5AL992gVQOSeLPL77nruo_QHx4tlrT5Jxhp-4Wato5VLJQ0UWriHRWg0396AigaPJNnT6P5B-RLGcn-ZiwvF_77lw-iSdmh1-KY_jZQSbnD6v3ujSenVZDI6SGu-MNS2t-Vjd078oMkD2Un5hGTSd8niHqIH0QXkLk5R39-gXB8PdIJ9y=w1000-h700-no)\n&nbsp;\n\n*Whale diversity?* The minnow was on to something. You see the few that reaped the benefits of low competition in the beginning all came from the same walk of life and enjoyed similar things.\n\n![](https://lh3.googleusercontent.com/7FY582A5ny5w8XKvDqmyxuEy-xmPgeVXkxvQaoh7EHzwFAqCD8giEPSRQ_sIeET5GbPH_hq6QAxC2kst0mLoLYzCsRx_TDAT-Stg1Or2z_DVbCNVQ8fO46_sCKaNZ6Wmcp8IWFlHf-hdftDXjxdNHBIsHhEG4Dl4nzLmRyTUIzkLv-WA0lNyjC20MOGj0dujkfg6v3X_wwpVW3tYj25cErsgxadPOIwm57w3wLgINYYO-8YNCVEs1Z17N9sTxIesCQFcgej0Wg6hl_1uIL1-lNUdXyEn9zRnLcmPd0Hm8wepfM7GsFCAO7foSh6ikuySW2dRIZsjIbiuhJXOkZiiTwXMG6hzELaiK25KvXVCNEDV0DjeKyVb8qLTsgy-LqeMsPKv3tTYmW53XRjZeIevwlexx_8uU3G1q_c4VW1ZOyHPhBBb62OhD3cTNtxtH0m1p8rQoXIQGuP2ljjOkRpwSshwIsVAQx20lTNcCUpTT0lei6N5TbSe3LQSmfs63L_-K7CsoqCMt6ZFaNXBtbEHtmtr6aV3a85cmw_9hX13a0NkzSs1LJxE3vxxXNwYPYnrbI0tS5oTzfWhgJJHQeaMFFwcYadrvRAj=w1000-h700-no)\n\nAnd incidentally...\n\n![](https://lh3.googleusercontent.com/b-FTLIFqKvBNrKaYJBsBOdQDQuqA035kvRN51cIOjV_QvYj5o_q5o2CdMrIcUoFmg89Yos0jKnLAaoQRY5TEpsDNu3j-dffijvxDLePMvtM49_SxU4LokNZfNy7HZ3yh3PKvl7_oYepYBCtkW9-u1gFrseHc9Cw3WIq12jkcAh40r_9jiTaCkefx2QdjsdE7f43YZn35sqQnvyK-U5Y-x3FpiaKT7XORBe5tMklRbJuy5puh1PYXqCbCRWhTa36rqg6zT4lZJXhduBsjq_cZZDcOQmRh54cNZ3yg9snFoVTfbsleGiG9XCe-65N3hHkg2o2uYMBDzRHow9qOO9JrB9YYcyr2RURrpVjFNcIW0078s58DYtph8SAP8QMCa6iDW6EuzFHG2iiK14afSpTGUJsAQLOAUGVb5B73VTSZXNn8W8ZiKws-9BkenegOgFKP80_UVmIRS38uwc6sHSDah5mQ2ckgIpdYs5mxJvjyvDfjlP13PnGn4vigAeANXWKRIz6ODoGbHxyN4QruVZIvJlVctFwvV3OOtMeNKoaPGCMqsgJ4QkM8R6EAbrKvQPj0wzm68sykO9Tbtkj1jkAvvAoCmNQeDpKF=w1000-h700-no)\n\nFor some this was perfectly fine; however, as more minnows joined Steemit the desire for non-crypto and Steem related content grew.\n\n![](https://lh3.googleusercontent.com/_Cgat8Ma4-b2gOQcWfzxuMVi_PWynqKTGY1-FOYh7DJDJxMX0CeuavZ5xolHDDDufIO3uo4XmseK9I_0D1BCz046GLwVWutWDBJcAd-BroFyj8KmhmC5vs1y6kVmMouTwO4J5Q95PkITP6yc2Huor2PxBq-YUD2toHJA2eW2qiibH9zBIb7yxPgCqa3LNFftXS45vuiQD28muY9nHmS7AW8vFn_U0gaN7jMDt8hRjRl1WDFRONel1uGWlcP_SJX6nud-jBi8ZZKfSjF86cN0owe8zAcjyfa6jDqxndZSU6onMXxIBDTUPxhvUXTkPMiJjepuAH_X1aS641DffnAvTF4_7u6JzB14Miduk7Q1q1jK7s1gjeIS7p2L7qc-fWAMFExlAZM62AOR-Kj4FOd6kYyL4042sOxoLeE6mcp0hCIBLP5lnZl9q1KUhJHfiFqGjhEZSIqqxQMo9Nkk632RfG5kTSnILOujGD-bb0cnergLWcefgw-9_uTkIhren80ZAwJa4lLKtK_xOw21C26BPK6L0CLVKa9VjxNY1aZkjGPZszUHhMhaRY4Nyw8xh4yKzMl1YQ8HVYaEVO2xM4ff5C2p7aYUVPN5=w1000-h700-no)\n\nFortunately there were intelligent whales that recognized the issue and decided to take action into their own hands to appease the minnow masses.\n\n![](https://lh3.googleusercontent.com/_WMDmgCEM_g1Q3OTZ2IBQUaQZ5xDNq3bqgleBZyiVmf3Akvvq5whtTVx_0zIZoZ3J2yQEyrutSRxFbHrSuzwr97tPEfxUb8YyiemCq-NEPLljfkK1pshMpPieLdF52Csuhgdj2rWXKPp8wJQMxf0VmEZcg4W5BaDvUdTg9iJL2_4SoGAKBnAviKacKenxli8zaVcjS7CmyUo6EDHebOgx4XBGOs5lq52lD1_JMZTNlqOOoxnMkCcoWDlfvvBthaBRKrdECES4O-fYITvZEKdxRoxnk4Vxi1ylUqUTvUKjdQM3rnEf0Pbq_4U7qfe24Yzz1RQt2n4SfbVlif3eBRxEkW-pZPMwCtSQeTEDnwsrGwE1voufdM6TsIFiFn9Buz2436e162swat6I2M0bUnSVIMh5mwuT44_Bqd70-W6LMt-4_P58O3vPAr91EVuDZLGRlliMDa9AhUm4UXKpV-YVhl0r40R08wBHvAEk101610hm3hkJoC9mACzA6OGjhSeJFazjuYlpU4yWT8NEYYv2F__4q_jYXfEvZDK3lcOgsIsWpajKRxglos7v_1lKV91Qj6SmDlglWNrSqR2_CvlzZnyiIfGOKYZ=w1000-h700-no)\n\nThe whales kept to their word and over time minnows from all walks of life slowly grew up to join the whale ranks.\n\n![](https://lh3.googleusercontent.com/yr0h2R4aRsIYOEi_TzJ0_jKDu2ijRp26s_iDqaN8h5zt_ICrSRAzPgUt00x9lA7ZmIUtaHsMe0LRey-qImy-OmHN5fQftmuR5WinqJrCEQxKfNwqR5ysZhpOrUtmOzKk2vg3ClmxSFUYoifDFhp81zrHddUyhy7ZdYgB0aAfULv_BqMYzK7QNitPYPoegOJxNkbv6Z6CU8dC2gEE48rBPuLb6VAt6LJLnqw3Tua9qADtFp_TR-wjYgGGBeGjk1HwKN0cNSG9FbI3kiBkOWADUY6RcWlXGRH24DpSGo01HqluVKjWA7UGzESgzJ0_O3aNExpMITGW5NQzxYU6QMWGBnhygD0BlkNKwdH7MuTzmvGyjIDE7tydiqUAd484MwU9DPPBOML2e6OJ6UsSVFkGe6q_0m4NDuJpCwtVEPbawjS0gUXO1rgV5FDdAUNuS18bhFV201aJgIB9OxMt6lJVFe32YDaT_hDiXP1eCb9wr1K4wJZY_GRqDtu83pbIvRVI6mIKoq2MfGfQf9lD0Vt5V_ISKoOhYfIQcNtD46vrNs5CrxM1KdIaY2e_-yv0sZ-JbRAK6aPZu-s18TU6ixKDDAGHY1V9lFp0=w1000-h700-no)\n\nThe whale diversity problem was solved and Steemit evolved into a social networking utopia where all points of view were equally represented, supported, and rewarded.\n\n![](https://lh3.googleusercontent.com/HKRf2YGck4_74_YgTXzxvjwbAer6gj4rsHb7HaN0VpfTb70QY6BWeStAnHzwMVes2s4kaD5MdZy6jNEA0uJUDfFuZvsHKPDCjHb1smA39aYhgDCJizyUsZj8CsUYVsLUH3YTPavhsOFMLOI9a_6PqJHts_x8TEjFIJi1_QuWlChGMM3qDyoJO1yYMFz5ak4VpUyqArY0gfkxOaCYX4bmffKqaPec4xA2RAzp-VZMpeV-n96SBHbrvV7PCee-_OMUby1HSLH-vzIo4dkNfS9Sp7zXDLCVXeITcaLNnY1JdODbAjkGxqntIVWxTnc9JXmb7UspZriRu4YrJnPWg_XaGVhiKpa4dM7dcntLqLDyaInN-poyybJA4W7qLvacJoxBln9rdP0Mj2-sKe1fSkqCvrTk7Z9pQXkPXzzbEJoNZriI9e_ZCwwkHJfbWuUMHP_zsppB4U1fsfXxlgros3_oc5fP9YJmcqRXJP_--VZbkN87fdNVDBQj61DOfJ7hQG7U9uMa9i8m0VSM4e-ic2iR24Gt5Zgt119zQyFpR-3cbvB14POxKdG3-gnRMmohgkTRaMkKC5naCIMNyWhG4_92k8EVV8xwoKzyb4PFwOMuDQdbUuVgGg=w1000-h700-no)\n\n***Footnote:*** *This account is 100% factual*\n&nbsp;",
+    "body_length": 7997,
+    "cashout_time": "2016-08-27T03:16:48",
+    "category": "steemit",
+    "children": 98,
+    "created": "2016-08-20T03:16:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"marijuana\",\"art\",\"bitcoin\"],\"links\":[\"https://lh3.googleusercontent.com/1gPOAJu7qWhMTu9B4KehylR_cyv_o9inydRGJlzmFrKOT958HjaXY8Mi_NBhwyrnFNpP94phoXZWthQaF2PRRXy5JBzk6pGS3q-RUBQGFGZfX7jvPsGRR-sbr_UvorIG4Qtd96E3i1p4HYa5Vs71nkIOwAGgnOgGfLhFDoK4h1V5AyGQtjfIGgKgjxNCp-lhkxkxdKxEmhIVr6Bkq0kkOviqXEphtQO2DrdTJgJGDKM9xzV7f5jGXrfARN-guqaF2qxvk4yzN7N0UlTomqVeyBfBMi-oDWcWM9GxtBQifGbYpL8QMwKzHpxC_8VpL46od1VZxssQmtm4HJLLRhSPNbMafBvYkk6wApdAidYb31JBG7krD_bqmgEq99Z41AwDslW4SlVkmtBYmelvml4moXLg6lPMcMKhCpJ-s7TIHoSgWoCRY9fCCk7FSUByGjEgWniEmvr3zJubq57EJfKWvrrXCvVoumDARU0PRjMLEaQXePn2OGx7AoipDWuIRMNvR0sXfGOt2tk_nDEqu2UmHCG7NIxF_T84y0UlhVgeOT6KLQ4vLG-HSL4WwSsS4FgtpYWD8rlmfxoQl7kV_44mmpRERbS6EM5IbuKi0HwlBhAjMBMpJQ=w1000-h700-no\"],\"image\":[\"https://lh3.googleusercontent.com/bEdy50gH2ogFrQkAbbE0QOI4vwAbTct54hhDw6M9Mol-ULh4xOLoXyiCkHMRENVlGs_a__h1UST-hHpEf5Y4kP7CSosvQL8bniq6BTLpl0sJdrnjVyZyN1-EtVCmxfd30xOCRXUH0sdw9s38qhjanGvfNACdNYCbonDoReILddRRxzeJCwv66ugdh1p8IBZW0Wwlpzdfo-DA1jsTEwJguG3SNAxM6Qe8IZbpCsqjsPTKLOsVnA7F8bSyhjVSJ9ygUN1WWmxNW40OjzefMPVAbcLquSJiFjlpnKQW7e_-K0lI4Yh065DA6fb7YLu5VtIbruvDwCMAXJlUmRlYLUXN3GHubVinZiLbPmD8d0OJHWQR7CiZt-jLHkSvfu2HPtQO_9oYqrHen7a55O9AknTta7cJdGCnmZcDCVFTUG3nWPyOEvKKxTiOhK3EjvIwnoXaUgFONsgmk2w9-ZU0VXfzVM6Wjp6UAaHgQSZkIm7FNXei5wBeBNBAcM2sw77EhR9XjaQR9B6_7-WIOhGsF89q4omRzD5QYCEa8zLooOizHkA_mwz8BGJP2814PM4bi9m-XcuMfHfxrn772zyTMISerdO6Dn6-CrPYdIo3tmpRxrGJTYTHqg=w1000-h700-no\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T06:12:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 170483910533651,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "4048.919 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-evolution-and-diversity-of-the-steemit-whale-past-present-and-future",
+    "post_id": 900107,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Evolution and Diversity of the Steemit Whale - Past, Present, and Future.",
+    "title": "The Evolution and Diversity of the Steemit Whale - Past, Present, and Future.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@mynameisbrian/the-evolution-and-diversity-of-the-steemit-whale-past-present-and-future"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 6789476536682,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 29060911755040,
+        "voter": "smooth"
+      },
+      {
+        "percent": "50",
+        "reputation": 85602977273,
+        "rshares": 28856182775,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "5000",
+        "reputation": 8151223409709,
+        "rshares": 8830389431712,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13270505121655,
+        "rshares": 65730507058391,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6523804990505,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 1965835885365,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5846608954036,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 18962694857611,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2471563642,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2999847533,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562206278,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 42121652946,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1324839354,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170734595,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 53880737032,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5049809409356,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1050608613958,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 257041190383,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 497059573,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 735756350,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 24204174129,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 67419834921,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230196550,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6863537479759,
+        "rshares": 39273276810,
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 34806671164,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 410854861624,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 100000733772,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "8000",
+        "reputation": 4931834878069,
+        "rshares": 20408344700,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2050540352,
+        "voter": "gekko"
+      },
+      {
+        "percent": "8000",
+        "reputation": 5414208804644,
+        "rshares": 26795757890,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122177444407384,
+        "rshares": 1729661907602,
+        "voter": "cryptoctopus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3562975741,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 531012601278,
+        "rshares": 2149581894,
+        "voter": "cryptohead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508314471,
+        "rshares": 627712922,
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 76849604989,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 425520017,
+        "voter": "yoona-lee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 59010351871,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594921720930,
+        "rshares": 4105151979,
+        "voter": "mrkhuffins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 45596034197,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1799453027,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19196721390,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1773113356,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1095245594450,
+        "rshares": 49772843795,
+        "voter": "luke-crowley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 313324511768,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 409936241711,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 362198296,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 93824978400,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 16534866092,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238101508714,
+        "rshares": 10284080069,
+        "voter": "crossroads"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 90245633242,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 181224843039,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9346126115,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 244961482082,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 346981747642,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55090474424,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5092263832878,
+        "rshares": 12627152083,
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 63901507013,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 197365623559,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1201347285,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19659075136,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 76490270052,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 732569491,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1532215131,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1379016378,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 40339580667,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 137721329373,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5412463822,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 183482843560,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19196715690053,
+        "rshares": 73958830030,
+        "voter": "charleshosk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 49863343348,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2474423956,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 13226027320,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 26180732963,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587584054096,
+        "rshares": 13676545628,
+        "voter": "omarbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 8832015393,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 1019490436,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 252877894,
+        "voter": "glongsword"
+      },
+      {
+        "percent": "10000",
+        "reputation": 759728295534,
+        "rshares": 6470273968,
+        "voter": "emhaze222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 2868382485,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54984589934,
+        "rshares": 298381626,
+        "voter": "kosimoos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4932946013,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 4829598529,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250436670,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "5000",
+        "reputation": 213668684615,
+        "rshares": 111266128,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12371658632,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 135252917712,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 91030642353,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91531121710,
+        "rshares": 290611180,
+        "voter": "bryanj4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 64620383869,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 231502490670,
+        "rshares": 638237394,
+        "voter": "suchnewb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 264925687623,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1486173587,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 265940683567,
+        "rshares": 589197515,
+        "voter": "iamjmgx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 41304962133,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38421201873,
+        "rshares": 36628991837,
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "8000",
+        "reputation": 19111656178138,
+        "rshares": 43495419958,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10793107776,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "8000",
+        "reputation": 3891722,
+        "rshares": 485360466,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "8000",
+        "reputation": 9142611234,
+        "rshares": 537655521,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "8000",
+        "reputation": 3871042,
+        "rshares": 497561630,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 236683394,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 103401762820,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6427602632,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 268810206,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1856960836286,
+        "rshares": 14636537190,
+        "voter": "fulltimegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 243392987,
+        "voter": "bittog9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 4106394291,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1859411946,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 18687506137,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 327801258320,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116030738839,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 52751435068,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 203840552,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 70927942430,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9614201114,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2015944159,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1670193490,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128872715192,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 379074481,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274966694,
+        "rshares": 240049444,
+        "voter": "winstonjerry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25700558035,
+        "rshares": 145855812,
+        "voter": "christianus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510987855,
+        "rshares": 240374641,
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6863072932,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25839521482,
+        "voter": "creemej"
+      },
+      {
+        "percent": "0",
+        "reputation": 2974404080988,
+        "rshares": 1498848826,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4195791223,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3040770542655,
+        "rshares": 8583188022,
+        "voter": "warrensteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3768463510,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84252377918,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 117448996,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 12295332022,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14188958368,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7161509485,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 10807655536,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 14615339974,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4322495797,
+        "rshares": 117526541,
+        "voter": "skybean"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 10935349548,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 69428316195,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852406580,
+        "rshares": 114838181,
+        "voter": "ggabi.loper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 743656664450,
+        "rshares": 1761920939,
+        "voter": "tokyodude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 109399116,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 11757087467,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 932255453376,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1217965675,
+        "rshares": 362267920,
+        "voter": "queiroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2170744241,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "8000",
+        "reputation": 10519849768972,
+        "rshares": 16436451789,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 27776873855,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 435182410,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4828928518,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 49852905345,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 115387959,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 6140076559,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 1734714340,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 159990554605,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15403904348,
+        "rshares": 120834885,
+        "voter": "takahan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2635314385,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 6669357952,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "8000",
+        "reputation": 147425730,
+        "rshares": 511819814,
+        "voter": "fnait"
+      },
+      {
+        "percent": "8000",
+        "reputation": 3720753029,
+        "rshares": 502109046,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 2851899479,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3702085260958,
+        "rshares": 18579856385,
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 59005064575,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 157335893,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 828379504,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15461414574,
+        "rshares": 102166412,
+        "voter": "infosounds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 331324485,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "5000",
+        "reputation": -4779249072914,
+        "rshares": 109236400,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 489551694,
+        "rshares": 7218545168,
+        "voter": "carlosf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 739574722,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 96979241,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89039117574,
+        "rshares": 16804387213,
+        "voter": "bulkygangsta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14690691636,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 13386638185,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2076712286,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 102348882,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 388918755,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7354265245,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2337037146737,
+        "rshares": 7177146400,
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39744649494,
+        "rshares": 4509628668,
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98938671458,
+        "rshares": 95896124,
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 8543127520,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7388132669,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 2790097930,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 36517014867,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 132361142,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1468923383,
+        "rshares": 63700992,
+        "voter": "rataloclaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1409516878,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 277163214,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1823929112,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 662317039,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135368634,
+        "rshares": 88945026,
+        "voter": "doapsauce"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63105810,
+        "voter": "loot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 4748460884,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 769736316,
+        "rshares": 83829373,
+        "voter": "cryptogal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 177807693,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 13330430797,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11942664690,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1612625503,
+        "rshares": 62645030,
+        "voter": "labeller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 97611154398,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 419523963,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3537992772642,
+        "rshares": 38827607895,
+        "voter": "blockchaingirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10330265843,
+        "rshares": 60333839,
+        "voter": "cassidy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 94246101,
+        "rshares": 61439317,
+        "voter": "tammyyin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 481938011326,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1137177309,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 106783648,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87497032,
+        "rshares": 59271464,
+        "voter": "jayseedubya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1009423454,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 391266485,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 58964015,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1459760283,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 18146080250,
+        "rshares": -60040051,
+        "voter": "icecreamyolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630154656,
+        "rshares": 2148269823,
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1148874646,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24992183908,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 7684085092,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 67029397,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 19427714782,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 3987815940,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2040550619,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2834310245,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 14668414085,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6522837445845,
+        "rshares": 444410635,
+        "voter": "lily-da-vine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41188539478,
+        "rshares": 426936350,
+        "voter": "aviator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 623839624378,
+        "rshares": 156468479,
+        "voter": "steemlinks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 1176722422,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 65731104,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 13976239286,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1456922840,
+        "rshares": 56064665,
+        "voter": "thompsonj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364291223,
+        "rshares": 53864235,
+        "voter": "eslopez92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 60300302,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 56887954,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320521530,
+        "rshares": 58015930,
+        "voter": "vitalik1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 97542204,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 227415344771,
+        "rshares": -55961425,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 59588125,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 1941328082,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18873434262,
+        "rshares": 57272682,
+        "voter": "joybran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 65086623,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 30838917918,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 51158399771,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 38713955875,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 171590615597,
+        "rshares": 88706692,
+        "voter": "trendwizard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 55546061,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57637549,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 54561850,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 28262440512,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2175237384,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 647817952097,
+        "rshares": 1162013097,
+        "voter": "evolka"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 287851656,
+        "rshares": -57181860,
+        "voter": "superagonist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107511023,
+        "rshares": 57177794,
+        "voter": "mdoolsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17751314058,
+        "rshares": 57099237,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107374302,
+        "rshares": 57098276,
+        "voter": "phonemonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 2712604436,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56853225,
+        "voter": "mossid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7935663366,
+        "rshares": 58382726,
+        "voter": "vityass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794973811289,
+        "rshares": 969730600,
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 358310593,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 50084768,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6800116,
+        "rshares": 51162623,
+        "voter": "iamjen2692"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 595544326,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56559977,
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 57894807,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56025199,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737630,
+        "rshares": 55053663,
+        "voter": "shonzr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 512292840,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56126260,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136191934687,
+        "rshares": 59502865,
+        "voter": "kyusho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 1783186174,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57977501,
+        "rshares": 677884523,
+        "voter": "gerasim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55676046,
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1590400514,
+        "rshares": 54581855,
+        "voter": "baul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 818442,
+        "rshares": 55654106,
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 60615956,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 973435439155,
+        "rshares": 69800956,
+        "voter": "cemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276225890,
+        "rshares": 54324205,
+        "voter": "jonathanyoung"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 7144337023,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20160059807,
+        "rshares": 52094170,
+        "voter": "klents"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54184182,
+        "voter": "gastlep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 1263992042,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52895316,
+        "voter": "michivollgas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53990613,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": -13647790364,
+        "rshares": 52783907,
+        "voter": "urbanchick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52794249,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -195878223866,
+        "rshares": 95090228,
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 815192,
+        "rshares": 54857075,
+        "voter": "thefoolonthehill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 54798510,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 50210263,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54706268,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52521499,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 53602103,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 50307404,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 50222829,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 54437501,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53400199,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54234303,
+        "voter": "incajack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 58698753,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 53092299,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7766373,
+        "rshares": 264867027,
+        "voter": "denmark9560"
+      },
+      {
+        "percent": "10000",
+        "reputation": 990069795,
+        "rshares": 53008528,
+        "voter": "santiagomaicon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 690842371,
+        "rshares": 3517656674,
+        "voter": "mjmj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 51814320,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 51813071,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4878508275,
+        "rshares": 53780945,
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 52657220,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3389961,
+        "rshares": 50550491,
+        "voter": "nospin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52653169,
+        "voter": "oneareis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12168350651,
+        "rshares": 53701277,
+        "voter": "elex-free"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178300437,
+        "rshares": 53666720,
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91169321,
+        "rshares": 50487723,
+        "voter": "youcan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53610063,
+        "voter": "skater777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53420728,
+        "voter": "bondarenko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53407339,
+        "voter": "sknese"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122517350,
+        "rshares": 53398372,
+        "voter": "p1r4t3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 347347044,
+        "rshares": 52346578,
+        "voter": "dporsche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52341353,
+        "voter": "jeffsvenstrup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53366748,
+        "voter": "gaurav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53366320,
+        "voter": "karazia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19229987,
+        "rshares": 53355774,
+        "voter": "scatoclysm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52305841,
+        "voter": "mjholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52305084,
+        "voter": "fganz72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9635349,
+        "rshares": 52285276,
+        "voter": "naknak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52281058,
+        "voter": "iacopocoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 51231643,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53310337,
+        "voter": "pieterb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 584001088,
+        "rshares": 51218103,
+        "voter": "fuminhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13906758,
+        "rshares": 52230107,
+        "voter": "lunyyft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119165438,
+        "rshares": 53267460,
+        "voter": "kelombard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53235460,
+        "voter": "ant1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 438148358,
+        "rshares": 52028160,
+        "voter": "hardworx"
+      }
+    ],
+    "author": "tracemayer",
+    "author_reputation": 19674745811334,
+    "beneficiaries": [],
+    "body": "<html>\n<p>Hey Steemitsters!</p>\n<p>Well, it seems the Steem community enjoyed my <a href=\"https://steemit.com/bitcoin/@tracemayer/trace-mayer-is-now-on-steemit\">introductory post yesterday</a> and I got some great questions so there will probably be more posts in the future as I continue digesting information on the subject. Just like with <a href=\"https://www.weusecoins.com/\">Bitcoin</a> I stayed up late last night and read the entire <a href=\"https://steem.io/#whitepaper\">Steem whitepaper</a>. Fascinating!</p>\n<p>A fellow podcast host <a href=\"https://steemit.com/@marketingmonk\">Chris Coney</a> (<a href=\"https://twitter.com/ChrisConeyInt\">Twitter</a>) reached out in the comments and we jumped on Skype to do a quick interview about the Steem network and some of my thoughts about it. Thanks to Chris for being patient with me. I am still a Steem noob but I do know that this area of content creation, journalism and social media currently have massive pain points because of misaligned economic incentives.</p>\n<p>In this <a href=\"http://www.bitcoin.kn/2016/08/what-is-steem-and-how-does-it-work/\">interview</a> we discuss <strong>(1)</strong> what the Steem network is, <strong>(2)</strong> the crypto-tokens it uses, <strong>(3)</strong> the economic value it adds, <strong>(4)</strong> attention in the Information Age, <strong>(5)</strong> censorship and voting brigades, <strong>(6)</strong> current pain points in this area [including massive governmental intervention and propaganda] and <strong>(7)</strong> much much more.</p>\n<p><center><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/naXVMdcJidw\" frameborder=\"0\" allowfullscreen></iframe></center></p>\n<p>I really hope the Steem community finds this interview helpful and I plan on bring more time and attention to bear on this subject!</p>\n<p>Please let me know what you think about it in the comments. Any discussion, comments or suggestions would be really helpful for this new experiment. We want to hear from you!</p>\n</html>",
+    "body_length": 2022,
+    "cashout_time": "2016-08-26T14:59:57",
+    "category": "steemit",
+    "children": 42,
+    "created": "2016-08-19T14:59:57",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"bitcoin\",\"anarchy\",\"steemit-future\",\"blockchain\"],\"links\":[\"https://steemit.com/bitcoin/@tracemayer/trace-mayer-is-now-on-steemit\",\"https://www.weusecoins.com/\",\"https://steem.io/#whitepaper\",\"https://steemit.com/@marketingmonk\",\"https://twitter.com/ChrisConeyInt\",\"http://www.bitcoin.kn/2016/08/what-is-steem-and-how-does-it-work/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T07:46:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 159855426279758,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3430.244 HBD",
+    "percent_hbd": 10000,
+    "permlink": "what-is-the-steem-network-trace-mayer-dips-in-his-toes-with-chris-coney",
+    "post_id": 890068,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "What is the Steem Network? Trace Mayer dips in his toes with Chris Coney",
+    "title": "What is the Steem Network? Trace Mayer dips in his toes with Chris Coney",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@tracemayer/what-is-the-steem-network-trace-mayer-dips-in-his-toes-with-chris-coney"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 29660001630495,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7691189763216,
+        "voter": "steempty"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28855332382,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8151223409709,
+        "rshares": 17312795872991,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 354858432524,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14530474215483,
+        "voter": "summon"
+      },
+      {
+        "percent": "100",
+        "reputation": 13270505121655,
+        "rshares": 1288491147786,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36389534383121,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27004834032159,
+        "rshares": 509023434748,
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7119704932823,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6329016355962,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223373121837,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5959775644184,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 110779491046,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18336382560162,
+        "rshares": 185144950688,
+        "voter": "svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 32642296478,
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 934527471682,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1714882168698,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 857116088519,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2470238755,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2998129153,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 567603623,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 41948298509,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1324164960,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8717425187,
+        "rshares": 5626480966288,
+        "voter": "witness.svk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170709221,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8980249791516,
+        "rshares": 244244304709,
+        "voter": "lovejoy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33487303623,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4773926435633,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 55154627735,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1232548364142,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 360253230565,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 297316568817,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 70879185478,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 978833973447,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 11123561595,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 496873319,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 725575461,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 96486114508046,
+        "rshares": 267626576398,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 758092952414,
+        "rshares": 6901396611,
+        "voter": "davidwachsman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51006025081420,
+        "rshares": 637122544679,
+        "voter": "clains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 390512580501,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 42341568608,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 72633920246,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 330897500503,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 286078265937,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 24179423583,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4013874407471,
+        "rshares": 111848540139,
+        "voter": "linouxis9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230145753,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 23219852563,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "100",
+        "reputation": 76633033946568,
+        "rshares": 14965628345,
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 25162621347,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 11513900390,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13042098927,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2858514112,
+        "rshares": 569109365,
+        "voter": "frxdo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 34031991718,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 419042084008,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 99916319359,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 14880521242,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1307793552141,
+        "rshares": 16935127185,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9872385447,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2907626165,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4743131139239,
+        "rshares": 19296895263,
+        "voter": "dedmatvey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8284825302,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4602759566516,
+        "rshares": 21114832646,
+        "voter": "joelinux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 81433806691,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770646007378,
+        "rshares": 4180443790,
+        "voter": "sunjata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11372617606769,
+        "rshares": 115613025248,
+        "voter": "forrestwillie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5216776171708,
+        "rshares": 96739427470,
+        "voter": "alexandra-renee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45575829971,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 753324601733,
+        "rshares": 638716469,
+        "voter": "rod-campbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2177269778,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3562906824,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 8621279999,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508314471,
+        "rshares": 627712922,
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 78384808291,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5499450859,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1320082412,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 60181240021,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32983096229,
+        "rshares": 59541191039,
+        "voter": "tosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 52495149686,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 58906141859,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1798578468,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19196002726,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 422167045,
+        "voter": "sunny-mcjoyride"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10361231355736,
+        "rshares": 46708470073,
+        "voter": "jay-kopinski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1737651089,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 7004401480,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 48492326395,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 613920603,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251048621093,
+        "rshares": 2911205113,
+        "voter": "scalextrix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3144640411,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 331272205093,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29598009899,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97233234488,
+        "rshares": 417817338,
+        "voter": "argsolver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5486331749,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 20315788274,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 494951057079,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 354491950,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 95211155163,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2272340357792,
+        "rshares": 222485214768,
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 193167939124,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 3795697759,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 86390428692,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 181150600898,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2663003206978,
+        "rshares": 10839992917,
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10368505517,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16800754841,
+        "rshares": 357060569,
+        "voter": "meg4freedom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 400573725,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4338392818880,
+        "rshares": 26580192651,
+        "voter": "altoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 485948225,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2672063013304,
+        "rshares": 31391937717,
+        "voter": "brennanhm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2340825657228,
+        "rshares": 14433489693,
+        "voter": "blindleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 318582096666,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 58524861554,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 65989046107177,
+        "rshares": 10415027289,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 109475226605,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 3119404288,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30409765924218,
+        "rshares": 323564515862,
+        "voter": "innuendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 3556687721,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 19658653677,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13377969429,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 80364066472,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6877012376448,
+        "rshares": 129495757534,
+        "voter": "beervangeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212451198738,
+        "rshares": 418647718,
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 23191344798,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 731063947,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1697694767,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 41152763292,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 96714390101,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 187298320916,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110515621650,
+        "rshares": 13860915325,
+        "voter": "azzot88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23496964571,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642608867428,
+        "rshares": 5163259581,
+        "voter": "christoryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8450404673,
+        "rshares": 304955387,
+        "voter": "oleim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 47328842656,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 250387796380,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1692540988858,
+        "rshares": 123942782756,
+        "voter": "vollumc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 21037599820,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 917970441,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 34902445645,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44591565205,
+        "rshares": 31277278439,
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 67913818888,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2502037199,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1782103621838,
+        "rshares": 1023497195,
+        "voter": "wisehammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 5894409181,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 11661217192,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321991793966,
+        "rshares": 717181655,
+        "voter": "renegadegaming"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2909305052193,
+        "rshares": 5670350881,
+        "voter": "dailyfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 1039880244,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 263778892,
+        "voter": "firenze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 13320093550,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5558771551,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 3849938100,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 908929098218,
+        "rshares": 1472163723,
+        "voter": "dtsddace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110873902249,
+        "rshares": 4693343678,
+        "voter": "madwallace"
+      },
+      {
+        "percent": "10000",
+        "reputation": 240576533189,
+        "rshares": 400151923,
+        "voter": "cccmar71"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 133176013855,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891519743447,
+        "rshares": 3619062225,
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1236097211640,
+        "rshares": 2399740725,
+        "voter": "juansgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4813843518,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394374008782,
+        "rshares": 1830127738,
+        "voter": "billykeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 3757765219,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 5489238793,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250032476,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 673605747,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4898824737,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10171002020923,
+        "rshares": 58799563312,
+        "voter": "krypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 12371658632,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 133976858831,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274487580,
+        "rshares": 247870062,
+        "voter": "martiniblanco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570848703227,
+        "rshares": 12932467944,
+        "voter": "auxon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 19832460217,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13340545109003,
+        "rshares": 65911897798,
+        "voter": "jasonmcz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 461256359,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 274755910,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103553440323,
+        "rshares": 8858516922,
+        "voter": "imjustsayintho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1248341549,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51511210264,
+        "rshares": 667235750,
+        "voter": "mjoriginal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2138693707311,
+        "rshares": 38501623251,
+        "voter": "redpalestino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 897174602441,
+        "rshares": 43524398445,
+        "voter": "ghostyeti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 38458089845,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9295728972,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38421201873,
+        "rshares": 37312479364,
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 260537110,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10789254334,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 107391559396,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13191361,
+        "rshares": 246089730,
+        "voter": "alex2649tw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 713529357997,
+        "rshares": 926265102,
+        "voter": "cousteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1619464717351,
+        "rshares": 3209043458,
+        "voter": "cryptoscope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20689766629,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 526029462,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6556006147,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41263329382,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15298660141,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 263539417,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19032649381,
+        "rshares": 279748701964,
+        "voter": "freeyourmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4265580525,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18394319538,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3300368651,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255391004842,
+        "rshares": 41464431448,
+        "voter": "w4lterwyte"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 117883009692,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1357468911,
+        "rshares": 14720451078,
+        "voter": "guywinfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": -110718366028,
+        "rshares": 365869995,
+        "voter": "suicidemime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 1114842104,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 73056635304,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19068585244,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116259471152,
+        "rshares": 17567152399,
+        "voter": "keithsmih"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 341305277745,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27031203647,
+        "rshares": 241440929,
+        "voter": "omegastarscream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 881880640788,
+        "rshares": 2418601869,
+        "voter": "frankenstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24378233955,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 59944215860,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 6239076539,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 186734295527,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 73657381102,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9495756808,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5586651539734,
+        "rshares": 21856792978,
+        "voter": "raymondspeaks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 379942370,
+        "rshares": 240811407,
+        "voter": "further"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2013770318,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 123811957066,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 515193630,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 15409573231,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 17047624759,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510987855,
+        "rshares": 235661413,
+        "voter": "chillipepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 26727753491,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25839187917,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 70456928899,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3536528779,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 84252002098,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900427911,
+        "rshares": 234715590,
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1414729650,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3019670194,
+        "rshares": 240120981,
+        "voter": "yaremi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692822335938,
+        "rshares": 239087963,
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 8982158958,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 109104600685,
+        "rshares": 249746626,
+        "voter": "sebhaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 12353898954,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549388274509,
+        "rshares": 2609553595,
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34932026701489,
+        "rshares": 138586395310,
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3823215987,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41016280414,
+        "rshares": 224702176,
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41597078,
+        "rshares": 238723257,
+        "voter": "heybaebae"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 3992203856,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143329005,
+        "rshares": 238690018,
+        "voter": "durandal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 152144571,
+        "rshares": 238648652,
+        "voter": "highlander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 143020455393,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 111944290,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 190243871149,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14188132506,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1486614792,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 32523451888,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 88939754,
+        "rshares": 119654521,
+        "voter": "thisischris225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26442156052,
+        "rshares": 5968367294,
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 200835346,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7161351637,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70989733950,
+        "rshares": 1097087466,
+        "voter": "mekongmonkey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10620466262,
+        "rshares": 4525825446,
+        "voter": "drako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 9191690423,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182174607,
+        "rshares": 311209174,
+        "voter": "olinzodd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 557235822,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 884407671803,
+        "rshares": 116436003,
+        "voter": "sovereignbtc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 1765213918,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 696520222302,
+        "rshares": 156547177327,
+        "voter": "baronofbitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 114054397,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118259307,
+        "voter": "rodarauj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 990217556,
+        "voter": "dbendorf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2321690640,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 918911822347,
+        "rshares": 588330244,
+        "voter": "aleco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 32150843547,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 113369331,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 260703859,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4924573498,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628934912826,
+        "rshares": 81010314755,
+        "voter": "thebear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 46532818796,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1871324,
+        "rshares": 557480846,
+        "voter": "rfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 17402259069,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26039739848,
+        "rshares": 351280513,
+        "voter": "rcmdantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9397430702,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58265386995,
+        "rshares": 3714769512,
+        "voter": "bristolchris72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 6180853732,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 203065875549,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5743108025054,
+        "rshares": 48411270169,
+        "voter": "steemapp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1741866,
+        "rshares": 112351692,
+        "voter": "mikali4"
+      },
+      {
+        "percent": "10000",
+        "reputation": -27812973719,
+        "rshares": 116937273,
+        "voter": "ultratech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5852927286506,
+        "rshares": 12881183680,
+        "voter": "cryptocameo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4943699627,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19671096335,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 18519200036,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2406185748,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 221401214,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36363525108,
+        "rshares": 118593983,
+        "voter": "sazbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 247311783844,
+        "rshares": 933075721,
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3095026166,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902150039240,
+        "rshares": 4315879121,
+        "voter": "gapil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 9277859814,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110854264127,
+        "rshares": 2728087601,
+        "voter": "mikeinfla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2627012289160,
+        "rshares": 6368247167,
+        "voter": "sotura"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3224894234874,
+        "rshares": 113536141,
+        "voter": "shapeshiftio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 60180808157,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4811407638,
+        "rshares": 516085835,
+        "voter": "thnkr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 11082296680,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 606232368,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2580067408929,
+        "rshares": 5041328765,
+        "voter": "spookypooky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21698735,
+        "rshares": 110245787,
+        "voter": "arslan7544"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 712124824,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 110203683,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2975376827,
+        "rshares": 66778067,
+        "voter": "dras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276109410016,
+        "rshares": 627642389,
+        "voter": "pr3ttyp3rf3ct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 183076933,
+        "rshares": 65320253,
+        "voter": "massrent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 6936950147,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1407146536376,
+        "rshares": 8300552993,
+        "voter": "fintech-jesus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 7931494704,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4872148632,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320989085,
+        "rshares": 63884179,
+        "voter": "beiaandluna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10640552620,
+        "rshares": 122068688,
+        "voter": "anderson91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 996582,
+        "rshares": 65056880,
+        "voter": "lolitroy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333988882,
+        "rshares": 118578167,
+        "voter": "darkstar1o9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 286215488,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 22566779542,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7048341805,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312105976,
+        "rshares": 99385451,
+        "voter": "bajekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 890051070,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1351204520,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1938969324440,
+        "rshares": 5435472901,
+        "voter": "jrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63281877,
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6808312002,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5836792362,
+        "rshares": 64511726,
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4549076794,
+        "rshares": 382253852,
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164191748705,
+        "rshares": 462611333,
+        "voter": "feedthemachine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 989801091,
+        "rshares": 69133385,
+        "voter": "money247"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 71828323,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053978638105,
+        "rshares": 3009702553,
+        "voter": "psamuelson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134345349682,
+        "rshares": 4937136035,
+        "voter": "slimjim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7536445563,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 2880838645,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57554412437,
+        "rshares": 63868569,
+        "voter": "assisjadue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 298397221413,
+        "rshares": 132733122,
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 3349612512,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4916654786,
+        "rshares": 63609725,
+        "voter": "myb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137363191136,
+        "rshares": 129209686,
+        "voter": "agussudaryanto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 1990106983,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 187055084,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1939913393,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 641776659,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 412871786,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3916486505,
+        "rshares": 63370428,
+        "voter": "anarcist69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1762897311,
+        "rshares": 63616030,
+        "voter": "phloatingman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9069016891,
+        "rshares": 64533155,
+        "voter": "trotksi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16903801181,
+        "rshares": 7084643689,
+        "voter": "julesatwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 19466447372,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91384020663,
+        "rshares": 62710297,
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19471051379,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2781997984559,
+        "rshares": 5411852271,
+        "voter": "veryscience"
+      },
+      {
+        "percent": "10000",
+        "reputation": 260394486860,
+        "rshares": 710166068,
+        "voter": "deepdarkweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 824981038,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15099093363137,
+        "rshares": 39102011232,
+        "voter": "ftlian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 547547035,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 409762528,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 65286836,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465514128051,
+        "rshares": 86541852,
+        "voter": "teambitwala"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 1307958259,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5474395,
+        "rshares": 61710083,
+        "voter": "mokhtar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3525888505148,
+        "rshares": 17819078414,
+        "voter": "andrewfoodist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 11616597380,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 3908250284,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50556117597,
+        "rshares": 72759729,
+        "voter": "chinese-gandalf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286385675205,
+        "rshares": 69328915,
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23206755125,
+        "rshares": 62542956,
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13584977360,
+        "rshares": 62273194,
+        "voter": "r2d2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 460260053739,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60676805,
+        "voter": "elmariac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3656912,
+        "rshares": 60676613,
+        "voter": "twixfingers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 71513734,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 443274841,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1429700840,
+        "rshares": 60651985,
+        "voter": "porcupine305"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1159364706,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 55775081,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15908343365,
+        "rshares": 57093305,
+        "voter": "gmskov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 2546496041,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 355338083472,
+        "rshares": 239224101,
+        "voter": "moonguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3439108470,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1661912934,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 642604166438,
+        "rshares": 66495348,
+        "voter": "thepholosopher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 246362842,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59922207,
+        "voter": "isalondono"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 52786041,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4755670,
+        "rshares": 8121810865,
+        "voter": "jyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 965303906571,
+        "rshares": 23196118509,
+        "voter": "jimmco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42570834630,
+        "rshares": 453791773,
+        "voter": "steemhorizon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59371769,
+        "voter": "yurybond"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 58739830,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 901378583777,
+        "rshares": 1433564642,
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6857510977,
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 15184471701,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87897903,
+        "rshares": 59008544,
+        "voter": "sterl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1075269056,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 300847113,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 74823513,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 24113506597,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6939333901,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 98475939220,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 7844031383,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191046668,
+        "rshares": 57580866,
+        "voter": "embraceurdialect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 59621658,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 191999073876,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182781392,
+        "rshares": 56308627,
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740952354750,
+        "rshares": 84649109,
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6174985430,
+        "rshares": 4673123658,
+        "voter": "joeplummer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53098184238,
+        "rshares": 72182496,
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4533929087960,
+        "rshares": 5521838461,
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2405909145226,
+        "rshares": 6256216718,
+        "voter": "xbananax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 854187323,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 589293675197,
+        "rshares": 1047175144,
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 61338571,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43894114387,
+        "rshares": 336474373,
+        "voter": "metafzx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 14243847171,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263257839975,
+        "rshares": 60982926,
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 120465010,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30862157954,
+        "rshares": 58035992,
+        "voter": "aviv32111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 56887954,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 92638073,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41221286829,
+        "rshares": 2625019093,
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15805181807,
+        "rshares": 69413590,
+        "voter": "darkflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 61826880,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 38711525771,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56641491,
+        "voter": "bradgoetsch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7788315865,
+        "rshares": 57767536,
+        "voter": "aaronjwhite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5296652630527,
+        "rshares": 18029760839,
+        "voter": "drwasho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55377253,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 365799797,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60022998820,
+        "rshares": 77168451,
+        "voter": "obivankenobi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176135418881,
+        "rshares": 79719071,
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599908904317,
+        "rshares": 148113908,
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 842790975,
+        "rshares": 57706606,
+        "voter": "sean-ryno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 57971965,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": -854547146975,
+        "rshares": 57009820,
+        "voter": "getbithub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 8136053037,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 56314596,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 47741769850,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56169240,
+        "voter": "ertinfagor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 64473945,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1606089979,
+        "rshares": 57164394,
+        "voter": "redpillbetting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6749260906,
+        "rshares": 55976991,
+        "voter": "blockchainjen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66311335718,
+        "rshares": 53715939,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 1779126575,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6832277116,
+        "rshares": 58073817,
+        "voter": "jeffereyjaxen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4620545782,
+        "rshares": 57042737,
+        "voter": "dumbclubs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 514663850,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 955867575745,
+        "rshares": 874938648,
+        "voter": "mxu111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9357899502,
+        "rshares": 54875000,
+        "voter": "virgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1358153764645,
+        "rshares": 839571930,
+        "voter": "leneg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 381164023,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 55660383,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 800035,
+        "rshares": 56767767,
+        "voter": "venetor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 57565305,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1737487644091,
+        "rshares": 56749326,
+        "voter": "dailybitcoinnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6073759162,
+        "voter": "vtmdmd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 275001369,
+        "rshares": 1278285716,
+        "voter": "sile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1840903324,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76761005092,
+        "rshares": 939741480,
+        "voter": "seasi06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 769504542,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10879601459,
+        "rshares": 56413557,
+        "voter": "irfanpak10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 54930587,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 378195340228,
+        "rshares": 56222092,
+        "voter": "jdp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55025746,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3954457383539,
+        "rshares": 53893867,
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 58363765,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37916979,
+        "rshares": 55881328,
+        "voter": "erixter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5202217,
+        "rshares": 54767752,
+        "voter": "webreakkalegg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3983778979,
+        "rshares": 54726577,
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 56258393,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142110895467,
+        "rshares": 55736881,
+        "voter": "arrax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34627330410,
+        "rshares": 63986842,
+        "voter": "ender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 40270926380,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": -242007231380,
+        "rshares": 61668627,
+        "voter": "avemend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 59023455,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 55171651,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 633133259080,
+        "rshares": 55571057,
+        "voter": "chaeya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 1753199598,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658608164,
+        "rshares": 55660488,
+        "voter": "lihua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55486361,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 54321048,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3074503409423,
+        "rshares": 1001199334,
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 74666188,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54050826,
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": -3391257106,
+        "rshares": 726890199,
+        "voter": "artsuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7805684953,
+        "rshares": 56581568,
+        "voter": "xomtux"
+      },
+      {
+        "percent": "10000",
+        "reputation": 808036081309,
+        "rshares": 53967931,
+        "voter": "thiras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 53951892,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 244886998614,
+        "rshares": 55199674,
+        "voter": "irininich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54981722,
+        "voter": "evgenzap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12368054643,
+        "rshares": 54217891,
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 580482162746,
+        "rshares": 1149197263,
+        "voter": "wulfmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54860980,
+        "voter": "sammiedata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2308216689,
+        "rshares": 55049232,
+        "voter": "fee.org"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8518576343,
+        "rshares": 53738763,
+        "voter": "bexir.oborael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 65710026,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11614264,
+        "rshares": 54761121,
+        "voter": "perkinstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142829147182,
+        "rshares": 327031815,
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53633596,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1666032,
+        "rshares": 54687741,
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": -236066174395,
+        "rshares": 62737051,
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641341984,
+        "rshares": 53586458,
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53565135,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6366084167,
+        "rshares": 53917369,
+        "voter": "parkus101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54626102,
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 54602521,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2155203229,
+        "rshares": 52437364,
+        "voter": "steemvixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52343554,
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11427084577,
+        "rshares": 54417851,
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 783047,
+        "rshares": 53313854,
+        "voter": "bik1980"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371982243,
+        "rshares": 1266629534,
+        "voter": "mrbastillio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54283208,
+        "voter": "treize"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2029011,
+        "rshares": 54273258,
+        "voter": "mariov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54254324,
+        "voter": "swooshedits"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39668460,
+        "rshares": 53188832,
+        "voter": "angryredbarber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41818829,
+        "rshares": 52075178,
+        "voter": "dooglet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 52068903,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 52041445,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 52030453,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14331107,
+        "rshares": 50955968,
+        "voter": "kyle.lapo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3351161,
+        "rshares": 51972494,
+        "voter": "crmason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5000717548,
+        "rshares": 52968748,
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54013673,
+        "voter": "kimchiboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2007513,
+        "rshares": 54010959,
+        "voter": "jetlejk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4311438047,
+        "rshares": 54008746,
+        "voter": "forklognews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1207506656,
+        "rshares": 51863115,
+        "voter": "ramooz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13146170,
+        "rshares": 51856379,
+        "voter": "cleateles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 510200824,
+        "rshares": 53962257,
+        "voter": "roolio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53961934,
+        "voter": "s1las"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843101,
+        "rshares": 53958495,
+        "voter": "thefuzzytrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": -180497,
+        "rshares": 53948330,
+        "voter": "qwertyuiop123456"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53943790,
+        "voter": "andyraddatz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53938511,
+        "voter": "belka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 826243,
+        "rshares": 53937193,
+        "voter": "msjkuasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450852216,
+        "rshares": 52846407,
+        "voter": "kitperez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2825341242,
+        "rshares": 51783297,
+        "voter": "noah.morris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824760,
+        "rshares": 52784673,
+        "voter": "oleg999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6880595844755,
+        "rshares": 52772186,
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53820669,
+        "voter": "wanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 52258173,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158302137,
+        "voter": "thehellenic"
+      }
+    ],
+    "author": "shapeshiftio",
+    "author_reputation": 3224894234874,
+    "beneficiaries": [],
+    "body": "<html>\n<center><img src=\"https://www.steemimg.com/images/2016/08/17/SteemandShapeShift4b5a7.png\" alt=\"SteemandShapeShift4b5a7.png\" border=\"0\" /></center>\n<p><a href=\"https://shapeshift.io/#/coins\">ShapeShift.io</a>, the instant blockchain exchange service, is excited to announce the addition of <a href=\"http://coincap.io/STEEM\">Steem (STEEM)</a> to the exchange. Users can now buy or sell Steem instantly with bitcoin and dozens of blockchain assets including Ethereum, Ethereum Classic, Dash and XRP. No account is required.&nbsp;</p>\n<center><p><a href=\"https://www.steemimg.com/image/4EdmJ\"><img src=\"https://www.steemimg.com/images/2016/08/17/SteemonShapeShift04b39.png\" alt=\"SteemonShapeShift04b39.png\" border=\"0\" /></a></p></center>\n<p>Want to learn how to do an exchange on ShapeShift? Watch our demo video:&nbsp;</p>\n<center><iframe width=\"560\" height=\"315\" src=\"https://www.youtube.com/embed/n7OdD9HTT-4?list=PLHr4IxCUrjWmYzAvh-4y8Yxs_iVK_1V1v\" frameborder=\"0\" allowfullscreen></iframe></center>\n\n<p>Head on over to the exchange by clicking <a href=\"https://shapeshift.io/#/coins\">HERE.</a></p>\n\n<b>To stay in the loop with future ShapeShift announcements, please connect with us: </b>\n<p>Newsletter Sign-up: http://eepurl.com/bdbzO1</p>\n<p>Facebook: https://www.facebook.com/shapeshiftexchange</p>\n<p>Twitter: https://twitter.com/ShapeShift_io</p>\n<p>Public Slack: https://shapeshiftcommunity.herokuapp.com/</p>\n\n</html>",
+    "body_length": 1432,
+    "cashout_time": "2016-08-24T20:26:18",
+    "category": "steemit",
+    "children": 85,
+    "created": "2016-08-17T20:26:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"cryptocurrency\",\"bitcoin\"],\"image\":[\"https://www.steemimg.com/images/2016/08/17/SteemandShapeShift4b5a7.png\",\"https://www.steemimg.com/images/2016/08/17/SteemonShapeShift04b39.png\"],\"links\":[\"https://shapeshift.io/#/coins\",\"http://coincap.io/STEEM\",\"https://www.steemimg.com/image/4EdmJ\",\"http://eepurl.com/bdbzO1\",\"https://www.facebook.com/shapeshiftexchange\",\"https://twitter.com/ShapeShift_io\",\"https://shapeshiftcommunity.herokuapp.com/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T21:03:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 157746955383174,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3346.746 HBD",
+    "percent_hbd": 10000,
+    "permlink": "official-announcement-shapeshift-has-added-steem-to-the-exchange",
+    "post_id": 858781,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "OFFICIAL ANNOUNCEMENT: ShapeShift has added Steem to the Exchange",
+    "title": "OFFICIAL ANNOUNCEMENT: ShapeShift has added Steem to the Exchange",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@shapeshiftio/official-announcement-shapeshift-has-added-steem-to-the-exchange"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 598539502036,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7239080969594,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 29027553998213,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 354858432524,
+        "voter": "berkah"
+      },
+      {
+        "percent": "5000",
+        "reputation": 70486967561347,
+        "rshares": 19781220773197,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 35675436782070,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147938687963,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "7900",
+        "reputation": 27004834032159,
+        "rshares": 407218747798,
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 6980120500284,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6344432030125,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "1000",
+        "reputation": 25104157850610,
+        "rshares": 223373121837,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5843958796192,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6721621207697,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 108725056812,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 32642296478,
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 891292329368,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1714932055191,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9800209121307,
+        "rshares": 3427116689546,
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3076451088919,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3087945489,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3747843918,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 709527559,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52460046216,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1655278834,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213388298,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 131938054174,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 56438227169,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 443683389073,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 402190863052,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 458551896765,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2816588148852,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 804146567420,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 116242026851,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 22176529762,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9059334445,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2388037166,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5120979430061,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1232548364142,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 360917713952,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 312550029434,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 256826026816,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 27891582403,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621111136,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1057711793957,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 906997671,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 382702328891,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "5000",
+        "reputation": 72112139588726,
+        "rshares": 432390688762,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053243586609,
+        "rshares": 44987575146,
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 33380663218,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4909504649121,
+        "rshares": 64439897254,
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 24179423583,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287689277,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4477492280957,
+        "rshares": 23735849287,
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 23365263631,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 11288137638,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1232169686549,
+        "rshares": 6596335515,
+        "voter": "bluestar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 34803365337,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 410825572557,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 108242679306,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 80184232655,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23979714471574,
+        "rshares": 185053211350,
+        "voter": "bleepcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 533785882709,
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 7642649930,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 501645966,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5676643197,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45575829971,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2049195085,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 337393973750,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 10034907487,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3490194440,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 8819353174,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5499468924,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1320082412,
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7562018196,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 60183824069,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": -360088797540,
+        "rshares": 1478055908,
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 51502167860,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 68723832169,
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 60877390332151,
+        "rshares": 187788157255,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1799001825,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19196327746,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1702188822,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 5430960254,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 20315788274,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 473983400237,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 362198296,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3951952066132,
+        "rshares": 97461552973,
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18522621619,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 217886221590,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4545200920343,
+        "rshares": 32617932414,
+        "voter": "daenerys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 23787991811,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15284484773,
+        "rshares": 369143537,
+        "voter": "localether-com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 36985708618,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 94076287501,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771738440035,
+        "rshares": 4090525823,
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 298240843889,
+        "rshares": 745794847,
+        "voter": "malacandrahyoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 485931938,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 392202333,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 244796144438,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 325674122325,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65159931,
+        "rshares": 345683782,
+        "voter": "gabe92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 57377315249,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 65989046107177,
+        "rshares": 10414990943,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5092263832878,
+        "rshares": 12867723357,
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1225278048760,
+        "rshares": 3219868380,
+        "voter": "pangur-ban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 30981210809,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8397302485673,
+        "rshares": 183988250652,
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816177,
+        "rshares": 2908355651,
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 3668346416,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 20051826751,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1823741139572,
+        "rshares": 2985433139,
+        "voter": "ola-haukland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 113446360961,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 80364066472,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212451198738,
+        "rshares": 427191549,
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9131956116299,
+        "rshares": 127845492565,
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1697694767,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1480961322,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 41975818558,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 115363335857,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 191120735629,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23027268390,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 46156913974,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 239492600744,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1692540988858,
+        "rshares": 123942782756,
+        "voter": "vollumc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 208035429422,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 39266668869,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 21037599820,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 37083542157,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 23540373163,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 2867119743,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 70685811496,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 48999936499,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 3906088763,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1395816810,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 4750346902,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6565043921,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 11346049160,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 652354570,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 39569668489,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2181554739322,
+        "rshares": 14275536405,
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 20012906292,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": -211976733933,
+        "rshares": 1019490436,
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 3312844812,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2018069960576,
+        "rshares": 10502052474,
+        "voter": "nobodyishome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8224014275,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 8790234040,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3116417057,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10490437282665,
+        "rshares": 18643914874,
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4835340540,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 3138917486,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 70802354370,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 1956765579,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 5655579363,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4803506606,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 250032476,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 14094358864,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 333760331,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247349335,
+        "rshares": 310292244,
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51582783676,
+        "rshares": 9107628818,
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 25658932519,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 5082852219,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10171002020923,
+        "rshares": 57548508773,
+        "voter": "krypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 3313120640,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20017583141,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 126096104817,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 115538212292,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9824421122,
+        "rshares": 50150767,
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 61120769636,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 246839370,
+        "voter": "andreaalexandria"
+      },
+      {
+        "percent": "10000",
+        "reputation": -207495429319,
+        "rshares": 937937016,
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 3488225046,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 217278169153,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 31775106834,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1218445066,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 54368830189,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502465820159,
+        "rshares": 220688054540,
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38421201873,
+        "rshares": 37315003864,
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17167233442,
+        "rshares": 7898664059,
+        "voter": "hammurabi"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 16250591322,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 436999115215,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10577700327,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1057084315198,
+        "rshares": 103180125694,
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3891722,
+        "rshares": 181872883,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 201457116,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 186437755,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 112400144011,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 713529357997,
+        "rshares": 926265102,
+        "voter": "cousteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 710038072,
+        "rshares": 1110948588,
+        "voter": "demyan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20284084930,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6427457006,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 245149849,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 1099399818,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 302485212431,
+        "rshares": 543033400,
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43291626440,
+        "rshares": 252407179,
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 963454351109,
+        "rshares": 1347676902,
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4385267232,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4265580525,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3703064316,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 338909620445,
+        "rshares": 10850011469,
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "0",
+        "reputation": 38947133984552,
+        "rshares": 2358060259,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2377467033356,
+        "rshares": 11392025737,
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 1167929823,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 70134531425,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 12381086291,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 19449956948,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 348131383300,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27031203647,
+        "rshares": 246269747,
+        "voter": "omegastarscream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 11397117160,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 934667,
+        "rshares": 116027032796,
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3061488330,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 2591611916,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 7936216649,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 55148678592,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 203840552,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 329447964,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41206660961337,
+        "rshares": 13128556267,
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 7404235177,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 523349272991,
+        "rshares": 7002493892,
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2162692228861,
+        "rshares": 3420158950,
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115819532562,
+        "rshares": 3372986749,
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2351802084,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 693127524498,
+        "rshares": 392928485,
+        "voter": "alexoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 244919377,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67677758734,
+        "rshares": 7160444141,
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6500609847,
+        "rshares": 399843632,
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 7291948061,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 1221391857,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2400141375,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 38134289553,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 53599003601,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7293377700,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3686362084,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 263376582,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450160710165,
+        "rshares": 1984657080,
+        "voter": "chahredine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900427911,
+        "rshares": 239409901,
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1546398672,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30130564942,
+        "rshares": 275758175,
+        "voter": "illlefr4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692822335938,
+        "rshares": 234399963,
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837671136243,
+        "rshares": 525889828542,
+        "voter": "ramta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2518982758,
+        "rshares": 234865291,
+        "voter": "valeri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 413482907,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 549388274509,
+        "rshares": 2365322836,
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 1218114432,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 4062221159,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 151020771383,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 114431941,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": -124823359245,
+        "rshares": 9516878585,
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3458391154,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14470705397,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 30817647673,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 125768183,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 22424712801,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 519264529,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 21043486083,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7018124605,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 10807532486,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 433924646062,
+        "rshares": 162367721344,
+        "voter": "gabbans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1107579084929,
+        "rshares": 2686624734,
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 889902559141,
+        "rshares": 3251552616,
+        "voter": "jayjustmay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 557218486,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5382937678,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 2899841094,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 914394435,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7740774800016,
+        "rshares": 24905586054,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165916744066,
+        "rshares": 664885799,
+        "voter": "amor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1785188860258,
+        "rshares": 732840665,
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 1765399894,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1861971243,
+        "rshares": 277035330,
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 111726756,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 9956409307,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7627503076,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111302877,
+        "voter": "rodarauj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 137758887922,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 372610263,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 992815841030,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2069332962,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6155207922,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 515167203222,
+        "rshares": 339159763,
+        "voter": "jeison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 34342946516,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 113369331,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1100179675,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 248171732,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 254193655,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 147330103,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144870813,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82655604,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4828190086,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 45620410584,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 19292007499,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26039739848,
+        "rshares": 351280513,
+        "voter": "rcmdantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 8822077802,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35209974404,
+        "rshares": 121757317,
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 220460475084,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4341716134,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4354702977,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 8991351156,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 810700298,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 13085352885,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 638436185,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2608158760,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 221401214,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 247428720,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 221406946,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 136034937,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 14348810962,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 1946359529,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74716626,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 147425730,
+        "rshares": 191784574,
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3720753029,
+        "rshares": 188143036,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3093755210,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84206519,
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142453259746,
+        "rshares": 6959284437,
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 112996238,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 5435957975,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 5955058211,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2034974638910,
+        "rshares": 186902061,
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 105249109,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49215329,
+        "rshares": 3486573436,
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 67712728526,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636630493304,
+        "rshares": 1052360420,
+        "voter": "jumpman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 24851285157,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 327673258,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3199186633,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 686691794,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112407757,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12599764,
+        "rshares": 112380478,
+        "voter": "donnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 6865300336,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52810577,
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30042368,
+        "rshares": 62755119,
+        "voter": "igorphoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 14986975493,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 6936211487,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4662160886932,
+        "rshares": 5041482209,
+        "voter": "shaneradliff"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 170875886676,
+        "rshares": -83726924,
+        "voter": "nickskywalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2161323306,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 362369875,
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 996582,
+        "rshares": 63781255,
+        "voter": "lolitroy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 4234530163,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 291957878,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7488773093,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 890051070,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63435975,
+        "voter": "delph"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11843533528,
+        "rshares": 66568444,
+        "voter": "moneymike88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62016239,
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6397738626,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4549076794,
+        "rshares": 374758679,
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39744649494,
+        "rshares": 4509216404,
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 5590371160,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 70266838,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1266206625,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98938671458,
+        "rshares": 99810252,
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7535103949,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 16516716503,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 37378179298,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 2854594198,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9955023637,
+        "rshares": 66036998,
+        "voter": "fruityloan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 3872976365,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1468923383,
+        "rshares": 63700992,
+        "voter": "rataloclaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 191977586,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1978711661,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 641776659,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 17151442251,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 395192793,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6480835436,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 4928703525,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91384020663,
+        "rshares": 62710297,
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3515726108234,
+        "rshares": 177311949,
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10320676912,
+        "rshares": 62830022,
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19594603685,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1709919,
+        "rshares": 62668549,
+        "voter": "nuggplug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 61385527,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1585500134,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 124905016,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230038074,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 841870387,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": -752010553427,
+        "rshares": 1944089747,
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 593072231,
+        "rshares": 61696026,
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 6413587008,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 101928704085,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51670338162,
+        "rshares": 64990311,
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 112641010,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50545877,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 355190711980,
+        "rshares": 59551135,
+        "voter": "melissag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59927283,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65718444,
+        "rshares": 61906848,
+        "voter": "frankbacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 418299247,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 1341594859,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50556117597,
+        "rshares": 72759729,
+        "voter": "chinese-gandalf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286385675205,
+        "rshares": 67716615,
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1636775147809,
+        "rshares": 1359248893,
+        "voter": "tralawar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34657029528,
+        "rshares": 64764303,
+        "voter": "filmaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23206755125,
+        "rshares": 62542956,
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2316925791,
+        "rshares": 71412929,
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 471791545,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 460254110600,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 31613585286,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840329,
+        "rshares": 58371530,
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 506164338,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 60521896,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162355112,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 7087974684,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2594661721428,
+        "rshares": 4010611937,
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1695151192,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 199289634,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 186649040,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21278545617,
+        "rshares": 63201866,
+        "voter": "daxinth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 4393253109,
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2646106119988,
+        "rshares": 4207936549,
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 57640568,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1587975084,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 13567361860,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 133222141,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 25722226492,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3077370360823,
+        "rshares": 133499193,
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56903682,
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7090669222,
+        "rshares": 58145166,
+        "voter": "ildanis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310309073633,
+        "rshares": 122630615,
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250645133,
+        "rshares": 59009965,
+        "voter": "christiansenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2657367578,
+        "rshares": 59437116,
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4158444,
+        "rshares": 59008405,
+        "voter": "murrayvonhoppe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1293667456,
+        "rshares": 59369550,
+        "voter": "clintb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56686070,
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67587666,
+        "rshares": 58997531,
+        "voter": "canambullion"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11562530675,
+        "rshares": 58988877,
+        "voter": "li-enfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174546453,
+        "rshares": 58984845,
+        "voter": "attacheguevera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 47600960463,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46435222432,
+        "rshares": 1012017935,
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59126308,
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 18857040542,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56864468822,
+        "rshares": 59198033,
+        "voter": "mckeever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 179991301994,
+        "rshares": 92754956,
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3135058867066,
+        "rshares": 300320702,
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1295569815,
+        "rshares": 59296940,
+        "voter": "knyggajames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17360647532455,
+        "rshares": 6758364138,
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 77941159,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7880148903461,
+        "rshares": 10446807943,
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1536451865,
+        "rshares": 58269068,
+        "voter": "adam173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23627342873,
+        "rshares": 63526791,
+        "voter": "damon225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3244771590977,
+        "rshares": 43612453081,
+        "voter": "albensilverberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6677277934,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2684116,
+        "rshares": 58930451,
+        "voter": "vanessarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 22855667033,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58525745813,
+        "rshares": 55120960,
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6348828465,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2845719983,
+        "rshares": 58916638,
+        "voter": "layl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47999142,
+        "rshares": 58932559,
+        "voter": "dorians"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32644559975,
+        "rshares": 57828186,
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2858869091,
+        "rshares": 59263960,
+        "voter": "stevenlytle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92948461,
+        "rshares": 58864493,
+        "voter": "shamballa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58863225,
+        "voter": "willdizon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 222234138,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67649871667,
+        "rshares": 107768448,
+        "voter": "samwarner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 72079195,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58855959,
+        "voter": "eggsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824556048979,
+        "rshares": 914557314,
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2818167,
+        "rshares": 58846446,
+        "voter": "mediahound"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2716988832,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73481598898,
+        "rshares": 77146133,
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17203965465,
+        "rshares": 59174678,
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 8000912011,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58782028,
+        "voter": "nuttofanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56301289091,
+        "rshares": 58768736,
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5185499,
+        "rshares": 57614111,
+        "voter": "scooterrockets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5372210998898,
+        "rshares": 1346327423,
+        "voter": "karisa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 495790275993,
+        "rshares": 843596691,
+        "voter": "riceowladam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191046668,
+        "rshares": 58732483,
+        "voter": "embraceurdialect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100538074328,
+        "rshares": 58722032,
+        "voter": "tsbloyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1368044391,
+        "rshares": 59099349,
+        "voter": "rawfreedom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56676051,
+        "rshares": 58698612,
+        "voter": "smoken81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1734036671982,
+        "rshares": 59228916,
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 410676451,
+        "rshares": 58787702,
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841121242,
+        "rshares": 60622154,
+        "voter": "christowner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049839829,
+        "rshares": 58816543,
+        "voter": "anurbanmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 191999073876,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58625501,
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 17818125151,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 887569,
+        "rshares": 58619645,
+        "voter": "anarchodrew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41188539478,
+        "rshares": 418397623,
+        "voter": "aviator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 59044569,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29872020696159,
+        "rshares": 54814897548,
+        "voter": "larkenrose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3582994,
+        "rshares": 58584416,
+        "voter": "caborandy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 479727599992,
+        "rshares": 914815424,
+        "voter": "voluntarismrules"
+      },
+      {
+        "percent": "10000",
+        "reputation": 529882258233,
+        "rshares": 785451248,
+        "voter": "rlziggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3206776891,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57295162,
+        "voter": "johnm862"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58435806,
+        "voter": "bettyanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5036163586,
+        "rshares": 51839643,
+        "voter": "abanks1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66331695571,
+        "rshares": 76866008,
+        "voter": "wilder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118819397,
+        "rshares": 58434983,
+        "voter": "gigiswebs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 784318201,
+        "rshares": 58484155,
+        "voter": "shurik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53098184238,
+        "rshares": 72182496,
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58404253,
+        "voter": "padrof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1037312719,
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58398357,
+        "voter": "wmitch58"
+      },
+      {
+        "percent": "10000",
+        "reputation": 310211599,
+        "rshares": 58364093,
+        "voter": "ronaldneil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 66998944,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58330329,
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58325149,
+        "voter": "intrepidca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4533929087960,
+        "rshares": 5521573955,
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58309524,
+        "voter": "waldencall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58305767,
+        "voter": "kurtlloyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28397805329,
+        "rshares": 58648262,
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58268916,
+        "voter": "javichino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2322269215556,
+        "rshares": 58841669,
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 814177942,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1987750394564,
+        "rshares": 71898322,
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1597059869,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39279686642,
+        "rshares": 60020555,
+        "voter": "jusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55941246,
+        "voter": "silvereagle1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20919704572,
+        "rshares": 55226811,
+        "voter": "deejayehn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 58834956,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 62003656,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2089975091323,
+        "rshares": 4033737249,
+        "voter": "silverbug2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 909060,
+        "rshares": 58179884,
+        "voter": "freedapeoples"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23294106,
+        "rshares": 58167598,
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 14244406400,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 905406,
+        "rshares": 58140913,
+        "voter": "gordovious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2744889063611,
+        "rshares": 69825852,
+        "voter": "daniel030"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364291223,
+        "rshares": 56156330,
+        "voter": "eslopez92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263257839975,
+        "rshares": 62202585,
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 132702859863,
+        "rshares": 58531767,
+        "voter": "tom1gorman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 62650201,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907554,
+        "rshares": 58083507,
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810364,
+        "rshares": 58065672,
+        "voter": "rhysday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 113497899,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 367284869879,
+        "rshares": 56919346,
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 58025713,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": -32328156283,
+        "rshares": 58513508,
+        "voter": "denisdiaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 6706595944,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16261261524,
+        "rshares": 18185255552,
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68649979979,
+        "rshares": 57950964,
+        "voter": "travisrwilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57949625,
+        "voter": "danielsgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 65813454,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 74144473,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20458047767,
+        "rshares": 62955132,
+        "voter": "texkitten"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 227415344771,
+        "rshares": -57103495,
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41221286829,
+        "rshares": 2625019093,
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1631502042,
+        "rshares": 58243271,
+        "voter": "mstudemeyer13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47840531974,
+        "rshares": 57103645,
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 887484,
+        "rshares": 57917120,
+        "voter": "anarchyroolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1082135170,
+        "rshares": 57909399,
+        "voter": "starbuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 745617396,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 788390,
+        "rshares": 56764104,
+        "voter": "ratinct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 150536937083,
+        "rshares": 64015459,
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15805181807,
+        "rshares": 69413590,
+        "voter": "darkflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48912400347,
+        "rshares": 197447117,
+        "voter": "shanelohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99387698429,
+        "rshares": 52715164,
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 52810460,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57851525,
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7174766783,
+        "rshares": 59464308,
+        "voter": "lukie257"
+      },
+      {
+        "percent": "10000",
+        "reputation": -64090140,
+        "rshares": 57848777,
+        "voter": "bddoolin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45382933,
+        "rshares": 57844151,
+        "voter": "kymera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5728419472436,
+        "rshares": 10505150406,
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 51686374324,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1759028197,
+        "rshares": 55550808,
+        "voter": "nwoinfowarrior"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57817200,
+        "voter": "rhcastilhos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 38712163448,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199905262704,
+        "rshares": 58554218,
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 325308438373,
+        "rshares": 207081271,
+        "voter": "wizwom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57804401,
+        "voter": "richardkoontz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1443357725,
+        "rshares": 54380942,
+        "voter": "ryangbanister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10684992176630,
+        "rshares": 71892286,
+        "voter": "quinneaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57774321,
+        "voter": "bradgoetsch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5189976,
+        "rshares": 57765750,
+        "voter": "djpeezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45439132822,
+        "rshares": 59864488,
+        "voter": "malxdrakon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7189192,
+        "rshares": 57744177,
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 380020476,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54247105,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1475775875,
+        "rshares": 56507000,
+        "voter": "stevep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2009900011368,
+        "rshares": 4301371631,
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10761402,
+        "rshares": 57582000,
+        "voter": "glowmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2628485,
+        "rshares": 54192703,
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29355882,
+        "rshares": 1727715510,
+        "voter": "dennisoosterwaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 2843892838,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176135418881,
+        "rshares": 79719071,
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599908904317,
+        "rshares": 148113908,
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7123091417,
+        "rshares": 57537502,
+        "voter": "autonomygarden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 364872562916,
+        "rshares": 346370290,
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 56835260,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 61485913,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1561226788,
+        "rshares": 56653604,
+        "voter": "marsalive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 8468136835,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18187326,
+        "rshares": 57479266,
+        "voter": "mrrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804735971045,
+        "rshares": 100188566,
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 1805783063,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7477248053,
+        "rshares": 55188304,
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57432859,
+        "voter": "rdennis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28419215374,
+        "rshares": 988343362,
+        "voter": "mister-t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083886659611,
+        "rshares": 73096652,
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 46768142805,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 1800633267,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35051945584,
+        "rshares": 58091241,
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57370536,
+        "voter": "rcyan333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57363928,
+        "voter": "freewilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1595948373990,
+        "rshares": 1025772806,
+        "voter": "liquidrainbowx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 876235,
+        "rshares": 57200621,
+        "voter": "anarvol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57195282,
+        "voter": "freetobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 56070721,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2497221434587,
+        "rshares": 57189619,
+        "voter": "jaytaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 574152440100,
+        "rshares": 64279725,
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5726762840,
+        "rshares": 57154670,
+        "voter": "cryp71x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57116285,
+        "voter": "whoownsyou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66311335718,
+        "rshares": 52596857,
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 1909306568,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 540397043,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55917465,
+        "voter": "michaelmillman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 575719148740,
+        "rshares": 57008181,
+        "voter": "lindseylambz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1358153764645,
+        "rshares": 839571930,
+        "voter": "leneg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 214346780,
+        "rshares": 55770868,
+        "voter": "kenfitz3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56858421,
+        "voter": "xrayovac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55708086,
+        "voter": "mrbud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10523402,
+        "rshares": 56807433,
+        "voter": "yoopercharged"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 56025314,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 373540743,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54555981,
+        "voter": "howverydroll345"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6064514,
+        "rshares": 55669133,
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25644393,
+        "rshares": 56781082,
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 1325569609,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136085046245,
+        "rshares": 59213106,
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 55660383,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78520035785,
+        "rshares": 60833389,
+        "voter": "pierce-the-veil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 124438627,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 967751032,
+        "rshares": 56911312,
+        "voter": "theunicornking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4656922610,
+        "rshares": 56436574,
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4021399162,
+        "rshares": 58435569,
+        "voter": "sanzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56718470,
+        "voter": "i-am-cuul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 775448580,
+        "rshares": 55579083,
+        "voter": "mrmike3rd7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 885365,
+        "rshares": 56663411,
+        "voter": "gzen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 167718520,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3765600208,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 269774223718,
+        "rshares": 56619031,
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1029594046,
+        "rshares": 54396426,
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907154101,
+        "rshares": 656815148,
+        "voter": "tylerdav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 275001369,
+        "rshares": 1253221290,
+        "voter": "sile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 1840903324,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56524504,
+        "voter": "rktonny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 788243276,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6671012929,
+        "rshares": 53152469,
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80747623295,
+        "rshares": 28408156142,
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 670779587392,
+        "rshares": 56759615,
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 972369433984,
+        "rshares": 2649813769,
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2175675775,
+        "rshares": 133176180,
+        "voter": "lapingvino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56422434,
+        "voter": "cowa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14234029697181,
+        "rshares": 3991088976,
+        "voter": "gardenofeden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 54289104,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982285480,
+        "rshares": 56498160,
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 1338292484,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3824365353,
+        "rshares": 55100682,
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4186834226,
+        "rshares": 56939399,
+        "voter": "bighammerfitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442182311998,
+        "rshares": 7245455063,
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 50644082,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56126260,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3954457383539,
+        "rshares": 54993742,
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 1934829584,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56047742,
+        "voter": "nima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 340991592664,
+        "rshares": 58363765,
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 673915909724,
+        "rshares": 1829599731,
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55953309,
+        "voter": "inscrutable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 142291804,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1546583783207,
+        "rshares": 1812426354,
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21368504247,
+        "rshares": 941666402,
+        "voter": "canalytic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 120980099,
+        "rshares": 55755220,
+        "voter": "fourfingerz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7381386825,
+        "rshares": 55155287,
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142110895467,
+        "rshares": 55736881,
+        "voter": "arrax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 55849814,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 41129675767,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": -242007231380,
+        "rshares": 61668627,
+        "voter": "avemend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 57793799,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 55171651,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6683260065,
+        "rshares": 57642877,
+        "voter": "libertarianism"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2498083480,
+        "rshares": 65508674,
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 588148622,
+        "rshares": 55609288,
+        "voter": "billgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55572977,
+        "voter": "shingrae"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52300009,
+        "voter": "t-killa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3074503409423,
+        "rshares": 1001199334,
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186544168,
+        "rshares": 55392038,
+        "voter": "natural"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55390495,
+        "voter": "widto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 864262,
+        "rshares": 55312794,
+        "voter": "stark2081"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35525606700,
+        "rshares": 55290988,
+        "voter": "rasfos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16608213399,
+        "rshares": 896395562,
+        "voter": "ateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75791249139,
+        "rshares": 97248059,
+        "voter": "maytons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55131842,
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1871240031576,
+        "rshares": 54608517,
+        "voter": "lilmisjenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51815820,
+        "voter": "michivollgas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6199431275,
+        "rshares": 53973109,
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1197776504,
+        "rshares": 53951892,
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 750402519278,
+        "rshares": 55025871,
+        "voter": "scottiemac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50751176,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53870477,
+        "voter": "jensk92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12368054643,
+        "rshares": 53133533,
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53746826,
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50603364,
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2184996,
+        "rshares": 54873574,
+        "voter": "peacefulpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 89309880,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 54781771,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 52615599,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54733052,
+        "voter": "angelfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53633596,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": -236066174395,
+        "rshares": 58459524,
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 737348426612,
+        "rshares": 54234557,
+        "voter": "lifeworship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50361239,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54636437,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53555002,
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3032920277,
+        "rshares": 51394338,
+        "voter": "ms-awareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156327134,
+        "rshares": 54602521,
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2155203229,
+        "rshares": 52437364,
+        "voter": "steemvixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53486009,
+        "voter": "jrblackmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53478598,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53411790,
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53396102,
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 360515928440,
+        "rshares": 54452240,
+        "voter": "rare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51230467,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 783047,
+        "rshares": 54380131,
+        "voter": "bik1980"
+      },
+      {
+        "percent": "10000",
+        "reputation": 932570039,
+        "rshares": 53278513,
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950372517145,
+        "rshares": 54312208,
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6995999694,
+        "rshares": 53228997,
+        "voter": "ultiphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 935727204,
+        "rshares": 53190964,
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 52104910,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41818829,
+        "rshares": 53137936,
+        "voter": "dooglet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 53131533,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062482,
+        "rshares": 54184927,
+        "voter": "balaji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 243094069757,
+        "rshares": 53117133,
+        "voter": "zonpower"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 52041445,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54151856,
+        "voter": "sschulerr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4918051325,
+        "rshares": 54143294,
+        "voter": "activistnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 50953995,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 52012416,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51979174,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53033634,
+        "voter": "afmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54079697,
+        "voter": "thefrenchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8449682488,
+        "rshares": 53015112,
+        "voter": "cjsdns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5000717548,
+        "rshares": 54028123,
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1455592982586,
+        "rshares": 50846073,
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1671368,
+        "rshares": 54013354,
+        "voter": "public-emily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52948493,
+        "voter": "christopherkemp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 54002407,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53992164,
+        "voter": "ronaldbijl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16988332,
+        "rshares": 53988449,
+        "voter": "frederickdenton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53975830,
+        "voter": "amiami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32819947524,
+        "rshares": 52902612,
+        "voter": "sic-savidicus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843101,
+        "rshares": 52900485,
+        "voter": "thefuzzytrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83873602946,
+        "rshares": 52890364,
+        "voter": "mikarasila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9163539380,
+        "rshares": 53739039,
+        "voter": "thisdayinanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2825341242,
+        "rshares": 51783297,
+        "voter": "noah.morris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52814743,
+        "voter": "konkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52794653,
+        "voter": "herbdata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6785954378,
+        "rshares": 52781878,
+        "voter": "susanhope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6880595844755,
+        "rshares": 52772186,
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52750237,
+        "voter": "angelus.silesius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52750104,
+        "voter": "unknown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4878508275,
+        "rshares": 52726417,
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3389961,
+        "rshares": 51603627,
+        "voter": "nospin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2004604707,
+        "rshares": 52635830,
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293420491789,
+        "rshares": 53679242,
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 557889685,
+        "rshares": 52557773,
+        "voter": "no-mercy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52540869,
+        "voter": "petrius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70342039492,
+        "rshares": 53381124,
+        "voter": "aine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13272662643,
+        "rshares": 53434588,
+        "voter": "infowarfare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52100450,
+        "voter": "finaleent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 221475776781,
+        "rshares": 50900574,
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50917987,
+        "voter": "bebout98"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11222113294,
+        "rshares": 50376324,
+        "voter": "lightobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785533,
+        "rshares": 50274131,
+        "voter": "hankgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7220571,
+        "rshares": 161889539,
+        "voter": "catvirus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154855305,
+        "voter": "ajvent"
+      }
+    ],
+    "author": "dollarvigilante",
+    "author_reputation": 67427595157518,
+    "beneficiaries": [],
+    "body": "<center>https://www.steemimg.com/images/2016/08/17/LarkenRoseAmandaRachwitzAnarchastSteem0b4bb.jpg</center>\n\nI had the pleasure of having a conversation with Larken Rose (@larkenrose) and Amanda Rachwitz (@dragonanarchist) this week to discuss progess on the Mirror Project and how Steemit has been helping fund the project.\n\nThe Mirror is an ambitious project which hopes to bring the philosophy of anarchy to the masses in game format.\n\nAs we all know, most people are too dumbed down from 12 years in government indoctrination camps (schools), fluoridated water and thousands of hours of mainstream media propaganda to be able to sit down and read a book.\n\nThe Mirror hopes to use a video game format to make even the most brainwashed statist realize the contradictions in their own head and, all on their own, become anarchists/voluntarists.\n\nIt's a huge project which encompasses 3-D modeling, game engine architecture, voice-overs and animation.\n\nAmanda Rachwitz was in Pennsylvania to record the voice-overs with Larken when I caught up with them to get an update.\n\nThe majority of the conversation centers around Steemit\n\nSome of the topics covered include:\n\n-How to cash out of earned Steem dollars\n-Steemit is not a scam as it is all voluntary and transparent\n-How Steemit incentivizes creating excellent content\n-Where does the money come from to pay content producers?\n-Why or why not to invest in Steem Power\n-Steemit's structure creates a mostly troll free environment.\n-Support activists through up voting\n\nYou can see the full interview, exclusively here on Steemit (it is unlisted on Youtube) for the next 24 hours here:\n\n<center>https://www.youtube.com/watch?v=Zm2QnuiUkDE</center>\n \nIf you've seen past Steemit videos of mine on Youtube, you'll notice it gets a lot of people down voting it and calling Steemit a \"scam\".  Please take this 24 hour period to \"like\" the video if you enjoyed it and also make comments on your experience with Steemit, before all the trolls get on.\n\nTomorrow I'll be publishing a debate/conversation with Tone Vays on Steemit.  Tone has been an outspoken anti-Steemer.  It'll be available here first exclusively on Steemit.\n\nRemember to follow me @dollarvigilante to ensure you see these exclusive videos and other articles first.\n\n[Edit: Steem dollars earned on this post will be shared with @larkenrose and @dragonanarchist]\n\n<center>https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/12/Steemitbio98756.jpg</center>",
+    "body_length": 2484,
+    "cashout_time": "2016-08-25T02:01:39",
+    "category": "steemit",
+    "children": 115,
+    "created": "2016-08-18T02:01:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\"],\"users\":[\"dollarvigilante\",\"larkenrose\",\"dragonanarchist\"],\"image\":[\"https://www.steemimg.com/images/2016/08/17/LarkenRoseAmandaRachwitzAnarchastSteem0b4bb.jpg\",\"https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/12/Steemitbio98756.jpg\"],\"links\":[\"https://www.youtube.com/watch?v=Zm2QnuiUkDE\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T13:54:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 156169892729310,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3274.653 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemit-exclusive-larken-rose-on-steem-and-how-it-is-helping-power-the-mirror-project",
+    "post_id": 863691,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Exclusive: Larken Rose On Steem And How It Is Helping Power The Mirror Project",
+    "title": "Steemit Exclusive: Larken Rose On Steem And How It Is Helping Power The Mirror Project",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@dollarvigilante/steemit-exclusive-larken-rose-on-steem-and-how-it-is-helping-power-the-mirror-project"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 27526380368282,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 493904989137,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7731774323941,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30963340603502,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 376251845809,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 38628577663382,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "6000",
+        "reputation": 13270505121655,
+        "rshares": 39215528449249,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 4574316664480,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6733379560466,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3066681879675,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 477966998971,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 4555198258386,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1119290177600,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1099134162323,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 995902544214,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 308753515461,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5113121585969,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726575642,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524583713,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 821038130,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7061101034251,
+        "voter": "complexring"
+      },
+      {
+        "percent": "7500",
+        "reputation": 49280708331375,
+        "rshares": 5152147344752,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66101488132,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996734414,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256577770,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 79845179316,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 63621891156,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7132023384,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5793517039266,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1201733691140,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 37842725376,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750187822,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168126713,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 23459060358,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254955012957,
+        "rshares": 10498292387,
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31824886550,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 9588709514,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346070380,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2165622245848,
+        "rshares": 3109456055,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8209280181,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 153296056627,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 10960361335,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14994955404,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15051023882,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78234456691,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1307793552141,
+        "rshares": 16968715703,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "6280",
+        "reputation": 12382143533351,
+        "rshares": 388803010656,
+        "voter": "eeks"
+      },
+      {
+        "percent": "700",
+        "reputation": 14848515958625,
+        "rshares": 6569044104,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 61054775,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 944762156062,
+        "rshares": 6453496039,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 376960001789,
+        "rshares": 735229559,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2154161049,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 336024528357,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1300",
+        "reputation": 5414208804644,
+        "rshares": 4002829527,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "1200",
+        "reputation": 503318537891,
+        "rshares": 1377965630,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "900",
+        "reputation": 15755437221598,
+        "rshares": 3046417496,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 156573687746,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 47413658846,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 40699583041,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 982799520,
+        "voter": "coar"
+      },
+      {
+        "percent": "1509",
+        "reputation": 2902053059801,
+        "rshares": 706760886,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3150734011,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 413982599009,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "5000",
+        "reputation": 18165011697633,
+        "rshares": 37933469992,
+        "voter": "tinfoilfedora"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 68637687828,
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24892673749,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 10437999499,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 418622798,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 375186691312,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "4000",
+        "reputation": 3804349938696,
+        "rshares": 22203455044,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5888717170887,
+        "rshares": 33744098418,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4581604470,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 79211060582,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 22806229743,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 32998689739,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173891397847,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2747282701,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811919161664,
+        "rshares": 5441964146,
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6742343806,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "1000",
+        "reputation": 18458799241134,
+        "rshares": 4664732981,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 6406633281,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 65327029498,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6466238081,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 861737606263,
+        "rshares": 2190216920,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 5891286972,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 7865292102,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 510560493,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860741683952,
+        "rshares": 13966313707,
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 52006965472,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 20199692434,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 369419860,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5480390590,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 280810708,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 160654406646,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 322161583283,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5190612986,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 51172289637,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 73669227443,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1260650049067,
+        "rshares": 1039910629,
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5263874133,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122425882381,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5478937966,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 48661612606,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 5773781115,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 8195186985,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 154748925594,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 748609254,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 29982688838,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 15620672312,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 550066409600,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10594766057,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 98865572073,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 16387519197,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 164113821182,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4633652827,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 61949102847,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "9000",
+        "reputation": 2821855573125,
+        "rshares": 4648828220,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13786736208,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 241151752567,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33649569687,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 19899950500,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2397831198773,
+        "rshares": 664533963,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 30406359089,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24966175354,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10633723041,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 72122373888,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2432538531735,
+        "rshares": 10116801758,
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 349333115852,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2503362754,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4997362589971,
+        "rshares": 104275514857,
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 585128034,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 21251528152,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 41875574687,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 91926117,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13498626934,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 23642062334,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 202466740034,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3432105137,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7168108020,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 7665805497,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3067643706,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1514733088,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 14988694886527,
+        "rshares": 32299149356,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 6499288255,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 1428253908,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 24289041861,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 98784441443,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 77100966,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19393495828,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 436229754,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 5115308538,
+        "voter": "favorit"
+      },
+      {
+        "percent": "1000",
+        "reputation": 58190631451,
+        "rshares": 2725832001,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 664224643,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1403214907,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 283260879,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114849934,
+        "voter": "fsip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 45674978438,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3699079514,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 15825218986,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 37392922224,
+        "voter": "smailer"
+      },
+      {
+        "percent": "300",
+        "reputation": 4063076365725,
+        "rshares": 116118859,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 862222696,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18456599281,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 27770435610,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 6474324531,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1177738817,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 71964844842,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1275505236,
+        "rshares": 1378717807,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 406607053254,
+        "rshares": 235438675,
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24362034190,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4890113111,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10735623,
+        "rshares": 65204048,
+        "voter": "cechirik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 26122931456,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26100683859,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26110010937,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 588607112049,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 17279737369,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 17727013483,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "6280",
+        "reputation": 1751717743,
+        "rshares": 10306119254,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6907625180,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26105523826,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26103248276,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26100183826,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26096640233,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8291369593,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26092206591,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26090029262,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3653299044116,
+        "rshares": 7963549449,
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1376887643,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21044216417,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11354441708,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 107983601750,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62556433,
+        "voter": "internistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 14254306379,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1729954252,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 80357718252,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 1726441518,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 43384212188,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 275026678,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10739953721,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91384020663,
+        "rshares": 68550569,
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3769464721,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 39390555456,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 77220767,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "100",
+        "reputation": 3814152361740,
+        "rshares": 254680718,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9679928412,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1489069575,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59750246,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 273211506,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 13665635092,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59992769,
+        "voter": "shuklix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 7727181529,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26082953024,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 3083989123,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2978336615,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5945926381,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 42909923528,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 16339966378,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8041485878,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1401458089,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5881944684,
+        "rshares": 59261081,
+        "voter": "disletti"
+      },
+      {
+        "percent": "5800",
+        "reputation": 793368183438,
+        "rshares": 24655449762,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 69721598,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2149430985,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1258844947,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 2230320600,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 58025713,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 3079600558,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 913227198,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 117344778,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57881817,
+        "voter": "novrik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 52053227,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3418202722938,
+        "rshares": 12007897380,
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 2028200120,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 57664781,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12089632983,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 25202992641,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 9593336727,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78138793415,
+        "rshares": 86165076,
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 1532461481,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7426008331,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 174713024,
+        "voter": "rusla"
+      },
+      {
+        "percent": "4000",
+        "reputation": 134056888284,
+        "rshares": 130992658952,
+        "voter": "cornerstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54391689,
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293042273,
+        "rshares": 56582615,
+        "voter": "minihelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 660913097252,
+        "rshares": 3335975740,
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 633489640,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 1162848474,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18912504878,
+        "rshares": 65457046,
+        "voter": "forest-revealed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 808370638,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3983778979,
+        "rshares": 54726577,
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 115556600090,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117903399171,
+        "rshares": 646861838,
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 453351131,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 52088375,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97476072754,
+        "rshares": 369323003,
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 2913602897,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59275415100,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54272135,
+        "voter": "mpmajo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 3135075242,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 683829103,
+        "rshares": 54232595,
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1250337518,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 568011923,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726647930107,
+        "rshares": 3312524129,
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 84516562,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 1195193402,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 9640083850,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 1173837106,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1642160,
+        "rshares": 52549133,
+        "voter": "janeth111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 52800226,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 52864017,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121767758976,
+        "rshares": 53548226,
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51615039,
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3689606685797,
+        "rshares": 7301503729,
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 2019020353,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487989126850,
+        "rshares": 1977855772,
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396872137163,
+        "rshares": 56856217,
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 120476926,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6098187003516,
+        "rshares": 9289382445,
+        "voter": "luzcypher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 511233308,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82287966,
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1317647622,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33024540131,
+        "rshares": 116937238,
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33159895743,
+        "rshares": 153687209,
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 345429965231,
+        "rshares": 508743849,
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 155910854,
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446608067,
+        "rshares": 3795801841,
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8318542,
+        "rshares": 146534462,
+        "voter": "nekrasov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22482956163,
+        "rshares": 166431444,
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251629303655,
+        "rshares": 10549884113,
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465128668,
+        "rshares": 159048846,
+        "voter": "manuelgarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189961981,
+        "rshares": 155110756,
+        "voter": "matteopoole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158170239,
+        "voter": "spacedout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 474962663,
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2361914,
+        "rshares": 157332453,
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 226352036,
+        "rshares": 157111992,
+        "voter": "emisfer2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804954090860,
+        "rshares": 311030765,
+        "voter": "aldentan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144468196,
+        "voter": "roman.est"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153571614,
+        "voter": "petrroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15827302113,
+        "rshares": 156505647,
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156489923,
+        "voter": "novium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156452773,
+        "voter": "yahooshua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 135270873,
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156347190,
+        "voter": "wizardcrying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32146174,
+        "rshares": 147091838,
+        "voter": "alkindi31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156226986,
+        "voter": "kmichaelkills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153075466,
+        "voter": "william007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 745770738333,
+        "rshares": 116295959,
+        "voter": "mikerano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155748226,
+        "voter": "karles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 152655283,
+        "voter": "jahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 313203976,
+        "rshares": 155688834,
+        "voter": "nathanael540"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155680732,
+        "voter": "rupelto"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "I know many people have been very concerned with the block on NSFW content from all categories, and have been concerned about the chance of the platform continuing to block other content.\n\nI think Steemit are doing a great job, and I understand some of their position if they end up censoring content. Being a US business means they will quickly run into legal issues with the content on their site, and may have to do some censorship. \n\nOf course thanks to the blockchain, it's never truly censored, and sites like UnderSteem can show it.\n\nThis is a follow up to my post from a few days ago, where [I launced the first TOR RPC and SEED node for STEEM.](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy).\n\n**As people should know by now, I'm strongly concerned about privacy and freedom.** In the past week:\n\n - I set up a TOR node for the STEEM network (link above)\n -  [raised almost $200 USD for RiseUP](https://steemit.com/steem/@someguy123/proof-of-riseup-donation)\n -  Set up a site for [fully anonymous steem accounts](https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media)\n\n----\n\n\n![](https://i.imgur.com/UPxM1Jf.png)\n\n\nWhat is UnderSteem?\n-----\n\nTL;DR\n\n - Uncensored - UnderSteem promises to have no censorship, including on pornography and piracy\n - Private - UnderSteem is only accessible over TOR. This means your IP address is never disclosed, so you're protected\n - Secure - Because UnderSteem is over TOR, the server locations are unknown. This makes it much harder to be hacked, because the attackers do not know the IP address of the servers, and they're only able to access the website\n - [Open Source](https://github.com/Someguy123/understeem/)\n\nUnderSteem is \"Underground Steem\". It is a fork of Steemit (not STEEM. It's on the same network), and is fully [open source, available here](https://github.com/Someguy123/understeem/). UnderSteem promises to avoid censorship on the client level, and operates it's servers within a safe jurisdiction, **since just like steemit, it does not store any content at all, and cannot be held responsible for any illegal activity.**\n\nTo allow the safest, most private experience, it's only available over TOR. I strongly recommend [downloading TOR Browser](https://torproject.org) - it's free, open source, and available on nearly every platform, **even Android and iOS**. (Don't worry, TOR is completely legal almost everywhere, including the US, practically every European country + the UK)\n\nOnce you have TOR browser, you can just enter the following URL into the address bar, and you'll be on UnderSteem:\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\nIf you just want to take a quick look *without TOR*, you can access the site through a gateway such as ONION.TO, however the site will not function fully through a gateway because of the JavaScript trying to communicate with [my TOR node](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy):\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n\nWant to remember this URL? Just split the words up!\n\n<center>`usteem pc coap good`</center>\n\nDo I need to sign up?\n-----\n\n**You don't need to.** If you already have an account made on Steemit, or AnonSteem, you can log into the website with your username and password just like normal.\n\nIs it legal to access this site and use TOR?\n-----\n\nUnderSteem is not designed for illegal content any more than Steemit is, however the laws vary in every country. \n\nUnderSteem believes that the content should be free for the person to decide if they should view it or not, rather than their governments laws.\n\nWhile UnderSteem will avoid any form of censorship at all costs, **there's nothing illegal about using TOR** (in most countries), **or UnderSteem** unless you are purposely trying to access illegal content.\n\n----\n\n<center>Try it out!</center>\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n----\n\n**Frequently Asked Questions**\n\n**Why can't I see the upvote button?**\n\nYour security settings on TOR browser are too high. On the \"high\" setting, SVGs are blocked, which means the upvote button and other icons can't work. \n\nClick the TOR icon in the top left, and press \"Privacy and Security Settings\", and turn it down to at least Medium-High.\n\n**Why can't I log in?**\n\nYou probably need to enable javascript. Click the NoScript icon in the top left and whitelist the site.\n\n**Why are other categories/tags broken?**\n\nYou probably have Javascript disabled. Click the NoScript icon in the top left and whitelist the site.\n\nBe aware that the clearnet gateway (onion.to or onion.cab) isn't fully functional because of the javascript used on UnderSteem. To get a proper experience on UnderSteem, [download TOR](https://torproject.org)\n\n**I don't trust UnderSteem with my password, can I still use this service some other way?**\n\nYES. You can use your posting key as your password. Go to your Steemit account, click on \"Wallet\", then \"Permissions\". Click \"Show Private Key\" on your posting key, and paste that into the password box of UnderSteem. \n\nThis will only give the site the ability to make posts/comments, and upvote. It will not be able to access your wallet, or change your keys/password.\n\n**Is there an NSFW filter?**\n\nNO. We do not approve of any of the filtering. If you want filtered content (or are in a family/work setting), continue to use Steemit.\n\n\n---\n\nDo you like what I'm doing for STEEM/Steemit?\n----\n[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. \n----\nDon't forget to follow me for more like this.\n-------",
+    "body_length": 5830,
+    "cashout_time": "2016-09-18T16:40:45",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-11T16:40:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"censorship\",\"privacy\"],\"image\":[\"https://i.imgur.com/UPxM1Jf.png\"],\"links\":[\"https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy\",\"https://steemit.com/steem/@someguy123/proof-of-riseup-donation\",\"https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media\",\"https://github.com/Someguy123/understeem/\",\"https://torproject.org\",\"http://usteempccoapgood.onion\",\"http://usteempccoapgood.onion.to\",\"https://steemit.com/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T22:43:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 200808528786505,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3050.626 HBD",
+    "percent_hbd": 10000,
+    "permlink": "understeem-steemit-without-censorship-nsfw-filter-removed-via-tor",
+    "post_id": 1210189,
+    "promoted": "45.000 HBD",
+    "replies": [],
+    "root_title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28803919091549,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7546882456921,
+        "voter": "steempty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 14765040488827,
+        "rshares": 13460823470210,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "5100",
+        "reputation": 1133069631465,
+        "rshares": 16080021738102,
+        "voter": "val-a"
+      },
+      {
+        "percent": "5900",
+        "reputation": 176979684007,
+        "rshares": 21407571352875,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9326993992,
+        "rshares": 118619738407,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8863760833999,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2279156593253,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "5000",
+        "reputation": 608057298751,
+        "rshares": 334187173481,
+        "voter": "justin"
+      },
+      {
+        "percent": "8000",
+        "reputation": 16685610555705,
+        "rshares": 16497738254633,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "5000",
+        "reputation": 138490649,
+        "rshares": 900467396964,
+        "voter": "silver"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4018307276106,
+        "rshares": 2024540691355,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 27931460807554,
+        "rshares": 2483656360184,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 919986225502,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2473119326,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3001836775,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562495952,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 42255210749,
+        "voter": "bue"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1689894306134,
+        "rshares": 2933485164,
+        "voter": "thepresident"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5009147934382,
+        "rshares": 16798027623,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "5000",
+        "reputation": 29449063355738,
+        "rshares": 232818156325,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1325642399,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170794809,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4641818738132,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1241362310762,
+        "rshares": 8386329025,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250001478305,
+        "rshares": 106086870394,
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 272929828324,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 255207364455,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 497314258,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 740353304,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 41250980220,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4909504649121,
+        "rshares": 64444376030,
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 284106302618,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230286157,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6863537479759,
+        "rshares": 40104895894,
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19513926371,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 28799893563,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 410896416946,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15489805591,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 4779459041,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2824568506,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5073340932,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 576372358343,
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 3063294418,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 23885595382,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2050756986,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 346612366074,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1137341188,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3489651223,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 9020074290,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 627954645291,
+        "rshares": 3939143439,
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5502047299,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 51642445508,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 44024667559,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 395986949883,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1440300824,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19196845761,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 336503355527,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4225750906887,
+        "rshares": 68697197782,
+        "voter": "beerbloke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 345529598268,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 161833281,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3675954043,
+        "rshares": 368445527,
+        "voter": "lightninggears"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 27220362408,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9353005120,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51163991486,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 30995912659,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1255953980,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 3119831385,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13116796117,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 217303550597,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 995515395,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4669645809271,
+        "rshares": 49077164104,
+        "voter": "lat-nayar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 122834295462,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5412463822,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 195115992238,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1366452037950,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686387673636,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "5000",
+        "reputation": 598181152117,
+        "rshares": 103517234451,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 216392016575,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 13828133326,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2233941988,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3924899966690,
+        "rshares": 49507039139,
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 52214627593,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8410101902,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 7265054512,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 152799819717,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18965164896,
+        "rshares": 260424224,
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 5002970057,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3893522363454,
+        "rshares": 217297385433,
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3326209124802,
+        "rshares": 10956634318,
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 142699808834,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 22686086206,
+        "voter": "firepower"
+      },
+      {
+        "percent": "8000",
+        "reputation": 213668684615,
+        "rshares": 222535041,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4719976979,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 135258108874,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 87298844534,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 12502365042,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 525127069,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6830379360,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 142793644,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 45310613662,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9484434103,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 75388778818,
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223278762484,
+        "rshares": 16476125783,
+        "voter": "jazzka"
+      },
+      {
+        "percent": "1000",
+        "reputation": 19111656178138,
+        "rshares": 6245458164,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12755003778,
+        "rshares": 320286208,
+        "voter": "onthewayout"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3891722,
+        "rshares": 72118974,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 80660917,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 73949203,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 91775193,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 110356031880,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 19952368671,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 99266796796,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 3345442816,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18033926620,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 142129493846,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34260279506,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55868714455,
+        "rshares": 9565381348,
+        "voter": "revulv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 234379829569,
+        "rshares": 2639487925,
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 107243301266,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14826352016829,
+        "rshares": 22613261364,
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 47961353292,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 208581030,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 269389937433,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13696846132,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11804087991,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2222009885,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 693127524498,
+        "rshares": 404296312,
+        "voter": "alexoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36956876377,
+        "rshares": 2774283311,
+        "voter": "rigel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1723503984,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1453226197,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 199228255308,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2620486879029,
+        "rshares": 1297714742,
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25927450587,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10146677177,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 18787807577,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 177634914692,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 13907559564,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 28274862429,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 6607451048,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7023642790,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1107579084929,
+        "rshares": 2687668307,
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7740774800016,
+        "rshares": 23490708029,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 2525305035,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 35251248496,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 12216840328,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 62006066006,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 111726756,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 13784158275,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 940333523,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 892248356216,
+        "voter": "james212"
+      },
+      {
+        "percent": "1000",
+        "reputation": 10519849768972,
+        "rshares": 2467235781,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 34911772762,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 115682991,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4828963344,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 542854211690,
+        "rshares": 410075288,
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 110286040,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 190659116,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35510501911,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "5000",
+        "reputation": 17698439393799,
+        "rshares": 6452998093,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73320231439,
+        "rshares": 116274111,
+        "voter": "cronk"
+      },
+      {
+        "percent": "1000",
+        "reputation": 147425730,
+        "rshares": 77473651,
+        "voter": "fnait"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3720753029,
+        "rshares": 74625825,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4965349454737,
+        "rshares": 33393614131,
+        "voter": "rznag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 2931055842,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 5471448531,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 95073477,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111137351,
+        "voter": "middleclicker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 60188008025,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 158874903,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6522395967,
+        "rshares": 120698196,
+        "voter": "alechahn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1842626655,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 30168136093,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "8000",
+        "reputation": -4779249072914,
+        "rshares": 218486731,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3800170172,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 51796751595,
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 2470538012,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 943711557,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697263449295,
+        "rshares": 1398411520,
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 10510184099,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636819078766,
+        "rshares": 61858279,
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 589199119504,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 16361768844,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 13536900774,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4974812134,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": -655701032,
+        "rshares": 127381736,
+        "voter": "btctoken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211462616494,
+        "rshares": 865197927,
+        "voter": "letc"
+      },
+      {
+        "percent": "5000",
+        "reputation": 18027204457681,
+        "rshares": 13216324667,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2078560081,
+        "voter": "rich77"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5776723480371,
+        "rshares": 112339707268,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 3074215761,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 30692880794,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2269581106933,
+        "rshares": 67104652,
+        "voter": "stormblaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1730623991,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 783512776,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3209909513,
+        "rshares": 20361864418,
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4549076794,
+        "rshares": 382253852,
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 22295959904,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7254413425,
+        "rshares": 66501819,
+        "voter": "tiberius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2015798675,
+        "rshares": 386282196,
+        "voter": "bitcoindon23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124828196272,
+        "rshares": 852029551,
+        "voter": "havok777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7539327464,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 8201249418,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 66936134283,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1851205309677,
+        "rshares": 1787091651,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 662534286,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13386319310,
+        "rshares": 70956487,
+        "voter": "dudu-hoffman"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 673743536,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 28292996011,
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62917434,
+        "voter": "kfw"
+      },
+      {
+        "percent": "5000",
+        "reputation": 891327,
+        "rshares": 408615947,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 151615556,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4195733833721,
+        "rshares": 2442034567,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 522606938,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2578510492,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263793010310,
+        "rshares": 150585915,
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62056547,
+        "voter": "ttrof59"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "5000",
+        "reputation": 730408370151,
+        "rshares": 248032218,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 329573836,
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3657922,
+        "rshares": 58919079,
+        "voter": "titan792008"
+      },
+      {
+        "percent": "5000",
+        "reputation": 31215012571,
+        "rshares": 17585936336,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 588775942,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 794453323,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 58148489,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133847847904,
+        "rshares": 214875108,
+        "voter": "ashleybeckwith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1902873783,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1430182565,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 53067614,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 505219265255,
+        "rshares": 60666250,
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 50439994,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 650780303,
+        "voter": "levycore"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 18146080250,
+        "rshares": -60040051,
+        "voter": "icecreamyolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 1472628083,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1171329427,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26106675550,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3550134972,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 6162137506,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61929785979,
+        "rshares": 76837181,
+        "voter": "redlikecherry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 21064576357,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 2812110844,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4775359646971,
+        "rshares": 2132014007,
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2214392625,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 110550263547,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 56114502,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186566404,
+        "rshares": 57529481,
+        "voter": "tamijj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3594479028,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53098184238,
+        "rshares": 83815039,
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10614920699,
+        "rshares": 236132650,
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 1834802564,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1987750394564,
+        "rshares": 52585185,
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1565796952,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3758981994,
+        "rshares": 57791130,
+        "voter": "gearshiftrwife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 4225982895,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 129573135,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 60526884,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1442187004,
+        "rshares": 55791783,
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 133141273,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27860421633,
+        "rshares": 754244428,
+        "voter": "christiangruber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 36116476799,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 57813247,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 57683187,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 8467643107,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54247105,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55369146,
+        "voter": "tiituskangas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 3488323747,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 2465887706,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6332865841,
+        "rshares": 273374489,
+        "voter": "davincij15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 55698555,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 831124898,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135018071312,
+        "rshares": 59128689,
+        "voter": "blackeyed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28419215374,
+        "rshares": 1385093282,
+        "voter": "mister-t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083886659611,
+        "rshares": 93508537,
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 20505868480,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 96267073,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2261984687,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 10417000727,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 60934323,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6921306030,
+        "rshares": 56850962,
+        "voter": "darknight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90062656329,
+        "rshares": 56914472,
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6064514,
+        "rshares": 56782516,
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136085046245,
+        "rshares": 59479703,
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 54547175,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 54536747,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 168325699,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80747623295,
+        "rshares": 27680752440,
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 53181164,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2594600965,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19272336927,
+        "rshares": 444096921,
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 195838830,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247818520980,
+        "rshares": 515136503,
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 55171651,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 193759655472,
+        "rshares": 115562685,
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7586670074,
+        "rshares": 55707824,
+        "voter": "knoble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55423328,
+        "voter": "umarm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 115913696,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 652863483,
+        "rshares": 55384928,
+        "voter": "satoshigraphics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 50275164,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 2053885248,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 67051047,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1666032,
+        "rshares": 52543123,
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1664975949,
+        "rshares": 54730697,
+        "voter": "donguillermo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 58263366,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 50288358,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 4477688139,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53358252,
+        "voter": "sofiaornati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11427084577,
+        "rshares": 54512166,
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 830944,
+        "rshares": 54244027,
+        "voter": "alexanderem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 52943536,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 59097192,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17391399824,
+        "rshares": 53047492,
+        "voter": "kinghabib786"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12168350651,
+        "rshares": 54429762,
+        "voter": "elex-free"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52579820,
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 51477686,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15279950893,
+        "rshares": 52420592,
+        "voter": "inphiknit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 51231643,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 51174318,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3358006,
+        "rshares": 51147992,
+        "voter": "irura"
+      },
+      {
+        "percent": "10000",
+        "reputation": 154843320822,
+        "rshares": 53141273,
+        "voter": "idmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53097691,
+        "voter": "minesle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2474314,
+        "rshares": 52013554,
+        "voter": "ascares"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1982920070,
+        "rshares": 53050941,
+        "voter": "himiko.ozaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53043761,
+        "voter": "cooltomato2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148513935176,
+        "rshares": 53041377,
+        "voter": "allesgruen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 945836468614,
+        "rshares": 53018446,
+        "voter": "stickman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511117859,
+        "rshares": 51972989,
+        "voter": "miriams"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121386363,
+        "rshares": 51960814,
+        "voter": "pillar-of-autum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 221475776781,
+        "rshares": 51939361,
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51935113,
+        "voter": "becenok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445711,
+        "rshares": 52866277,
+        "voter": "noehuertas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136526211,
+        "rshares": 52701082,
+        "voter": "longe"
+      }
+    ],
+    "author": "capitalism",
+    "author_reputation": 6181438509962,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover143893.png\" width=\"840\" height=\"494\"/><br>\n<img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover254dab.png\" width=\"840\" height=\"346\"/></p>\n<p>It is characteristic for all genius masterminds that aspire for world domination, that they occasionally spill the beans about their plans. Dr. Julius No, Auric Goldfinger and Ernst Blofeld did it. And Dan Larimer, Co-Founder of Steemit, did it as well.</p>\n<p>Did you ever wonder, why Dan doesn\u2019t write posts with his <a href=\"https://steemit.com/@dan\">@dan</a> account anymore and is using instead his <a href=\"https://steemit.com/@dantheman\">@dantheman</a> account? The simple answer is: he wants to hide <a href=\"https://steemit.com/steem/@dan/steemit-s-evil-plan-for-cryptocurrency-world-domination\">that post</a>:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-screenshot5fef5.jpg\" width=\"840\" height=\"656\"/></p>\n<p>One month ago, in a state of cockiness because of the near triumph of this ventures, Dan had carelessly revealed his plans for world domination in cryptocurrency to the public. Unfortunately he revealed his plans on a platform that was designed to be immune against censorship. So he couldn\u2019t delete the post after realizing that. Writing with another account name afterwards was the only possible way to cover that mistake.</p>\n<p><strong>Based on this secret document and further research I present you Dan\u2019s complete secret plan for world domination.</strong>&nbsp;</p>\n<p>The first part of this plan is to achieve world domination in cryptocurrency.</p>\n<h1>1. Cryptocurrency world domination</h1>\n<p>In his <a href=\"https://steemit.com/steem/@dan/steemit-s-evil-plan-for-cryptocurrency-world-domination\">accidentally revealed article</a> Dan is describing, how he will reach this goal with Steemit.</p>\n<p>First he admits openly that Steemit is not mainly a blogging platform. In truth it is a tool for \u201ebootstrapping a digital currency\u201c. The establishment of the blogging platform is only the way to create a community that is able and willing to use the new digital currency. Then Dan admits:</p>\n<h3><em>\u201eA blogging platform that makes it possible for everyone to earn &nbsp;their way in is just a trojan horse. It is a means of hiding the vegetables (honest money) in the food (fun content).\u201c</em></h3>\n<p>It\u2019s likely that Dan was laughing out loud when he was confessing with these words, how he is tricking the Steemit users into taking his honest digital currency as reward for their writing. What an ingenious plan.&nbsp;</p>\n<p>Next he outlines three phases for achieving cryptocurrency world domination:</p>\n<p><strong>\u201ePhase 1 - Bootstrap a Stable Currency\u201c</strong></p>\n<p>To outrival the other cryptocurrencies Dan wants to create a stable digital currency - the \u201eSteem Dollar\u201c. Because it\u2019s designed to be stable against the US Dollar, this Steem Dollar should hit Bitcoin and the Alt-Coins at their weakest spot, their unstable price.&nbsp;</p>\n<p>So, the blogging platform Steemit is just an outlet to bring this Steem Dollars to the ordinary people. Guess how many Steemit users have knowledge about this? How many of them know, that the sole reason to let them write articles is to give Dan the ability to give them Steem Dollars?&nbsp;</p>\n<p><strong>\u201ePhase 2 - Bootstrap a Marketplace\u201c</strong></p>\n<p>Dan describes now, how he wants to disrupt the online commerce in the second phase by building a marketplace \u201elike OpenBazaar, Craigslist, Angie\u2019s List, or eBay\u201c. With all the people that he had tricked into his venture by giving them Steem Dollars for their writing he has now the user base for his own Steem powered marketplace, where they can spend their Steem Dollars.&nbsp;</p>\n<p>Could you imagine something that is more alluring? - First he gives the people money for free and than he offers them the perfect place for spending it! Is that even legal?</p>\n<p><strong>\u201ePhase 3 - Sidechains, Smart Contracts and SmartCoins, Oh My!\u201c</strong></p>\n<p>In the final phase he wants to use his Steem technology to establish a complete blockchain infrastructure that can be used by others to build new applications and business models. Again, he wants to use a perfidious method to get users for this services. His trick is: \u201eno fees!\u201c - All Wall Street bankers will surely cry when they hear about that.</p>\n<p>You might think that creating such a stable cryptocurrency that has no fees is the whole plan of Dan. But this is only a small part of what he wants to achieve.&nbsp;</p>\n<h1>2. Building an \u201ealternative economy\u201c</h1>\n<p>In a <a href=\"https://steemit.com/steemit/@dollarvigilante/how-i-made-usd15-000-in-12-hours-on-the-new-blockchain-based-social-media-site-steemit\">recent interview</a> with Jeff Berwick (<a href=\"https://steemit.com/@dollarvigilante\">@dollarvigilante</a>), Dan had loosen his concentration for a moment and spilled again the beans out about his secret plan:</p>\n<p>https://www.youtube.com/watch?v=-W0EYe23or4</p>\n<p>At minute 38:56 Dan accidently revealed, what he is intending. He wants to get:&nbsp;</p>\n<h3><em>\u201ea new economic system for people who want to have free honest money rather than Federal Reserve money controled by central parties.\u201c</em></h3>\n<p>And than at minute 39:04 he admits:</p>\n<h3><em>\u201eThats the bigger picture here about creating an alternative economy thus is being bootstrapped through social media.\u201c</em></h3>\n<p>So, to get cryptocurrency world domination is not enough for Dan. He wants to change the whole economy.</p>\n<p>But still, this is not the end of his plans. His ultimate goal is:</p>\n<h1>3. Building an \u201ealternative to government\u201c</h1>\n<p>In my research I dug deep into Youtube and found a keynote speech by Dan at the <em>Inside Bitcoins</em> <em>Conference</em> in Las Vegas in 2014:</p>\n<p>https://www.youtube.com/watch?v=U44MujtVj00</p>\n<p>Dan speaks here mostly about his BitShares project. But at minute 28:54 he tells the audience the possibilities of the blockchain technology and stated openly that&nbsp;</p>\n<h3><em>\u201eyou can have complete governance on a voluntary basis, because blockchain technology allows us to reach a peaceful form of consensus and is the alternative to government which are a coercive violent for of consensus. It\u2019s just a matter of finding the free market solution to secure life, liberty and property. And that\u2019s what I\u2019m going for.\u201c</em></h3>\n<p>So, Dan Larimer is a real anarcho-capitalist thinker. But he is not only a thinker. Steemit is the first step to reach his goal of an alternative to government.&nbsp;</p>\n<p>Now I will finally expose how Dan wants to achieve this. His first instrument to create an alternative economy and an alternative to governments are Decentralized Autonomous Companies (DAC).</p>\n<h1>4. Decentralized Autonomous Companies (DACs)</h1>\n<p>Dan Larimer invented the concept of the \"Decentralized Autonomous Companies\" (DACs) some month before Vitalik Buterin came up with the term \"Decentralized Autonomous Organization\" (DAO), which became quite famous because of \u201eThe DAO\u201c.&nbsp;</p>\n<p>Dan had explained the concept of the DAC together with Brian Page in 2014:</p>\n<p>https://www.youtube.com/watch?v=abA4TuPHmNg</p>\n<p>In this video Dan is giving us confirmation for his secret plan that I am exposing here. At minute 2:01 he admits that he wants</p>\n<h3><em>\u201eto create a product that I hope gonna change the world\u201c.</em></h3>\n<p>Dan is speaking here about BitShares and how it is a platform for DACs. He explains that Bitcoin is a DAC and how a DAC is working. But I will not bore you with technical details. Fact is, that Steemit is a kind of DAC and that DACs are one of the two instruments of Dan.</p>\n<p>But what is a DAC strictly speaking? Let\u2019s get an revealing <a href=\"https://medium.com/@VitalikButerin/i-invented-the-term-in-2013-and-daniel-larimer-came-up-with-dacs-s-organization-corporation-a-ef86db1524d5#.srakglwfj\">explanation by Vitalik Buterin</a>:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-dacs917af.png\" width=\"840\" height=\"461\"/></p>\n<p>Many readers will be familiar with the <a href=\"https://en.wikipedia.org/wiki/Daemon_(novel_series)\">\u201eDaemon\u201c novel of Daniel Suarez</a>, where a software agent called \u201eDaemon\u201c and a decentralized network called \u201eDarknet\u201c was created by a software genius to change the world.&nbsp;</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemonbooks38fc9.jpg\" width=\"840\" height=\"448\"/></p>\n<p><em><strong>\u201eChange the world\u201c</strong></em> - does this sound familiar? These are the same words, that Dan Larimer was using in the DACs video.</p>\n<p>But is it possible that Dan wants to build such a Daemon and a Darknet that will change the world. I couldn\u2019t find evidence for this by him. But I was able to find a cryptic confirmation by his Steemit co-founder Ned Scott (<a href=\"https://steemit.com/@ned\">@ned</a>).</p>\n<p>Two month ago, <a href=\"https://steemit.com/@pheonike\">@pheonike</a> had started a Steemit book club with an <a href=\"https://steemit.com/books/@pheonike/steem-book-clubs\">article about the notorious book \u201eDaemon\u201c</a> by Daniel Suarez. Ned, who in all probability had knowledge of the secret plan of Dan, wrote a comment to this post:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-ned-comment3c240.png\" width=\"362\" height=\"111\"/></p>\n<p>At first sight Ned is simply saying that the book of Daniel Suarez was \u201ea fun read\u201c. But what about the \u201e+1\u201c? I\u2019m really sure that Ned is telling in a hidden way that another \u201eDaemon\u201c was created.&nbsp;</p>\n<p>Now everything makes sense. Dan is building his own \u201eDaemon\u201c.</p>\n<p>But wait, there is more evidence. Look at this:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemone9661.png\" width=\"333\" height=\"102\"/></p>\n<p>So, DAemoN = DAN.&nbsp;</p>\n<p><strong>It seems to me now, that Dan is in one person the brilliant programmer Matthew A. Sobol </strong><em><strong>AND</strong></em><strong> the Daemon from the novel of Daniel Suarez!!! </strong>And on the basis of the blockchain technology Dan is now building a \u201eDarknet\u201c like the one in the \u201eDaemon\u201c novels.</p>\n<h1>5. Steemians</h1>\n<p>I mentioned a second instrument that Dan has created to implement his secret plan. And this second instrument is: the Steemians!</p>\n<p>Yes, that's you and me.</p>\n<p>In the secret document that Dan was posting by mistake on Steemit he had admitted that he needs to build a community for bootstrapping his honest digital currency. But this is not the only function of this community.</p>\n<p>Do you know <a href=\"http://steemtools.com/\">SteemTools.com</a>? This is a terrific collection of tools that were build by Steemians in the last weeks. So, strictly speaking - <strong>the Steemians are the little helpers of Dan</strong>.&nbsp;</p>\n<p>Or, to give you a good analogy, the Steemians are his Minions:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-steemiansc1b38.jpg\" width=\"840\" height=\"482\"/></p>\n<p>The Steemians are the eager helpers for Dan to achieve his goals: to build an alternative economy and an alternative to governments.</p>\n<h1>Conclusion</h1>\n<h3>Steemit is much more than a blogging platform where people gets rewarded in a cryptocurrency for popular articles. It is a community of people who wanna create a better world through technology and friendship. The research for this post gave me high confidence in the future of Steemit and in the vision of Dan. I\u2019m happy and proud to be one of his Steemians.</h3>\n<p><br></p>\n<p>Follow me if you like my posts: <a href=\"https://steemit.com/@capitalism\">@capitalism</a></p>\n<p><strong># KeepingPledge</strong>: all Steemdollars that I will receive for this article will be powered up to Steempower.</p>\n</html>",
+    "body_length": 11891,
+    "cashout_time": "2016-08-27T21:56:00",
+    "category": "steemit",
+    "children": 109,
+    "created": "2016-08-20T21:56:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"cryptocurrency\",\"dan\",\"steemians\",\"keepingpledge\"],\"image\":[\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover143893.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover254dab.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-screenshot5fef5.jpg\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-dacs917af.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemonbooks38fc9.jpg\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-ned-comment3c240.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemone9661.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-steemiansc1b38.jpg\"],\"links\":[\"https://steemit.com/@dan\",\"https://steemit.com/@dantheman\",\"https://steemit.com/steem/@dan/steemit-s-evil-plan-for-cryptocurrency-world-domination\",\"https://steemit.com/steemit/@dollarvigilante/how-i-made-usd15-000-in-12-hours-on-the-new-blockchain-based-social-media-site-steemit\",\"https://steemit.com/@dollarvigilante\",\"https://www.youtube.com/watch?v=-W0EYe23or4\",\"https://www.youtube.com/watch?v=U44MujtVj00\",\"https://www.youtube.com/watch?v=abA4TuPHmNg\",\"https://medium.com/@VitalikButerin/i-invented-the-term-in-2013-and-daniel-larimer-came-up-with-dacs-s-organization-corporation-a-ef86db1524d5#.srakglwfj\",\"https://en.wikipedia.org/wiki/Daemon_(novel_series)\",\"https://steemit.com/@ned\",\"https://steemit.com/@pheonike\",\"https://steemit.com/books/@pheonike/steem-book-clubs\",\"http://steemtools.com/\",\"https://steemit.com/@capitalism\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-21T17:47:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 138695121364094,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2826.162 HBD",
+    "percent_hbd": 10000,
+    "permlink": "capitalism-5-dan-s-secret-plan-for-world-domination-exposed-exclusive-cover-up",
+    "post_id": 912037,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "CAPITALISM #5: Dan\u2019s Secret Plan for World Domination Exposed [Exclusive Cover-Up]",
+    "title": "CAPITALISM #5: Dan\u2019s Secret Plan for World Domination Exposed [Exclusive Cover-Up]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@capitalism/capitalism-5-dan-s-secret-plan-for-world-domination-exposed-exclusive-cover-up"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 28893645189293,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14535191507991,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 41259330512478,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 141337248364,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7154810700799,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "4200",
+        "reputation": 16685610555705,
+        "rshares": 9068686011028,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1696732608212,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3225565335203,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 1235646206,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 2016599249659,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 1499730525,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 281080652,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 3375344427585,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 21034839900,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 662345893,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 85364487,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 118102591202,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33428576420,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 359802776039,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2725486229852,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5037349079350,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 305019038127,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1020774163392,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 248512921,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 366443930,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 351461322450,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72112139588726,
+        "rshares": 831726581013,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 29458661710,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 66097877374,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115094057,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21527783969006,
+        "rshares": 136700693544,
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 48027202841,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8369502790,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 20974743858,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 74985145680,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 7026975987,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 14997799646,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 629772802423,
+        "rshares": 9252847953,
+        "voter": "piranhax"
+      },
+      {
+        "percent": "6000",
+        "reputation": 4931834878069,
+        "rshares": 15805368744,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 454731626,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 24358539349,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "6000",
+        "reputation": 5414208804644,
+        "rshares": 20752781427,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 659982311479,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 265820325911,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5176156064,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57828543405,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 241272888452,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 48851367464,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 2159280461,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 431315632351,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 463562817,
+        "rshares": 604174881,
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 300547523,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 28697384620,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 84485273674,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2130292884052,
+        "rshares": 181167644003,
+        "voter": "leon-fu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2663003206978,
+        "rshares": 10841890602,
+        "voter": "hien-tran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1376656930605,
+        "rshares": 5488585518,
+        "voter": "karbonxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 325714641323,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55088452759,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 69454017338,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 146251978585,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2636635441463,
+        "rshares": 6306835193,
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 1378940549,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 40337233208,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 137721329373,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23975579810,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 41087073599,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 17433881797,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 27631571433,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 22006176295,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44591565205,
+        "rshares": 30668332410,
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 2356326203,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3929147028870,
+        "rshares": 5293803823,
+        "voter": "magnebit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 46878248431,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2468721262,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 3209798088,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 307947269308,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 3903498615,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6834101003,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 9142889249,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 2722238948,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 262266700,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 8489130636,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 154515534205,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1933204465,
+        "rshares": 55576398818,
+        "voter": "sonzweil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 2579337625,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30271068942,
+        "rshares": 255544185,
+        "voter": "goodcore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 2036842578,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5006328473,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 11075138908,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 222530854,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4710786819,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 2722457405,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 121369746028,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 17853677079,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 4875559587,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 2866423068,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 237323110200,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 38461824916,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": -17593748718,
+        "rshares": 282900680,
+        "voter": "arvydas"
+      },
+      {
+        "percent": "6000",
+        "reputation": 19111656178138,
+        "rshares": 33434404943,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 255220027,
+        "voter": "fydel"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3891722,
+        "rshares": 375991007,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "6000",
+        "reputation": 9142611234,
+        "rshares": 416486987,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3871042,
+        "rshares": 385436029,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1087412640634,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 105686790784,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2069855377344,
+        "rshares": 7025504931,
+        "voter": "spiz0r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15299081307,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 1100906252,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2993850661147,
+        "rshares": 15484072314,
+        "voter": "chriscrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 963454351109,
+        "rshares": 1275373967,
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5463774640621,
+        "rshares": 18986893382,
+        "voter": "akareyon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 3600314227,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4279501396,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3784291284,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 9641360528,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37569637621,
+        "rshares": 250344137,
+        "voter": "zizelevak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33586901348,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 3954027129,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 61402639016,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 12392521703,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 59944812577,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 944484104,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 194359596,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2351934852,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 688176613733,
+        "rshares": 217720229,
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 1223068461,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1930940424,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 182432504188,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6892424678378,
+        "rshares": 57535973248,
+        "voter": "inertia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 52529689352,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 7154568164,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 70593576131,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3660411,
+        "rshares": 239397980,
+        "voter": "johannaparker284"
+      },
+      {
+        "percent": "10000",
+        "reputation": 109724811529,
+        "rshares": 272002110,
+        "voter": "ashleybr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239146014,
+        "voter": "helenapeters051"
+      },
+      {
+        "percent": "10000",
+        "reputation": 233054428,
+        "rshares": 239098876,
+        "voter": "leoniestein3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5769220967,
+        "rshares": 239034812,
+        "voter": "alexandraberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 233795210,
+        "rshares": 239145342,
+        "voter": "susie4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817588332083,
+        "rshares": 2670183399,
+        "voter": "pinklee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 233054428,
+        "rshares": 239099436,
+        "voter": "sarp871"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239130763,
+        "voter": "sarpton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2855981553,
+        "rshares": 239063369,
+        "voter": "stefaniek42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2685781735,
+        "rshares": 239247872,
+        "voter": "kellystone6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3790892852,
+        "rshares": 239109521,
+        "voter": "kathise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110744225,
+        "rshares": 239082038,
+        "voter": "tsarp4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 402141072,
+        "rshares": 239091094,
+        "voter": "oneandonly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107829903,
+        "rshares": 239296307,
+        "voter": "ts888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136067745,
+        "rshares": 238981330,
+        "voter": "juliaevans717"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 1243378929,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1561865667,
+        "rshares": 239052278,
+        "voter": "cryptobrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1289673,
+        "rshares": 239215370,
+        "voter": "julwern002"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1264385,
+        "rshares": 238981841,
+        "voter": "jul762"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1646220515,
+        "rshares": 238954586,
+        "voter": "willpower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239080360,
+        "voter": "juliap4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3985004526,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3055305,
+        "rshares": 238996949,
+        "voter": "jenny-3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172114373,
+        "rshares": 238828092,
+        "voter": "galaxy77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 8810481536,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 152612830,
+        "rshares": 238842328,
+        "voter": "nancywood621"
+      },
+      {
+        "percent": "10000",
+        "reputation": 233054428,
+        "rshares": 238870108,
+        "voter": "jennyfeger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3952092450,
+        "rshares": 238817311,
+        "voter": "sunnyskies"
+      },
+      {
+        "percent": "10000",
+        "reputation": 241090787,
+        "rshares": 238765279,
+        "voter": "jeremybrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172114373,
+        "rshares": 238847388,
+        "voter": "stevemitchell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 238854943,
+        "voter": "jennifersteel807"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1178751818,
+        "rshares": 119540264,
+        "voter": "briantp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 253813963,
+        "rshares": 119401610,
+        "voter": "melinasanner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 188619737,
+        "rshares": 119397595,
+        "voter": "mrcryptocoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3393733116,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1723163,
+        "rshares": 119531207,
+        "voter": "beckygee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1783202708175,
+        "rshares": 2724355096,
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740782,
+        "rshares": 119371426,
+        "voter": "nataschasielers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 30448894165,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2017416249960,
+        "rshares": 7958656381,
+        "voter": "kristylynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7018176272,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 957047189,
+        "rshares": 119197760,
+        "voter": "mykingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097,
+        "rshares": 119112592,
+        "voter": "sourcandy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119131506,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 12513994178,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1859342,
+        "rshares": 119037272,
+        "voter": "wildflower3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5420587,
+        "rshares": 119071978,
+        "voter": "jessyperk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1304492,
+        "rshares": 119010633,
+        "voter": "betsyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147203047336,
+        "rshares": 8381226852,
+        "voter": "exitmass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 119102335,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118845448,
+        "voter": "lucypier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097,
+        "rshares": 118862056,
+        "voter": "penelopek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118900255,
+        "voter": "jenniferchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97519682,
+        "rshares": 118914326,
+        "voter": "rosiemckoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3634889,
+        "rshares": 118930318,
+        "voter": "stacykeller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5555058714,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118846334,
+        "voter": "luisapenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 118810771,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118885999,
+        "voter": "abbybrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33420029069,
+        "rshares": 130149541,
+        "voter": "misseva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 337377912,
+        "rshares": 118775847,
+        "voter": "mandyrose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 874100,
+        "rshares": 118832865,
+        "voter": "julesber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118805309,
+        "voter": "emily-s"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 1503546920,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797599938,
+        "rshares": 118782283,
+        "voter": "meetlisa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1235900387,
+        "rshares": 118957894,
+        "voter": "firedesire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 118855870,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118853368,
+        "voter": "sammyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118797993,
+        "voter": "missclara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 452835586,
+        "rshares": 118815298,
+        "voter": "katiebell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 912104,
+        "rshares": 118722719,
+        "voter": "evast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118819488,
+        "voter": "cassyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2661046736,
+        "rshares": 119413101,
+        "voter": "peacemaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118802816,
+        "voter": "chrism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118739098,
+        "voter": "dansteven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19873548965,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6884579,
+        "rshares": 118783555,
+        "voter": "jackstiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118780455,
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1832456880,
+        "rshares": 118777297,
+        "voter": "tylermill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118773081,
+        "voter": "jacob-still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118749852,
+        "voter": "michaelpr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118880960,
+        "voter": "joshleon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118679777,
+        "voter": "mattgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 70919127688,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118632683,
+        "voter": "andrew6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118616540,
+        "voter": "taylorcb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 957468455,
+        "rshares": 118573629,
+        "voter": "daniel-chris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1239169187,
+        "rshares": 118670825,
+        "voter": "timber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 874100,
+        "rshares": 118561318,
+        "voter": "christopher7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817093,
+        "rshares": 118557498,
+        "voter": "williamger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118708222,
+        "voter": "alexander9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 912104,
+        "rshares": 118543205,
+        "voter": "nilsbernsen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118579416,
+        "voter": "citruss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118605320,
+        "voter": "ryandavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118560736,
+        "voter": "david-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118575769,
+        "voter": "nickstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118513422,
+        "voter": "jamesab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5567319,
+        "rshares": 118565669,
+        "voter": "johnbe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118540653,
+        "voter": "jonathan8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9367274,
+        "rshares": 118498440,
+        "voter": "nathanburr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118529589,
+        "voter": "justusberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118548738,
+        "voter": "tedcook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223174354,
+        "rshares": 118469646,
+        "voter": "jennyspeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118495263,
+        "voter": "bella4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118478585,
+        "voter": "samkk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118513185,
+        "voter": "annabellew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31755056,
+        "rshares": 118449252,
+        "voter": "benjaminw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111423182,
+        "voter": "cybervad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6929384,
+        "rshares": 118467904,
+        "voter": "bitcoinpros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118379415,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118399962,
+        "voter": "kevinbr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118447715,
+        "voter": "brandontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118326435,
+        "voter": "timothyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 116382038,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118276121,
+        "voter": "james-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118353137,
+        "voter": "evanpeters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118345023,
+        "voter": "lukethompson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118337740,
+        "voter": "jackson5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118281800,
+        "voter": "robert-sn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 127957702,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118233062,
+        "voter": "luisstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 893102,
+        "rshares": 118281137,
+        "voter": "lucasgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30807782,
+        "rshares": 118250348,
+        "voter": "johnsnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118260671,
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 952395953790,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118182168,
+        "voter": "adriangreene"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118112958,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118086477,
+        "voter": "michael-brown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118078202,
+        "voter": "franklyn0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118110881,
+        "voter": "timclarke"
+      },
+      {
+        "percent": "6000",
+        "reputation": 10519849768972,
+        "rshares": 12729188230,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 29238814584,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1108062052,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 248358280,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 248731455,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144087185,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144901897,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82655604,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 50913083207,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 7480302114,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 1826015095,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 327313183062,
+        "rshares": 795908327,
+        "voter": "politicasan2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 6116401193,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 164314623649,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114559886143,
+        "rshares": 168229291,
+        "voter": "cryptoknight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 3944969275,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 744536546,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19671891232,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 614199054,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2474407029,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 273154058,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 136066020,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74716626,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "6000",
+        "reputation": 147425730,
+        "rshares": 396486122,
+        "voter": "fnait"
+      },
+      {
+        "percent": "6000",
+        "reputation": 3720753029,
+        "rshares": 388960276,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5711413280,
+        "rshares": 5363964375,
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81930668,
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85836030324,
+        "rshares": 19246484142,
+        "voter": "alexriethmeier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3702085260958,
+        "rshares": 17848566103,
+        "voter": "laivi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2034974638910,
+        "rshares": 179979763,
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5655389326,
+        "rshares": 8400490066,
+        "voter": "youngkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 869670438261,
+        "rshares": 4177858606,
+        "voter": "crazylife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 2354667600,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": -489147116791,
+        "rshares": 116488065,
+        "voter": "jlwk0lb"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 218471399,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3117698144,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 32119408578,
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 2626075025,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 841585029,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 105795536,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50234451,
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 9418579095,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2033447447,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 377214574,
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1038813018744,
+        "rshares": 382816536,
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 35971384414,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 2029102864,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1339964315,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 180458407,
+        "rshares": 56967642,
+        "voter": "shanejonas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451282059200,
+        "rshares": 3210180886,
+        "voter": "veralynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124828196272,
+        "rshares": 851591663,
+        "voter": "havok777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7536445563,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 2848224971,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 37411358461,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 298397221413,
+        "rshares": 139369779,
+        "voter": "hdphotography"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 5190492365,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 35648854625,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 329526671,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96284142617,
+        "rshares": 1978801513,
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 641845888,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5325620380,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 1631288233,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 342724480,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2586911533140,
+        "rshares": 1745092688,
+        "voter": "unrealisback"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 11693562054,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 7109032370,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 63311170,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 99789005628,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": -138680661344,
+        "rshares": 60886073,
+        "voter": "tomeraddady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23003568034,
+        "rshares": 62023104,
+        "voter": "najibnoesis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 117678752,
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 1006800146,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 313374070,
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2116950747,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 17383762786,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 34753501599,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840329,
+        "rshares": 55989019,
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 102334329,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 133403677,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133847847904,
+        "rshares": 223645521,
+        "voter": "ashleybeckwith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 379094484288,
+        "rshares": 5124463672,
+        "voter": "hackfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 886297813,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1628709191,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1643997345,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1459736390,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 58651156,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 58479392,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 14104601782,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 55787428,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 52017537,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 25539324528,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 67029397,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 21761190912,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213531879282,
+        "rshares": 2831572719,
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 14379167545,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4533929087960,
+        "rshares": 5190528153,
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1759357936,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 57723051,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1191252134466,
+        "rshares": 59227338,
+        "voter": "ines-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 55750195,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 74181133,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 30103518222,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3418202722938,
+        "rshares": 388078993,
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 8298370142,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54247105,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 970961663,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 2307183228,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135018071312,
+        "rshares": 56810868,
+        "voter": "blackeyed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11546327403,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 34105020530,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 1802591050,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 466867123,
+        "rshares": 57204051,
+        "voter": "nbragg"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -17751314058,
+        "rshares": -55979644,
+        "voter": "skaraosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 335424340,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 53423752,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53423593,
+        "voter": "mkglock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 121466526,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 636616349,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80747623295,
+        "rshares": 28409046107,
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 132376808,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 1972297409,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3954457383539,
+        "rshares": 57373019,
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 1484135397,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 818442,
+        "rshares": 53471592,
+        "voter": "kol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 142885947,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 1032656866,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5899608841,
+        "rshares": 54276051,
+        "voter": "elmarco"
+      },
+      {
+        "percent": "10000",
+        "reputation": -195878223866,
+        "rshares": 100793544,
+        "voter": "ezrathecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 52393318,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 641341984,
+        "rshares": 54658188,
+        "voter": "park.bom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 53428542,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11427084577,
+        "rshares": 54180479,
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 52041445,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 52030453,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1455592982586,
+        "rshares": 51905367,
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 74558454,
+        "rshares": 50759653,
+        "voter": "caligirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 52870480,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4878508275,
+        "rshares": 51671889,
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1662644,
+        "rshares": 52677876,
+        "voter": "martin001515"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52579820,
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35362050236,
+        "rshares": 52547970,
+        "voter": "oscarroque88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 496516674549,
+        "rshares": 53552086,
+        "voter": "lostpatriot"
+      }
+    ],
+    "author": "sirwinchester",
+    "author_reputation": 73944659327428,
+    "beneficiaries": [],
+    "body": "<html>\n<p>It's unbelievable how many people you can meet through Steemit!</p>\n<p>You comment on each other's posts, talk on Rocket Chat, and today I could even meet some Steemers in real life.</p>\n<p><center><img src=\"https://picload.org/image/rridcoia/gruppenfoto.jpg\" width=\"3690\" height=\"3248\"/></center></p>\n<p>@fabio , who lives in Berlin (about 190 miles away) was visiting Hamburg for the day and wanted to use that opportunity to meet me. So I thought why not set up a little gathering with a few of other Steemers from Hamburg!</p>\n<p>I brought everyone together at our Lounge, and we were starting our little discussion / talk.</p>\n<p><center><img src=\"https://picload.org/image/rridcopi/225522584_1429451469002953113.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><center><img src=\"https://picload.org/image/rridcopl/225511827_9248916237993150945.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><center><img src=\"https://picload.org/image/rridcoii/225519670_10562233660494736798.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><br></p>\n<p><br></p>\n<p>We spoke about Tips for Newcomers, we made some plans for future projects, and talked about the Steemit Community in general.</p>\n<p>We had all noticed what a supportive Community Steemit has - that's amazing!</p>\n<p>We have also discussed plans on how to introduce new users to Steemit, especially locally, and foreign languages on Steemit.&nbsp;</p>\n<p><center><img src=\"https://picload.org/image/rridcopa/225515338_303193494895312178.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><br></p>\n<p>Also, we have started planning our Hamburg Steemit Meetup on Sept. 2. We created a timeline for the event and brainstormed about the talking points.</p>\n<p><a href=\"https://steemit.com/steemit/@sirwinchester/steem-meetup-steemit-s-first-meetup-in-hamburg-germany\"><em><strong>Everyone is very welcome to meet us on Sept 2, please read my separate post for all the details.</strong></em></a></p>\n<p><br></p>\n<p>Thank you to @fabio , @mrs.steemit , @agent , @najibnoesis and @erstklassich for joining us for this spontaneous gathering.</p>\n<p>I feel like we had very in-depth discussions and shared a lot of ides.</p>\n<p>The meeting definitely left me inspired!</p>\n<p><br></p>\n<p>Looking forward to meeting many more Steemers at our Hamburg Meetup!</p>\n<p><br></p>\n<p><br></p>\n<p><center><img src=\"https://picload.org/image/rridcoir/gruppe.jpg\" width=\"1280\" height=\"960\"/><center></p>\n<p><br></p>\n<p><center><img src=\"https://media.giphy.com/media/d31x43GtZG2hU2EU/giphy.gif\" width=\"480\" height=\"270\"/></center></p>\n<p>&nbsp;</p>\n<p><br></p>\n<p><a href=\"https://steemit.com/@sirwinchester\"><em><strong>Follow me \u2705</strong></em></a></p>\n<p><em><strong>\u00a9 Sirwinchester</strong></em></p>\n</html>",
+    "body_length": 2755,
+    "cashout_time": "2016-08-26T02:34:45",
+    "category": "steemit",
+    "children": 72,
+    "created": "2016-08-19T02:34:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"life\",\"photography\",\"blog\",\"meetup\"],\"users\":[\"fabio\",\"mrs.steemit\",\"agent\",\"najibnoesis\",\"erstklassich\"],\"image\":[\"https://picload.org/image/rridcoia/gruppenfoto.jpg\",\"https://picload.org/image/rridcopi/225522584_1429451469002953113.jpg\",\"https://picload.org/image/rridcopl/225511827_9248916237993150945.jpg\",\"https://picload.org/image/rridcoii/225519670_10562233660494736798.jpg\",\"https://picload.org/image/rridcopa/225515338_303193494895312178.jpg\",\"https://picload.org/image/rridcoir/gruppe.jpg\",\"https://media.giphy.com/media/d31x43GtZG2hU2EU/giphy.gif\"],\"links\":[\"https://steemit.com/steemit/@sirwinchester/steem-meetup-steemit-s-first-meetup-in-hamburg-germany\",\"https://steemit.com/@sirwinchester\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-19T02:34:45",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 130651714758446,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2231.921 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemit-gathering-in-hamburg-germany",
+    "post_id": 882116,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Gathering in Hamburg, Germany!",
+    "title": "Steemit Gathering in Hamburg, Germany!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@sirwinchester/steemit-gathering-in-hamburg-germany"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 83122046,
+        "rshares": 17414142157084,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7591036943097,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1212395973330,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26496870541984,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "4900",
+        "reputation": 13270505121655,
+        "rshares": 31922570071728,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2050921746033,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1582895535608,
+        "rshares": 74782834751,
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 18215133430656,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7455258218699,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 205547473765,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3095692798866,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "500",
+        "reputation": 25104157850610,
+        "rshares": 134274665482,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 438936306475,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 639468287855,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 119632798758,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5690561825855,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4436015180917,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1037635595716,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4769989859411,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1048047027107,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 314690538248,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26776677752355,
+        "rshares": 155266283237,
+        "voter": "ozmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3100718342,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 233913763522,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3764425384,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690531024,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7247329309567,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1520787934823,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54254136072,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 32973219608,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 436334517545,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 25233882165,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661675031,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213708849,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 40192768803,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35385015759603,
+        "rshares": 212974246287,
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 16465300344,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 80714654344,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1153791921957,
+        "voter": "cass"
+      },
+      {
+        "percent": "100",
+        "reputation": 13437403349222,
+        "rshares": 5029101849,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 622948658,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7458354230246,
+        "rshares": 45997014881,
+        "voter": "stoner19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967579918,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7851714417,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1301587831477,
+        "rshares": 23043520727,
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288210104,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3828884985898,
+        "rshares": 60068516234,
+        "voter": "lovelace"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 405027182,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 376960001789,
+        "rshares": 4740880170,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2191628106,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 337827978927,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 17606302474,
+        "voter": "richman"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3750669747284,
+        "rshares": 28581552321,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 493863952,
+        "rshares": 928642599,
+        "voter": "weenfan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 5708604609,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 16798550413,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57961908288,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 24179610427,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 710433980,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 71223731862,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1419313845,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3445407648199,
+        "rshares": 19107590376,
+        "voter": "bitswift"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 190874541838,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 1506538062,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 31956241190,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 516633646190,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10980003052,
+        "voter": "aizen01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6548188169,
+        "voter": "aizen02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4828955800,
+        "voter": "aizen07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7303027674,
+        "voter": "aizen06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6471712577,
+        "voter": "aizen16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4251247411,
+        "voter": "aizen22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5894729975,
+        "voter": "aizen36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24377713756,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4441045990,
+        "voter": "aizen12"
+      },
+      {
+        "percent": "1800",
+        "reputation": 7152109350579,
+        "rshares": 1025578887,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7574468910,
+        "rshares": 8442340916,
+        "voter": "badger311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8737964955,
+        "voter": "badger313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8701467224,
+        "voter": "badger312"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9000486826,
+        "voter": "badger316"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9122405890,
+        "voter": "badger319"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9030071213,
+        "voter": "badger3101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8483123529,
+        "voter": "badger3111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9045173581,
+        "voter": "badger3121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8653656280,
+        "voter": "badger3131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8761684821,
+        "voter": "badger3141"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8738093410,
+        "voter": "badger3171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8545576051,
+        "voter": "badger3181"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9131812184,
+        "voter": "badger3191"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8545412942,
+        "voter": "badger3112"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8886514803,
+        "voter": "badger3132"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8759733351,
+        "voter": "badger3162"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8990757728,
+        "voter": "badger3113"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8641479730,
+        "voter": "badger3123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8765242564,
+        "voter": "badger3133"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9116841650,
+        "voter": "badger3153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8795329440,
+        "voter": "badger3163"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8825853420,
+        "voter": "badger3193"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8775457673,
+        "voter": "badger3114"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8684302722,
+        "voter": "badger3124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8587179504,
+        "voter": "badger3144"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8508967843,
+        "voter": "badger3154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8376350982,
+        "voter": "badger3164"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8708249738,
+        "voter": "badger3174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8988660787,
+        "voter": "badger3194"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8884950618,
+        "voter": "badger3105"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8828479417,
+        "voter": "badger3135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8422524991,
+        "voter": "badger3145"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9006304447,
+        "voter": "badger3155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8699060163,
+        "voter": "badger3175"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8475184564,
+        "voter": "badger3195"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8117171592,
+        "voter": "badger3106"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8936184946,
+        "voter": "badger3116"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8984179593,
+        "voter": "badger3126"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8610919494,
+        "voter": "badger3136"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8257392549,
+        "voter": "badger3146"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8489108605,
+        "voter": "badger3156"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8705044314,
+        "voter": "badger3166"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8619852204,
+        "voter": "badger3176"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8754530095,
+        "voter": "badger3186"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8790334123,
+        "voter": "badger3196"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8717770934,
+        "voter": "badger3107"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8470003243,
+        "voter": "badger315"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8966327946,
+        "voter": "badger318"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9015982786,
+        "voter": "badger3151"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8688143631,
+        "voter": "badger3161"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8947563272,
+        "voter": "badger3122"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8884323219,
+        "voter": "badger3142"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9107472651,
+        "voter": "badger3152"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8410325342,
+        "voter": "badger3172"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8923914690,
+        "voter": "badger3182"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8679188557,
+        "voter": "badger3192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8593775732,
+        "voter": "badger3143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8856913569,
+        "voter": "badger3173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8563375507,
+        "voter": "badger3104"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8275398308,
+        "voter": "badger3134"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8682385560,
+        "voter": "badger3184"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8619470851,
+        "voter": "badger3115"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9092819860,
+        "voter": "badger3165"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8718494496,
+        "voter": "badger3185"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8780507780,
+        "voter": "badger314"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9015152673,
+        "voter": "badger317"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8753407318,
+        "voter": "badger3102"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8714835771,
+        "voter": "badger3103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8641812751,
+        "voter": "badger3125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8607937322,
+        "voter": "badger3183"
+      },
+      {
+        "percent": "500",
+        "reputation": 16316471180830,
+        "rshares": 7722261580,
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 409047397,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 1709281731,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 316292142,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 370062297080,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 56400039157,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 26591192649,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13352341691,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 171880926402,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 108399240399,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "1500",
+        "reputation": 2738311095861,
+        "rshares": 4717322072,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12549345118,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6053064579803,
+        "rshares": 25359068530,
+        "voter": "djm34"
+      },
+      {
+        "percent": "4800",
+        "reputation": 4370237937043,
+        "rshares": 87540066230,
+        "voter": "marina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 7505907731,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36391001943292,
+        "rshares": 167673940148,
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 318065425752,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 42081474906,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 61303026913,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 19421476800,
+        "voter": "hakise"
+      },
+      {
+        "percent": "6900",
+        "reputation": 6196402667353,
+        "rshares": 8263444101,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 275204506970,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": -207495429319,
+        "rshares": 952705678,
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1272198673,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4667991454724,
+        "rshares": 695779507922,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502465820159,
+        "rshares": 221080407941,
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 1646087329,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3623254247,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1265140254,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 359117036,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1287436138,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 409793835,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3259266314,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 195524058726,
+        "voter": "jesta"
+      },
+      {
+        "percent": "6800",
+        "reputation": 475226720101,
+        "rshares": 22874440895,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4569207045,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 2018092703,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 159996094371,
+        "rshares": 367819702,
+        "voter": "knyaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3971212092,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3779872763249,
+        "rshares": 20526346961,
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 210920121710,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1705318675121,
+        "rshares": 2870048598,
+        "voter": "kell234"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 2845434386,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 9757718558,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1396976094,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "7500",
+        "reputation": 1537463763,
+        "rshares": 14048732891,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5632357520,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4617586503531,
+        "rshares": 8228883164,
+        "voter": "cryptojoy.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2403947514,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46246767220,
+        "rshares": 8046250295,
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 132755337797,
+        "rshares": 154183594,
+        "voter": "xondra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54051855495,
+        "rshares": 141272122,
+        "voter": "bento"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 100131242,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 193242078201,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 412529332,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4928138588,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80801736359,
+        "rshares": 157385299,
+        "voter": "mikeoleksyuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740422083640,
+        "rshares": 10146541647,
+        "voter": "vongohren"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 4506374345,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "7500",
+        "reputation": 39913884914319,
+        "rshares": 10521746517,
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 21372891456,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 454801055,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 2596865502,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 16629713553,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 594613575,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125619617814,
+        "rshares": 1016915264,
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 118911311,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3005005344055,
+        "rshares": 18662765418,
+        "voter": "fabien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7424874957,
+        "rshares": 110940646,
+        "voter": "cryptoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6931641798,
+        "rshares": 110227366,
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 452357783,
+        "voter": "bento04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 757751350,
+        "voter": "bento03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 8316727603,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 241393547,
+        "voter": "bento02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 555271744,
+        "voter": "bento01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 887519432562,
+        "rshares": 1647347086,
+        "voter": "coinbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 16437750157,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61374667649460,
+        "rshares": 197110323276,
+        "voter": "ozchartart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 876981522843,
+        "rshares": 5089683005,
+        "voter": "croatia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65253293,
+        "voter": "vladimirputin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23836699917,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 65245958,
+        "voter": "angelamerkel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4887223428,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82548771,
+        "voter": "bento06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3350958489391,
+        "rshares": 3581941741,
+        "voter": "darknet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7989197237827,
+        "rshares": 18595215870,
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 62947504707,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1026195773,
+        "voter": "altucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 64515016,
+        "voter": "ninetee110"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 102472823,
+        "voter": "timferriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 652000677,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 105623817,
+        "voter": "darrenrowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11081235284,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 129504762627,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 383650129482,
+        "rshares": 109223881,
+        "voter": "steemnews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 971138,
+        "rshares": 192492931,
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 42454060089,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 64316777,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15018520093808,
+        "rshares": 26155356269,
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3509543381,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61746903,
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60425095,
+        "voter": "snwolak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 1393798190,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 180918550,
+        "voter": "pcashmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60155589,
+        "voter": "andrew.sullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1053111549,
+        "voter": "brianclark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 837412090,
+        "voter": "daniel.kahneman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234742436,
+        "voter": "tucker.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 746911197,
+        "voter": "darren.rowse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56202563,
+        "voter": "chris.dunn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4829784286,
+        "rshares": 6708143785,
+        "voter": "tom77"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 55039851,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28759203578,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1064857867,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1186379197,
+        "voter": "pat.flynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304179688,
+        "rshares": 61025322,
+        "voter": "enders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1232614420,
+        "voter": "mattmarshall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 441199270,
+        "voter": "timothysykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 11253943726,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 107480036,
+        "voter": "patflynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 903248108,
+        "voter": "andrewsullivan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 36214301506,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 74850407,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2747626258414,
+        "rshares": 2702536728,
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 492056982,
+        "voter": "harvey.levin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 15796270641,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1265825098,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 6841991895,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 4510930013,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 60968037,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 196273792,
+        "voter": "rand.fishkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15582512683043,
+        "rshares": 64482924038,
+        "voter": "justinlaak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 9606499416,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 10593021578,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1500874232,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58701743,
+        "voter": "jimukgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1734036671982,
+        "rshares": 1020035280,
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740952354750,
+        "rshares": 288989103,
+        "voter": "vonpetro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 236439691,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11226249204,
+        "rshares": 60129070,
+        "voter": "elenakrugina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 692721658,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1296717974,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56761351,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 56790849683,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 15280466869,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 796902751285,
+        "rshares": 1902483494,
+        "voter": "stephthegeek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71887903,
+        "rshares": 55709351,
+        "voter": "misscathy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 58351459,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3475969893,
+        "rshares": 53238597,
+        "voter": "gumer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 56653872,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 516282068424,
+        "rshares": 61659373,
+        "voter": "lebedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 13961361379,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "5400",
+        "reputation": 5949422263,
+        "rshares": 96916589045,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 179159674,
+        "voter": "harveylevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282251870,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 219406056989,
+        "rshares": 71748267,
+        "voter": "discernente"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25306881110,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 155834469695,
+        "rshares": 101585304,
+        "voter": "illusiveman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 123962303,
+        "voter": "gary.vaynerchuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 475463267,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 609022092,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 72893380,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54706268,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 53671263,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 53988734,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1648140955,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 178300437,
+        "rshares": 51562143,
+        "voter": "xanty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 843848361,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 51109965,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51537477,
+        "voter": "timothy.sykes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 313348711,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 833131622,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16065524765,
+        "rshares": 54617017,
+        "voter": "miav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 53555683,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50938725,
+        "voter": "haved"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1659673971,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50708837,
+        "voter": "ardly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50704078,
+        "voter": "yotoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50433760,
+        "voter": "morse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50372583,
+        "voter": "carre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17924136040,
+        "rshares": 439182056,
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 756228937,
+        "rshares": 74409850,
+        "voter": "motsna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69550030,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80764047,
+        "voter": "niklaszantner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 74220519,
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136965536,
+        "rshares": 172891733,
+        "voter": "catmeowmeow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10962748498,
+        "rshares": 161180081,
+        "voter": "dikanevroman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 164045768,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163883816,
+        "voter": "loam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163807422,
+        "voter": "aleks66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 745770738333,
+        "rshares": 85691759,
+        "voter": "mikerano"
+      }
+    ],
+    "author": "aizensou",
+    "author_reputation": 12928765689257,
+    "beneficiaries": [],
+    "body": "Say hello to \"Steemion\"\n===================\n\nHey! Allow me to introduce my work from the last few weeks. \nIt's the working native Android app with many advance features:\n\n> **Features:**\n\n> - Blazing fast state-of-the-art techniques\n> - Carefully beautiful UI design\n> - Endless scrolling and many modern navigation design\n> - Archive and share to read it later\n> - Using my high performance own custom nodes (currently 3), not depends on steemit\n> - Local transactions signing\n> - Open source (later)\n> - Push notifications\n> - Markdown offline editor for posting\n> - Vote weight choosing on the fly\n> - Scanning keys/links through QR-code\n> - Export keys/links through QR-code\n> - Register new account through third-party (will be announced later)\n\nHere are screenshots and screen recording with Samsung S6 Edge.\n\n**Steemion in action**\n[![Steemion in action](http://img.youtube.com/vi/_O0MC5Vefkw/maxresdefault.jpg)](https://youtu.be/_O0MC5Vefkw \"Steemian in action\")\n**It's a screen recording uploaded to YouTube. Please click to view.**\n\n![enter image description here](https://s15.postimg.io/jt3x3f7vd/device_2016_09_02_230559.png)\n\n![enter image description here](https://s15.postimg.io/vtpd45fa1/device_2016_09_02_230830.png)\n\n![enter image description here](https://s15.postimg.io/a60etpevt/device_2016_09_02_230852.png)\n\n![enter image description here](https://s15.postimg.io/doceq3frt/device_2016_09_02_230925.png)\n\n![enter image description here](https://s15.postimg.io/dztv2uw7t/device_2016_09_02_230942.png)\n\n![enter image description here](https://s15.postimg.io/5t1vba655/device_2016_09_02_231012.png)\n\n![enter image description here](https://s15.postimg.io/b36u2kqe1/device_2016_09_02_231039.png)\n\n![enter image description here](https://s15.postimg.io/mr0vx4fix/device_2016_09_02_231053.png)\n\n![enter image description here](https://s15.postimg.io/tg7fd50ux/device_2016_09_02_231110.png)\n\n![enter image description here](https://s15.postimg.io/jhhvcx21l/device_2016_09_02_231212.png)\n\n![enter image description here](https://s15.postimg.io/7ecjpcqzd/device_2016_09_02_231236.png)\n\n![enter image description here](https://s15.postimg.io/yawixo9sp/device_2016_09_02_231328.png)\n\n\n\n**Current status**\nI currently disable any login feature since security is the most major concern in any \"non-official\" app. Taken @ned's advice, I'm currently debugging the local transactions signing and will re-enable these features after security tests and the code review are done by third-parties. \n**Distribution of the app**\nI have applied for Google Play Store, but because the app is still in early beta, it will be distributed through [Early access and beta testing program from Google.](https://support.google.com/googleplay/answer/7003180?hl=en)\nPlease leave me your email here in the comments if you want to test the app. I will add you in the beta list and you could get the app from Google Play Beta Channel.\n\nAny improvement, suggestion, and any kind of feedback please leave it here as well.\n\nLast but not least, if you're enjoy my app, [don't forget to vote for me as witnesses here.](https://steemit.com/~witnesses)\n\nThanks for reading.",
+    "body_length": 3152,
+    "cashout_time": "2016-09-09T22:48:09",
+    "category": "steemit",
+    "children": 43,
+    "created": "2016-09-02T22:48:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemapp\",\"mobile-app\",\"android\",\"steemion\"],\"users\":[\"ned\"],\"image\":[\"http://img.youtube.com/vi/_O0MC5Vefkw/maxresdefault.jpg\",\"https://s15.postimg.io/jt3x3f7vd/device_2016_09_02_230559.png\",\"https://s15.postimg.io/vtpd45fa1/device_2016_09_02_230830.png\",\"https://s15.postimg.io/a60etpevt/device_2016_09_02_230852.png\",\"https://s15.postimg.io/doceq3frt/device_2016_09_02_230925.png\",\"https://s15.postimg.io/dztv2uw7t/device_2016_09_02_230942.png\",\"https://s15.postimg.io/5t1vba655/device_2016_09_02_231012.png\",\"https://s15.postimg.io/b36u2kqe1/device_2016_09_02_231039.png\",\"https://s15.postimg.io/mr0vx4fix/device_2016_09_02_231053.png\",\"https://s15.postimg.io/tg7fd50ux/device_2016_09_02_231110.png\",\"https://s15.postimg.io/jhhvcx21l/device_2016_09_02_231212.png\",\"https://s15.postimg.io/7ecjpcqzd/device_2016_09_02_231236.png\",\"https://s15.postimg.io/yawixo9sp/device_2016_09_02_231328.png\"],\"links\":[\"https://youtu.be/_O0MC5Vefkw\",\"https://support.google.com/googleplay/answer/7003180?hl=en\",\"https://steemit.com/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T00:55:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 152261428208276,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2161.185 HBD",
+    "percent_hbd": 10000,
+    "permlink": "ann-steemion-native-android-app-for-steemian",
+    "post_id": 1104713,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "[ANN] Steemion - Native Android App for steemian",
+    "title": "[ANN] Steemion - Native Android App for steemian",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@aizensou/ann-steemion-native-android-app-for-steemian"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "9800",
+        "reputation": 145171381514207,
+        "rshares": 28494593960128,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "100",
+        "reputation": 32455846463901,
+        "rshares": 644738319706,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 27839678307923,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1133069631465,
+        "rshares": 16235695906965,
+        "voter": "val-a"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154585758780,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2286570489575,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 640199523100,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138490649,
+        "rshares": 1945806510360,
+        "voter": "silver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4799969952173,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4832055408955,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 894907708222,
+        "voter": "liondani"
+      },
+      {
+        "percent": "8200",
+        "reputation": 9800209121307,
+        "rshares": 5382808860939,
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3074579095952,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2469488785,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 2997178884,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 567457327,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 41886730242,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 496491346728,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1323782877,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170682241,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 33468811566,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 472662273067,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2950983812313,
+        "voter": "recursive"
+      },
+      {
+        "percent": "100",
+        "reputation": 83941319998,
+        "rshares": 108654343959,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1041432432055,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10258450142,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 493912489,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147478489309626,
+        "rshares": 1105685783880,
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 719698685,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 134047118974,
+        "voter": "team"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 60855743332,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 5311414373,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230101732,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 153648726923,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 124865240972,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 16987333910,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "3000",
+        "reputation": 4931834878069,
+        "rshares": 8146351014,
+        "voter": "fkn"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 411087770,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51874214963,
+        "rshares": 445258050,
+        "voter": "ereismatias"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 779138307254,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "8500",
+        "reputation": 376960001789,
+        "rshares": 4680592060,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 23397364805,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45575829971,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "3000",
+        "reputation": 5414208804644,
+        "rshares": 10696286710,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 9975187502,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 273195968453,
+        "rshares": 1320082412,
+        "voter": "karask"
+      },
+      {
+        "percent": "5000",
+        "reputation": 60877390332151,
+        "rshares": 187543213255,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1797982008,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3971811465,
+        "rshares": 8659573260,
+        "voter": "gore84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1773113356,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8691990820098,
+        "rshares": 72369352954,
+        "voter": "teamnearandl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6692979624912,
+        "rshares": 53451993385,
+        "voter": "alyssas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 181852059,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 323497419787,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2185191285319,
+        "rshares": 5156886791,
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 55261474547,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 217755916442,
+        "rshares": 423707740,
+        "voter": "shane-loomb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 537623020842,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3663597787321,
+        "rshares": 23204872292,
+        "voter": "treeleaves"
+      },
+      {
+        "percent": "10000",
+        "reputation": 463562817,
+        "rshares": 584789970,
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 609780550802,
+        "rshares": 144783423,
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 14823717149,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -2683858617900,
+        "rshares": -8515714613,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 88309580492,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16316471180830,
+        "rshares": 124126099025,
+        "voter": "coinbitgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 356285718284,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 321402190,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62345041692781,
+        "rshares": 241790193376,
+        "voter": "hisnameisolllie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 215769092442,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53926827989,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 107224012174,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 66618489117,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2733362192608,
+        "rshares": 48268642021,
+        "voter": "brandonp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13378041682,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 22263265794,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1945135717715,
+        "rshares": 40778989049,
+        "voter": "foma17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 44635912164,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 218059467860,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 779123828791,
+        "rshares": 489212642,
+        "voter": "peezaroni"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 19233912212,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3509662488161,
+        "rshares": 25577064251,
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44591565205,
+        "rshares": 31276936170,
+        "voter": "m0se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 3067985295,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 51409110588,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 4179579990,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 1493761252,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 5082907228,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 35004404650,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 1418766292,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 3544855809,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 7963635086,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 261023475510,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891519743447,
+        "rshares": 3691190161,
+        "voter": "ydm6669"
+      },
+      {
+        "percent": "0",
+        "reputation": 15603689614497,
+        "rshares": 96706810,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 3358845753,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 2088345879,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 850076768507,
+        "rshares": 110643363491,
+        "voter": "joshbreslauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 19342377772,
+        "voter": "firepower"
+      },
+      {
+        "percent": "5000",
+        "reputation": 213668684615,
+        "rshares": 280674375,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 5644933315,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 3545161944,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 59823210207,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 3732528948,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 168987550190,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176551047359,
+        "rshares": 306347753,
+        "voter": "citizen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 300375104,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -11110332240496,
+        "rshares": -906034930,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9105383255,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223278762484,
+        "rshares": 12966130529,
+        "voter": "jazzka"
+      },
+      {
+        "percent": "3000",
+        "reputation": 19111656178138,
+        "rshares": 17313730041,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 1578948921,
+        "voter": "owdy"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3891722,
+        "rshares": 193906902,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9142611234,
+        "rshares": 216810692,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3871042,
+        "rshares": 198776099,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1386708550,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56256651602417,
+        "rshares": 45244529496,
+        "voter": "alexbeyman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 193803067,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6427404051,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 1221200631,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 108775983366,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 963454351109,
+        "rshares": 1274170818,
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 95481013815,
+        "rshares": 263539417,
+        "voter": "adinda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 4369989215,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3270935709,
+        "rshares": 238502555,
+        "voter": "tonydreher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 6914761628,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 117244986569,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6502449561,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 73056635304,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39920320621,
+        "rshares": 341305277745,
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517322644046,
+        "rshares": 1505962723,
+        "voter": "tynx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256961410,
+        "voter": "anyx10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 3059555770,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162820248,
+        "voter": "anyx11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24870513211,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 58727755821,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 227542942,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1213672355,
+        "voter": "anyx01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1051176534,
+        "voter": "anyx02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 957280186,
+        "voter": "anyx03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 7913745558,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 1476685561,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 32732911135,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11803016955,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2069708383,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 240570298,
+        "voter": "ricardolucas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 768315964,
+        "voter": "anyx04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1389592215517,
+        "rshares": 1001317228,
+        "voter": "doctorstrange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1473986025343,
+        "rshares": 7291788471,
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 2400092353,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116820988881,
+        "rshares": 3000133617,
+        "voter": "corinnestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 1828284339,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 56929208091,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25832634803,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 604284037,
+        "voter": "anyx05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 511220570,
+        "voter": "anyx06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 418255711,
+        "voter": "anyx07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 393829488,
+        "voter": "anyx08"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 301931473,
+        "voter": "anyx09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 1695099668,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1851264493766,
+        "rshares": 2750506523,
+        "voter": "begstreets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3822601388,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2173940256661,
+        "rshares": 6290084572,
+        "voter": "benjiberigan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 155427450587,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1783202708175,
+        "rshares": 2384479531,
+        "voter": "desmonid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24143253116,
+        "rshares": 120818710,
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": -910520517353,
+        "rshares": 30998817641,
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 467828234,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 21954025548,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26442156052,
+        "rshares": 5851340485,
+        "voter": "jcweiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 485646625,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 164633658481,
+        "rshares": 51624318238,
+        "voter": "squirrellywrath"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5373564790,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7740774800016,
+        "rshares": 24899977231,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 1834207609,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 632733211156,
+        "rshares": 19433858245,
+        "voter": "celsius100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 19714255829,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136985133709,
+        "rshares": 1638562907,
+        "voter": "pitbull808"
+      },
+      {
+        "percent": "10000",
+        "reputation": 814835644010,
+        "rshares": 4286852708,
+        "voter": "vapekings14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 114054397,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 148243327693,
+        "voter": "jl777"
+      },
+      {
+        "percent": "3000",
+        "reputation": 10519849768972,
+        "rshares": 6560904621,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 515167203222,
+        "rshares": 332509571,
+        "voter": "jeison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 32149688844,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 99487372,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1148208847,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163507528,
+        "voter": "anyx12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115930003,
+        "voter": "anyx13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 92624340,
+        "voter": "anyx14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 116980543,
+        "voter": "anyx15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 141445363,
+        "voter": "anyx16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115658479,
+        "voter": "anyx17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 92610940,
+        "voter": "anyx18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69348528,
+        "voter": "anyx19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69347656,
+        "voter": "anyx21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 264975700,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 265374319,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69342821,
+        "voter": "anyx22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69341840,
+        "voter": "anyx23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69335139,
+        "voter": "anyx24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69330968,
+        "voter": "anyx25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 70642764,
+        "voter": "anyx27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153861416,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 69308326,
+        "voter": "anyx28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154731677,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 67493815,
+        "voter": "anyx36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 88291213,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 45618425990,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 14882754829,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35209974404,
+        "rshares": 126830539,
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1624945721527,
+        "rshares": 4180514858,
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13852332212,
+        "rshares": 122407260,
+        "voter": "ibai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 233614471908,
+        "rshares": 1108713242,
+        "voter": "blueciruit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19671096335,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 18518119373,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 13075969179,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2071013549,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17698439393799,
+        "rshares": 2185629468,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 258325412,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 145310046,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22504728466704,
+        "rshares": 65154130069,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1432707350,
+        "rshares": 268508747,
+        "voter": "cheetah00"
+      },
+      {
+        "percent": "10000",
+        "reputation": -209142316,
+        "rshares": 125142712,
+        "voter": "cheetah01"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80245481,
+        "rshares": 102151684,
+        "voter": "cheetah03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53035376,
+        "rshares": 102151302,
+        "voter": "cheetah04"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53568813,
+        "rshares": 102143988,
+        "voter": "cheetah05"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53249658,
+        "rshares": 102142054,
+        "voter": "cheetah06"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 79810941,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 147425730,
+        "rshares": 204479372,
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 3720753029,
+        "rshares": 200595065,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 33179085087,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 81917882,
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": -64689350,
+        "rshares": 102090683,
+        "voter": "cheetah02"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72003088,
+        "rshares": 102070636,
+        "voter": "cheetah10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53886256,
+        "rshares": 102068573,
+        "voter": "cheetah07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 3375155212,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -6494721,
+        "rshares": 102060958,
+        "voter": "cheetah11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3709071791,
+        "rshares": 102060069,
+        "voter": "cheetah20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2884679087,
+        "rshares": 102058022,
+        "voter": "cheetah08"
+      },
+      {
+        "percent": "10000",
+        "reputation": -6178552,
+        "rshares": 102048981,
+        "voter": "cheetah12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2034974638910,
+        "rshares": 186777641,
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -469690438,
+        "rshares": 435533857,
+        "voter": "quin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 112027656,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 784157120,
+        "voter": "djinn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282463107,
+        "voter": "scarlette"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 262729055,
+        "voter": "kain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157660788,
+        "voter": "lune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110854264127,
+        "rshares": 2455486317,
+        "voter": "mikeinfla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 781448489,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 907558924,
+        "rshares": 111043014,
+        "voter": "carnage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 140041977,
+        "rshares": 101798848,
+        "voter": "cheetah09"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4628767,
+        "rshares": 101768128,
+        "voter": "cheetah13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 67338546192,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2806717,
+        "rshares": 101759713,
+        "voter": "cheetah14"
+      },
+      {
+        "percent": "-10000",
+        "reputation": -489147116791,
+        "rshares": -82777234,
+        "voter": "jlwk0lb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 818760131,
+        "rshares": 171380684,
+        "voter": "cheetah15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5347284750,
+        "rshares": 4430173251,
+        "voter": "viernas"
+      },
+      {
+        "percent": "5000",
+        "reputation": -4779249072914,
+        "rshares": 275565480,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 52049504623,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2580067408929,
+        "rshares": 4744780014,
+        "voter": "spookypooky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 685226970,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 856899095,
+        "rshares": 101642876,
+        "voter": "cheetah16"
+      },
+      {
+        "percent": "10000",
+        "reputation": 831495901,
+        "rshares": 101641586,
+        "voter": "cheetah17"
+      },
+      {
+        "percent": "10000",
+        "reputation": 831460002,
+        "rshares": 101544314,
+        "voter": "cheetah18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55522787,
+        "rshares": 123871578,
+        "voter": "cheetah19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 6403236626,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59371692,
+        "rshares": 101117824,
+        "voter": "cheetah21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 856945350,
+        "rshares": 101117125,
+        "voter": "cheetah22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 941978751,
+        "rshares": 188497505,
+        "voter": "cheetah23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138268096,
+        "rshares": 144832499,
+        "voter": "cheetah24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8710090850955,
+        "rshares": 18634290612,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1310561212,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51522514,
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4835227647717,
+        "rshares": 796630994,
+        "voter": "merej99"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3679188122176,
+        "rshares": 6603076013,
+        "voter": "najoh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 6438024771,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2295214548,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55605680,
+        "rshares": 100855438,
+        "voter": "cheetah25"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 1689137354,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 714462185,
+        "rshares": 187306376,
+        "voter": "cheetah26"
+      },
+      {
+        "percent": "10000",
+        "reputation": 139210148,
+        "rshares": 187282002,
+        "voter": "cheetah27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 25318793181,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 6681118596,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59450072,
+        "rshares": 143960361,
+        "voter": "cheetah28"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 40649504757,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2274460683,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 1925907325,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1528345450,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58219327,
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451282059200,
+        "rshares": 4490056952,
+        "voter": "veralynn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 714461257,
+        "rshares": 100620781,
+        "voter": "cheetah29"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6804135939,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5836792362,
+        "rshares": 64511726,
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 738584740,
+        "rshares": 143386904,
+        "voter": "cheetah30"
+      },
+      {
+        "percent": "10000",
+        "reputation": 714539427,
+        "rshares": 125323998,
+        "voter": "cheetah31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15932269974,
+        "rshares": 61578706,
+        "voter": "fairider1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 737267929,
+        "rshares": 100555632,
+        "voter": "cheetah35"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61149030,
+        "rshares": 98573434,
+        "voter": "cheetah36"
+      },
+      {
+        "percent": "10000",
+        "reputation": 761586123,
+        "rshares": 98569125,
+        "voter": "cheetah37"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86811749666,
+        "rshares": 74951294,
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 34603854834,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121552056346,
+        "rshares": 690065226,
+        "voter": "ezel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 83613551,
+        "voter": "ultima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 118740462,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 67225411,
+        "voter": "ritz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 373005221,
+        "voter": "lini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58766754772,
+        "rshares": 58465169,
+        "voter": "sizil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 654874142,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 341933396,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3401416945201,
+        "rshares": 1243865593,
+        "voter": "villainblack"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 87873981,
+        "voter": "remedi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6934137885,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -70651552,
+        "rshares": 121193479,
+        "voter": "cheetah32"
+      },
+      {
+        "percent": "10000",
+        "reputation": 714503005,
+        "rshares": 100129802,
+        "voter": "cheetah33"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 502434554,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 737268128,
+        "rshares": 100111679,
+        "voter": "cheetah34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 738137893,
+        "rshares": 121076691,
+        "voter": "cheetah40"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 19357707458,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": -663898,
+        "rshares": 141954789,
+        "voter": "cheetah50"
+      },
+      {
+        "percent": "10000",
+        "reputation": 154182809,
+        "rshares": 118670480,
+        "voter": "cheetah38"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101265588,
+        "rshares": 98125545,
+        "voter": "cheetah39"
+      },
+      {
+        "percent": "10000",
+        "reputation": 738137266,
+        "rshares": 100086195,
+        "voter": "cheetah41"
+      },
+      {
+        "percent": "10000",
+        "reputation": 102554003,
+        "rshares": 100077813,
+        "voter": "cheetah42"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 741940212,
+        "rshares": 100062045,
+        "voter": "cheetah43"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66108793,
+        "rshares": 100039180,
+        "voter": "cheetah55"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1017023,
+        "rshares": 100030834,
+        "voter": "cheetah51"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1016094,
+        "rshares": 120880433,
+        "voter": "cheetah52"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1585319057,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101968248,
+        "rshares": 100017063,
+        "voter": "cheetah53"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809873027,
+        "rshares": 162614045,
+        "voter": "cheetah46"
+      },
+      {
+        "percent": "10000",
+        "reputation": 760865102,
+        "rshares": 141732299,
+        "voter": "cheetah44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 760863473,
+        "rshares": 120872328,
+        "voter": "cheetah45"
+      },
+      {
+        "percent": "10000",
+        "reputation": 760865096,
+        "rshares": 120890813,
+        "voter": "cheetah47"
+      },
+      {
+        "percent": "10000",
+        "reputation": 692288103,
+        "rshares": 120833397,
+        "voter": "cheetah48"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 51802213,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287177,
+        "rshares": 99980122,
+        "voter": "cheetah49"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 224278339247,
+        "rshares": -197038485,
+        "voter": "bittrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100349432,
+        "rshares": 99951882,
+        "voter": "cheetah54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 6149969581,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -64427114,
+        "rshares": 120697483,
+        "voter": "cheetah56"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101962962,
+        "rshares": 99916622,
+        "voter": "cheetah57"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101967126,
+        "rshares": 99910278,
+        "voter": "cheetah58"
+      },
+      {
+        "percent": "10000",
+        "reputation": -69710467,
+        "rshares": 99909932,
+        "voter": "cheetah59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59927799,
+        "rshares": 99907438,
+        "voter": "cheetah60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 767804862,
+        "rshares": 99896533,
+        "voter": "cheetah66"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19465928,
+        "rshares": 99892250,
+        "voter": "cheetah61"
+      },
+      {
+        "percent": "10000",
+        "reputation": -148791708,
+        "rshares": 99890841,
+        "voter": "cheetah67"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 101879994868,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 825054200,
+        "rshares": 120570515,
+        "voter": "cheetah68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19432158,
+        "rshares": 99869348,
+        "voter": "cheetah62"
+      },
+      {
+        "percent": "10000",
+        "reputation": -138680661344,
+        "rshares": 60886073,
+        "voter": "tomeraddady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 767998047,
+        "rshares": 124607662,
+        "voter": "cheetah69"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1549128442589,
+        "rshares": 7453005338,
+        "voter": "deepsynergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 822047275,
+        "rshares": 99802358,
+        "voter": "cheetah70"
+      },
+      {
+        "percent": "10000",
+        "reputation": 748663627,
+        "rshares": 99799156,
+        "voter": "cheetah71"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312224301489,
+        "rshares": 15273606785,
+        "voter": "solar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 91021945,
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": -18399847,
+        "rshares": 99792957,
+        "voter": "cheetah63"
+      },
+      {
+        "percent": "10000",
+        "reputation": -19433947,
+        "rshares": 99782371,
+        "voter": "cheetah64"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 770312087,
+        "rshares": 120389167,
+        "voter": "cheetah72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 821279026,
+        "rshares": 120381435,
+        "voter": "cheetah65"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1132289846563,
+        "rshares": 5654923873,
+        "voter": "ioc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46335594,
+        "rshares": 120373295,
+        "voter": "cheetah73"
+      },
+      {
+        "percent": "10000",
+        "reputation": 752249873,
+        "rshares": 99741664,
+        "voter": "cheetah74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 765304060,
+        "rshares": 99741380,
+        "voter": "cheetah80"
+      },
+      {
+        "percent": "10000",
+        "reputation": -3943686,
+        "rshares": 99738105,
+        "voter": "cheetah81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771139159,
+        "rshares": 181927110,
+        "voter": "cheetah75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 770134459,
+        "rshares": 120267884,
+        "voter": "cheetah76"
+      },
+      {
+        "percent": "10000",
+        "reputation": -3943964,
+        "rshares": 99696600,
+        "voter": "cheetah82"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121220908,
+        "rshares": 99681042,
+        "voter": "cheetah77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 770125675,
+        "rshares": 99671651,
+        "voter": "cheetah78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 773617738,
+        "rshares": 99665235,
+        "voter": "cheetah79"
+      },
+      {
+        "percent": "10000",
+        "reputation": -3937163,
+        "rshares": 99663403,
+        "voter": "cheetah83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3992443,
+        "rshares": 99661875,
+        "voter": "cheetah90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83815560,
+        "rshares": 99655006,
+        "voter": "cheetah84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31068,
+        "rshares": 99650382,
+        "voter": "cheetah85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 769270232,
+        "rshares": 120081993,
+        "voter": "cheetah86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 751094963,
+        "rshares": 99620929,
+        "voter": "cheetah91"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1636775147809,
+        "rshares": 1330997485,
+        "voter": "tralawar"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1749611,
+        "rshares": 99616380,
+        "voter": "cheetah87"
+      },
+      {
+        "percent": "10000",
+        "reputation": -72271147,
+        "rshares": 140399162,
+        "voter": "cheetah92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 32458555579,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 769270735,
+        "rshares": 119973230,
+        "voter": "cheetah88"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1621569,
+        "rshares": 140275655,
+        "voter": "cheetah89"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777448061,
+        "rshares": 99519512,
+        "voter": "cheetah93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3789939590477,
+        "rshares": 2357495176,
+        "voter": "lemouth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 818704606,
+        "rshares": 99486611,
+        "voter": "cheetah94"
+      },
+      {
+        "percent": "10000",
+        "reputation": 773885326,
+        "rshares": 99486173,
+        "voter": "cheetah97"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19396838,
+        "rshares": 99465345,
+        "voter": "cheetah98"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866537264,
+        "rshares": 99451343,
+        "voter": "cheetah99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 508905664,
+        "voter": "acacia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 594100722,
+        "voter": "alorya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50114625,
+        "voter": "highnye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 974326813,
+        "voter": "seraph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 28295412704,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2051850885932,
+        "rshares": 76569573,
+        "voter": "mindfreak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 796144209,
+        "rshares": 99380266,
+        "voter": "cheetah95"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87842165,
+        "rshares": 99376103,
+        "voter": "cheetah96"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60676805,
+        "voter": "elmariac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 443274841,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 339531801,
+        "voter": "reverie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60376477,
+        "voter": "anyx00"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 173824123,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 203940530117,
+        "rshares": 2613509095,
+        "voter": "macartem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 860457185,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1500225344,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 56305110,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142213881,
+        "rshares": 55056512,
+        "voter": "ethansteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 54970628,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 14379714199,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20672910301,
+        "rshares": 58739830,
+        "voter": "metu2222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26222994430,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 14098692115,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 67029397,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2083596161,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616880283688,
+        "rshares": 1454878966,
+        "voter": "jms21y"
+      },
+      {
+        "percent": "10000",
+        "reputation": 896116963054,
+        "rshares": 196167738566,
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 480394097022,
+        "rshares": 53035120,
+        "voter": "onlyvoluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557391740,
+        "rshares": 57346302,
+        "voter": "rainingtrips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34004319054,
+        "rshares": 64745673,
+        "voter": "sharonekelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 934958518,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1987750394564,
+        "rshares": 60704882,
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117598348160,
+        "rshares": 208772031,
+        "voter": "avecaesar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 61338571,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 54003219,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366678373049,
+        "rshares": 156902846,
+        "voter": "comcentrate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77327834214,
+        "rshares": 89410093,
+        "voter": "scramblebot.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125625258790,
+        "rshares": 13964573755,
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 381992155,
+        "voter": "celestial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 96587737,
+        "voter": "defender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 96570908,
+        "voter": "guard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18006844018,
+        "rshares": 127493671,
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 367284869879,
+        "rshares": 55780959,
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 56887954,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3749012705250,
+        "rshares": 5940167503,
+        "voter": "alexandre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 64818321,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 92595506,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1082135170,
+        "rshares": 55638442,
+        "voter": "starbuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 55386580,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 29165831568,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1391859553453,
+        "rshares": 55888886857,
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630803487,
+        "rshares": 39486406717,
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 201616978,
+        "rshares": 57814202,
+        "voter": "charlie777pt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 8730370697,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 56835260,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": -854547146975,
+        "rshares": 57009820,
+        "voter": "getbithub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 48716091684,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 1996093230,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 469965215,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 373540743,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 121327662,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 171072890,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8412926035,
+        "rshares": 3604800369,
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 57064498,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1134384219489,
+        "rshares": 9444303420,
+        "voter": "oldstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 1242700163,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 174215430182,
+        "rshares": 183611094,
+        "voter": "bobcollier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19849144135,
+        "rshares": 57819438,
+        "voter": "farmwars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1108819043543,
+        "rshares": 5889661123,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 332957533,
+        "rshares": 55960386,
+        "voter": "ramonphillips"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1011034976,
+        "rshares": 55955465,
+        "voter": "tommyboyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34627330410,
+        "rshares": 62707105,
+        "voter": "ender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 70030040089,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58077570820,
+        "rshares": 63876983,
+        "voter": "bmann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8146122,
+        "rshares": 53495781,
+        "voter": "apolloearth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52400985,
+        "voter": "swetlacha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 60253110,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 56275084,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 220420218233,
+        "rshares": 125638446,
+        "voter": "advinio"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2498083480,
+        "rshares": 61344846,
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53378714,
+        "voter": "prestonslove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56882303492,
+        "rshares": 78263876,
+        "voter": "happyramonel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 54120410,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 54321048,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 6699358198,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51797295,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51699969,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 162281274,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142829147182,
+        "rshares": 327031815,
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53633596,
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": -236066174395,
+        "rshares": 62737051,
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51432754,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39039688252,
+        "rshares": 52490824,
+        "voter": "rook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 53452043,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51230467,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 501717591495,
+        "rshares": 53168275,
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 846791,
+        "rshares": 54194635,
+        "voter": "darkzhadow20"
+      },
+      {
+        "percent": "10000",
+        "reputation": -511912631,
+        "rshares": 54178316,
+        "voter": "pingu"
+      },
+      {
+        "percent": "10000",
+        "reputation": -674983067,
+        "rshares": 53103516,
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 52030453,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119198828550,
+        "rshares": 53045729,
+        "voter": "inwoxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53039974,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3351161,
+        "rshares": 51972494,
+        "voter": "crmason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 122515769,
+        "voter": "charli"
+      }
+    ],
+    "author": "anyx",
+    "author_reputation": 25849925929525,
+    "beneficiaries": [],
+    "body": "![](https://pixabay.com/static/uploads/photo/2014/04/03/10/55/theater-311730_960_720.png)\n[[Source: Pixabay.](https://pixabay.com/p-311730/?no_redirect)]\n\nTo quote wikipedia (HEEL @cheetah), a Tragedy of The Commons is defined as follows:\n\n>The tragedy of the commons is an economic theory of a situation within a shared-resource system where individual users acting independently according to their own self-interest behave contrary to the common good of all users by depleting that resource through their collective action.\n\n&nbsp;&nbsp;&nbsp;&nbsp;It has been my experience over the past few weeks that Steemit is descending quite rapidly into a situation where the above definition is being applied almost verbatim.\n\n&nbsp;&nbsp;&nbsp;&nbsp;There are a few major topics I want to touch on today. Unfortunately I do not have much in the way of solutions, but I want to raise questions so that the community can openly engage in discussion with their opinions as well. I fight actively for, and am invested in, the future of steemit (I pay for @cheetah bot to run), so I hope we can garner some improvements as a result of this post.\n\n----\n\n# Curation, Voting, and Flagging Strategies\n&nbsp;&nbsp;&nbsp;&nbsp;As independent actors, we are all trying to maximize our own rewards here at steemit. We are acting as individuals, rather than as a community. I am guilty of this myself, having toyed with a curation strategy (bot) to use my vote power to improve my own Steem Power (according to @trogdor [I am doing fairly well too.](https://steemit.com/bots/@trogdor/building-better-bots-ranking-the-top-curators)), *and this means using my vote power selfishly, rather than using my vote power on something that I enjoyed reading.* [Perhaps curation rewards should stop after a post is trending, reducing the pile-on effect?](https://steemit.com/steemit-ideas/@liondani/don-t-remove-curation-rewards-just-stop-them-when-the-post-reach-the-trending-page)\n\n&nbsp;&nbsp;&nbsp;&nbsp;The problem is that this incentivizes the individual, not the community as a whole. When all users start doing this, voting on a \"sure shot\", we only further centralize the reward pool on a small minority, and leave minnows with little reward for their efforts.\n\n&nbsp;&nbsp;&nbsp;&nbsp;Unfortunately, I, like you all, are witnessing firsthand the effect that this selfish voting imparts. Our famous actors are becoming more famous, to the point where the few who realize have begun using their fame to promote lists of hidden gems and featured authors. But they still gain the steem power, getting fatter and fatter. \n\n&nbsp;&nbsp;&nbsp;&nbsp;Furthermore, using a flag on low-quality posts is disincentivized due to the threat of retaliatory flagging across all posts. I am a victim of this constantly and am used to it, but for most minnows they do not have the power or reputation to risk this possibility. In this regard, the action of self-interest is to avoid calling out spam, plagiarism, or scams, an instead focus only on the self and their own posts or rewards. @liondani suggested anonymous flagging, which may solve this issue, but potentially may lead to anonymous abuse, so I do not have an answer to that either. The question of flagging has become larger and larger, on the use cases [and accountability](https://steemit.com/steemit/@sparkeddev/steemit-flag-accountability-system-idea) of using flags, as well.\n\nTo quote @tuck-fheman:\n> It appears that Steem has become all about flagging, downvoting and opposing instead of the original idea of upvoting for rewards. :(  \n\n----\n\n# What is *Fair?*\n&nbsp;&nbsp;&nbsp;&nbsp;A second issue is fairness, and the distribution of reward from the reward pool. I have strong opinions on content, enough to continuously butt heads with several whales (no names -- no need to brigade).\n\n&nbsp;&nbsp;&nbsp;&nbsp;The fact is that whales have the ability to make a post trend instantly. This can be a good thing or a bad thing -- given a benevolent whale, a really strong minnow post can be put into the spotlight despite the user not having a large following. But if the quality of the post is low, we run into a very distinct issue: users view the front page as a metric to gauge successfulness of their own posts. Then it becomes a case of \"monkey see, monkey do\", where the average user, seeing plagiarism, copy paste, and low-quality posts on the front page, contemplates their risk to reward of each and every blog post.\n\n*Why would someone spend hours on a quality post, when they can spit out 4 low quality posts a day on multiple accounts, and randomly get chosen by a whale?*\n\n&nbsp;&nbsp;&nbsp;&nbsp;When a whale upvotes a low-quality post, and causes it to trend, it only further incentivizes this in the future. However, curation rewards are given mostly to the whale anyways, so they have selfish reasons to NOT remove their vote (and use vote power), and keep the resulting curation reward, contributing to the tragedy of the commons.\n\n\n----\n\n# What is *Right?*\n&nbsp;&nbsp;&nbsp;&nbsp;As one of the head combatants of abuse and plagiarism over the past weeks, I have had many discussions and many arguments over the direction of content on Steemit. While I believe that copy paste is a waste of my time, again, many users disagree, and mine and others' combative nature against what we feel is abuse has been more vigilante actions than anything else.\n\n&nbsp;&nbsp;&nbsp;&nbsp;Personally, I feel that Steemit should NOT be a news aggregation source, unless the provider of the information IS a news source. In this case, I believe people who copy paste articles that are not their own, whether or not it contains a source, should NOT be encouraged. This is equivalent to the difference in a reddit post or facebook status. Do you copy paste the article to reddit? NO! You just have a link and promote (and provide) discussion. Do you make your facebook status a full article? NO! You just have a link and promote (and provide) discussion. \n**We can do so much better than that; Steemit is something new and original. Lets be original too.**\n\n&nbsp;&nbsp;&nbsp;&nbsp;**But what is RIGHT?** If the answer were unclear, that would be one thing, however *there currently is no answer as far as I am aware.* Neither @dan nor @ned have made a public stance on official or unofficial set of rules for the content on steemit.com. Also, note that I am saying steemit.com here, not the blockchain steem. I think in the future there can and perhaps should be avenues on the steem blockchain that can be independent from the company and website, but that is off this topic.\n\nAre reposts okay? Is copy paste okay? What is right?\n\n*I don't actually know.*\n\nBut what I do know, is that everyone is acting independently on what they feel is **right**. And this independent selfishness is again contributing to the tragedy of the commons.\n\n----\n\n# Transparency of Leadership\n\n&nbsp;&nbsp;&nbsp;&nbsp;Here's another topic that I am likely to recieve a lot of hate for bringing up, but I feel the need for this to be discussed. This likely will ruin my chances as a back up witness, as this will not put me on the good side of some of the whales/employees but I feel that this needs to be said.\n\n**There is an issue in the transparency of leadership and witness activities, as well as the development towards the future of steemit.**\n\n&nbsp;&nbsp;&nbsp;&nbsp;If you don't believe me, I have a few examples. Lets start with [the latest witnesses exposed edition, here.](https://steemit.com/witness-category/@clains/witnesses-exposed-what-have-witnesses-done-for-us-this-week-fourth-edition)\nThere are a few issues that come to mind to start. Not all witnesses felt the need to respond, or were discussing stuff not explicitly steemit related. **Why is this?** This is not an issue with the witnesses themselves, but more with the transparency of actions -- the witnesses do **A LOT of work**, and they do not have the time or willpower to justify all their actions. Their updates are only a small part of the picture: they do a lot behind the scenes.\n\n*Behind. The. Scenes.* **That** is the issue.\n\n&nbsp;&nbsp;&nbsp;&nbsp;Furthermore, there is a private slack that only the witnesses and employees are invited to. Who is invited to these discussions? It does not appear to be a community decision.\nWhy are back up witnesses not invited to the private slack? Do they have no say? Is it only the bitshares witnesses, whom are very similar to the steemit witnesses, that are invited? I don't actually know -- it is not transparent.\n\n\n&nbsp;&nbsp;&nbsp;&nbsp;As a second example, I will start with an issue that has arisen just today. If you are aware of the history of bot wars on steemit, you are also probably aware of @williambanks and myself continuously in (reasonable/gentleman's) debate.\n\nBut what do you know, we are on the same page today.\n\n### [There is an open issue on the steemit github here](https://github.com/steemit/steem/issues/279).\n&nbsp;&nbsp;&nbsp;&nbsp;This issue is less than a day old and already is one of the most discussed issues. The code has already been implemented and is on track to be included in the next hardfork. There has also been a MASSIVE discussion on this in steemit.chat, and we have been debating the potential issues that this change could impart.\n&nbsp;&nbsp;&nbsp;&nbsp;[There is already a very forward response to the issue here,](https://steemit.com/steem/@bacchist/dan-needs-to-be-stopped) and while I think the tone of the post is a bit exaggerated, it shows that there are people already speaking out on the potential for censorship of users.\nCould this be another case of acting in what only one believes in, contributing to the tragedy of the commons?\n\n----\n----\n# To Be Clear...\n\nThis post is meant to incite discussion, on the following points (summarized):\n\n- How can we prevent the tragedy of the commons by inciting communal behaviour rather than selfish behaviour?\n- What is right, or fair, and are there (unofficial) rules to steemit?\n- How can we improve transparency with the witnesses and leadership?\n\n\n&nbsp;&nbsp;&nbsp;&nbsp;I hope to use what voice I have as \"the cheetah bot creator\" to get some some attention on these matters. As I am a believer in Steemit (I'm not powering down), I hope we can discuss and solve these issues, so let's try and be civil in the comment sections, and think of strategies to improve the current situation.",
+    "body_length": 10432,
+    "cashout_time": "2016-08-24T06:13:48",
+    "category": "steemit",
+    "children": 114,
+    "created": "2016-08-17T06:13:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steemitabuse\",\"steemit-abuse\"],\"users\":[\"cheetah\",\"trogdor\",\"liondani\",\"tuck-fheman\",\"dan\",\"ned\",\"williambanks\"],\"image\":[\"https://pixabay.com/static/uploads/photo/2014/04/03/10/55/theater-311730_960_720.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T00:00:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 111529566818423,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2117.833 HBD",
+    "percent_hbd": 10000,
+    "permlink": "the-steemit-tragedy-of-the-commons",
+    "post_id": 847948,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "The Steemit Tragedy of The Commons",
+    "title": "The Steemit Tragedy of The Commons",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@anyx/the-steemit-tragedy-of-the-commons"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28649815191672,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83122046,
+        "rshares": 17256001472124,
+        "voter": "itsascam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 550210431801,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30334952370576,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 376239996939,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14443275652261,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43394593255,
+        "rshares": 2030833515963,
+        "voter": "steemroller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1582895535608,
+        "rshares": 74801504808,
+        "voter": "donaldtrump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19032535635212,
+        "rshares": 18126239783174,
+        "voter": "steemed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1987335593735,
+        "voter": "badassmother"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 2159517848267,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 4890023621806,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4323004097906,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1086320405624,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 880557806,
+        "rshares": 28968312235,
+        "voter": "interteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 23773277234,
+        "voter": "jaewoocho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5486441611828,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726450269,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1867163157068,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524421464,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 821023379,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6910892966349,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1663662907027,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66083666244,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996677258,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256577770,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1800658342642,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 78084353044,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 455313528588,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2844060262292,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1353362516,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 792990678741,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 113067927565,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7724274359,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1911794927,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5635626434210,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1194582733596,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1315783901010,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 461603109709,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "500",
+        "reputation": 101807714979611,
+        "rshares": 48760534992,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1155054183813,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750173071,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168097212,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7861629418,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346066692,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 10083532428,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 394234007436,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 76669767557,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3828884985898,
+        "rshares": 60083245520,
+        "voter": "lovelace"
+      },
+      {
+        "percent": "9763",
+        "reputation": 12382143533351,
+        "rshares": 628030219874,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 20789435933,
+        "voter": "fkn"
+      },
+      {
+        "percent": "700",
+        "reputation": 14848515958625,
+        "rshares": 6569044104,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 61054775,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 10253626779,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "1000",
+        "reputation": 376960001789,
+        "rshares": 735222183,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 30368411048,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 315863056656,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 682204156759,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 152428550598,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 47409568998,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 210664792527,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 99060598425,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 634334591302,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "1509",
+        "reputation": 2902053059801,
+        "rshares": 706760886,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 14784987971,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 41765598481,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 58465406817,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 32250958083,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 9741553971,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7574468910,
+        "rshares": 8443385846,
+        "voter": "badger311"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8739185833,
+        "voter": "badger313"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8702688102,
+        "voter": "badger312"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9001802877,
+        "voter": "badger316"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9123753448,
+        "voter": "badger319"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9031387264,
+        "voter": "badger3101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8484216079,
+        "voter": "badger3111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9046505395,
+        "voter": "badger3121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8654861145,
+        "voter": "badger3131"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8762905699,
+        "voter": "badger3141"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8739314288,
+        "voter": "badger3171"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8546700919,
+        "voter": "badger3181"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9133175793,
+        "voter": "badger3191"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8546537809,
+        "voter": "badger3112"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8887799290,
+        "voter": "badger3132"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8760954229,
+        "voter": "badger3162"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8992073779,
+        "voter": "badger3113"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8642652851,
+        "voter": "badger3123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8766463442,
+        "voter": "badger3133"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9118189207,
+        "voter": "badger3153"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8796550318,
+        "voter": "badger3163"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8827090232,
+        "voter": "badger3193"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8776678551,
+        "voter": "badger3114"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8685523600,
+        "voter": "badger3124"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8588304371,
+        "voter": "badger3144"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8510076281,
+        "voter": "badger3154"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8377315418,
+        "voter": "badger3164"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8709470616,
+        "voter": "badger3174"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8989976838,
+        "voter": "badger3194"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8886235105,
+        "voter": "badger3105"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8829716229,
+        "voter": "badger3135"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8423538028,
+        "voter": "badger3145"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9007620498,
+        "voter": "badger3155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8700281041,
+        "voter": "badger3175"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8476261207,
+        "voter": "badger3195"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8117957824,
+        "voter": "badger3106"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8937469433,
+        "voter": "badger3116"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8985495645,
+        "voter": "badger3126"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8612060436,
+        "voter": "badger3136"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8258276111,
+        "voter": "badger3146"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8490201155,
+        "voter": "badger3156"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8706265192,
+        "voter": "badger3166"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8620993146,
+        "voter": "badger3176"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8755750973,
+        "voter": "badger3186"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8791555001,
+        "voter": "badger3196"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8718991812,
+        "voter": "badger3107"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8471079885,
+        "voter": "badger315"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8967628181,
+        "voter": "badger318"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9017298837,
+        "voter": "badger3151"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8689364509,
+        "voter": "badger3161"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8948847759,
+        "voter": "badger3122"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8885607706,
+        "voter": "badger3142"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9108820208,
+        "voter": "badger3152"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8411338379,
+        "voter": "badger3172"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8925199177,
+        "voter": "badger3182"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8680409435,
+        "voter": "badger3192"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8594916674,
+        "voter": "badger3143"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8858198056,
+        "voter": "badger3173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8564484466,
+        "voter": "badger3104"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8276297968,
+        "voter": "badger3134"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8683606438,
+        "voter": "badger3184"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8620611793,
+        "voter": "badger3115"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9094167417,
+        "voter": "badger3165"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8719715374,
+        "voter": "badger3185"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8781728658,
+        "voter": "badger314"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9016468724,
+        "voter": "badger317"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8754628196,
+        "voter": "badger3102"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8716056649,
+        "voter": "badger3103"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8642970122,
+        "voter": "badger3125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 8609078264,
+        "voter": "badger3183"
+      },
+      {
+        "percent": "3600",
+        "reputation": 71931696380,
+        "rshares": 1383757253274,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 2093729289,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "2000",
+        "reputation": 3804349938696,
+        "rshares": 11069842155,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "7000",
+        "reputation": 5888717170887,
+        "rshares": 47240597828,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 53347836964,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 529669416151,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 50628223074,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "6500",
+        "reputation": 5260794316761,
+        "rshares": 87177804275,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 2066448490,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 285128952159,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 32152347662,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6190804275,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 840377473305,
+        "rshares": 2268092631,
+        "voter": "alefernandez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 276756301049,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2457655120479,
+        "rshares": 5195620390,
+        "voter": "ben99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 4374490018,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 862610149295,
+        "rshares": 5335777148,
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 6824457191,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6887949260,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 6284039437,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2632946346,
+        "rshares": 28957795188,
+        "voter": "catchfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8378230900,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 497469198,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 52003248432,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5837807367,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3806797783,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36391001943292,
+        "rshares": 166092958393,
+        "voter": "dashpaymag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 160643235057,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 60562042587,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 322313735791,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5529131224,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3374751710,
+        "voter": "orly"
+      },
+      {
+        "percent": "500",
+        "reputation": 9956734090708,
+        "rshares": 2306802186,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 24660074212,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5836260007,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 19226458378,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 342755672893,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13127892,
+        "rshares": 251828480,
+        "voter": "murat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6150332058,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 15365648590,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25035268804,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380128900631,
+        "rshares": 314301027,
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6934434149,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 154741390656,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 73450100987,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 561480099896,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 165694944701,
+        "rshares": 2962435381,
+        "voter": "fydel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 494660240,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 555157483,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 508820718,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 15905492768,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 214457049,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 1256123540,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 626701245,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 101872192,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 60734261073,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 5608128967,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 31632983607,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254682950563,
+        "rshares": 646052407,
+        "voter": "timer-the-teemer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 19899950500,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2397831198773,
+        "rshares": 664473119,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24466851846,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 72123710901,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 125274679006,
+        "rshares": 6392075053,
+        "voter": "cryptosi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 14205588702,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 38705026266,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2503362754,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 641753327,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 402973019801,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 20834831521,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239794058,
+        "voter": "bertrandlarsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 40854219207,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 91926117,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3868894451,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 43807930344,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15850485128,
+        "rshares": 4319373614,
+        "voter": "deadloop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2554645343,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 194555411604,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 37285057515,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7311548067,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116856214624,
+        "rshares": 3491503652,
+        "voter": "bones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 19871122291,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 2896607843,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 28543460231,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 5469654172,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 44957550735,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "1000",
+        "reputation": 14988694886527,
+        "rshares": 32297662559,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 415527006,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 6308071966,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 33886796864,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 16853611003,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1822860319,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 275186674,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 275598583,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159279578,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160178852,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 91302559,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 23812617244,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 96785152044,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 102801288,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39913884914319,
+        "rshares": 36727269719,
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 940261675,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1156777476755,
+        "rshares": 2598366417,
+        "voter": "marriedbear"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 18100596106,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1376683720,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8079179261851,
+        "rshares": 42594716412,
+        "voter": "claudiop63"
+      },
+      {
+        "percent": "1000",
+        "reputation": 58190631451,
+        "rshares": 2725719548,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 664191453,
+        "voter": "curator"
+      },
+      {
+        "percent": "8600",
+        "reputation": 7172977970558,
+        "rshares": 3023072933,
+        "voter": "ace108"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 441466598,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 236391913,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 17988796915,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82681797,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2904570052,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 576651577,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 512280280,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5655389326,
+        "rshares": 12259724017,
+        "voter": "youngkim"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 152970347,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "100",
+        "reputation": 4063076365725,
+        "rshares": 116062982,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2227557428863,
+        "rshares": 5505803812,
+        "voter": "sulev"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 3686222494,
+        "rshares": -115662469,
+        "voter": "emule"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38706448983317,
+        "rshares": 123034077406,
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 45960416179,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 4090189555,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 3258481751,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 5192525040,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 110594049844,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1075326746,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92225510961,
+        "rshares": 102667622,
+        "voter": "yulia98"
+      },
+      {
+        "percent": "4700",
+        "reputation": 988942038058,
+        "rshares": 35213037108,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1275505236,
+        "rshares": 1378577681,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5164661053,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 61911147,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 63085782,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 22900312138,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7564464865541,
+        "rshares": 21687473969,
+        "voter": "thebluepanda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 3181752579,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 25557164122,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "9763",
+        "reputation": 1751717743,
+        "rshares": 16647443247,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 950539828786,
+        "rshares": 2327473286,
+        "voter": "kalimor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4178217960,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 5543927005,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8291369593,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782591597315,
+        "rshares": 19051460504,
+        "voter": "bayareacoins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3653299044116,
+        "rshares": 7963549449,
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 437078703,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21043141156,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11099072108,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5291585400,
+        "rshares": 63472197,
+        "voter": "mamawoozy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 115485663577,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 5463070096,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1650566366,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 61274515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "1600",
+        "reputation": 73944659327428,
+        "rshares": 36994693442,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 77140211414,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 2913370061,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 190598788,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 63570195,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 58467607,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11440310311,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15018520093808,
+        "rshares": 43034424521,
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 57914427,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 23044255345,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 57765027,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 65288764,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 74494304,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 29004100192,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 69130289,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3687519836,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51199976,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 58653788,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 255827992,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 47334856382,
+        "rshares": 71309540,
+        "voter": "williamdevine"
+      },
+      {
+        "percent": "100",
+        "reputation": 3814152361740,
+        "rshares": 254680718,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9490125894,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56726999,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1947948907,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 59006436,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59000019,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 706565490603,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1488994709,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58555241,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 6296644545,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 104626278782,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 284837528,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 14990672231,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55414210,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55396880,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55394920,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55406673,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55387660,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 452630821,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3655759735,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 274397336,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 9363681169,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 7424154802,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5385371031617,
+        "rshares": 9176628168,
+        "voter": "mada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54991366,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24276337891,
+        "rshares": 531925070,
+        "voter": "tradz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15582512683043,
+        "rshares": 65832393788,
+        "voter": "justinlaak"
+      },
+      {
+        "percent": "5100",
+        "reputation": 18890223518661,
+        "rshares": 21907603645,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 77054215495,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 73706708,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 11298857233,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 25514833584,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 11575032175,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3485898605376,
+        "rshares": 3203110252,
+        "voter": "naquoya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 8062501015,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5881944684,
+        "rshares": 56937117,
+        "voter": "disletti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 80071335,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 4508761861,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 480394097022,
+        "rshares": 179361341,
+        "voter": "onlyvoluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53853911,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3411235440678,
+        "rshares": 2835472183,
+        "voter": "caleballen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2322269215556,
+        "rshares": 1663775549,
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 4751652415,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55845079,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2866201592136,
+        "rshares": 4517701031,
+        "voter": "lancem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 10198416327,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 3009517183,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 28207588875,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56507401,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 22620763423,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5454682833813,
+        "rshares": 21173348443,
+        "voter": "sabot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 4630419959,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573591254,
+        "rshares": 55150378,
+        "voter": "thomas777young"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52836995,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78138793415,
+        "rshares": 76012855,
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1727489852,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 180273650,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4209270,
+        "rshares": 57084876,
+        "voter": "gabriellehughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 52842496,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52505412,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52496656,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 133209914,
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 794973811289,
+        "rshares": 1456313438,
+        "voter": "baro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 45199910296,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3970810,
+        "rshares": 50110893,
+        "voter": "benaccept"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 16209819005,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 63269642,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3944650249,
+        "voter": "ethical-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55401224,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124740159878,
+        "rshares": 113791291,
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5914987448,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 8590642702,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52916909,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51812703,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51223240,
+        "rshares": 389378512,
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1091417527,
+        "voter": "smisi"
+      },
+      {
+        "percent": "2200",
+        "reputation": 1108819043543,
+        "rshares": 3824759512,
+        "voter": "bluehorseshoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16147984004,
+        "rshares": 59219559,
+        "voter": "lighter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 792520233,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51465774,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 279559670206,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52236265,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52230725,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2786340772,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37389137,
+        "rshares": 54103263,
+        "voter": "skwidman157"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51922012,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2478555020061,
+        "rshares": 1423442573,
+        "voter": "mcsvi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51830988,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 350935961,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 2556835195,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 687559505602,
+        "rshares": 1514529911,
+        "voter": "catsmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 355019569,
+        "voter": "bones261"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50377764,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 376900580091,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 57714808227,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 45161623360,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 403009508,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 633626870,
+        "voter": "bones555"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8189791438741,
+        "rshares": 16295354133,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50933404,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1217183875,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2054624294432,
+        "rshares": 3053880719,
+        "voter": "anton333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 105399694,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "8900",
+        "reputation": 176228976143,
+        "rshares": 8182004429,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 62915469,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 66596881,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 52314834,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 2039801166,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "2000",
+        "reputation": 1713402087003,
+        "rshares": 5965037248,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 2503257893,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 82403648,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768451347973,
+        "rshares": 832147254,
+        "voter": "jbaker585"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 5004037720,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 10814629865,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50454901,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5015495901,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51238118,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51227561,
+        "voter": "battalar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50536471,
+        "voter": "twistys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50479027,
+        "voter": "sunlight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50351738,
+        "voter": "aschwin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16681034811,
+        "rshares": 4034354736,
+        "voter": "dodders007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 117880628,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3842413697,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49657495345,
+        "rshares": 66534263,
+        "voter": "dharma.queen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 76034330,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3563119282,
+        "rshares": 83022113,
+        "voter": "robermulima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 80674477,
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 154501261,
+        "voter": "buffett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 385757858,
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159723319,
+        "voter": "ctu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675589247639,
+        "rshares": 1522634311,
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161849597,
+        "voter": "iberia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161693690,
+        "voter": "shadowproject"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161096439,
+        "voter": "bethsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 308198215903,
+        "rshares": 194447487,
+        "voter": "james1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157706877,
+        "voter": "cybergirl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160845765,
+        "voter": "caseyneistat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116818017503,
+        "rshares": 151445352,
+        "voter": "jameshowarrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160260561,
+        "voter": "rage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159387371,
+        "voter": "bosch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156043541,
+        "voter": "disneypixar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159143891,
+        "voter": "reef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159062820,
+        "voter": "rule"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158732321,
+        "voter": "steemwallet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 92121908,
+        "voter": "socialbutterfly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1765060868967,
+        "rshares": 124965692,
+        "voter": "modernbukowski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155378485,
+        "voter": "zendesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22482956163,
+        "rshares": 149788300,
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 539760886,
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2361914,
+        "rshares": 157332453,
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32604844,
+        "rshares": 153732097,
+        "voter": "ancapman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 149602177,
+        "voter": "jahti"
+      }
+    ],
+    "author": "steve-walschot",
+    "author_reputation": 42741727265739,
+    "beneficiaries": [],
+    "body": "# Are the upper rank whales just a bunch of scammers? I got involved in a debate yesterday with a user who believes they are. \n\nhttp://s3.amazonaws.com/thumbnails.illustrationsource.com/huge.102.514926.JPG\n\n### Let me break down just why he thinks they are, and how easy it is to assume this when following his logic.\n\n----\n\n\n\n# Statement 1: Having multiple accounts is considered scammy.\n\n\n\n> \"Big whales have created many alt accounts to suck the rewards away from the system\"\n\n\n\nIn fact, having multiple accounts was a requirement in the beginning of Steem. Way before the majority of us even knew what steem was. Most of the upper ranks have multiple accounts for obvious reasons; A witness account, a miner account, a blog account, and maybe some more accounts for whatever purposes. \n\n\n\nDid they create multiple accounts for fraudulent purposes? Simply put: No.\n\n\n\n# Statement 2: Stealing rewards from the platform.\n\n\n\n> \"Upvoting your own alt account with super whale powers is stealing money from steemit\"\n\n\n\nWe need to stop for a moment and look at what makes someone a whale. Those users are the very same users who invested their own time, money and resources in making steemit as we know today. Their investment is what most of us are chasing, the monetary reward by their huge balances. There is no such thing as stealing on steemit. Most of us joined here to make some rewards, just like the **early investors** did. Sure, having millions of SP on your account may be impressive, but it won't pay your bills. \n\n\n\nYet we assume whales are only here to share the rewards with any john doe making some introduction on steemit, however, if they upvote themselves, we start screaming it has to be a scam! Don't we all check the 'upvote post' check box upon submitting? Don't we all pray for a big whale to vote our content? \n\n\n\nHow do you justify the expectation of those guys investing everything they had, pouring money in a new platform, sharing everything with us, yet not receiving anything in return themselves but greed and envy? If some day, an anonymous person builds you a castle, just like that, for free, would you close the door on him if he asks you to have a coffee with you ?\n\n\n\nFrom my perspective, if a whale upvotes his own alt account, they are only rewarding themselves instead of you. \n\n\n\n# Statement 3: Voting patterns reveal scammy accounts.\n\n\n\n> \"Account X upvotes a post and within seconds 40 others do! SCAAAAAAAMMMMMM!!!\"\n\n\n\nSteem is a wonderful platform and blockchain. It even has this cool thing called **\"proxified voting.\"** Let me explain you some of the basics.\n\n\n\nEvery user can authorize another user to cast votes using his keys. We have a main curator, lets just call him @maincurator. All that @maincurator does, is scan steemit for new and good content. Now i don't have the time to scan 24/7 on new potential trending content, for whatever reasons. But i really like what @maincurator is doing, and his upvotes are mostly inline with what i like. I can authorize @maincurator to vote with my account using nothing but our own blockchain. Nothing scammy, no hocus-pocus. Just code.\n\n\n\nNow let's extend this, and 50 other users love what @maincurator does. This would mean, by every vote @maincurator makes, a total of 50 other users will cast their vote within the same second. What if @maincurator follows me, loves my posts, and upvotes every single post I make? It would show that all my posts are getting the same votes within the same time span.\n\n\n\nDoes this imply my account is a 'fake, scammy' account? No. Does this mean many of those accounts got created just to suck away rewards and upvoting my own posts? No.\n\n\n\n----\n\n### It is my belief this community is being poisoned by greed, hatred and envy from the new userbase towards the old userbase. \n\nPeople are actually accusing and investigating such simple actions like proxified voting because they rather believe in conspiracy theories and assumptions than taking a look at steemd and acting with knowledge. Even worse is that those users are assuming they have the knowledge.\n\nAt a slow pace, we'll see the intellect and childish behavior of bitcointalk appearing on steemit.\nIf anyone ever has doubts about anything, talk to this community instead of spreading rumors around.\n\n\n\n# Knowledge is king.",
+    "body_length": 4314,
+    "cashout_time": "2016-09-18T11:48:18",
+    "category": "steemit",
+    "children": 104,
+    "created": "2016-09-11T11:48:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"knowledge\",\"scam\",\"debate\",\"philosophy\"],\"users\":[\"maincurator\"],\"image\":[\"http://s3.amazonaws.com/thumbnails.illustrationsource.com/huge.102.514926.JPG\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T11:57:42",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 171804021373966,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2031.052 HBD",
+    "percent_hbd": 10000,
+    "permlink": "investigating-the-wale-scam-assumptions-above-knowledge",
+    "post_id": 1207852,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Investigating the whale scam - Assumptions above knowledge.",
+    "title": "Investigating the whale scam - Assumptions above knowledge.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steve-walschot/investigating-the-wale-scam-assumptions-above-knowledge"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 32488903849247,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 1298993547649,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 38642501010403,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2559375484760,
+        "voter": "simpson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 173052576029,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7326216692438,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 191868443924,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 9333524132870,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1956064698749,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 624317613010,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4018307276106,
+        "rshares": 4952993725420,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1039007994833,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 962425732243,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3101125372,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 225327980518,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3764938590,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 690600205,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 54329833113,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 32327859355,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 425189357557,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26287239651,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1661876136,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213713678,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 2084239062405,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 62056410763,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 15820358065,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 444274202211,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 100108166977919,
+        "rshares": 632065436036,
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2718724053558,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1821027030,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 1087977483833,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2489349893,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5880199687764,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 406100573753,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18678729398345,
+        "rshares": 163930696090,
+        "voter": "pairmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 11952017746,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 623009796,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 149907120182,
+        "rshares": 114255089939,
+        "voter": "chainreaction"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 967681267,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7851901285,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "2500",
+        "reputation": 72112139588726,
+        "rshares": 212266828968,
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8963739580468,
+        "rshares": 131564064858,
+        "voter": "team"
+      },
+      {
+        "percent": "1500",
+        "reputation": 37454101478493,
+        "rshares": 48807720961,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 288231022,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21527783969006,
+        "rshares": 138323581213,
+        "voter": "chris4210"
+      },
+      {
+        "percent": "100",
+        "reputation": 76633033946568,
+        "rshares": 14796403307,
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 38490650011,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1840795653,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 83710409543,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14797967454,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 146347815988,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "100",
+        "reputation": 12712877967688,
+        "rshares": 1579031296,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9600934617910,
+        "rshares": 15617108700,
+        "voter": "jademont"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7747023149,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 22732782886,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2105681906,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 337837195815,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 31232898244,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 757181955812,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7186758,
+        "rshares": 459952549,
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3750669747284,
+        "rshares": 262962866011,
+        "voter": "pal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7584918683,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 56781868577,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 239335567062,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 22687743059,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 55111854558,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 755492570,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 76937983304,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1419540456,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 426343346149,
+        "rshares": 7173458731,
+        "voter": "cryptofunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2685934276,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 634415904849,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 65803910629,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2272340357792,
+        "rshares": 218290642465,
+        "voter": "java1959"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 23894590125,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 39307813752,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 11477689506,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3834752002643,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 389685034683,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 151936035302,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "6500",
+        "reputation": 3804349938696,
+        "rshares": 35750027466,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 48150885418,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 126958361529,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1428112930,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13352502314,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19565655294,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 16053649834,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 2117599813,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 271437176072,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2879792051,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6319872011,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 115999616054,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 45128464069,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2743979895,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601987961462,
+        "rshares": 2883967098,
+        "voter": "superfreek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5392624170369,
+        "rshares": 17550246480,
+        "voter": "grey580"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5588706172,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "4800",
+        "reputation": 4370237937043,
+        "rshares": 87540066230,
+        "voter": "marina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 329019253742,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 42081820791,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454055212995,
+        "rshares": 1070481921,
+        "voter": "gidlark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 254364900,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 34736143686,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 19810118925,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 288636625887,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2929841623,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 136127337739,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6180521629731,
+        "rshares": 14533748384,
+        "voter": "elyaque"
+      },
+      {
+        "percent": "10000",
+        "reputation": -207495429319,
+        "rshares": 952705678,
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1246754700,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24969764155,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6917632695,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6639968318,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52317559376,
+        "rshares": 8855531477,
+        "voter": "killswitch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 67721946738,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 512086268530,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3551688228,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 554507630,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 622088048,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 570249468,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 160880392727,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1240333583,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67145833276,
+        "rshares": 41267573080,
+        "voter": "wesam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 258238650045,
+        "rshares": 351788117,
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15315160167,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1322598664,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 17111691722,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4681072966,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740475854096,
+        "rshares": 6449589399,
+        "voter": "egjoshslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3096315218,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10807385753,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33639636820,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 16106721139,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4414157547,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 25447107111,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 293775000598,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 87796397320,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 357237636,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 44195954192,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 18733691323,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 131039739025,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3863654810,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5531768448,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3660411,
+        "rshares": 239397980,
+        "voter": "johannaparker284"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48623322839,
+        "rshares": 272203551,
+        "voter": "cryptomania"
+      },
+      {
+        "percent": "10000",
+        "reputation": 109724811529,
+        "rshares": 272002110,
+        "voter": "ashleybr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13263636801,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239146014,
+        "voter": "helenapeters051"
+      },
+      {
+        "percent": "10000",
+        "reputation": 233054428,
+        "rshares": 239098876,
+        "voter": "leoniestein3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5769220967,
+        "rshares": 234347855,
+        "voter": "alexandraberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 233795210,
+        "rshares": 239145342,
+        "voter": "susie4ka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 233054428,
+        "rshares": 239099436,
+        "voter": "sarp871"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 239130763,
+        "voter": "sarpton2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2855981553,
+        "rshares": 239509465,
+        "voter": "stefaniek42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2685781735,
+        "rshares": 239696086,
+        "voter": "kellystone6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3790892852,
+        "rshares": 239701207,
+        "voter": "kathise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 110744225,
+        "rshares": 239082038,
+        "voter": "tsarp4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 402141072,
+        "rshares": 239091094,
+        "voter": "oneandonly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 107829903,
+        "rshares": 239331957,
+        "voter": "ts888"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136067745,
+        "rshares": 238981330,
+        "voter": "juliaevans717"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2541852174,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1561865667,
+        "rshares": 239275051,
+        "voter": "cryptobrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1289673,
+        "rshares": 239215370,
+        "voter": "julwern002"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1264385,
+        "rshares": 238981841,
+        "voter": "jul762"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1646220515,
+        "rshares": 239344824,
+        "voter": "willpower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2452090874303,
+        "rshares": 3082351842,
+        "voter": "febird"
+      },
+      {
+        "percent": "3000",
+        "reputation": 9709066337974,
+        "rshares": 8755877882,
+        "voter": "wadepaterson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 599560057305,
+        "rshares": 3962393528,
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 4393542795,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3952092450,
+        "rshares": 238817311,
+        "voter": "sunnyskies"
+      },
+      {
+        "percent": "10000",
+        "reputation": 241090787,
+        "rshares": 238765279,
+        "voter": "jeremybrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 270411868564,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 172114373,
+        "rshares": 238847388,
+        "voter": "stevemitchell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 238854943,
+        "voter": "jennifersteel807"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1178751818,
+        "rshares": 119763037,
+        "voter": "briantp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 253813963,
+        "rshares": 119401610,
+        "voter": "melinasanner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 188619737,
+        "rshares": 119397595,
+        "voter": "mrcryptocoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1723163,
+        "rshares": 119531207,
+        "voter": "beckygee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 740782,
+        "rshares": 119371426,
+        "voter": "nataschasielers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 843226172873,
+        "rshares": 64522627042,
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8081970110,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 957047189,
+        "rshares": 119353097,
+        "voter": "mykingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097,
+        "rshares": 119112592,
+        "voter": "sourcandy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119181485,
+        "voter": "jack-f"
+      },
+      {
+        "percent": "500",
+        "reputation": 2022133808333,
+        "rshares": 1003794429,
+        "voter": "krystox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18917841190,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1859342,
+        "rshares": 119037272,
+        "voter": "wildflower3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5420587,
+        "rshares": 119071978,
+        "voter": "jessyperk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1304492,
+        "rshares": 119010633,
+        "voter": "betsyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 802342551,
+        "rshares": 119135632,
+        "voter": "annie-kim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118845448,
+        "voter": "lucypier"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097,
+        "rshares": 118862056,
+        "voter": "penelopek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118900255,
+        "voter": "jenniferchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97519682,
+        "rshares": 118914326,
+        "voter": "rosiemckoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3634889,
+        "rshares": 118930318,
+        "voter": "stacykeller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 8474919553,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118846334,
+        "voter": "luisapenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4489986,
+        "rshares": 119377197,
+        "voter": "steemwitherika"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118885999,
+        "voter": "abbybrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33420029069,
+        "rshares": 130149541,
+        "voter": "misseva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 337377912,
+        "rshares": 118775847,
+        "voter": "mandyrose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 874100,
+        "rshares": 118832865,
+        "voter": "julesber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118805309,
+        "voter": "emily-s"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797599938,
+        "rshares": 119060933,
+        "voter": "meetlisa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1235900387,
+        "rshares": 119196722,
+        "voter": "firedesire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 120669807,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 27657630617,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118853368,
+        "voter": "sammyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118797993,
+        "voter": "missclara"
+      },
+      {
+        "percent": "10000",
+        "reputation": 452835586,
+        "rshares": 118815298,
+        "voter": "katiebell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 912104,
+        "rshares": 118722719,
+        "voter": "evast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4663787411,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118819488,
+        "voter": "cassyk"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2661046736,
+        "rshares": 119604275,
+        "voter": "peacemaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118802816,
+        "voter": "chrism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118739098,
+        "voter": "dansteven"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6884579,
+        "rshares": 118783555,
+        "voter": "jackstiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118813749,
+        "voter": "jessestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1832456880,
+        "rshares": 119062497,
+        "voter": "tylermill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118773081,
+        "voter": "jacob-still"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118749852,
+        "voter": "michaelpr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118880960,
+        "voter": "joshleon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118679777,
+        "voter": "mattgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 80652231432,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118632683,
+        "voter": "andrew6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118616540,
+        "voter": "taylorcb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 957468455,
+        "rshares": 118750441,
+        "voter": "daniel-chris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1239169187,
+        "rshares": 118960267,
+        "voter": "timber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 874100,
+        "rshares": 118561318,
+        "voter": "christopher7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 817093,
+        "rshares": 118557498,
+        "voter": "williamger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118708222,
+        "voter": "alexander9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 912104,
+        "rshares": 118543205,
+        "voter": "nilsbernsen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118579416,
+        "voter": "citruss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118605320,
+        "voter": "ryandavis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118560736,
+        "voter": "david-g"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118575769,
+        "voter": "nickstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118513422,
+        "voter": "jamesab"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5567319,
+        "rshares": 118565669,
+        "voter": "johnbe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118540653,
+        "voter": "jonathan8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9367274,
+        "rshares": 118498440,
+        "voter": "nathanburr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118529589,
+        "voter": "justusberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118548738,
+        "voter": "tedcook"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223174354,
+        "rshares": 118487471,
+        "voter": "jennyspeer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118495263,
+        "voter": "bella4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118478585,
+        "voter": "samkk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118513185,
+        "voter": "annabellew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31755056,
+        "rshares": 118449252,
+        "voter": "benjaminw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6929384,
+        "rshares": 118467904,
+        "voter": "bitcoinpros"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118379415,
+        "voter": "justing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118399962,
+        "voter": "kevinbr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118447715,
+        "voter": "brandontom"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1478779307,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118326435,
+        "voter": "timothyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 100131242,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118276121,
+        "voter": "james-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118353137,
+        "voter": "evanpeters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118345023,
+        "voter": "lukethompson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2857640484,
+        "rshares": 116485718,
+        "voter": "avleo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118337740,
+        "voter": "jackson5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118281800,
+        "voter": "robert-sn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 214761882746,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 406308077,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118233062,
+        "voter": "luisstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 893102,
+        "rshares": 118316787,
+        "voter": "lucasgibson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30807782,
+        "rshares": 118250348,
+        "voter": "johnsnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118260671,
+        "voter": "maxflender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 996235538271,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118182168,
+        "voter": "adriangreene"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118612745,
+        "voter": "tylerstevens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118086477,
+        "voter": "michael-brown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118078202,
+        "voter": "franklyn0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118110881,
+        "voter": "timclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24862308,
+        "rshares": 118031066,
+        "voter": "bryanpeters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 19234718299,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 688997871,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 55647723694,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3076953263936,
+        "rshares": 4506374345,
+        "voter": "gustavopasquini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 11424595106,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 696400833,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 571676546,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 3820934326,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19696586244,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "2600",
+        "reputation": 568560955800,
+        "rshares": 9964952332,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18480910583,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 619638656,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1980568811,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 629160937,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 574075822,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4062552056713,
+        "rshares": 1071660744,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255549221406,
+        "rshares": 119767322,
+        "voter": "esqil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125619617814,
+        "rshares": 1037668636,
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10480194360,
+        "rshares": 117657114,
+        "voter": "aishwarya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1418195151238,
+        "rshares": 544359710,
+        "voter": "cwmyao1"
+      },
+      {
+        "percent": "5600",
+        "reputation": 17218558634066,
+        "rshares": 14032792449,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 2846913750,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18454014165,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 1457591730,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 236594933701,
+        "rshares": 114404796,
+        "voter": "sandroieva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1588457502,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "7000",
+        "reputation": 1984412570795,
+        "rshares": 4068045543,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 116022432067,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6931641798,
+        "rshares": 110227366,
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1305194939,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9244548775,
+        "voter": "taker"
+      },
+      {
+        "percent": "4700",
+        "reputation": 10137266406870,
+        "rshares": 3742692054,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 3765260757,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 14600132704,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4964569405579,
+        "rshares": 3795619054,
+        "voter": "dumar022"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4341976914033,
+        "rshares": 15475401412,
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 83547862361,
+        "voter": "twinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24592412278,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3019606487614,
+        "rshares": 7742892072,
+        "voter": "cmp2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 25072466391,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 3801678787,
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10690204490232,
+        "rshares": 10656756393,
+        "voter": "mrs.steemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7989197237827,
+        "rshares": 19758189330,
+        "voter": "essra"
+      },
+      {
+        "percent": "4700",
+        "reputation": 15739430465359,
+        "rshares": 29622647720,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2287220532946,
+        "rshares": 1740239112,
+        "voter": "achim86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 312105976,
+        "rshares": 97436716,
+        "voter": "bajekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5446779285,
+        "rshares": 66261891,
+        "voter": "mr-anderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12393203621507,
+        "rshares": 25208551261,
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1965200089,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3653299044116,
+        "rshares": 6290623320,
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 70099630715,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1291949856,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10368438493,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 97118664455,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 4765636568,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 149835324593,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1425927896964,
+        "rshares": 2058409213,
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 62432789066,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 8685969979,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 1099555508,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 971138,
+        "rshares": 196342790,
+        "voter": "jjt333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 3509543381,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 61746903,
+        "voter": "kpine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 891327,
+        "rshares": 9238652193,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5963920739546,
+        "rshares": 4181286599,
+        "voter": "lgm-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487684933351,
+        "rshares": 12254250998,
+        "voter": "borran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1228793177,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 88468362402,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80723007188,
+        "rshares": 1911242984,
+        "voter": "inkbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51186720,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1946754820,
+        "rshares": 62305619,
+        "voter": "besmart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 746533252410,
+        "rshares": 119086239,
+        "voter": "lisadang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6058270767116,
+        "rshares": 6057209799,
+        "voter": "gonzo"
+      },
+      {
+        "percent": "100",
+        "reputation": 3814152361740,
+        "rshares": 243771797,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1379470909,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497238582,
+        "rshares": 61387499,
+        "voter": "belohndichselbst"
+      },
+      {
+        "percent": "1600",
+        "reputation": 13325577893779,
+        "rshares": 2445838408,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 81220654,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 596158753,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 61268366348,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4318672774075,
+        "rshares": 7802331627,
+        "voter": "farmerswife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27504418847,
+        "rshares": 85632413843,
+        "voter": "neptun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 12508744135,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2560692758,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 86288802547,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 2030980979,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 71768449,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 2018264707,
+        "voter": "levycore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 633578244,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 944616878,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16370527703,
+        "rshares": 62854980,
+        "voter": "erstklassich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 13835790192,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -300111851,
+        "rshares": 391997751,
+        "voter": "kylemccartney"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 11694781833,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3725920343994,
+        "rshares": 965087932,
+        "voter": "booky"
+      },
+      {
+        "percent": "2500",
+        "reputation": 6263695706748,
+        "rshares": 3949973220,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14686018058,
+        "rshares": 60000454,
+        "voter": "gduran"
+      },
+      {
+        "percent": "10000",
+        "reputation": 654546773339,
+        "rshares": 706576091,
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1245866289,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69679307796,
+        "rshares": 53508471,
+        "voter": "indise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8841751428,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 801146103,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57896578,
+        "voter": "eliseojacobo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 91098050158,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1759028197,
+        "rshares": 57818188,
+        "voter": "nwoinfowarrior"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 1939186245,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 57664781,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 9905906393,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 15280466869,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 813896179120,
+        "rshares": 953833783,
+        "voter": "ivet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 2483028724,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1790524620,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 121905705,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7485783526,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1329813882691,
+        "rshares": 444723846,
+        "voter": "mobios"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 112478247,
+        "voter": "rusla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80500300321,
+        "rshares": 83514025,
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6064514,
+        "rshares": 56782516,
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837791549130,
+        "rshares": 35841701617,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 16583390231,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177940547303,
+        "rshares": 5670514670,
+        "voter": "leavemealone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 59172099,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 612120792,
+        "voter": "frick"
+      },
+      {
+        "percent": "2000",
+        "reputation": 134056888284,
+        "rshares": 72041846618,
+        "voter": "cornerstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56559977,
+        "voter": "satanclaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 6121203049,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3475969893,
+        "rshares": 55456872,
+        "voter": "gumer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 3147348325,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 68569991779,
+        "voter": "thecyclist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 431424422,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 155943749755,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 56774491,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 6049896148,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117903399171,
+        "rshares": 534249342,
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287913287,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 26362283709,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 155834469695,
+        "rshares": 103617011,
+        "voter": "illusiveman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2885182964,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 5114828701,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61903571255,
+        "rshares": 53470504,
+        "voter": "jessicalu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 350328059,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15252823414,
+        "rshares": 54990945,
+        "voter": "doudou252666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 1079421644,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2332975763185,
+        "rshares": 588256083,
+        "voter": "patelincho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54636437,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 22807637376,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11427084577,
+        "rshares": 56526555,
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 294937368742,
+        "rshares": 3480826171,
+        "voter": "steemokto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4408882617025,
+        "rshares": 2748591245,
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "1500",
+        "reputation": 8189791438741,
+        "rshares": 1780736904,
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18081706207,
+        "rshares": 53257299,
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4311438047,
+        "rshares": 51890756,
+        "voter": "forklognews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5569248072,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2566774104,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52628456,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52573342,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52570928,
+        "voter": "cwb"
+      },
+      {
+        "percent": "7000",
+        "reputation": 176228976143,
+        "rshares": 6637319758,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 69855627,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52271094,
+        "voter": "okan31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327349908318,
+        "rshares": 363434619,
+        "voter": "soldier"
+      },
+      {
+        "percent": "2500",
+        "reputation": 1713402087003,
+        "rshares": 6986378593,
+        "voter": "tarekadam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585319699,
+        "rshares": 53096459,
+        "voter": "olisan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1646601994,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53048051,
+        "voter": "andibachi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 289256527,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 5732660222,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 862769940814,
+        "rshares": 60506836,
+        "voter": "verbal-d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51014644,
+        "voter": "marcel1965"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617740454942,
+        "rshares": 467018216,
+        "voter": "zombiedoll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 309195494,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5191056765,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99160090205,
+        "rshares": 166222327,
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1152805244,
+        "rshares": 51319229,
+        "voter": "sskorion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3689606685797,
+        "rshares": 6138400862,
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182561225,
+        "rshares": 1659673971,
+        "voter": "nil1511"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 1099542760,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2074375314979,
+        "rshares": 57699557,
+        "voter": "aksinya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234934386,
+        "rshares": 50756081,
+        "voter": "matts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199393028,
+        "rshares": 50173916,
+        "voter": "steemboatmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3232659559,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51393104,
+        "voter": "buit1989"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50367720,
+        "voter": "baboyes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17924136040,
+        "rshares": 450093003,
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4769178580,
+        "rshares": 80670418,
+        "voter": "adogslife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25582088193,
+        "rshares": 161158355,
+        "voter": "michael.collett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157609424,
+        "voter": "sjamayee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2781294502,
+        "rshares": 106050867,
+        "voter": "wastedsoul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163802438,
+        "voter": "kolhoznik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160293199,
+        "voter": "kellychen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 163311230,
+        "voter": "paras1432"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26878592,
+        "rshares": 163194880,
+        "voter": "lovemyking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1564414223,
+        "rshares": 131094648,
+        "voter": "tygeade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2548047,
+        "rshares": 159822180,
+        "voter": "steemichael"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89181815916,
+        "rshares": 146964842,
+        "voter": "vera.platonova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124730108,
+        "rshares": 162923354,
+        "voter": "elitklub"
+      }
+    ],
+    "author": "sirwinchester",
+    "author_reputation": 73944659327428,
+    "beneficiaries": [],
+    "body": "<html>\n<h2><center>Yesterday, we held the first STEEMIT MEETUP in Hamburg, Germany!</center></h2>\n<p><center>I had announced that I will organize a Meetup a few weeks ago, and it's amazing how many people showed up!&nbsp;</center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadal/img_0780.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p>Some people have<strong> traveled across Germany</strong> to attend, and even one of the only <strong>German whales</strong> @pharesim turned up! It's crazy to think that we all just knew each other from Steemit, and gathered together to exchange thoughts and ideas.&nbsp;</p>\n<p>It was an amazing and very informative evening of chatting and exchanging with like-minded people.</p>\n<p>Steemit is already a great platform with an awesome community, <strong>but meeting and connecting with these users in real life is even better.</strong><br>\nI have spent so much time on Steemit these last few weeks, that it felt really great to talk to people who were doing exactly the same thing, and talk about everything that's happening on Steemit, as well as our plans and ideas.&nbsp;</p>\n<p>I had also invited some people that were very interested in the concept of Steemit, but still had some questions before getting started.<br>\nSo this was both an exchange for Steemit \"experts\", as well as an educational event for new Steemit users! Over 10 new people have signed up to Steemit after the event.</p>\n<p><br></p>\n<p>We started off with some <strong>presentations</strong> of fellow Steemers, then had a little <strong>Snack break</strong>, continued with some demonstrations and a <strong>Q&amp;A</strong> with @pharesim , and then we talked in a relaxed atmosphere with a small group of people <strong>until the early morning hours.</strong></p>\n<p><br></p>\n<h2>Here is a little video Clip to summarize the evening:</h2>\n<p><center>https://youtu.be/C6zjHmBLVes</center></p>\n<p><center><em>For everyone that's in Germany and can't watch this Video because of Gema, <a href=\"https://vimeo.com/181327884\">CLICK HERE to watch the video on Vimeo.</a></em></center></p>\n<p><br></p>\n<h3>The evening began with some presentations.</h3>\n<p>I started with a little introduction and telling the story of how I discovered Steemit.</p>\n<p><center><img src=\"http://im.ezgif.com/tmp/ezgif-1971665009.gif\"/></center><br>\nThen we heard @fabio and @aaronkoenig talking about Cryptocurrency, Bitcoin and Bitfilm, @mrs.steemit presenting her thoughts about Steemit and how to approach new members, Team @erstklassich talking about or motivational speaker project, and last but not least @pharesim doing a little whale Q&amp;A.</p>\n<p><br></p>\n<p><center><img src=\"http://picload.org/image/rrwdadrl/225516810_16824298408775479072.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p>@fabio , talking about how he discovered Steemit and his connection to cryptocurrency,<br>\nand<br>\n@aaronkoenig, explaining basic principles of Cryptocurrency, Blockchain and Bitcoin, and also his project @bitfilm (A film competition on Steemit)</p>\n<p><br></p>\n<p><center><img src=\"http://picload.org/image/rrwdaddl/226617159_7463757454871938376.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p>@mrs.steemit sharing her thoughts on Steemit and how she has approached new Steemit members,</p>\n<p>Team @erstklassich talking about our motivational speakers project and how that connects with Steemit,</p>\n<p>and @pharesim answering the questions that the audience had to a witness / whale!</p>\n<p><br></p>\n<p>Hearing these stories and views from various people was very interesting, and it was followed by some socializing and chatting.</p>\n<h2>Here are some more impressions from the Meetup:</h2>\n<p><center><img src=\"http://picload.org/image/rrwdaddw/img_0608.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdaddr/225524011_12364742947699769041.jpg\" width=\"1280\" height=\"960\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadda/226613097_6355941482000593044.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadrw/225521560_7222838089252003561.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadri/225519178_3069428707073226626.jpg\" width=\"1200\" height=\"1200\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdaddi/img_0600.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdlagg/img_0690.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdldwp/img_0671.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdadaa/img_0668.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><center><img src=\"http://picload.org/image/rrwdoida/img_0666.jpg\" width=\"5184\" height=\"3456\"/></center></p>\n<p><br></p>\n<p><br></p>\n<h3><center>I wish even more people could have attended the Meetup, connecting with Steemers in real life is such a great experience.</center></h3>\n<h3><center>We will definitely repeat this event, and have already agreed to stay in contact! Thank you to everyone that attended, it was great to meet you and looking forward to re-connecting soon!</center></h3>\n<p><br></p>\n<p><br></p>\n<p>- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -<br>\n- <a href=\"https://www.instagram.com/sirtonywinchester/\">Instagram -</a></p>\n<p><a href=\"https://www.facebook.com/groups/397766613731804/\">- Steemit FB Group -&nbsp;</a></p>\n<a href=\"https://steemit.com/@sirwinchester\"><img src=\"https://img1.steemit.com/0x0/https://picload.org/image/rrpgppid/followbtn.gif\"/></a>\n<p><em><strong>\u00a9 Sirwinchester</strong></em></p>\n<p><br></p>\n</html>",
+    "body_length": 5780,
+    "cashout_time": "2016-09-10T15:17:06",
+    "category": "steemit",
+    "children": 94,
+    "created": "2016-09-03T15:17:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"life\",\"photography\",\"meetup\"],\"users\":[\"pharesim\",\"fabio\",\"aaronkoenig\",\"mrs.steemit\",\"erstklassich\",\"bitfilm\"],\"image\":[\"http://picload.org/image/rrwdadal/img_0780.jpg\",\"https://img.youtube.com/vi/C6zjHmBLVes/0.jpg\",\"http://im.ezgif.com/tmp/ezgif-1971665009.gif\",\"http://picload.org/image/rrwdadrl/225516810_16824298408775479072.jpg\",\"http://picload.org/image/rrwdaddl/226617159_7463757454871938376.jpg\",\"http://picload.org/image/rrwdaddw/img_0608.jpg\",\"http://picload.org/image/rrwdaddr/225524011_12364742947699769041.jpg\",\"http://picload.org/image/rrwdadda/226613097_6355941482000593044.jpg\",\"http://picload.org/image/rrwdadrw/225521560_7222838089252003561.jpg\",\"http://picload.org/image/rrwdadri/225519178_3069428707073226626.jpg\",\"http://picload.org/image/rrwdaddi/img_0600.jpg\",\"http://picload.org/image/rrwdlagg/img_0690.jpg\",\"http://picload.org/image/rrwdldwp/img_0671.jpg\",\"http://picload.org/image/rrwdadaa/img_0668.jpg\",\"http://picload.org/image/rrwdoida/img_0666.jpg\",\"https://img1.steemit.com/0x0/https://picload.org/image/rrpgppid/followbtn.gif\"],\"links\":[\"https://youtu.be/C6zjHmBLVes\",\"https://vimeo.com/181327884\",\"https://www.instagram.com/sirtonywinchester/\",\"https://www.facebook.com/groups/397766613731804/\",\"https://steemit.com/@sirwinchester\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T19:00:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 131139680731101,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1746.343 HBD",
+    "percent_hbd": 10000,
+    "permlink": "first-steemit-meetup-in-hamburg-germany",
+    "post_id": 1112112,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "First STEEMIT MEETUP in Hamburg, Germany!",
+    "title": "First STEEMIT MEETUP in Hamburg, Germany!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@sirwinchester/first-steemit-meetup-in-hamburg-germany"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 446491524573,
+        "rshares": 56552146057,
+        "voter": "fminerten1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7407974462660,
+        "voter": "steempty"
+      },
+      {
+        "percent": "4600",
+        "reputation": 8151223409709,
+        "rshares": 7743922580184,
+        "voter": "rainman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14423169571983,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40461646370697,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "1400",
+        "reputation": 13270505121655,
+        "rshares": 9024654368742,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7270934718663,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120823881116,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 903658154834,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 955547237819,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 304707236256,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3717560623,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1366085197760,
+        "rshares": 209125168098,
+        "voter": "steem-id"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4512963560,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836545296,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 6988007861700,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12481332844017,
+        "rshares": 1648795625161,
+        "voter": "steemychicken1"
+      },
+      {
+        "percent": "4000",
+        "reputation": 49280708331375,
+        "rshares": 2590155272571,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64607818458,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3745363549909,
+        "rshares": 64079611952,
+        "voter": "val"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1992338387,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256356620,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 39580133428,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1452601473655,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124209883737229,
+        "rshares": 1331198190646,
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 745373510191,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 585246886482,
+        "rshares": 80690179844,
+        "voter": "vip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1135475906992,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 17701813434,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747044457,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 347055943371,
+        "rshares": 414357548,
+        "voter": "grumlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160257208,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2607869395086,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 399850120693,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 20695739170,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 91827078269,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 67474894872,
+        "voter": "pnc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345705172,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 84752175156,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8467472206707,
+        "rshares": 22534917345,
+        "voter": "nikolai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1701451058212,
+        "rshares": 3560867980,
+        "voter": "mazi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8289316407,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 8549093805,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 13832117218,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 875162057,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 554084160,
+        "voter": "sunsallo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5134104564069,
+        "rshares": 50655692786,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046983790834,
+        "rshares": 3208539412,
+        "voter": "morning"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78056810253,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6750806281574,
+        "rshares": 90344487995,
+        "voter": "juanlibertad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 15464522800,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 170836582467,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1009682267545,
+        "rshares": 241453016290,
+        "voter": "leesunmoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5171467941,
+        "rshares": 24534315886,
+        "voter": "etimarcus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8604717232,
+        "rshares": 489114702,
+        "voter": "eatgrits"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 2516602969,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 81946124349,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 485266432,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3380310417590,
+        "rshares": 9897310096,
+        "voter": "mranderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5696495054,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2056130698,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 347538684630,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "500",
+        "reputation": 5414208804644,
+        "rshares": 1985132858,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7186758,
+        "rshares": 459952549,
+        "voter": "jeffanthonyfds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 3342731574,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3864679285504,
+        "rshares": 59223927709,
+        "voter": "avarice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 508314471,
+        "rshares": 603366563,
+        "voter": "walkingmage"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 20201603994,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57937290943,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 23511967149,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1192571560,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22378434861462,
+        "rshares": 223682916687,
+        "voter": "stino-san"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1787431173,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 757241932053,
+        "rshares": 371808665,
+        "voter": "edtorrez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3085996565,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29602129325,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 421703362290,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 570783738,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6886422212862,
+        "rshares": 45416460571,
+        "voter": "pixellated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404951009343,
+        "rshares": 18898061785,
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 254584445613,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16234753830016,
+        "rshares": 12013107301,
+        "voter": "thecryptofiend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11765473490257,
+        "rshares": 40287404686,
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 365694018,
+        "voter": "cjley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 11260827752,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 309925863,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85870977835,
+        "rshares": 6799149594,
+        "voter": "evan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379019004,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 151933693977,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34935156153627,
+        "rshares": 231631602196,
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 339982051793,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 50737326005,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 76218554853,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4356049611,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9389887938261,
+        "rshares": 8770878211,
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2636635441463,
+        "rshares": 6250725075,
+        "voter": "kingofchaos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 387218146988,
+        "rshares": 1486037286,
+        "voter": "benthegameboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4794047234,
+        "voter": "raff-delfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 21377142974,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 135526440615,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 696282704,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2108324979,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 151313598203,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 191362456407,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1487612496753,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23705317509,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 112950429384,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 240146584523,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18458799241134,
+        "rshares": 46163941246,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 98586802505,
+        "rshares": 356509174,
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8413352005,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 12772401769,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 59607501207,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 24845976067,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 59296970731,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 234933448,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 74131257427,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1826252654620,
+        "rshares": 3124603257,
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 188239143185,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 52093500846,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 299499765807,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4237212015,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 39865290374,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 4804447101,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122032656334,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 7756851652,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 10101627148,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 132655071824,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 213390961525,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91753292,
+        "rshares": 10295818487,
+        "voter": "manoami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10211833851,
+        "rshares": 1285715500,
+        "voter": "doesntmatter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 322495553,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 149731266,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332211157306,
+        "rshares": 1926175201,
+        "voter": "pipertomcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 53506579516,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 12408616589,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 486652600963,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10584865103,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3610613523,
+        "voter": "owdy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 76946377242,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 14091345831,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7725614667,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 616920199320,
+        "rshares": 15305263755,
+        "voter": "pino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 5124085338,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4393022921,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658407157113,
+        "rshares": 516433597,
+        "voter": "cherish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3320614763,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 187770538787,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4876469889,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 97667262071,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1509601460,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10077167197115,
+        "rshares": 38214691392,
+        "voter": "biophil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 8479287635,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 51605156715,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 77914375364,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114569371319,
+        "rshares": 247320271,
+        "voter": "aqris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9037187000,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 10168306524,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2210167101,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57790558311,
+        "rshares": 74715503526,
+        "voter": "stephencurry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9836722,
+        "rshares": 240222938,
+        "voter": "jesse5th"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 594203592,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 17310974719,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4996152370,
+        "rshares": 270329604,
+        "voter": "astorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 192124698,
+        "rshares": 225794427,
+        "voter": "chris0502"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 20755384335,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1500654518354,
+        "rshares": 40253682612,
+        "voter": "yongyoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 594833631949,
+        "rshares": 6775073251,
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 120620705591,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373524020,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5600683141,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12972669244,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 13846050753,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1910584570606,
+        "rshares": 2415655330,
+        "voter": "moonjelly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7305709760,
+        "rshares": 1463600004,
+        "voter": "slocum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 38295325599,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2424094754,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 196293057448,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1088208717034,
+        "rshares": 322651547057,
+        "voter": "xpilar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 14306641323,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1193366475012,
+        "rshares": 1462310422,
+        "voter": "madhatting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7167353076,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 2324876192,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 8983200296,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 70427611427,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2424409113,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 25628695064,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4830973273,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 200679300719,
+        "rshares": 266607399,
+        "voter": "lexinferno"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1464965875,
+        "rshares": 117695718,
+        "voter": "charbelnamm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 9416293870,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 207767589679,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270533787248,
+        "rshares": 780032261,
+        "voter": "mohammed123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4960761826,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69628175386,
+        "rshares": 452064608,
+        "voter": "quigua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 10907428587,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97517122081,
+        "rshares": 156827413,
+        "voter": "cire81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20531175873,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 702425502,
+        "voter": "favorit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54192730483,
+        "rshares": 225878684,
+        "voter": "ethanjames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136260156259,
+        "rshares": 172444925,
+        "voter": "kibela"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106557133024,
+        "rshares": 27072053846,
+        "voter": "solidgold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46683248,
+        "rshares": 111147984,
+        "voter": "ryland.townsend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 29014024080,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 4491631626,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11220431469,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1201523852,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15517908096,
+        "rshares": 59673355,
+        "voter": "okay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 5637635502,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2405411059,
+        "rshares": 159797889,
+        "voter": "vitz81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1946313851,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23830043508,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8097262355,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2589493888,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211462616494,
+        "rshares": 1011196107,
+        "voter": "letc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 513266800508,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 28746462244,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 32699512403,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2266924190,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2462877364101,
+        "rshares": 823550089,
+        "voter": "labradorsem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 698557363,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1291152324,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14083609085,
+        "rshares": 14436760417,
+        "voter": "capper2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 11737514005,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 229682900271,
+        "rshares": 113446972,
+        "voter": "bigsambucca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 61274515,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 8958644029,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2442169380,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 63412334,
+        "voter": "bayern000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 53662708495,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 303910488530,
+        "rshares": 7679228543,
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 229421947,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": -61439588,
+        "voter": "gost111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620633258672,
+        "rshares": 5328695539,
+        "voter": "lordvader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 727733310136,
+        "rshares": 61400550,
+        "voter": "mrdsoft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1934306097,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 634697761,
+        "rshares": 54984896,
+        "voter": "decred"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 9139588670,
+        "rshares": -64218845,
+        "voter": "johnhtims"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 54969817,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 3733986684,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3814152361740,
+        "rshares": 4916474731,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 77430111,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 276805892771,
+        "rshares": 537557601,
+        "voter": "jayfox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1062400368532,
+        "rshares": 69848769518,
+        "voter": "helikopterben"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1816126,
+        "rshares": 59723329,
+        "voter": "blubeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5475203821,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 158672055554,
+        "rshares": 62279229,
+        "voter": "pollina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 120171572,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2309373844,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1985439257,
+        "rshares": 87991131377,
+        "voter": "icfiedler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 3574312402,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 53588479,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28378684,
+        "rshares": 55945663,
+        "voter": "paolo75"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 17973584280,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 925612937,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5448891234,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 24215091196,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87897903,
+        "rshares": 59008544,
+        "voter": "sterl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12403401241,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6718277898,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12002684748,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1159303098899,
+        "rshares": 1499467547,
+        "voter": "roland.haynes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 11478715301,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56443564,
+        "voter": "radar12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8420918209808,
+        "rshares": 24537271972,
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 366529203171,
+        "rshares": 236422965,
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 57911021,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73450368692,
+        "rshares": 67699642,
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2212272906,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1654242144,
+        "rshares": 58155541,
+        "voter": "federicofragola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 115043900,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 11145697310,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4409431615794,
+        "rshares": 3614336062,
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 56679654,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 84754573,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55377253,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11501310305,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 182619937252,
+        "rshares": 59216026,
+        "voter": "coolty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12307778400,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 688853443,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4856527764,
+        "rshares": 58818711,
+        "voter": "m12r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1504301173829,
+        "rshares": 2125462805,
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 7076868967,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 111770582,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 4073388292,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320261717074,
+        "rshares": 1628427434,
+        "voter": "carlyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 52320760,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 58351459,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 55620764,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 2922171431,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": -51683826049,
+        "rshares": 59562278,
+        "voter": "moonman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3159011434913,
+        "rshares": 19561952912,
+        "voter": "disofdis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5467082592,
+        "rshares": 56042508,
+        "voter": "el1fan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2305186237,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 836954421307,
+        "rshares": 1250725025,
+        "voter": "crypt0mine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 632649253,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 56143941,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 3309390130,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 666711159,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 189407661696,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 55416927,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9117910781,
+        "rshares": 91152561,
+        "voter": "steemrussia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3533625673,
+        "rshares": 25813907256,
+        "voter": "dubi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 4685765533,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 73380620,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3495795823022,
+        "rshares": 41760420240,
+        "voter": "cnfund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35035670618,
+        "rshares": 52393318,
+        "voter": "plantbasedjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 364794611,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 71464098,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 52597837,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84928909264,
+        "rshares": 85301011,
+        "voter": "johnygt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 683829103,
+        "rshares": 54232595,
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18081706207,
+        "rshares": 52192153,
+        "voter": "shvedas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31479863,
+        "rshares": 51871529,
+        "voter": "bobbythegreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1238950467,
+        "rshares": 51814320,
+        "voter": "marianahunt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 176715413,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52774418,
+        "voter": "walteraze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 69131953,
+        "rshares": 50592846,
+        "voter": "goldenunicorn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 71251561,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 2392485349,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176228976143,
+        "rshares": 8258021605,
+        "voter": "mallorca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1770877346455,
+        "rshares": 577247264,
+        "voter": "changkun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1996672246136,
+        "rshares": 807542498,
+        "voter": "anomaly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 80106845,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14820051763,
+        "rshares": 54672126,
+        "voter": "cloudmining"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1305746304240,
+        "rshares": 2360647659,
+        "voter": "ekaterinka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90569119,
+        "rshares": 1008239952,
+        "voter": "steemsatoshi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 55523890,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 66564537,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19265611,
+        "rshares": 50996649,
+        "voter": "kokoliso1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22546106632,
+        "rshares": 52763087,
+        "voter": "lexikon082"
+      },
+      {
+        "percent": "10000",
+        "reputation": 264508777365,
+        "rshares": 107344655,
+        "voter": "shubham1696"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6189604518,
+        "rshares": 52291016,
+        "voter": "bkasante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8574428066,
+        "rshares": 51080933,
+        "voter": "shivayoga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1398865101,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6508583499,
+        "rshares": 50827953,
+        "voter": "gaborondix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 617955620301,
+        "rshares": 583302856,
+        "voter": "thebiggestidea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50238161,
+        "voter": "robertdpickett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155435909,
+        "voter": "duckfever"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "**Currently, there are two ways to get a STEEM Account.** The first is to sign up for Steemit with a Reddit or Facebook account, the second is to create an account using CLI_WALLET or Piston and have the account **permanently linked to your own account.**\n\nNeither option really allows you to be anonymous. Want to post controversial posts, or say something that would otherwise be illegal in your country? (e.g. poor free speech laws) Then Anonsteem is here to help.\n\n## Introducing: @anonsteem\n\n![](https://i.imgur.com/Y6QDDbD.png)\n\nPUBLIC INTERNET: [anon.steem.network](https://anon.steem.network/)\n----\n\nTOR: [steemlohs6air4h2.onion](http://steemlohs6air4h2.onion/)\n----\n\n----\n\n**So what actually is this?**\n\nAnonSteem allows you to purchase an account using either Bitcoin or Litecoin, and it will be created by the @anonsteem account within a minute of payment.\n\nTo protect your privacy, there are no IP logs, we have a TOR hidden service, and we allow you to remove your keys from our server as soon as you create the account.\n\n![](https://i.imgur.com/4aa6tR7.png)\n\nWe give you detailed instructions on changing your keys after creating the account, so you can be sure we're not just going to steal your account later on.\n\nHow long does it take to get an account?\n-----\n\nTransactions are scanned once a minute, and we accept 0 confirmation transactions. This means you'll most likely have your account within 1-2 minutes of sending the payment, regardless of which coin you paid with.\n\nCan I pay with STEEM?\n----\n\nWe don't accept STEEM directly, as that would ruin your privacy. However, if you REALLY want to pay with STEEM, you can send it via [ShapeShift (precise mode)](https://shapeshift.io/#/inputs/2) to the BTC or LTC address you get during payment.\n\nDoesn't this service mean more spambots?\n----\n\nWe don't have any plans to allow en-masse account creation. Every order has to be placed one at a time, with individual payments. Someone looking to create spam bots would most likely look elsewhere.\n\nAnonsteem is targeted at persons or groups looking for one, or a few accounts, with no social media link, and no third party tracking.\n\n**HELP - my transaction expired?** - The 15 minute limit is just to avoid us checking transactions for abandoned orders. If you've already paid, just PM me on SteemitChat, or send me an email (bottom of the anonsteem page) with your order ID and I'll reset the expiry.\n\nTry it out at [anon.steem.network](https://anon.steem.network)\n----\n\nDo you like what I'm doing? Follow me, and [vote for @someguy123 to be a witness](https://steemit.com/~witnesses)\n====",
+    "body_length": 2607,
+    "cashout_time": "2016-09-05T21:00:18",
+    "category": "steemit",
+    "children": 58,
+    "created": "2016-08-29T21:00:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"bitcoin\",\"litecoin\"],\"users\":[\"anonsteem\",\"someguy123\"],\"image\":[\"https://i.imgur.com/Y6QDDbD.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-29T22:14:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 119299865028571,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1520.901 HBD",
+    "percent_hbd": 10000,
+    "permlink": "anonsteem-create-anonymous-steem-accounts-without-social-media",
+    "post_id": 1046758,
+    "promoted": "76.500 HBD",
+    "replies": [],
+    "root_title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "title": "ANONSTEEM - Create Anonymous Steem Accounts without social media",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28860514021,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 391426812318,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14120650654273,
+        "voter": "summon"
+      },
+      {
+        "percent": "7000",
+        "reputation": 13270505121655,
+        "rshares": 45117432600399,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6518146212756,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1049211085828,
+        "rshares": 5854150614156,
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16685610555705,
+        "rshares": 20635756969526,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 107349543567,
+        "voter": "sandra"
+      },
+      {
+        "percent": "500",
+        "reputation": 20297981245452,
+        "rshares": 396806428091,
+        "voter": "abit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3093545084,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3755057743,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703501029,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 53181933411,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25493341985045,
+        "rshares": 49249621989,
+        "voter": "simba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1658107144,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213538362,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 36659478835,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 23799202672,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 3341577368,
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1042255270764,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621948259,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 945666355,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2696250071528,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 43444094205,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25112072900487,
+        "rshares": 187994716064,
+        "voter": "gardenlady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19959120564829,
+        "rshares": 30514007949,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287931874,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11006097418580,
+        "rshares": 47041466386,
+        "voter": "tshering-tamang"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 4226306800,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 120712992,
+        "rshares": 1645694497,
+        "voter": "radium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 797026378393,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45649146893,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2053344329,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 326280015954,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 7260345362,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 627954645291,
+        "rshares": 3987500390,
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1802719482,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 373944484737,
+        "rshares": 1666726555,
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9084038135515,
+        "rshares": 38634162189,
+        "voter": "nphacker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 463562817,
+        "rshares": 604174881,
+        "voter": "ethan-castle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 60049910,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 9555139442,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 71100938161,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 10654121065,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 393603233,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1544049507187,
+        "rshares": 13824695928,
+        "voter": "syadastinasti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 361661182474,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 52331004969,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3129809843371,
+        "rshares": 20054955418,
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 449208322811,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 212451198738,
+        "rshares": 393016225,
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 903637957,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1735608906,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1222010452191,
+        "rshares": 3452699820,
+        "voter": "antizvuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 7265953407,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686432621235,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4581391356317,
+        "rshares": 10822822886,
+        "voter": "romaan-namoor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 2671348291,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 52117602552,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4905665806,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 11899711089,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3148690478580,
+        "rshares": 8361700931,
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 148396198082,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1188956981766,
+        "rshares": 3755253381,
+        "voter": "cultura.bitcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 83555712,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502465820159,
+        "rshares": 30927136868,
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 86951139,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736644764370,
+        "rshares": 1230200541433,
+        "voter": "renohq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 125119189797,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 32924787942,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 75390909382,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1089147151331,
+        "rshares": 1788522523,
+        "voter": "incomemonthly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2200070551939,
+        "rshares": 10616441877,
+        "voter": "fogspam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24914308822,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 10333666419,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 1389920428,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10522996718,
+        "rshares": 128892647775,
+        "voter": "bonface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 638960304,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 16392109417,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 20232798047,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9261130965,
+        "rshares": 231415584,
+        "voter": "m34ndy0u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 258212335,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1447627612177,
+        "rshares": 3843585250,
+        "voter": "adamt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2369871956,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34932026701489,
+        "rshares": 152781835168,
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 6880369404,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4727020133419,
+        "rshares": 2494221700,
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61224832002,
+        "rshares": 124361678,
+        "voter": "ellamaeamor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 57168180522,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715993081769,
+        "rshares": 455428831,
+        "voter": "bitlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 109399116,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1014720738596,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 1769063236,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 194724816539,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 459170283182,
+        "rshares": 316752015,
+        "voter": "xcode18"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 898853087,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 22280046707,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3042553840,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 3915315366,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1665681200140,
+        "rshares": 520868206,
+        "voter": "kaykunoichi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 17319529998,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 168036530,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19410587962,
+        "rshares": 1953557909,
+        "voter": "andreynoch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 791537526,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 23315521183,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2403063642,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2871713285,
+        "rshares": 66201979,
+        "voter": "lilong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34175383,
+        "rshares": 211945178,
+        "voter": "elizabetemaia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 39673780208,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 31910148976,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97845484474,
+        "rshares": 33658993502,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 53249660022,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2221322487,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1653800202958,
+        "rshares": 408370540949,
+        "voter": "glitterfart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 1157211304,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 760484966,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 62034512,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6761581030,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1923090938,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 10342319613,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 413797518320,
+        "rshares": 18100015422,
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 66743765623,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 961957559,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 57638744,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 758193571,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1710319,
+        "rshares": 61796362,
+        "voter": "drmedwurst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 612274223,
+        "rshares": 20794149830,
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5108049297663,
+        "rshares": 2283696091,
+        "voter": "milaoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 1512118630,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 5147101628,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34657029528,
+        "rshares": 67397958,
+        "voter": "filmaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 577231315,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 979995628,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 53401673,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 109008307,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2008043269,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 951754559495,
+        "rshares": 1205296670,
+        "voter": "laconicflow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 505219265255,
+        "rshares": 58355386,
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 52786041,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401217888,
+        "rshares": 220036295,
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2548941325472,
+        "rshares": 3434338886,
+        "voter": "alisonleigh21"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1228265260257,
+        "rshares": 883932853,
+        "voter": "rittr"
+      },
+      {
+        "percent": "10000",
+        "reputation": -26579648666,
+        "rshares": 55806010,
+        "voter": "garri74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12471794375,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 3647430855,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 318687464222,
+        "rshares": 89149760,
+        "voter": "thefeature"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1713289166,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6263695706748,
+        "rshares": 5521112640,
+        "voter": "steemitpatina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 589293675197,
+        "rshares": 1583489986,
+        "voter": "seedsofliberty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 329220009,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1652411712319,
+        "rshares": 5153127499,
+        "voter": "sharingeverybite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 40002373821,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54247105,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 3885554239,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 11730632423,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 23457317187,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 14439599299,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 7469779593,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 1217128011,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48699492408,
+        "rshares": 86833062,
+        "voter": "smi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 665747360,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124740159878,
+        "rshares": 55383044,
+        "voter": "bobbins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 459733030138,
+        "rshares": 140120300,
+        "voter": "judyd100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818977100,
+        "rshares": 53732571,
+        "voter": "jimking001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 275589285,
+        "rshares": 55887769,
+        "voter": "charzard10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34627330410,
+        "rshares": 71903196,
+        "voter": "ender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 78381272391,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": -248081771849,
+        "rshares": 52540446,
+        "voter": "chuckleberry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2483815670577,
+        "rshares": 2094496802,
+        "voter": "richardjuckes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 346099916175,
+        "rshares": 157479257,
+        "voter": "steemreporter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 186120161,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 63856110,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142829147182,
+        "rshares": 369359852,
+        "voter": "rucoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 837704,
+        "rshares": 53613080,
+        "voter": "abdology8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4238289447,
+        "rshares": 55317779,
+        "voter": "theblondepoptart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4408882617025,
+        "rshares": 75074905,
+        "voter": "jillwirt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4121072004,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8443042672,
+        "rshares": 52905613,
+        "voter": "alkamyst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 127717490,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 1829632070,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38177377,
+        "rshares": 51007656,
+        "voter": "maximsm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84715240387,
+        "rshares": 72253303,
+        "voter": "regeneration"
+      },
+      {
+        "percent": "10000",
+        "reputation": 220589084,
+        "rshares": 103650339,
+        "voter": "koalax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2597167689048,
+        "rshares": 52369726,
+        "voter": "steemitmag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 600421940,
+        "rshares": 52300316,
+        "voter": "teryani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52205583,
+        "voter": "mahilu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50099463,
+        "voter": "bazzonarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50973868,
+        "voter": "tagonist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51250382,
+        "voter": "rony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1238157813,
+        "voter": "robotev"
+      }
+    ],
+    "author": "shenanigator",
+    "author_reputation": 4818398060873,
+    "beneficiaries": [],
+    "body": "## Please bear with me, this is going to be a long post, as I've spent 60+ hours on it over the past five days. If you read through it, you'll learn a lot!\n\nhttp://i.imgur.com/fnQJ8rVm.jpg\n\n**Follow me to get updates on my subsequent drafts!\u200b**\n\nLast week, @ned [posted about writing a Steem FAQ page.](https://steemit.com/steem/@ned/the-first-phase-of-the-steem-faq-and-wikee-consolidation-of-knowledge)\n\nI promptly contacted him volunteering to put the FAQ together. In case some of you Steemians are skeptical, here\u2019s proof I\u2019ve been in touch with him:\nhttp://i.imgur.com/u2Sf5rfl.png\n\nRather than having a 40-page FAQ, I\u2019d eventually like to see it organized something like this screenshot. I\u2019ll have to see if the Steemit team agrees with me.\nhttp://i.imgur.com/ByOQ9vdl.png\n\nAfter working on this nearly non-stop for the last five days, doing a lot of research, and a significant amount of writing, I finally have a very rough draft. \n\nMore editing is required. Some answers are too wordy, and others don\u2019t give enough information. Some questions have no answer at all. The document needs to have a consistent voice throughout, and I think it mostly lacks that. The organization needs works. Some questions are likely redundant, and other important everyday issues weren\u2019t even put on here, or so I presume. These are all legitimate criticisms, and I deserve those rebukes.  \n\n## Here\u2019s where you come in, it would be incredibly helpful if you could look for the following things:\n**- Is everything is factually correct?** Correct answers are more important than anything else; we don\u2019t want to spread misinformation. I certainly don\u2019t know everything and in my research, a significant amount of conflicting information was found.\n**- Are there any questions that need to be on here, but aren\u2019t?** I\u2019d rather have too many questions than too few because we can always delete some later.\n**- Please answer the questions that haven\u2019t been answered, (mostly in the Security and Technical categories).** My knowledge in these areas is lacking and best left to experts.\n**- Are any answers incomplete, misleading, confusing or wordy?**\n**- Suggestions to make them better?**\n**- Grammatical errors?**\n**- Suggestions for better organization? More categories? Sub-categories? Remove categories?**\n**- Particular questions moved to another heading?** \n**- Are any questions redundant?**\n**- Suggestions for more words in the \u201cSteemit Lingo\u201d section?**\n**- Do you have better, more concise answers?**\n**- Are there excellent Steemit articles we can link to for particular questions?**\n**- Any other advice?**\n\nI\u2019ll try to provide a list of just the questions from the FAQ in the comments, with the **unanswered ones in bold.**\n\n**Thanks in advance for your help!**\n\n\n\n# Steemit FAQ\nCompiled and partially written by @shenanigator with the help of a lot of people.\n\nHuge thanks to the following users, I noticed your names repeatedly appearing in the comments of @ned\u2019s recent post. Your questions and answers were extremely helpful!\n@alexgr - Seriously, your expert, well-written answers helped a ton! Thank you!\n@kakradetome - So many comments and thoughtful answers! Thank you!\n@innuendo - Asked quite a few questions I wouldn\u2019t have thought or even known to ask, thanks!\n@minion - Gave a lot of helpful answers and links, thanks!\n@samupaha\n@anduweb\n@timcliff\n@mrosenquist\n@team-leibniz\n@wingz\n@frystikken\n@bhavnapatel68\n@ultimus\n@elyaque\n\nAlso, thank you to everyone else who gave their time as well, it\u2019s appreciated! Sorry if I missed anyone who participated a lot. I probably did, since there were 450+ comments.\n\n\nAlso, thanks to everyone who had previous work I ended up linking to:\n@donkeypong\n@cryptoctopus\n@stellabelle\n@steemship\n@ash\n@steemrollin\n@wingz\n@shredlord\n@hisnameisolllie\n@dantheman\n@knozaki2015\n@nanzo-scoop\n@piedpiper\n@psylains\n@b0y2k\n@craig-grant\n@billbutler\n@algimantas\n@minion\n@steemitblog\n@liberosist\n@tuck-fheman\n@pfunk\n@artist1989\n@steemapp\n@jesta\n@g-dubs\n@firepower\n@jl777\n@alexgr\n@shenanigator\n\n\n# Steemit Basics\n\n## What is Steemit.com?\nFounded by @ned and @dan, Steemit is a blockchain-based social network that rewards users for posting and voting. The technology is advanced, but the proposition is simple: Blog, earn Steem.\n\n## Who are @ned and @dan?\nNed Scott, CEO @ned\nhttps://www.linkedin.com/in/nedscott\n\nDaniel Larimer, CTO @dan @dantheman \nhttps://www.linkedin.com/in/daniel-larimer-0a367089\n\n## What is the difference between Steem and Steemit?\nSteem is the name of the entire blockchain-based & censorship-resistant system. Steem is also a name for the system\u2019s value token (currency).\n\nSteemit, Steemit.com and Steemit, Inc. are all names for a privately-owned company and a website which offers people a secure way to interact with Steem, the system. Steemit is simply an interface to view the blockchain content of Steem.\n\n## Can I earn money on Steemit? How?\nBy sharing your original and unique posts that people want to upvote and providing value to others and the community. You can also earn rewards by curating - upvoting content that later becomes popular (although Steem Power is necessary to make money this way). Additionally, you can earn money simply by holding Steem Dollars. Currently, it is 10% APR, but the APR can change.\n\n## \u200bFrom where does the money come?\nThe currency of Steemit.com is Steem. The value of Steem comes from liquidity providers, investors, and traders on exchanges. The network continually creates new Steem, and some of the newly-created currency gets transferred to users who add value to Steemit.\n\nSteemit is a decentralized, incentivized content and curation ecosystem based on token seignorage with set and specific rules. The \"money\" at its core is like game tokens, distributed to creators and curators as rewards for successfully playing the game. What makes the system robust, is that the tokens, traded on markets, have a real-time value. The markets allow Steem Tokens to demonstrate their subjective value. This way, when one has One Steem Token, that person can know what the value of their token is worth to other people. It's similar to how someone playing a video game could obtain a rare item by playing the game. If they have the scarce item, then they could potentially sell it on video game item markets. Think of Steem as a game system for content, where the rewards people earn are video game tokens that have real market value and are readily tradable for Bitcoin and USD.\n\nFurther background for understanding is that Steemit is a website much like Reddit. However, it is different in that it pulls its information from a blockchain and cryptocurrency database called Steem rather than a centralized, private database. In this way, Steemit is also analogous to other blockchain-based businesses such as Blockchain.info, which pulls its data from the Bitcoin network. Regarding its difference from Steemit, Steem is a cryptocurrency and the blockchain database that rewards posters and voters for bringing new information to the community. It is an independent entity from Steemit. The Steem networks' awards paid to bloggers and curators is mining seignorage, and it works the same way miners are paid to secure the Bitcoin network. Rewards paid to bloggers do not come from Steemit Inc nor investment in Steemit Inc. There has been more than $3 million dollars worth of Steem tokens paid by the Steem blockchain to these creators and curators. Steemit does not and will not ever compensate the contributors of the Steem network for curating and creating content. Steemit is not a middleman to any of the blockchain processes, and the technology remains completely open source and transparent for anyone to audit and verify (Many software engineers are currently leveraging the open-source code to build their applications on Steem. There are more than sixty so far.). \nClaims that there is somehow a scam or that money is from coming from new investment in Steemit are categorically false. Rather, the natural inclination of the platform Steem is to continue building and improving an incredibly exciting social media network that is decentralizing the value of the web and genuinely betters the lives of thousands of people around the world.\nhttps://steemit.com/steem/@steemrollin/steem-where-does-the-money-come-from\n\n## I don\u2019t have the skills to create quality original content, why should I join?\nDon\u2019t sell yourself short; everyone is good at something. Okay, you don\u2019t write well. That\u2019s fine! Are you a good photographer? Start a blog displaying your photos. Do you know a lot about football? Start a fantasy football blog, giving your best predictions each week and become the expert people seek for advice on their team that week. Maybe you are interested in arts and crafts? Display the work you\u2019ve recently done. Video game connoisseur? Write reviews and tips for your favorite games. Can you make food look beautiful? Start a food blog!\n\nIf you honestly cannot think of anything you are good at or interested it, keep it in mind. Something will come to you. Until then, read the posts on Steemit and enjoy the great, fresh content! Even if you don\u2019t like to read content, you will probably benefit from having a Steem wallet because it gives you a fast, cheap and easy way to transfer money around the world without restrictions.\n\nFurthermore, Steemit gives you access to the earliest stage of this new exciting web technology and allows you to participate by doing things you may have already been doing! For example, posting and voting on content around the internet. Steemit is more than *blog to earn*. It\u2019s social networking. Come and enjoy your time on the internet, let your voice be heard and join others curating a great place for content and networking.\n\n## Why is the money there in the first place?\nThe money is there primarily because of high user growth. The 'Steemit' network effect is beginning to take hold, and speculators can see it growing further.\n\nThe key for Steemit\u2019s success is arguably to reach a critical mass of active users, allowing it to take advantage of the network effect. Once that happens, everything else will likely become a self-fulfilling prophecy. The Steem Dollar becomes a relatively stable currency supported from multiple sources of demand and supplied by the Steemit printing press.\nhttps://steemit.com/steemit/@wingz/instead-of-asking-where-the-money-comes-from-ask-why-it-s-even-there-in-the-first-place-digging-deeper-into-the-steem-economic\n\n## Is Steemit a scam?\nA scam usually starts with you having to give money to someone else. Steemit gives you money just for signing up and doesn't require you to invest anything if you don\u2019t want to; most users don\u2019t. Steemit does require effort, however. Write and share your unique and original content, if the community upvotes it enough, you get paid. How is that a scam?\n\n## How does Steemit, Inc. make money?\nSocial media companies can have tremendous market values without actually making any money because investors are forward-looking. Facebook, Instagram, Tinder and Snapchat, what did they all have in common? At one time, they were all losing massive amounts of money each year, while being valued in the billions of dollars. Why? Because they had a vast user base and investors know there are many ways to monetize a company with a large active user base.\n\n## Wait, there are multiple currencies in Steemit? What is STEEM, Steem Power, and Steem Dollars?\nAll three currencies in Steem fall under the umbrella of Steem Tokens. All three types of Steem Tokens perform a vital role in the Steem ecosystem. They are:\n\n**STEEM** - The most liquid form of currency in the platform. It should only be held for short-term trading because you will be diluted 50% per year due to ever-increasing supply. You may convert STEEM into Steem Power, Steem Dollars, or another currency altogether.\n\n**Steem Power** - Having Steem Power is similar to owning shares in a company. It is a measurement of how much influence you have on the platform and determines how much your vote is worth. It is important to note, when you decide to cash out your Steem Power (Power Down), you will get paid equal payments of STEEM for the next 104 weeks, taking two years to cash out your Steem Power completely.\n\n**Steem Dollars** - A smart contract promising you will get about $1 USD worth of Steem at the current market price. One Steem Dollar is always worth around One US Dollar, although it can vary a little. Steem Dollars must be turned into STEEM before they can be \u201cPowered Up\u201d into Steem Power. You may also convert Steem Dollars to another currency outside the Steem economy.\nhttps://steemit.com/steemit/@shredlord/steem-steem-dollars-and-steam-power-explained\nhttps://steemit.com/steemit/@donkeypong/still-confused-by-steem-steem-dollars-and-steem-power-the-power-plant-analogy\n\n## If Steem consistently creates new currency, how much am I being diluted by holding STEEM, Steem Power, and Steem Dollars?\n\n**STEEM** - When the curve stabilizes, it will be a 50% dilution on Steem. On an annual basis, there will be 100% increase of Steem in existence. The numbers are higher now because Steem is still in distribution mode. \n\n**Steem Power** - Steem Power you hold increases at 90% per year, versus the 100% increase in Steem supply, so the dilution of Steem Power is the difference between these two. If you hold Steem Dollars and get zero curation awards, you will be diluted by 10% per year. Once again, the numbers are different now while Steem is in distribution mode.\n\n**Steem Dollars** - No dilution, rather they gain 10% interest per year. This interest rate could change.\nhttps://steemit.com/steemit/@hisnameisolllie/steem-dilution-rate-explained-currently-much-higher-than-you-might-think\n\n## Why won\u2019t Steem Dollars become inflated?\nThe Steem Backed Dollar will always have sufficient backing regarding Steem tokens to ensure a price near 1 USD. It does not matter if the Steem token is inflated or devalued. More Steem tokens will then be used to back the Steem Backed Dollar.\nhttps://steemit.com/steemit/@dantheman/steem-dollars-have-limits\n\n## What does the little number next to my name mean?\nThe number is your reputation score. It\u2019s a way of measuring how much value you have brought to Steemit. \n\nIt uses a log10 scale, meaning:\nA score of 30 is 10x better than a score of 20\n40 is 10x better than 30\n50 is 10x better than 40, and so on\n\n## What is Powering Up and Powering Down?\n**Powering Up** - If you wish to gain more influence in the network, you need it increase your Steem Power. Powering Up is the process of turning your Steem into Steem Power.\n\n**Powering Down** - If you have Steem Power, and wish to cash out, you can begin to Power Down. While powering down, the network has calculated your Vests, which are a stable measure of STEEM supply. The system will transfer 1/104 of your Steem Power, computed as Vests, to STEEM each week. One can continue to curate and earn curation rewards while powering down.\n\n## I just signed up, are there any steps I should take before I get started?\nYes! First and foremost, your account is worth money, so you should secure it.\nhttps://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n\nhttps://steemit.com/steemit-guides/@pfunk/a-user-s-guide-to-the-different-steem-keys-or-passwords\n\nSecondly, we urge you to read the rest of the FAQ, so you know the ins and outs of Steemit. It may seem like a daunting task, but we promise you will come out the other end a much more knowledgeable Steemian. Knowledge is power, and with your new superpowers, you are significantly more likely to achieve a high level of success.\n\n\n# Account Management\n\n## How do I improve my reputation score? What hurts my score?\nTo put it simply, add value to the Steemit community to improve your score. But harm the community and your score will suffer.\n- Create and post quality original content. It\u2019s all about quality, not quantity.\n- Engage in discussions.\n- Up-vote thoughtfully. Don\u2019t upvote junk, only vote up quality content.\n- Build your following.\n- Avoid bad behavior; it can get you flagged.\nhttps://steemit.com/steemit/@stellabelle/how-i-achieved-the-1-reputation-ranking-on-steemit-and-how-you-can-improve-yours\nhttps://steemit.com/steemit/@knozaki2015/steemit-has-introduced-a-new-reputation-score-what-is-it-and-how-can-you-boost-up-your-score\n\n## Do inactive accounts ever get deactivated? If so, how long until removal?\nThere is no such rule addressing that to this date, so currently once the account is created it can not be closed or deactivated.\n\n## Why are only the 20 most recent comments shown in a user\u2019s profile? If due to a technical limitation, will this issue be overcome?\n\n## Where can I see who I follow and who follows me?\nGo to your Steemit profile by clicking your avatar. Then click on the underlined \u201cfollowers\u201d (people who follow you) or \u201cfollowed\u201d (people you are following).\n\n## I come across a lot of posts I would like to save for later, can I bookmark a post within Steemit?\nBookmarking posts is not an option at this time, but until then, there is an excellent Google Chrome extension called Bookmark Manager that you may find useful.\nhttps://steemit.com/steemit-howto/@ash/two-great-chrome-extensions-i-use-to-save-and-manage-great-steem-posts\n\n## How can I auto-post my Steemit blogs to Twitter and Facebook?\nYou can set this up through ifttt.com. Step-by-step instructions:\nhttps://steemit.com/steemit/@ash/how-to-auto-post-your-steem-posts-to-twitter-fb-everything\n\n\n# Payouts\n\n## Why does my time until payout keep changing? When do I get paid?\nAfter you make a post, a 24-hour timer starts counting down. Every time you get upvotes, there is time added. The amount of time added depends on how much Steem Power the curator possesses. A small fish like @shenanigator might add a few minutes to your clock with an upvote, whereas a whale like @ned will add hours.\n\nNearly all first payouts occur within 48 hours of posting. If you get additional upvotes after the first payout, you will receive a second payout four weeks later.\n\nDistribution of rewards for all curation and comments happen at the first payout.\n\n## Why does my payout estimate keep changing when I\u2019ve received no new upvotes or flags?\nThere is only a select amount of Steem to be dispersed in a rolling 24 hour period. At any given time, the system is making an estimate of how much you will be paid based on what percentage of Steem Power-adjusted votes your post possesses.\n\nLet's pretend a piece of content is currently worth $5. But then, many other articles suddenly become highly-upvoted. The money to pay those popular posts needs to come from somewhere, so a portion of your post's value is reallocated to these newly-popular posts. Now your post may only be worth $4.\n\nAnother reason your payout will change is price movements in the seven-day moving average of Steem.\n\n## My post said I was going to get paid $500, why did I only make $377?\nThe value appearing on your post is not the amount of your payment. You, as the author, are guaranteed at least 75% of the total. As much as 25% goes to the curators (the people who upvoted your post).\n\n## How do reward distributions work?\nPayouts are separated into the author reward and the curation reward:\nAuthor is guaranteed at least 75%. Curators get up to 25%.\nAuthor reward are paid out:\n50% in Steem Dollars\n50% in Steem Power\nCuration rewards are paid out:\n100% in Steem Power\n\n### What determines how much of the payout goes to the author vs. curator?\nIt depends on how long after posting the vote was cast, using a linear function:\n- If a post is upvoted the moment it's posted, 100% goes to the author\n- If a post is upvoted 30 min after posting, 100% of the curation award goes to the curator.\n- Between 0 and 30 minutes, each moment that passes, more of the reward goes to the curator.\n- At 15 minutes it's a 50/50 split.\n- At 3 minutes, 90% goes to the author and 10% to the curator\n- At 27 minutes, 10% goes to the author and 90% to the curator\n\n### I\u2019m upvoting posts at the right time, why am I not getting any curation awards?\nCuration awards are based on the **square** of your Steem Power\nExample: \nBob has 10 SP, the square is 100\nJim: 100 SP, the square is 10,000\n*In this example, Jim has only 10 times more Steem Power than Bob, but Jim will get 100 times higher curation award than Bob, all other things equal.*\n- Double your Steem Power, get 4x the curation award\n- Quadruple your Steem Power, get 16x the curation award\n- Increase your Steem Power by 100x, get 10,000x the curation award\nhttps://steemit.com/steem/@shenanigator/re-asksteem-asksteem-can-someone-explain-steemit-payouts-20160817t073736913z\n\n\n## Steem rewards users for commenting and upvoting. Why not for sharing?\nBlogging Adds value. Commenting adds value. Upvoting (in the form of spotting good content quickly) adds value. If sharing a link is found to add value, it will probably be implemented as a function and incentivized.\n\n\n## Can I choose to be paid in 100% Steem Power?\nAt this time, it is not an option.\n\n## Now that I earned some Steem Dollars, what can I do with them?\nYou have a few options:\n- Visit a Steem marketplace (Note: Do any exist yet?)\n- Hang onto them\n- Cash them out\n- Buy STEEM\n- Power Up\nhttps://steemit.com/steemit/@piedpiper/so-you-just-earned-your-first-steem-dollars-now-what\n\n\n\n# Money\n\n## How can I invest in Steemit?\nInvesting in Steem Power is the closest thing to buying \u201cshares\u201d of a company, or in this case the Steem blockchain. Increase your Steem Power and you\u2019ll have more influence on the network. You have the option to invest your time to earn Steem Power by commenting, curating and posting. You also have the opportunity to make a monetary investment.\n\n## How do I get more Steem Power?\nIf you have Steem Dollars, you can convert them to Steem from your wallet. Once you have Steem in your wallet, click Power Up to turn it into Steem Power.\n\nIf you don\u2019t already have Steem or Steem Power in your wallet, you\u2019ll first need some Bitcoin or another cryptocurrency. You may purchase Bitcoin on various exchanges. A few popular Bitcoin exchanges are Coinbase.com, Circle.com, and Localbitcoins.com. Once you have your bitcoin:\n- Click the three horizontal lines in the top right corner of Steemit.com\n- Click \u201cBuy Steem\u201d\n- Send the amount you want to purchase to the address on the screen.\n\nHere are a few other tutorials on how to buy Steem and transfer it to Steemit:\nhttps://steemit.com/steem-tutorials/@psylains/steem-tutorials-2-how-to-buy-steem-and-transfer-them-to-steemit\n\n\n\n\n## How do I withdraw money?\nYou can withdraw money many ways. Here are step-by-step tutorials for several different options:\n\nSell Steem Dollars via Poloniex:\nhttps://steemit.com/steemit/@ash/steemit-how-to-sell-steem-dollars-via-poloniex-newbie-friendly\n\nTo withdraw Steem Dollars to a bitcoin address check out this video:\nhttps://steemit.com/steem-help/@piedpiper/how-to-withdraw-your-steem-dollars-in-less-that-a-minute\n\nConvert Steem Dollars to bitpay debit card (USA ONLY):\nhttps://www.youtube.com/watch?v=_Rlf23gAGAw\n\nConvert Steem Dollars to WIREX debit card (USD EURO & GBP Supported)\nhttps://steemit.com/money/@b0y2k/convert-your-steem-dollars-to-physical-money-to-spend-or-withdraw-anywhere\n\n\n\n## Why should I power up and not cash out? \nEveryone has different priorities. Some may want to power up to increase their voting influence and curation awards. Others may want to cash out. It\u2019s strictly a personal choice.\n\n\n## Is it true that payout money is coming from new investment in Steem?\nIt is highly misleading to say so. When you cash out, you effectively decrease your investment in Steem. At the same time, an individual increases his investment in Steem. Therefore, it is not fair to only mention the \"new investment\" and skip the fact that simultaneously a current investment ceases to exist.\n\nPayout money is always in the form of Steem tokens. For your convenience, and to hedge against price volatility, those tokens are packaged as Steem Dollars.\n\nThese tokens have value since they are like shares in an enterprise which has a real market value. When you cash out, you sell those tokens (shares), and somebody else buys them from you. Therefore, these are just shares of a company changing hands: one person exits, the other takes their place.\n\nLet's consider an example: If Mark Zuckerberg wanted, he could reward the most popular Facebook pages with shares of the Facebook. Those users could then cash out by selling their shares, and somebody would surely buy them. This hypothetical scenario is akin to the daily happenings in Steem.\n\n\n## How can I make a profit by powering up?\nPowering up does not ensure that you will automatically benefit. Profiting is contingent on how the price of Steem changes over a given period as well as how much Steem Power you earn as a curator.\n\nPowering up (converting Steem to Steem Power) allows one\nIncrease their voting power and claim curation rewards\nProtect against dilution (90% protection compared to the running inflation rate)\n\n\n\n## How do I send money to another user?\n\nClick on your avatar to get the drop-down menu, select \u2018wallet.\u2019\nClick the down arrow where your Steem Dollars are displayed\nIn the drop-down menu click \u2018Transfer.\u2019\nIn the box \u2018To\u2019, type in the username of who you want to send the Steem Dollars\nType your password to authenticate\nCheck your history to confirm your transfer\n\nhttps://steemit.com/steem/@steemrollin/steemit-how-to-send-another-user-steem-dollars\n\n## What are fees for transferring money between Steem\u2019s three currencies and between other users?\nThere are never any fees within the Steem network.\n\n\n## What is the \u201cdistribution phase\u201d of Steem Power? \nThe purpose of a distribution phase is to get Steem currency in a large number of peoples\u2019 hands. During the distribution phase, Vests are compounding at 3% per week, so if you calculate the cost per Mv (million vests) and see a significant dip, then and only then would waiting to purchase Steem Power make sense.\n\nHowever, if you have to wait for 1 month for a 10% dip, it would have been better to pay 10% more and get 4 weeks of 3% gains, compounded.\n\nIf your timeframe of waiting to purchase Steem Power is 3 months, then you need a 42% drop in price just to break-even against this increasing ratio of steem_per_mvest.\nhttps://steemit.com/steem/@jl777/re-alexgr-investing-long-term-with-steem-time-as-an-overlooked-parameter-20160805t120032075z\nhttps://steemit.com/steem/@alexgr/investing-long-term-with-steem-time-as-an-overlooked-parameter\n\n## If I invest x Steem Power and do not curate or post content, how much will I have at the end of the \u2018distribution phase\u2019 compared to a similar timeframe after the dispersal period?\n\n## What happened to the liquidity incentive rewards, were they allocated elsewhere?\nIt is apparent that the liquidity reward systems are not achieving their desired effect. We have disabled these rewards until we find a better solution, which should reduce the amount of liquid STEEM on the market.\nhttps://steemit.com/steem/@steemitblog/steem-version-0-12-0-released\n\n## If I\u2019m inactive, or the total amount of Steem Power Vested is below 90%, do I lose VESTS or are they stable?\n\n## Does the amount of Steem Power held by an account have a DIRECT impact on the visibility of its posts?\nIf the account owner votes up her post, then yes. It will add some money to the payout, which has the effect of making the post more visible.\n\n\n# Posting\n\n## Will I earn money by sharing links?\nSteemians tend to support original content because it\u2019s what provides the most value to users. If you are only posting links, you probably won\u2019t make money. In fact, you will likely get flagged as \u201clink spam.\u201d However, if you have valuable insight to add to an article, and you give credit to the proper source, there is a much better chance the community will value the post.\n\n## How do I add pictures and videos to my blog posts and comments?\nSimply post the image or youtube link inside your post or comment.\nhttps://steemit.com/steem/@billbutler/adding-images-to-your-steem-posts\nhttps://steemit.com/steemitguide/@algimantas/detailed-guide-how-to-add-videos-in-steemit\n\n## Does it cost anything to post comments or content?\nNo, it is free to post on Steemit.com.\n\n## Can you post unlimited comments and blog posts, or is it limited in some way?\nThere is a 20 second with time in between comments to prevent spam comments.\n\nNo hard limits exist regarding the number of blog posts a user may share, but if other users feel you are spamming, you will likely start getting flagged.  \n\nFurthermore, each account can post four blog posts per day and get 100% payout for each one. If you post five blog posts in a day, it drops the payout for all five to 65% of the amount it would have otherwise paid.\n6th = 45%\n7th = 33%\n8th = 25%\nhttps://steemit.com/steem/@steemitblog/steem-version-0-12-0-released\nNote: The \u201cChanging Payout Periods\u201d section of the above link is no longer valid.\n\n## What are Steemit\u2019s policies on plagiarism and spam? \nPlagiarized posts and spam are not allowed and will be flagged by users. If you are posting someone else\u2019s content, you must give them credit!\n\n## How do I delete one of my blog posts?\nYou cannot remove a blog post; you may only edit them. The blockchain permanently records every post and comment.\n\n## I see people using high-quality photos that clearly are not their own. Is it okay to use random pictures from the internet?\nNo, it is not allowed. You may, however, use photos from \u201cfree image\u201d websites such as: \nPexels.com\nStockfreeimages.com\nUnsplash.com\nPixabay.com\nFreeimages.com \n\n## For how long after posting can I make edits?\nYou may edit your posts until the first payout occurs.\n\n## How do I format a post if not using the editor?\nYou can format blog posts and comments by using HTML and Markdown. Here are basic commands that should be helpful to you:\nhttps://steemit.com/writing/@minion/professional-tutorial-for-post-formatting-both-for-beginners-and-advanced-users\n\n## What is @Cheetah? \n@Cheetah is a bot that scours Steemit for plagiarized content. Cheetah will not flag you, but it alerts other users to look into it further.\n\n\n# Voting\n\n## Why are my blogs posts not making very much money? They are higher quality than a lot of the \u201cTrending\u201d posts I see.\n\nVoting patterns may be affected by the social connections a blogger has. The more \"connected\" a blogger is, the better his chances to get more upvotes. Bloggers with a bigger history or more connections will tend to have more upvotes even if their content is worse than others with less connections.\n\nImagine a scenario, if you will, where you share something on facebook and it gets 10 likes from your 100 friends. Someone with 1000 friends may get 100 likes for posting the exact same thing.\n\nAnother explanation is that a successful blogger may have been doing very well for a long time and as thus he may be the favorite choice for upvoting by the so-called \"whale\" voters. This kind of \"relation\" usually takes some time to build as an author has to prove himself that he is able to deliver quality content on a consistent basis.\n\nFor strategies to improve your long-term success:\nhttps://steemit.com/steemit/@shenanigator/what-william-learned-the-hard-way-your-strategy-may-be-crippling-your-steemit-potentential\n\n## My comments rarely earn any money, how can I change that?\nThere are many things that make for popular comments, but some of the best tips are:\n- Spot soon-to-be popular posts and strike early.\n- Praise the post if you enjoyed it.\n- Highlight a point the author made and respond.\n- Add useful information, correct something or ask a question.\n- Aim for one paragraph in length\nhttps://steemit.com/steem/@donkeypong/writing-popular-comments-top-5-tips-for-posting-an-honest-high-paying-reply\n\n## Does my reputation score affect the amount my vote is worth?\n\n## What are the legitimate reasons for flagging a post?\nYou **can** flag a post for: Plagiarism, Verbal Abuse, Deceptive Tagging, Spam, Threats, etc.\nYou **cannot** flag a post for: Disagreement, Political Incorrectness, Envy, Retaliation\n\nIf you flag a post, you should leave a comment saying the reason for the flag.\n\nIf you come across a post that needs to be flagged, please post it in the chat room:\nhttps://steemit.chat/channel/steemitabuse-classic\n\n## How is the value of a user\u2019s vote calculated?\nThe value of a single person\u2019s vote varies based on: \nSteem Power - More Steem Power means a higher vote weighting\nVoting Power - With each vote you cast, your voting power decreases. It will regenerate from 0% in 5 days. Keeping your total number of votes in the 20-40 per day range will maximize your voting power.\nCurrent value of a post - If your vote is worth $0.02 on a new post, it\u2019s worth about $0.45 on a post already worth $250, or several dollars if the post is already worth $1000s.\n\nTo find out how much your vote is worth, check out this tool:\nhttp://steemdollar.com/dollar_per_vote.php?name=\n\n\n## What is Voting Power?\nTo incentivize users to only upvote quality content, your voting power percentage (vote worth) will decrease with each vote and regenerate over time.\n\n## Does flagging use up my voting power?\nYes, it does.\n\n## Does flagging bring any reward to the curator?\nNo, it doesn\u2019t.\n\n## How are curation awards distributed?\n**Depends on amount of time that has passed when the upvote is made:**\nIf a post is upvoted the moment it's posted, 100% goes to the author.\nIf a post is upvoted 30 min after posting, 100% of the curation award goes to the curator.\nBetween 0 and 30 minutes, the amount going to the author decreases linearly.\nAt 15 minutes it's a 50/50 split.\nAt 3 minutes, 90% goes to the author and 10% to the curator.\nAt 27 minutes, 10% goes to the author and 90% to the curator.\n\n**Post value before and after you upvote**\nIf the post has a low value before you upvote it and it later becomes popular, you are rewarded very well for discovering valuable content.\nSteem Power you possess\n**Curation awards are based on the square of your Steem Power**\n**Example:** \nBob has 10 SP, the square is 100\nJim: 100 SP, the square is 10,000\nIn this example, Jim has only 10 times more Steem Power than Bob, but Jim will get 100 times higher curation award than Bob, all other things equal.\nDouble your Steem Power, get 4x the curation award\nQuadruple your Steem Power, get 16x the curation award\nIncrease your Steem Power by 100x, get 10,000x the curation award\nhttps://steemit.com/steem-help/@liberosist/mind-your-votes-an-investigation-and-guide-to-maximizing-your-curation-rewards\nhttps://steemit.com/steem/@steemitblog/latest-curation-reward-solution\n\n\nGiven all these curation rules, what is the best time to vote?\nUnless you\u2019re a whale, simply vote when you come across something you like.\n\n## Can I get curation awards for voting up comments? Does the same 30 minute rule apply?\n\nYes, you can get curation awards for upvoting comments. No the 30 minute rule does not apply. \n\n\n\n# Security\n\n## How secure is Steemit?\n\n## How can I keep my Steemit account secure?\n**Save your master key and keep it somewhere safe**\n**Log into your account using:**\n- Posting Key (Recommended, can be used to upvote/comment/post)\n- Active Key (All permissions of posting key + Ability to transfer funds)\n**Change your key frequently**\n**Be mindful of third parties claiming to keep your keys safe. They may not be safe and could even have malicious intentions.**\nhttps://steemit.com/steemit-guides/@pfunk/your-steem-account-is-worth-money-how-to-secure-it-with-a-new-owner-key-to-keep-it-yours-forever\n\nhttps://steemit.com/steem/@ash/steem-how-to-create-store-and-change-a-secure-password\n\n## How do I make my active key and owner key different from my posting key? Does the GUI allow this?\n\n## Is it safe to use my account while on private wifi?\nNo, not without first taking additional steps. To prevent someone from hacking into your account while on a public wifi network, you should use a service like Private Tunnel VPN. Also, if you\u2019re only posting, commenting and voting, log in using your Posting Key.\nhttps://steemit.com/steemit/@ash/how-to-steem-it-secure-in-the-wild\nHow are private keys used in Steem?\nhttps://steemit.com/steemit-guides/@pfunk/a-user-s-guide-to-the-different-steem-keys-or-passwords\n\n## How do I use private keys properly and safely?\n\n## What is the relationship between password and private keys?\n\n## I heard Steemit got hacked and some people had their money stolen. How did that happen? What has been done to prevent it from happening again?\n\n## Is Steem, Steem Dollars, or Steem Power insured in the event of a hack or if someone takes over my account?\nNo it is not. If your money is in Steem Power, however, it is impossible for a hacker to take out more than 1/104 per week.\n\n## How do I set my recovery account? \n\n## How does the recovery process work? What should I do first if I discover my account has been compromised?\n\n\n\n# Technical Questions\n\n## Can I mine Steem? How do I start?\nYes, you can.\nhttps://steem.io/documentation/how-to-mine/\nhttps://steemit.com/steem/@tuck-fheman/how-to-mine-steem-in-windows\n\n## Steem is 100% mined? How is it possible for me to mine something that is already wholly mined?  \n\n## In Bitcoin, the supply only increases when someone mines new coins. If Steem was already fully mined, how does the supply of Steem continue to grow?\n\n## What is the best rig for mining Steem?\n\n## What are Steemit witnesses?\nTechnically, there is no such thing as a Steemit witness. But rather a witness for the Steem blockchain. The Steem blockchain requires a set of people to create blocks and uses a consensus mechanism called Delegated Proof of Stake, or DPOS. The people delegated to create these blocks are called witnesses.\n\nThey are voted on by owners of Steem accounts, using a steem-power weighted system, so they are some of the most trusted members of the community, as well as being tech savvy. They are expected to keep a node running every second of every day.\n\nBlocks are produced in rounds, 63 seconds per round and 21 blocks per round. Every round, the top 19 witness accounts are delegated to generate a block, a backup witness produces one block, and the last by a miner.\n\nIn addition to producing blocks, witnesses are also responsible for providing a price feed of the US dollar value of Steem as well as setting the Steem Dollar interest rate. As an incentive to do all their required tasks, the system rewards witnesses one Steem for each block they produce.\nhttps://steemit.com/steemit-guides/@pfunk/a-full-steemit-user-s-guide-to-steem-witnesses\n\n## Where can I vote for witnesses?\nhttps://steemit.com/~witnesses\n\n\n## How are witnesses expected to behave?\nWitnesses are employees of the blockchain. They are responsible for critical jobs and paid very well. Therefore, the community should hold witnesses to the highest of standards.\n**A well-qualified witness should have satisfactory answers to all these questions:**\nWhat makes you qualified for the job?\nAre you reliable?\nWhat kind of hardware are you using?\nYour internet connection?\nIf things break, how fast you can fix them?\nHave you prepared to serious threats like coordinated attacks against all Steem witnesses at the same time?\nAre you helping other witnesses?\n\n## Is Steemit open source?\n\n## Is there an API?\n\n## How do I use cli_wallet?\nSteem Command Line Guide - A Learner\u2019s Guide to Using cli_wallet\nhttps://steemit.com/steemhelp/@pfunk/a-learner-s-guide-to-using-steem-s-cliwallet-part-1\n\n## What is available for developers interested in Steemit? \nhttps://github.com/steemit/steem\n\n## Who are the Steemit developers? How big is the team? What is their background? Who is doing what?\n\n\n\n# Other Topics\n\n## Where can I purchase official Steemit merchandise?\nThere is no official merchandise yet, but it is easy to make Steemit gear on zazzle.com. For instructions, check out this link:\nhttps://steemit.com/art/@artist1989/custom-steem-and-steemit-art-and-instructions-on-how-to-create-your-very-own-steem-steemit-gear-t-shirts-coffee-mugs-etc\n\n## What can I post about? Is anything banned?\nProhibition of content from the blockchain is not possible; at most, removed from the front-end layer, Steemit.com.\n\nThe lack of clarity may be a result of non-uniform laws across the globe. What is legal in one country may be illegal in another. Entire networks or mail providers are affected in some cases where a particular government bans their operation. The emergence of a clear-cut \"guideline\" may not happen for years to come, if ever, in part because of the global differences in their legal framework. Also, in part due to the difficulties involved in enforcing anything at the level of the blockchain (which is not very desirable).\n\n\nWhile trying to remain uncensored, as a US company, Steemit, Inc. may be required to remove some things from Steemit.com, such as child pornography. \n\nSteemit is intended for a general audience and, as a result, some Steemit Content may discuss or depict adult-oriented topics. We realize that this content may not be appropriate or desirable for some of our readers depending on their current location, age, background or personal views. As a result, we mark this content as Not Safe For Work (\u201cNSFW\u201d).\n\nMarking Steemit Content as NSFW does not prevent you from being able to access this content but, instead, helps you make informed decisions about the type of content you view on Steemit. \n\n\n\n## Am I allowed to have multiple Steemit accounts?\nYes, you may have multiple accounts.\n\n## What is a blockchain?\nA public ledger of all transactions ever executed. It is essentially a distributed database where pieces of information are added in a sequence of small blocks, hence the name \u201cblock-chain.\u201d\n\n## How is Steem different from Bitcoin?\nOn a technical level, the two cryptocurrencies are running different technologies for their blockchain. Based on \u201cGraphene\u201d Steem uses a system of \u201cWitnesses\u201d to carry out the bulk of the work involved in maintaining the blockchain.\n\nRegarding economic differences, Bitcoin has a maximum number of coins at 21 million and a relatively low inflation rate. Steem is different in that regard with no maximum number of the amount of possible coins in existence as well as built-in dilution protection in the form of Steem Power. Steem users can also avoid volatility through the existence of the Steem-Backed-Dollar (SBD or SD), a token which is floating in value around the $1 mark. Additionally, SBDs currently pay 10% interest.\n\n## Is there a Steemit mobile app?\nNot yet. There is, however, a mobile app called \u201cSteemy\u201d in development by a 3rd party.\nhttps://steemit.com/steemit/@steemapp/introducing-steemy-fully-native-ios-android-apps-for-steem\n\n## What are minnows, dolphins, and whales?\nFrequently users give fish names to others based on the amount of Steem Power they hold. Not STEEM, not Steem Dollars, just Steem Power. Henceforth, fish in the Steem Tank will be quantifiable:\n**<250 SP** = **Plankton**\n**250-10k** = **Minnow**\n**10k-30k** = **Baby Dolphin**\n**30k-100k** = **Dolphin**\n**100k-300k** = **Orca (Killer Whale)**\n**300k-600k** = **Humpback Whale**\n**600k-1 Million** = **Fin Whale**\n**1 Million+** = **Blue Whale**\n\n## Why aren\u2019t whales voting up my posts?\nIt\u2019s impossible to answer that question in general, but there are some things you can ask yourself:\n- Am I always writing quality, original content?\n- Am I providing value to the community with my content?\n- Am I steadily building up a following with each post?\n- Am I learning from my mistakes?\n- Am I learning from others\u2019 successes?\n- Am I actively engaging in discussions and providing a unique perspective?\n- Am I offering to help other Steemit users when they ask for help on projects?\n- Am I starting/joining/participating in local Steemit meetup groups?\nIf you are doing all the above things, it is only a matter of time before your content starts getting upvoted by whales.\n\nThis website shows you if the biggest of whales are currently active:\nhttp://catchawhale.com/\n\n## What are Vests?\nTo put it simply, Vests are another way of looking at Steem Power. Steem Power is essentially Steem held in a fund. Vests are Shares in that fund.\nhttps://steemit.com/steem-help/@hisnameisolllie/what-are-vests\n\n## Which way is better to format a post for SEO purposes, HTML or Markdown? Does it matter?\n\n## Can I receive notifications when I get votes?\nCurrently, there are no options to receive notifications directly on Steemit.com. The third-party application https://steemstats.com/#/ has an option to set up notifications on your computer.\n\n## Why can I only add five tags?\nSteemians can merge many tags into one; therefore they are redundant. Also, it helps prevent spam.\n\n\n## What should I know about bots on Steemit?\nBots are like dogs, some are good dogs who have good owners, others are not. Some are stray dogs; others have a leash and a caring owner. Who's the owner? A caring one? As every caring owner, he will always try to \"correct\" the bad owner's behavior and teach him how to treat his dog well. Bots are here to stay, the only thing \"we\" must do is that they are proper vaccinated, checked by the vet regularly, well cared for and are not running wild without a leash.\nBenefits:\nThey support \"low SP\" members\nThey fight bad bots by getting better\nThey \"hunt down\" Plagiarism\n\n## What is the difference between Proof of Work and Proof of Stake?\nProof of work - Miners solve a complex mathematical problem. The miner that solves the problem first adds the block to the blockchain. The network rewards the miner for doing so.\nProof of stake - Requires ownership of the cryptocurrency. The more cryptocurrency you own, the more mining power you have. Benefits: eliminates the need for expensive mining rigs, runs on a tiny fraction of the power, and it forces miners to have a stake in the network.\n\nhttps://steemit.com/cryptocurrency/@g-dubs/more-on-the-nxt-cryptocurrency-proof-of-stake-vs-proof-of-work\n\n## Can users connect to and use Steemit from countries which have national firewalls, such as China?\n\n## Is there a place I can view the Steemit development roadmap? I would like to divest more BTC into Steem Power, but cannot pull the trigger until I know where things are going.\n\n## What are activity shares? Do they have any function?\nThey were an idea that Steemit ultimately scrapped. They do not have a function.\n\n## What third-party tools are there for Steemit?\nThere are a lot of them, and people are constantly developing more.\nhttp://steemtools.com/\n\n## Will I get a 1099 from Steemit?\nNo, you are not being paid by Steemit. You are being paid by the Steem network. It is your responsibility to determine what, if any, taxes apply to the transactions you for which you have submitted transaction details via the services, and it is your responsibility to report and remit the correct tax to the appropriate tax authority. You agree that Steemit is not responsible for determining whether taxes apply to your Steem transactions or for collecting, reporting, withholding or remitting any taxes arising from any Steem transactions.   \n\n## What determines the price of STEEM?\nMuch like how the price of a stock goes up and down, the value of STEEM varies, determined by buyers and sellers on exchanges.\n\n## Where is the Steemit Privacy Policy?\nhttps://steemit.com/privacy.html\n\n## What are the age requirements to join steemit?\nAlthough we welcome users from all walks of life, Steemit is not intended or directed at individuals under the age of 13. Therefore, people under the age of 13 may not create an account or otherwise access or use the Services.\n\n## What languages are supported?\nEnglish is the primary language used on the platform. Some users post in other languages, but it\u2019s a small niche at the moment.\n\n## If posting in a language other than English, are there particular hashtags I should be using?\n\n## What is the Steemit Whitepaper and what is its purpose?\nFor clarification, there is only a Steem Whitepaper. There is not yet a Steemit Whitepaper.\n\nThe Steem Whitepaper was written to describe the mechanics of the token system that makes decentralized content incentives and distribution possible in a way that can improve web technologies across the board. It is also applicable to Steemit, one of the first websites to plug into the Steem blockchain. Users who have read the Steem Whitepaper will better understand how their interactions with Steemit are interactions with Steem, the decentralized network.\nhttps://steem.io/SteemWhitePaper.pdf\n\n## Is Steemit decentralized? What about Steem?\nSteem as a blockchain is more decentralized than Steemit.com. Steemit, Inc. as a company, may be subject to laws that Steem (as an impersonal blockchain database distributed all over the world) is not.\n\n## Right now Steem is useful for transient content. What about the authors who would like to publish more permanent writing and be rewarded for it long term, rather than just 30 days? Will Steem be able to offer a solution for them?\n\n## I read through the FAQ but still need more help. Is there a place to go for more help?\nThere are a few things you can do:\n- Search Steemit for blog posts on the subject, you will likely find a lot of information on the topic.\n- Read this free book about Steemit. It is full of helpful information:\nhttps://steemit.com/steemit/@donkeypong/simply-steemit-your-no-nonsense-guide-to-getting-started\n- Head on over to Steemit Chat, this is highly recommended! https://steemit.chat/home\nhttps://steemit.com/steemit/@firepower/dummies-guide-to-using-steemit-chat-effectively-everyday\n- Just ask. We think you\u2019ll find the Steemit community very helpful.\n\n\n\n\n## Steemit Lingo A-Z\n**Baby Dolphin** - User with 10k-30k Steem Power\n**Blockchain**\u200b - A public ledger of all actions ever executed.\n**Blue Whale** - User with 1 Million+ Steem Power.\n**Curation** - The act of sorting through content by voting on posts and comments.\n**Curator** - Someone who votes on a post.\n**Dolphin** - User with 30k-100k Steem Power.\n**Fin Whale** - User with 600k-1 Million Steem Power.\n**Humpback Whale** - User with 300k-600k Steem Power.\n**Minnow** - User with 250-10,000 Steem Power.\n**Nuke** - A community initiative to downvote someone into oblivion for some \u200babuse.\n**Orca** - Also known as a killer whale, a user with 100k-300k Steem Power.\n**Plankton** - User with less than 250 Steem Power.\n**SBD** - Steem Backed Dollar, also known as a Steem Dollar.\n**SD** - Another frequently used abbreviation for Steem Dollar.\n**Steem** - A reference to the entire network. Also utilized for the system\u2019s value token.\n**STEEM** - A form of Steem Token that one should only hold for short-term trading.\n**Steemer** - A Steemit user.\n**Steemian** - A Steemit user.\n**Steem Token** - The currency of the Steem ecosystem. SP, SBD, and STEEM are all forms of Steem Tokens.\n**Vests** - Steem Power is essentially Steem held in a fund. Vests are shares in that fund.",
+    "body_length": 51226,
+    "cashout_time": "2016-08-30T23:07:15",
+    "category": "steemit",
+    "children": 98,
+    "created": "2016-08-23T23:07:15",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steem-improvements\",\"faq\",\"steem-help\"],\"links\":[\"http://catchawhale.com/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T03:49:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 104723010093080,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1510.332 HBD",
+    "percent_hbd": 10000,
+    "permlink": "official-steemit-faq-rough-draft-your-edits-are-needed",
+    "post_id": 958577,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "OFFICIAL Steemit FAQ - Rough Draft - I Need Your Input!",
+    "title": "OFFICIAL Steemit FAQ - Rough Draft - I Need Your Input!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@shenanigator/official-steemit-faq-rough-draft-your-edits-are-needed"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 535865093370,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7405186164487,
+        "voter": "steempty"
+      },
+      {
+        "percent": "1000",
+        "reputation": 32455846463901,
+        "rshares": 3158588256459,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 376176586472,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 40233571019113,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 36030329149089,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 4864123568306,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6847196651107,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3005342728266,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 477966017811,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 120833961629,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 1135427604741,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1076909161669,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 1014689335929,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 302577919311,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 4687165160027,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726053019,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89703349977794,
+        "rshares": 1866548300871,
+        "voter": "xeroc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4523918882,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 820962414,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66005205841,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996490651,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256572228,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28971806962251,
+        "rshares": 1709684574816,
+        "voter": "joseph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 82589597013,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 3110536581035,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 413225884266,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2707254251218,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 792613900745,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157630041348,
+        "voter": "fuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7510841593,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1861943202,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 83941319998,
+        "rshares": 588250683864,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 351177110683,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67589992585,
+        "rshares": 10095993336,
+        "voter": "idol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750123187,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168002988,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "1500",
+        "reputation": 96486114508046,
+        "rshares": 439213978593,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7859851792,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 102025711820,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28348939259,
+        "rshares": 646176422,
+        "voter": "fractalnode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 441887268795,
+        "rshares": 102112666665,
+        "voter": "coindup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5810476023292,
+        "rshares": 67501627365,
+        "voter": "pnc"
+      },
+      {
+        "percent": "1000",
+        "reputation": 19959120564829,
+        "rshares": 4965235022,
+        "voter": "alexgr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346057454,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2165622245848,
+        "rshares": 2586562348,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21527783969006,
+        "rshares": 139607881909,
+        "voter": "chris4210"
+      },
+      {
+        "percent": "10000",
+        "reputation": 368156222,
+        "rshares": 1663932042,
+        "voter": "jocelyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 83479541085,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 10960361335,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11110809116,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14073457536993,
+        "rshares": 73847062209,
+        "voter": "edgeland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 377012387231,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 75103692101,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1404519920935,
+        "rshares": 3500585753,
+        "voter": "kenmonkey"
+      },
+      {
+        "percent": "8306",
+        "reputation": 12382143533351,
+        "rshares": 523168472516,
+        "voter": "eeks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 19251810527,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3224550985,
+        "rshares": 66109863467,
+        "voter": "dimimp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5881363855,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 30980403538,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 335276344720,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5414208804644,
+        "rshares": 25322256078,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 665850528451,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3826622576,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "2100",
+        "reputation": 15755437221598,
+        "rshares": 5483379570,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 152200751082,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1942274690427,
+        "rshares": 7457684559,
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396875428337,
+        "rshares": 1598892108,
+        "voter": "mookid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 45035216336,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 205868241690,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 38967300240,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1072019185,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 93388234702,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1413055989,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8502334967170,
+        "rshares": 24274898558,
+        "voter": "gridcoinman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2267010889,
+        "voter": "error"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5678150836,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5904057835766,
+        "rshares": 42656662312,
+        "voter": "ranko-k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 968286372957,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 57134744579,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24891606145,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 6478113798,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 32233497838,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 10901118309,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 412453962985,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "10000",
+        "reputation": 344356380936,
+        "rshares": 1231798069,
+        "voter": "stevegachau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4260826979219,
+        "rshares": 7828439381,
+        "voter": "givemeyoursteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1233698174511,
+        "rshares": 2011381584,
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 390478868475,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 234380327895,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51419883219,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "3500",
+        "reputation": 5888717170887,
+        "rshares": 24294272469,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3906896686802,
+        "rshares": 57040314927,
+        "voter": "thecryptodrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 30626258833,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46310579884676,
+        "rshares": 135104358114,
+        "voter": "bravenewcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 476259593959,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14028106211346,
+        "rshares": 56090864924,
+        "voter": "kus-knee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13621812006,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 4020273271,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 32141834595,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 181116038648,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "500",
+        "reputation": 6571743380703,
+        "rshares": 6042801843,
+        "voter": "igl00"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 110157887038,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "7800",
+        "reputation": 598181152117,
+        "rshares": 145211226298,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 275489218169,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 76518327656,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 111391460708814,
+        "rshares": 365446340672,
+        "voter": "fyrstikken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8166740506920,
+        "rshares": 36104365176,
+        "voter": "cryptoiskey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 10723512807,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 510500434,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 56704794072,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2272555442064,
+        "rshares": 4080647197,
+        "voter": "azaan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 362176333,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25984358555464,
+        "rshares": 68364335075,
+        "voter": "bacchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 346181197528,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 7580707573,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 171019207075,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 34306006348,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 322161583283,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 82272797081,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5157797283,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "3100",
+        "reputation": 9956734090708,
+        "rshares": 11533923646,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1569224337235,
+        "rshares": 5023647197,
+        "voter": "expanse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 260496118,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10248743813131,
+        "rshares": 24658739351,
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 2770253704,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1949550312939,
+        "rshares": 3461118281,
+        "voter": "neopatriarch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 495574357,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": -11110332240496,
+        "rshares": 1630899500,
+        "voter": "sergei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 534528345983,
+        "rshares": 1010587746,
+        "voter": "bartcant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19111656178138,
+        "rshares": 67733557028,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10594627728,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3891722,
+        "rshares": 459183195,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9142611234,
+        "rshares": 515287168,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3871042,
+        "rshares": 472320215,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8577172826419,
+        "rshares": 114929330858,
+        "voter": "crypt0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3846977,
+        "rshares": 241378964,
+        "voter": "acc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 163497435295,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1598540193144,
+        "rshares": 28089762464,
+        "voter": "gord0b"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 797296323,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 159428716760,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4403326971786,
+        "rshares": 19149087656,
+        "voter": "cryptobarry"
+      },
+      {
+        "percent": "8400",
+        "reputation": 2821855573125,
+        "rshares": 4767499706,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14053867770193,
+        "rshares": 176051780606,
+        "voter": "repholder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33648660545,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4593535958,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2377467033356,
+        "rshares": 17036885437,
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1855825,
+        "rshares": 232667596,
+        "voter": "danielkt"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2397831198773,
+        "rshares": 442868725,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3779872763249,
+        "rshares": 19544762197,
+        "voter": "meiisheree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 23466141588,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10858288049,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 73624923344,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1455160505,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 341723696171,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 14804857032,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 8744035178,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16743994030016,
+        "rshares": 38686636744,
+        "voter": "condra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445998348172,
+        "rshares": 3284680477,
+        "voter": "pigatto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4997362589971,
+        "rshares": 104264406314,
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8911872385291,
+        "rshares": 47329466415,
+        "voter": "creationlayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1311079777932,
+        "rshares": 1988790807,
+        "voter": "splatterhaus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 54832916139,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 19349340603,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 91926117,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2974404080988,
+        "rshares": 130392942665,
+        "voter": "demotruk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3868586690,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1538357286,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12680019535,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 5937123302,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2440775410341,
+        "rshares": 2288626154,
+        "voter": "iamwne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2339981102950,
+        "rshares": 4172380416,
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 35282662185,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1532881687066,
+        "rshares": 8250069099,
+        "voter": "magz8716"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2352380220223,
+        "rshares": 4036179836,
+        "voter": "metalcrypto86"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7168108020,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3576577878,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3439295754608,
+        "rshares": 2410290253,
+        "voter": "bola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 38361289406,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 84354470928,
+        "voter": "rea"
+      },
+      {
+        "percent": "1000",
+        "reputation": 14988694886527,
+        "rshares": 21527861128,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 409144442,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115810043,
+        "voter": "hightek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 6881355781,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4226573244868,
+        "rshares": 33871774853,
+        "voter": "zaebars"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10519849768972,
+        "rshares": 15605236672,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19973803502,
+        "rshares": 124974272,
+        "voter": "biternator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161079803820,
+        "rshares": 56769565392,
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 231302899,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6985921192853,
+        "rshares": 194918932533,
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114559886143,
+        "rshares": 164930677,
+        "voter": "cryptoknight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 921456442,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 12104248869,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "1000",
+        "reputation": 58190631451,
+        "rshares": 1834534741,
+        "voter": "proto"
+      },
+      {
+        "percent": "7800",
+        "reputation": 17698439393799,
+        "rshares": 23131411260,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1480317362,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22504728466704,
+        "rshares": 58282395736,
+        "voter": "cheetah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10552456597779,
+        "rshares": 5997467417,
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3976815048658,
+        "rshares": 2935325626,
+        "voter": "tygergamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 147425730,
+        "rshares": 535245969,
+        "voter": "fnait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3720753029,
+        "rshares": 475520671,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1125619617814,
+        "rshares": 2853376889,
+        "voter": "nelu.ceban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5711413280,
+        "rshares": 6333362306,
+        "voter": "stef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3623431607,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 32524585720,
+        "voter": "smailer"
+      },
+      {
+        "percent": "100",
+        "reputation": 4063076365725,
+        "rshares": 114993452,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1804907957838,
+        "rshares": 2440103819,
+        "voter": "belkins"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 2720074239,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 6107263629,
+        "voter": "jed78"
+      },
+      {
+        "percent": "4500",
+        "reputation": 283380527576,
+        "rshares": 6144702800,
+        "voter": "mahekg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17701690051649,
+        "rshares": 137429559187,
+        "voter": "steemdrive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4265214728001,
+        "rshares": 11261995202,
+        "voter": "bergy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 921263691910,
+        "rshares": 658133591,
+        "voter": "tkembo"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1275505236,
+        "rshares": 918794886,
+        "voter": "taker"
+      },
+      {
+        "percent": "5700",
+        "reputation": 10137266406870,
+        "rshares": 8934982195,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1085279334225,
+        "rshares": 5976541708,
+        "voter": "theprophet0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1251705047047,
+        "rshares": 4484961525,
+        "voter": "theprophet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 406607053254,
+        "rshares": 240147448,
+        "voter": "frozendota"
+      },
+      {
+        "percent": "7800",
+        "reputation": 10771708337101,
+        "rshares": 793698975040,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24107366239,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3803717948969,
+        "rshares": 18210815655,
+        "voter": "flandude"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9337635520,
+        "rshares": 8269753895,
+        "voter": "spaceghost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 2020288379,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 22362837512,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22876250710,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22884607514,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "7800",
+        "reputation": 18027204457681,
+        "rshares": 27625757276,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "7800",
+        "reputation": 5776723480371,
+        "rshares": 174357493624,
+        "voter": "somebody"
+      },
+      {
+        "percent": "7800",
+        "reputation": 206355094166,
+        "rshares": 6521141507,
+        "voter": "flysaga"
+      },
+      {
+        "percent": "8372",
+        "reputation": 1751717743,
+        "rshares": 13867449577,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 10404248096,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "7800",
+        "reputation": 97845484474,
+        "rshares": 38521454257,
+        "voter": "midnightoil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15739430465359,
+        "rshares": 72945502690,
+        "voter": "mibenkito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 566772714531,
+        "rshares": 2267327596,
+        "voter": "crypto-toll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 4085877023,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 3201532166,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6623452381,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22880696557,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22879003651,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22876327957,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22873403059,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22869645142,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 478167094774,
+        "rshares": 776319043,
+        "voter": "romancs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22867985411,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "8000",
+        "reputation": 3016325652890,
+        "rshares": 92496439725,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21039886213,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11099072108,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 112939027604,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1561551841,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 56272514,
+        "voter": "nickche"
+      },
+      {
+        "percent": "2300",
+        "reputation": 73944659327428,
+        "rshares": 54153946243,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5395620082,
+        "rshares": 63769259,
+        "voter": "gunde"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1425927896964,
+        "rshares": 2157887018,
+        "voter": "kurtrohlandt"
+      },
+      {
+        "percent": "7800",
+        "reputation": 1851205309677,
+        "rshares": 3012874531,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55985375,
+        "voter": "rinaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 1407653561,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 222365253,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "3300",
+        "reputation": 9523766827937,
+        "rshares": 21000312892,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "7800",
+        "reputation": 4195733833721,
+        "rshares": 6072143772,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1590670250,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 3362885111,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13895575208,
+        "rshares": 70633121,
+        "voter": "stevescriber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3851409606,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52467942,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57295211,
+        "voter": "nano2nd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 6526978016,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58970189,
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 222804436,
+        "voter": "party1999"
+      },
+      {
+        "percent": "7800",
+        "reputation": 730408370151,
+        "rshares": 398324868,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 29748874355,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4629473733,
+        "rshares": 59006436,
+        "voter": "cryptoblu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59000019,
+        "voter": "instructor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 67427595157518,
+        "rshares": 713740913223,
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57360236,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 6429005086,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 94635072912,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10723244574,
+        "rshares": 4872520319,
+        "voter": "almerri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 60290273,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 14491280131,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063238167696,
+        "rshares": 3466697876,
+        "voter": "steveo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 2360296333,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5427607111677,
+        "rshares": 9572956760,
+        "voter": "jaredcwillis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142213881,
+        "rshares": 58570757,
+        "voter": "ethansteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 22861987673,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58431340,
+        "voter": "steemchina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3934561602,
+        "rshares": 402776568,
+        "voter": "dave-mohican"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26751356331019,
+        "rshares": 64415365542,
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "5800",
+        "reputation": 18890223518661,
+        "rshares": 24263639051,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28176351271250,
+        "rshares": 82641728996,
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 78411391,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 24503611101,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5941821821586,
+        "rshares": 8200065121,
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6300363201553,
+        "rshares": 53436717446,
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58187582,
+        "voter": "sensualceleb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55845079,
+        "voter": "rickmiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 3078557050,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 56704316,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3946777086453,
+        "rshares": 2632034946,
+        "voter": "contentjunkie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 809313892500,
+        "rshares": 8591508881,
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 72035128429,
+        "rshares": 56439015,
+        "voter": "dabrarital1972"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176135418881,
+        "rshares": 129045750,
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 855097842923,
+        "rshares": 14206254829,
+        "voter": "darrantrute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4254380753805,
+        "rshares": 3771335099,
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 22523811629,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 39104372032,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 2909670405,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 1563110711,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 180001817,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7422089296,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 7689702094,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "7000",
+        "reputation": 837791549130,
+        "rshares": 31622277566,
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140675557233,
+        "rshares": 2413590426,
+        "voter": "fajrilgooner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2121626708565,
+        "rshares": 3752156606,
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "100",
+        "reputation": 12539394694005,
+        "rshares": 182788854,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26491323630,
+        "rshares": 57466894,
+        "voter": "mercosity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 633459410,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51223240,
+        "rshares": 405872365,
+        "voter": "steemorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 958919043,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902109169053,
+        "rshares": 2941654196,
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 333300187103,
+        "rshares": 132311119,
+        "voter": "the-ego-is-you"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 462418154,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3074503409423,
+        "rshares": 9972856155,
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 54258724,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321473400567,
+        "rshares": 316502139,
+        "voter": "panther"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 748363853,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 50326964582800,
+        "rshares": 384531628132,
+        "voter": "charlieshrem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 57687894080,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "7000",
+        "reputation": 26215514,
+        "rshares": 31595293803,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2451285776301,
+        "rshares": 2692323783,
+        "voter": "gavicrane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 3826309632,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861400654873,
+        "rshares": 1366253956,
+        "voter": "steemafon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1347280944,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 115718948492,
+        "rshares": 59890114,
+        "voter": "nelsonmandelabay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10341114686313,
+        "rshares": 213811228335,
+        "voter": "robinhoodwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 287801947294,
+        "rshares": 96067289,
+        "voter": "paketkita.net"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 67956001,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 270609126129,
+        "rshares": 2081512014,
+        "voter": "steemsquad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 88742390,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 9640083850,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 55113679,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 110630295,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": -519870545601,
+        "rshares": 51616527,
+        "voter": "psyduck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 208566777,
+        "voter": "robotev2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 659608632671,
+        "rshares": 1040013475,
+        "voter": "jang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 99160090205,
+        "rshares": 199821196,
+        "voter": "bo-ro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10201751267,
+        "rshares": 52815612,
+        "voter": "robocraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24953404448,
+        "rshares": 50431113,
+        "voter": "stringer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51240567,
+        "voter": "billkappa442"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50233449,
+        "voter": "teemsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51232949,
+        "voter": "dragonice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50214183,
+        "voter": "weare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 50197894,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "5100",
+        "reputation": 414609406210,
+        "rshares": 1631179533,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33478909036,
+        "rshares": 57988919,
+        "voter": "codeinc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50975390,
+        "voter": "steemprincess"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50873654,
+        "voter": "palladium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50868434,
+        "voter": "jumbo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50865840,
+        "voter": "sting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50796122,
+        "voter": "factom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50540827,
+        "voter": "amstel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396872137163,
+        "rshares": 55142010,
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50479027,
+        "voter": "sunlight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 64263708,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1867843363,
+        "voter": "exlead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68029907798,
+        "rshares": 63057417,
+        "voter": "vuyusile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1317647622,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 157266009,
+        "voter": "cruise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3948329433364,
+        "rshares": 2002213189,
+        "voter": "senseye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162925257,
+        "voter": "uct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 162911190,
+        "voter": "front"
+      },
+      {
+        "percent": "10000",
+        "reputation": 675589247639,
+        "rshares": 1363441329,
+        "voter": "rusteemitblog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 161089804,
+        "voter": "pyro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 308198215903,
+        "rshares": 197680233,
+        "voter": "james1987"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160900665,
+        "voter": "digitalillusions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 160835930,
+        "voter": "skrillex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5686358043,
+        "rshares": 150633482,
+        "voter": "cosco07"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159984914,
+        "voter": "correct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159539963,
+        "voter": "blender"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10568161397,
+        "rshares": 148114487,
+        "voter": "jasonxg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 159143891,
+        "voter": "reef"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446608067,
+        "rshares": 159110812,
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1254609427,
+        "rshares": 159286033,
+        "voter": "mastercoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22482956163,
+        "rshares": 166431444,
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251629303655,
+        "rshares": 9637724412,
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7237199,
+        "rshares": 157484049,
+        "voter": "lovesickchris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2361914,
+        "rshares": 154247502,
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2398496,
+        "rshares": 150433706,
+        "voter": "kramj007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15827302113,
+        "rshares": 153436909,
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153385071,
+        "voter": "yahooshua"
+      }
+    ],
+    "author": "steemdrive",
+    "author_reputation": 17701690051649,
+    "beneficiaries": [],
+    "body": "<center>[![IMG_2881.png](https://s19.postimg.org/66thkewwj/IMG_2881.png)](http://www.steemit.com/@steemdrive/)</center>\n\nSouth Africa stands proud; being the first country to ever host a blockchain crowdfunded billboard campaign flighted in August 2016 by the @steemdrive initiative on the Steemit Blockchain Social Media Platform; where content creators get paid to blog and publish noteworthy content, as well as for participating in curation voting of the varied content of other community authors.\n\nWith the help of advertising partners, Outdoor Network, the @steemdrive billboard campaign has successfully flighted two digital billboards ([as per initial proof of flight blog post](https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa)) and now officially the first Spectacular size 5M x 20M billboard, flighted on the 23rd of August 2016 in Durban\u2019s South Coast region, on the M4 highway just before the Jacobs, Quality Street on-ramp. \n\n<center>[![outdoor_networksml.png](https://s19.postimg.org/iwxpxi4ur/outdoor_networksml.png)](http://www.on.co.za)</center>\n\n[Outdoor Network](http://www.on.co.za) is one of the largest South African Out of Home media owners, offering national reach with a host of billboards and street furniture platforms. \n\nEstablished in 1999, the company\u2019s advertising platforms reach diverse consumers in iconic high-density locations. Its reputable and customer centric staff service South Africa\u2019s leading media and creative agencies, as well as corporates and SME\u2019s (Small-to-Medium-Enterprise\u2019s). The [Outdoor Network](http://www.on.co.za) is passionate about Out of Home media; maximising advertising opportunities through creative and unique execution. \n\n@steemdrive is proud to have given the contract, of approximately two months, of billboard flight time to the [Outdoor Network](http://www.on.co.za), whose staff have been very helpful, friendly and efficient. Thank you [Outdoor Network](http://www.on.co.za) for helping us bring Steemit to South Africa! For more information on Outdoor Network, please visit: [www.on.co.za](http://www.on.co.za)\n\n## <center>Audiovisual Presentation of South African Billboard Campaign\n\n<p><center><iframe width=\"480\" height=\"270\" src=\"https://www.youtube.com/embed/r_zha1iQW58\" frameborder=\"0\" allowfullscreen></iframe></center></p>\n\n## <center>Print Billboard \u2013 Mobeni East, KZN, Durban, South Africa</center>\n\n<center>[![map.jpg](https://s19.postimg.org/3yt38atxv/map.jpg)](http://www.steemdrive.com)</center>\n\nSituated on the Albert Luthuli Highway M4 Southern Freeway at Bluff Road facing traffic from Durban CBD to Mobeni, Jacobs, Isipingo, Umlazi, Amanzimtoti and various suburbs with a good run up on a busy arterial road throughout the day and at peak periods.\n\n**Size:** 5m x 20m (16.4\u2019 x 65.62\u2019)\n\n**Traffic Flow:** Approx. 2 667 600 vehicles per day, this figure excludes pedestrian exposure.\n_(this traffic data is several years old and therefore not current, the values should now be much higher, new data coming later in 2016)_\n\n**Income Group:** 4-8 \n\n**Night Time Illumination:** Front Lighting \n\n------------------\n\nI am proud to have realised the South African Steemit billboard campaign in its entirety, and look forward to the proof of flight posts for Chicago and New Zealand shortly. The billboard campaign truly is a spectacular way to unite the Steemit community and showcase what the platform can do. \n\nIn solidarity with our cause, the [Gridcoin](http://www.gridcoin.us) community has offered their support in upvoting our content and have been added below to our campaign partners section, thank you to Custom Miner ( @cm-steem ) for making that happen for us.\n\nI look forward to comtinually stand with the community to bring Steem to the world, one country at a time! \n\nPlease **SHARE**, **[FOLLOW](http://www.steemit.com/@steemdrive)** and **UPVOTE**!\n\nSincerely,\n\n[![signature.png](https://s19.postimg.org/56ul3axar/signature.png)](http://www.steemit.com/@steemdrive)\n\n------------------------\n\n## @steemdrive in the Media:\n\n+ http://themerkle.com/steem-blogger-raises-thousands-of-dollars-to-fund-real-world-billboard-campaign/\n\n+ http://bitcoinhub.co.za/new-social-media-platform-steemit-set-to-take-south-africa-by-storm/\n\n+ https://coincheck.com/en/blog/1845\n\n+ [Beyond Bitcoin E166 2016-07-29](https://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts#t=30:07)\n\n+ [Beyond Bitcoin E169 2016-08-19](https://soundcloud.com/beyond-bitcoin-hangouts/e169-beyond-bitcoin-dollarvigilante-talks-steem-blockpay-ico-grc-hangouts-steem-billboard-campaign#t=2:21:51)\n\n-------------------\n\n## Campaign Partners:\n\n<center>[![beyondbitcoin.jpg](https://s19.postimg.org/qj95pqxar/beyondbitcoin.jpg)](http://www.steemit.com/@officialfuzzy)</center>\n\n\n--------------------\n\n\n<center>[![blocktrades.jpg](https://s19.postimg.org/sf0jenbir/blocktrades.jpg)](http://www.blocktrades.us)</center>\n\n\n--------------------\n\n\n<center>[![blockpayfinal.jpg](https://s19.postimg.org/ek28w6h3n/blockpayfinal.jpg)](http://www.blockpay.ch)</center>\n\n--------------------\n\n\n<center>[![IMG_2877.jpg](https://s19.postimg.org/f349ocnir/IMG_2877.jpg)]( http://www.gridcoin.us/)</center>\n\n\n---------------------\n\n## <center>Witness @smooth.witness (campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @delegate.lafona (liaison and campaign supporter)</center>\n\n---------------------\n\n## <center>Witness @liondani (campaign supporter)</center>\n\n---------------------\n\n## @steemdrive Supports the Following Initiatives:\n\n+ @robinhoodwhale ([info link here](https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed))\n\n+ @steemcleaners\n\n+ [steempay.io](http://steempay.io)\n\n----------------------\n\n## Terms and Conditions:\n\nSteem Dollar payout funds raised from this Steemit post shall be allocated to any billboard site or @steemdrive public project where funds may be required in and paid in accordance with the general campaign terms and conditions.\n\nThe domain steemit.life on the artwork points to a referral link for campaign tracking by steemit.com, otherwise not possible if steemit.com was advertised.\n\nAll images are either royalty free, public domain, supplied by the billboard agencies or paid for by the campaign or liaison, credits will appear beneath any other image sources.\n\n-------------------------------------------------\n\n## Direct Donations Welcome:\n\n<a href='https://steempay.io/payment?&receiver=steemdrive&amount=0&currency=0&callback=http://www.steemdrive.com'>\n<img src='https://steempay.io/media/badges/donate/badge_steem-donate--light-v1.0.png'>\n</a>\n\n**Direct donations on this post so far:**\n+ 2.5 SBD Donated by @cm-steem, thank you so much!\n\n+ 5 SBD Donated by @kus-knee, awesome thank you!",
+    "body_length": 6899,
+    "cashout_time": "2016-09-17T18:19:39",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-10T18:19:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"life\",\"news\",\"crypto-news\"],\"users\":[\"steemdrive\",\"cm-steem\",\"smooth.witness\",\"delegate.lafona\",\"liondani\",\"robinhoodwhale\",\"steemcleaners\",\"kus-knee\"],\"image\":[\"https://s19.postimg.org/66thkewwj/IMG_2881.png\",\"https://s19.postimg.org/iwxpxi4ur/outdoor_networksml.png\",\"https://s19.postimg.org/3yt38atxv/map.jpg\",\"https://s19.postimg.org/56ul3axar/signature.png\",\"https://s19.postimg.org/qj95pqxar/beyondbitcoin.jpg\",\"https://s19.postimg.org/sf0jenbir/blocktrades.jpg\",\"https://s19.postimg.org/ek28w6h3n/blockpayfinal.jpg\",\"https://s19.postimg.org/f349ocnir/IMG_2877.jpg\",\"https://steempay.io/media/badges/donate/badge_steem-donate--light-v1.0.png\"],\"links\":[\"http://www.steemit.com/@steemdrive/\",\"https://steemit.com/steemit/@steemdrive/steemdrive-first-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa\",\"http://www.on.co.za\",\"http://www.steemdrive.com\",\"http://www.gridcoin.us\",\"http://www.steemit.com/@steemdrive\",\"http://themerkle.com/steem-blogger-raises-thousands-of-dollars-to-fund-real-world-billboard-campaign/\",\"http://bitcoinhub.co.za/new-social-media-platform-steemit-set-to-take-south-africa-by-storm/\",\"https://coincheck.com/en/blog/1845\",\"https://soundcloud.com/beyond-bitcoin-hangouts/166e166-2016-07-29-beyond-bitcoin-peerplays-steemdrives-billboards-blockpay-grc-hangouts#t=30:07\",\"https://soundcloud.com/beyond-bitcoin-hangouts/e169-beyond-bitcoin-dollarvigilante-talks-steem-blockpay-ico-grc-hangouts-steem-billboard-campaign#t=2:21:51\",\"http://www.steemit.com/@officialfuzzy\",\"http://www.blocktrades.us\",\"http://www.blockpay.ch\",\"http://www.gridcoin.us/\",\"https://steemit.com/steem/@repholder/the-robinhood-whale-initiave-community-feedback-needed\",\"http://steempay.io\",\"https://steempay.io/payment?&receiver=steemdrive&amount=0&currency=0&callback=http://www.steemdrive.com\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T17:30:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 138742313025948,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1498.018 HBD",
+    "percent_hbd": 10000,
+    "permlink": "steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa",
+    "post_id": 1198908,
+    "promoted": "1.000 HBD",
+    "replies": [],
+    "root_title": "Steemdrive: Second Proof of Successful Crowdfunded Billboard Flight in Durban, South Africa!",
+    "title": "Steemdrive: Second Proof of Successful Crowdfunded Billboard Flight in Durban, South Africa!",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@steemdrive/steemdrive-second-proof-of-successful-crowdfunded-billboard-flight-in-durban-south-africa"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 668937734218,
+        "voter": "barrie"
+      },
+      {
+        "percent": "100",
+        "reputation": 85602977273,
+        "rshares": 28856334255,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14541676017396,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13270505121655,
+        "rshares": 65738868122357,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 104885942087,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 829611980239,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": -37765249963674,
+        "rshares": 3523609766263,
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3091083868,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3751872670,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 703078134,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52785528915,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1656894481,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213491769,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 330982605,
+        "rshares": 109905473578,
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 34790108629,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 382123413420,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 331163120465,
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 854893586973,
+        "rshares": 974591820760,
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7520586390,
+        "rshares": 132765011181,
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9413487452,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2389001052,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 280440782260,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1071702906604,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621602758,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 923628524,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 390763860408,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": -193140276839,
+        "rshares": 687299672,
+        "voter": "timifey2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 25093971445,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 43215312611,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287852470,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 48031112568,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2441765369743,
+        "rshares": 11259119702,
+        "voter": "dave-hughes"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 5134104564069,
+        "rshares": -34125390164,
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 410899538831,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 3514308118,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3266915935488,
+        "rshares": 143442050992,
+        "voter": "itsjoeco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 576043212174,
+        "voter": "eeks"
+      },
+      {
+        "percent": "100",
+        "reputation": 4931834878069,
+        "rshares": 510496812,
+        "voter": "fkn"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 422431208,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "8500",
+        "reputation": 376960001789,
+        "rshares": 4967938453,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3940140049670,
+        "rshares": 45577213666,
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2007820761,
+        "voter": "gekko"
+      },
+      {
+        "percent": "100",
+        "reputation": 5414208804644,
+        "rshares": 670268914,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 733646916464,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 8431808575,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5502047299,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 90134391614,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 417009617,
+        "voter": "yoona-lee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 57850241507,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 1884956348,
+        "voter": "coar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 44024667559,
+        "voter": "asch"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1440033247,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2423086926842,
+        "rshares": 17927406157,
+        "voter": "b4bb4r-5h3r"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 328846755510,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 367083089332,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 161833281,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 609780550802,
+        "rshares": 141944533,
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 12177340917,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11136252375006,
+        "rshares": 382410007997,
+        "voter": "taoteh1221"
+      },
+      {
+        "percent": "8500",
+        "reputation": 0,
+        "rshares": 330247725,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 52803777568,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5888717170887,
+        "rshares": 61950416028,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4620523428308,
+        "rshares": 19053336845,
+        "voter": "minfon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1147181770,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 74901396295,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 152610751574,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2676865682314,
+        "rshares": 33844146844,
+        "voter": "cheftony"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5412463822,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157636214062,
+        "rshares": 23575160787,
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5886979119053,
+        "rshares": 47564957024,
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 598181152117,
+        "rshares": 234224501190,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 15030579703,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36344377648,
+        "rshares": 23287378544,
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31920382172,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 2257465592,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 70687509671,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 3075354623,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8578286187,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 3739710609,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 7578611454,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2909305052193,
+        "rshares": 5614905936,
+        "voter": "dailyfeed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 2608200595,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 4010352187,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 220050702,
+        "voter": "russle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160174254209,
+        "rshares": 48991282543,
+        "voter": "booja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 4903045253,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 2471065942,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 78969067407,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 23147643255,
+        "voter": "firepower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40557912481,
+        "rshares": 245616724,
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213668684615,
+        "rshares": 222532257,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4907399969,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 39910277653,
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 2608101796,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2880187298062,
+        "rshares": 2675116157,
+        "voter": "stranger27"
+      },
+      {
+        "percent": "10000",
+        "reputation": 305047794164,
+        "rshares": 60746961944,
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 2746300635,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 28718147185,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 25692929626,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 118203669136,
+        "rshares": 300550721,
+        "voter": "thealexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 360927957,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "100",
+        "reputation": 19111656178138,
+        "rshares": 1248883243,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 227022848,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 20350277957,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6427602632,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 989117228,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 963454351109,
+        "rshares": 1349522322,
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4466904026,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 92736156531,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 6127335881,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24899403513,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 4501034549,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 56352134799,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1051966022,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 208581030,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1798349458,
+        "rshares": 236993728,
+        "voter": "nysemax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 261906883616,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9512715139288,
+        "rshares": 69835502463,
+        "voter": "ntomaino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2464852335,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7803764965401,
+        "rshares": 1507108159,
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4392845381,
+        "rshares": 7551319150,
+        "voter": "tryptamin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3316247889,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1008790928160,
+        "rshares": 253048089,
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10662899418,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3167747223142,
+        "rshares": 12360591730,
+        "voter": "dudutaulois"
+      },
+      {
+        "percent": "10000",
+        "reputation": -445425524475,
+        "rshares": 242858237,
+        "voter": "willytrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 1219639516,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34932026701489,
+        "rshares": 141918879021,
+        "voter": "dragonho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 4385329257,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 167174613555,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 13623464709,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7023608765,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900694208703,
+        "rshares": 6639090671,
+        "voter": "cryptobro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 5897621131,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 2712122271,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4867537049,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 37699663541,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 58864388268,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 513380281140,
+        "rshares": 539576877,
+        "voter": "qonq99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 111726756,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 265192596484,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 163343680085,
+        "rshares": 361850682,
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2345937029,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "100",
+        "reputation": 10519849768972,
+        "rshares": 411164157,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 435316007,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 725570292123,
+        "rshares": 2822357406,
+        "voter": "willbeonceagain8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19524897676,
+        "rshares": 5950638457,
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 112583666,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2615896270,
+        "rshares": 4251171596,
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20782968,
+        "rshares": 111850189,
+        "voter": "pyneer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 788422149,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 20509443094,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 25256579030,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 590354284,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6796361134481,
+        "rshares": 2843794852,
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "5000",
+        "reputation": 17698439393799,
+        "rshares": 6945529841,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 226048695,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 236094999,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3039205816,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 84206519,
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 3375155212,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 666498183136,
+        "rshares": 9280314440,
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2034974638910,
+        "rshares": 186939870,
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 98468959,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2413145659228,
+        "rshares": 1763032500,
+        "voter": "dmilash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 979379098872,
+        "rshares": 657021964,
+        "voter": "spinner"
+      },
+      {
+        "percent": "10000",
+        "reputation": -4779249072914,
+        "rshares": 218472801,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 739655756,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 50160146364,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 12824835130,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51522514,
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10771708337101,
+        "rshares": 1355029444576,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 16361768844,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 12454746135,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 1988328132,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "5000",
+        "reputation": 18027204457681,
+        "rshares": 14976676708,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 255846109048,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 369818210,
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1751717743,
+        "rshares": 5548966133,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 30691300049,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7989197237827,
+        "rshares": 15039009354,
+        "voter": "essra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3205465594,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 282062767,
+        "rshares": 2306673067,
+        "voter": "darrenturetzky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2337037146737,
+        "rshares": 7030674025,
+        "voter": "veerprit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3016325652890,
+        "rshares": 52390149955,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31847926857,
+        "rshares": 61660086,
+        "voter": "zahar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6364644439603,
+        "rshares": 3955342930,
+        "voter": "aboundlessworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2464511443415,
+        "rshares": 1578106770,
+        "voter": "alitas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 662456490,
+        "voter": "skavkaz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1851205309677,
+        "rshares": 1985162457,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 225195111,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5333573793,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9523766827937,
+        "rshares": 14326940992,
+        "voter": "cryptos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4195733833721,
+        "rshares": 5782229020,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3921604342143,
+        "rshares": 10836029309,
+        "voter": "plasticfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 52715459356,
+        "rshares": 71246492,
+        "voter": "sparkeddev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 484482156,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 237071800963,
+        "rshares": 1267824755,
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2632229460,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -138680661344,
+        "rshares": 60886073,
+        "voter": "tomeraddady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 126983452,
+        "voter": "party1999"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 730408370151,
+        "rshares": 574344398,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26311363874,
+        "rshares": 66981954,
+        "voter": "mustool"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497238582,
+        "rshares": 56572793,
+        "voter": "belohndichselbst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 37626356958,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 70111504,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 58148489,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 127672859,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119293113,
+        "voter": "stevenh512"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1603120138,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 415725527654,
+        "rshares": 436540984,
+        "voter": "keepdoodling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1393324333405,
+        "rshares": 1677565738,
+        "voter": "shneakysquirrel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 54246894,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2357768295588,
+        "rshares": 1714091420,
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 51613018,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 630154656,
+        "rshares": 2191235220,
+        "voter": "tomoaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 15596792368,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 24992952529,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 6857689066,
+        "voter": "blaat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 18363936092,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58525745813,
+        "rshares": 61804840,
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23296483960,
+        "rshares": 55998234,
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 1082600609,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 133141273,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 440009576,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53116957,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54239164,
+        "voter": "tiituskangas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 26338007740,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 94079185,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9989999558,
+        "rshares": 57259315,
+        "voter": "cryptohazard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148081544337,
+        "rshares": 50422782,
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80500300321,
+        "rshares": 54575672,
+        "voter": "happylovelife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 327816074,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 50094345,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512413908661,
+        "rshares": 124340468,
+        "voter": "frick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 52073223,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 76666804129,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 55171651,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 6836656977,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 2110924737,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50751176,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 152610437601,
+        "rshares": 73182404,
+        "voter": "ricov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50377764,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 50288358,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1552458038,
+        "rshares": 52089873,
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12243286755,
+        "rshares": 50663734,
+        "voter": "libertyism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5441700948,
+        "rshares": 50513896,
+        "voter": "mobilebestdeal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52322404,
+        "voter": "ksc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52319921,
+        "voter": "karazia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 50186099,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53287995,
+        "voter": "jamebuffalobill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3358006,
+        "rshares": 50104155,
+        "voter": "irura"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 51109965,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53052986,
+        "voter": "vorona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1295921229,
+        "rshares": 51983748,
+        "voter": "ahmedeblogger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511117859,
+        "rshares": 51972989,
+        "voter": "miriams"
+      }
+    ],
+    "author": "dragonho",
+    "author_reputation": 34932026701489,
+    "beneficiaries": [],
+    "body": "https://img1.steemit.com/0x0/http://i.imgur.com/eCWkyEJ.jpg\nThis is a fundraiser for **steemwiki.com** - I have at the moment to much on the plate and I want to give away  part of  the Managment of steemwiki.com to the community . \n\nWhat is the plan:\n\n1) This should be a fundraiser, and  all the STEEMDOLLAR raised will be used for the Managment of steemwiki.com \n- I will still remain the rights Admin of the Domain. \n- I will as well still pay for the hosting and everything like Domain. \n- I will as well act as Director of the Managment \n\nLet me know whey you are the person who is able to manage the project and maybe pitch as well with a short outline how you would like to push steemwiki.com and build it up .  A minimum requirement of 10 to 15 hours a week is required for at least for the next 3 to 4 Month to get it going. \n\n**How to apply**\n- Pitch in the Comment whey you or you and your friends are capable and interested in doing so via the Comments.\n\n\nPS: this initiative is started as  a response to @ned post two days ago \nhttps://steemit.com/steem/@ned/the-first-phase-of-the-steem-faq-and-wikee-consolidation-of-knowledge\n\n\nUPDATE:\nI have been already in discussion with @ned and got pinged by several people on the Chat. Thanks for the interrest. I will come up with a outline and Roadmap for the Project.",
+    "body_length": 1326,
+    "cashout_time": "2016-08-27T16:06:48",
+    "category": "steemit",
+    "children": 33,
+    "created": "2016-08-20T16:06:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"steemwiki\",\"fundraiser\"],\"image\":[\"https://img1.steemit.com/0x0/http://i.imgur.com/eCWkyEJ.jpg\"],\"users\":[\"ned\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-20T19:37:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 97285668269875,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1452.629 HBD",
+    "percent_hbd": 10000,
+    "permlink": "fundraiser-for-http-steemwiki-com-community-management",
+    "post_id": 907311,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Fundraiser for  http://steemwiki.com  Community Management.",
+    "title": "Fundraiser for  http://steemwiki.com  Community Management.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@dragonho/fundraiser-for-http-steemwiki-com-community-management"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 715315172073,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14765040488827,
+        "rshares": 26084308890374,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14715414919440,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 176979684007,
+        "rshares": 35326666852152,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 172835954392,
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 7482155520439,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9326993992,
+        "rshares": 214652058757,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "3300",
+        "reputation": 51047995307721,
+        "rshares": 2865325068000,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3188671074569,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4107373187010,
+        "rshares": 1812257881409,
+        "voter": "hr1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 416503924007,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 608057298751,
+        "rshares": 639384198293,
+        "voter": "justin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 5506505053664,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27931460807554,
+        "rshares": 4762859094259,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1660910088894,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1066986711207,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 998562973442,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 320974921478,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18882858310850,
+        "rshares": 304756534498,
+        "voter": "theoretical"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3719692356,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4515835729,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 836889771,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7499265704293,
+        "voter": "complexring"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 64923946309,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5009147934382,
+        "rshares": 32970927171,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29449063355738,
+        "rshares": 436297198302,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26810455650,
+        "voter": "steemservices1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1993438790,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256413698,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 32513183306,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35385015759603,
+        "rshares": 212937539828,
+        "voter": "b0y2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241362310762,
+        "rshares": 16141562092,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 411833981689,
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9028537022578,
+        "rshares": 2601120756120,
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": -296615780418,
+        "rshares": 1856507042,
+        "voter": "mineralwasser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250001478305,
+        "rshares": 106094458746,
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 20907140377,
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 9947524418,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 2487731941,
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71087197697999,
+        "rshares": 1452802537128,
+        "voter": "benjojo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49549461527,
+        "rshares": 458224030530,
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 101807714979611,
+        "rshares": 794125962546,
+        "voter": "pfunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1136275760996,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 747375166,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7458354230246,
+        "rshares": 45089271576,
+        "voter": "stoner19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1160802522,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96486114508046,
+        "rshares": 2771190486001,
+        "voter": "donkeypong"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1301587831477,
+        "rshares": 23042189465,
+        "voter": "sadochismo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 6855649113,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 345799676,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9469162,
+        "rshares": 83918919690,
+        "voter": "unosuke"
+      },
+      {
+        "percent": "100",
+        "reputation": 76633033946568,
+        "rshares": 14794401312,
+        "voter": "piedpiper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 67334888003,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 80516415012,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4733188979515,
+        "rshares": 13089076163,
+        "voter": "ervin-lemark"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45329454600539,
+        "rshares": 177791083963,
+        "voter": "jamtaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 87363750745142,
+        "rshares": 500844011790,
+        "voter": "dana-edwards"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1655372026731,
+        "rshares": 8045407692,
+        "voter": "cryptorune"
+      },
+      {
+        "percent": "10000",
+        "reputation": 204869765185479,
+        "rshares": 1100208079865,
+        "voter": "gavvet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 526710884366,
+        "rshares": 7585655457,
+        "voter": "fran2k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41145563244589,
+        "rshares": 829397963387,
+        "voter": "steemship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4931834878069,
+        "rshares": 23177468426,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 485628257,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82831371778953,
+        "rshares": 844706378593,
+        "voter": "cryptogee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 376960001789,
+        "rshares": 5583524515,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2099078596,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 337675588507,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5414208804644,
+        "rshares": 16585060976,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 9268239812,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58571016273092,
+        "rshares": 710121833182,
+        "voter": "nanzo-scoop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 2951167683,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15755437221598,
+        "rshares": 19249171782,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 627954645291,
+        "rshares": 4153646240,
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49136918266,
+        "rshares": 14807014456,
+        "voter": "cian.dafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 60315621224,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21903005256174,
+        "rshares": 238737488748,
+        "voter": "mummyimperfect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 76844247566,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 594987180387,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1432241835,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3445407648199,
+        "rshares": 19104550961,
+        "voter": "bitswift"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39966682765041,
+        "rshares": 164448492017,
+        "voter": "sascha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2444317330502,
+        "rshares": 7156786337,
+        "voter": "radioactivities"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 410319321581,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 31247867646,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 511460192391,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 89597122663,
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3037854988445,
+        "rshares": 65642195685,
+        "voter": "ak2020"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 92462968418,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71931696380,
+        "rshares": 3753157111546,
+        "voter": "satoshifund"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2170379596106,
+        "rshares": 22408237751,
+        "voter": "m4ever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 407989965,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 379270713,
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 151933994804,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20763505296686,
+        "rshares": 233199908960,
+        "voter": "wingz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 53002130456,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "5500",
+        "reputation": 65989046107177,
+        "rshares": 316675250983,
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11429090901893,
+        "rshares": 114566705956,
+        "voter": "kenny-crane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1350589595,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 77590508815145,
+        "rshares": 286220637357,
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60725834714442,
+        "rshares": 511103797703,
+        "voter": "infovore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13619157612,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 75955452647,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2025139208,
+        "rshares": 839896459,
+        "voter": "marc-e"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5260794316761,
+        "rshares": 128826617413,
+        "voter": "schro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1205917850073,
+        "rshares": 19561969515,
+        "voter": "ziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1227825343197,
+        "rshares": 16046775777,
+        "voter": "zakharya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1866168070,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 282110250186,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2761596392902,
+        "rshares": 2749451100,
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 146263584999,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1960155455032,
+        "rshares": 4044936568,
+        "voter": "usefree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 86912853643710,
+        "rshares": 753613791659,
+        "voter": "anwenbaumeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 7270905104,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486415577627,
+        "rshares": 6263227831,
+        "voter": "mark-waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6200536920826,
+        "rshares": 74113311286,
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1152226827309,
+        "rshares": 12466312895,
+        "voter": "tocode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 265574018732,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 274656026130,
+        "rshares": 45048190319,
+        "voter": "honeythief"
+      },
+      {
+        "percent": "4000",
+        "reputation": 5571311902261,
+        "rshares": 1347191339,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 862610149295,
+        "rshares": 5387502462,
+        "voter": "angusleung100"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7949210311767,
+        "rshares": 31058131849,
+        "voter": "talanhorne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 5046241283,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 70523012933,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6735464595,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 3399879014,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8190519067,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12656257002205,
+        "rshares": 44578228756,
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 59637366736,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9434414518400,
+        "rshares": 16659999864,
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6053064579803,
+        "rshares": 25354368267,
+        "voter": "djm34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 15528192240,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8461965690396,
+        "rshares": 59673903079,
+        "voter": "norbu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15285243314,
+        "rshares": 151155773,
+        "voter": "ales"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5828114720,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 261414560,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 7787326905,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 209244968044,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 27263746865,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 324226766632,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1959446497877,
+        "rshares": 4353569931,
+        "voter": "dennygalindo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5520554489,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 40356554063,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19449097565894,
+        "rshares": 58766063190,
+        "voter": "lehard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65540661343,
+        "rshares": 3182234606,
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2876863753786,
+        "rshares": 5856940069,
+        "voter": "steamit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 145268013436,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7091975331308,
+        "rshares": 14939382244,
+        "voter": "konstantin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19462531467501,
+        "rshares": 33277274268,
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 46861474191,
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 16603817687,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5946822118,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6196402667353,
+        "rshares": 10804761828,
+        "voter": "jako"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 130005360599,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 14449795714,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6014285246,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1059790037173,
+        "rshares": 560187721984,
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 32990208092,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3028406122926,
+        "rshares": 6453350423,
+        "voter": "handsolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380128900631,
+        "rshares": 293427569,
+        "voter": "romel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6769322507,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 83937432850,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "1900",
+        "reputation": 4667991454724,
+        "rshares": 128959864700,
+        "voter": "slowwalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63015035100,
+        "rshares": 822719684,
+        "voter": "okkiedot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10585994983,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3149488018622,
+        "rshares": 3542969768,
+        "voter": "owdy"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9142611234,
+        "rshares": 330615256,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3871042,
+        "rshares": 305988016,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2770303185670,
+        "rshares": 1457651198,
+        "voter": "vi1son"
+      },
+      {
+        "percent": "10000",
+        "reputation": 960610083080,
+        "rshares": 943863353,
+        "voter": "nobreku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 67225543967,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 10366174839,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 143680329409,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10069093677389,
+        "rshares": 44025895979,
+        "voter": "mrwang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1220081355,
+        "rshares": 243356345,
+        "voter": "ardina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 899920858191,
+        "rshares": 1135178647,
+        "voter": "mixa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 7726853303,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1440357780524,
+        "rshares": 762881799,
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 975960321,
+        "voter": "steem1653"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 46655397353,
+        "voter": "mraytekin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 14141868605,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1106470849861,
+        "rshares": 2351322578,
+        "voter": "cloh76"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1648396897354,
+        "rshares": 10814346001,
+        "voter": "asim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 32289566590,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7952828943,
+        "rshares": 4881740391,
+        "voter": "thegoodguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2377467033356,
+        "rshares": 17335357040,
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 114935388111,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629304079354,
+        "rshares": 19450247154,
+        "voter": "str11ngfello"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 12342669795,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2397831198773,
+        "rshares": 4407297625,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14826352016829,
+        "rshares": 37027431730,
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 25444045727,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 8552837523,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 93395785733,
+        "rshares": 1425576016,
+        "voter": "jrd8526"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 237985094,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 167437582424,
+        "rshares": 342458473,
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 353825909723,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3879998019826,
+        "rshares": 4155445347,
+        "voter": "juvyjabian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2267677227,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2087820513398,
+        "rshares": 128370003552,
+        "voter": "gbert"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6741143115703,
+        "rshares": 4288651910,
+        "voter": "herverisson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7687950954082,
+        "rshares": 16414904601,
+        "voter": "anduweb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6338322241150,
+        "rshares": 45342144303,
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 265550459336,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 658204768651,
+        "rshares": 40699637402,
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 21204167062,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1248165138944,
+        "rshares": 15108541311,
+        "voter": "kendewitt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 20794770252,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1234131079581,
+        "rshares": 4373589253,
+        "voter": "r-niki09"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2085545098,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2078306772520,
+        "rshares": 5735509271,
+        "voter": "btcbtcbtc20155"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2713713668533,
+        "rshares": 1854925119,
+        "voter": "the-future"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34120390016,
+        "rshares": 3069554555,
+        "voter": "imp3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336756074227,
+        "rshares": 429170927,
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 12854579330,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 2472742939,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 192640340236,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 257517265490,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49770527,
+        "rshares": 3477776250,
+        "voter": "davidr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8897174175,
+        "rshares": 196930561,
+        "voter": "eclipse0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7024261765,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 618489338521,
+        "rshares": 1760042037,
+        "voter": "gfxmotion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10910231620999,
+        "rshares": 18788691426,
+        "voter": "bendjmiller222"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1830353392409,
+        "rshares": 3023124781,
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20001506960251,
+        "rshares": 231657211746,
+        "voter": "liberosist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6467956247739,
+        "rshares": 21923339702,
+        "voter": "deanliu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4194711042931,
+        "rshares": 4339560483,
+        "voter": "rainchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3782785917192,
+        "rshares": 8987015568,
+        "voter": "oumar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 33266270159,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14988694886527,
+        "rshares": 203809607198,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 1036656297841,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2555637099,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "6000",
+        "reputation": 10519849768972,
+        "rshares": 12649575608,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1720985289,
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 260899548,
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 261290501,
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151145512,
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 151999037,
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 86657502,
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7582874972117,
+        "rshares": 18119899907,
+        "voter": "prufarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 696318020,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 29770846221,
+        "rshares": 560402362,
+        "voter": "jasonpay1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2568808468562,
+        "rshares": 2582334157,
+        "voter": "sompitonov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2564054618,
+        "rshares": 112070311,
+        "voter": "activcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39913884914319,
+        "rshares": 16329157309,
+        "voter": "papa-pepper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213944110649,
+        "rshares": 1376683720,
+        "voter": "pump"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2964244437505,
+        "rshares": 252897379,
+        "voter": "viktorrabec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9611048410314,
+        "rshares": 24876632889,
+        "voter": "team-leibniz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10075428703343,
+        "rshares": 7847509038,
+        "voter": "webdeals"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28445884,
+        "rshares": 158640204,
+        "voter": "shadyonline"
+      },
+      {
+        "percent": "10000",
+        "reputation": 58190631451,
+        "rshares": 18462743020,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1203192685557,
+        "rshares": 1758235206,
+        "voter": "fleetinuance"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 618911664,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12521809,
+        "rshares": 225852101,
+        "voter": "dubraman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 417962899,
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 224168164,
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 78475461,
+        "voter": "yarly12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4062552056713,
+        "rshares": 10711784398,
+        "voter": "phoenixmaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 247311783844,
+        "rshares": 972381129,
+        "voter": "hofman386"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 35361125351,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5095600502,
+        "rshares": 115507974,
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 14373799320,
+        "voter": "smailer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 129091453,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 843609166,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 171651493,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 27754843148,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4046144208870,
+        "rshares": 1588457502,
+        "voter": "webosfritos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 106575300404,
+        "rshares": 4144725324,
+        "voter": "glitterpig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6931641798,
+        "rshares": 110227366,
+        "voter": "andrew-charles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 921046665,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 52649085689,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1275505236,
+        "rshares": 9229282677,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36625546797,
+        "rshares": 778544423,
+        "voter": "pakisnxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10137266406870,
+        "rshares": 6316770118,
+        "voter": "nekromarinist"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 52489886,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11856501387697,
+        "rshares": 42726678567,
+        "voter": "allasyummyfood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4232493695535,
+        "rshares": 2232080424,
+        "voter": "french.fyde"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 53473560,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24331253993,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 48290580198,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2730766591183,
+        "rshares": 1020300827,
+        "voter": "handmade"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3731142865186,
+        "rshares": 2701763485,
+        "voter": "timcliff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3194641726781,
+        "rshares": 23058527966,
+        "voter": "laoyao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18027204457681,
+        "rshares": 29198889941,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 25323296438,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 33434515648,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25724194555647,
+        "rshares": 35537072494,
+        "voter": "timsaid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 144042539115,
+        "rshares": 604216404,
+        "voter": "baryonlee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3967443654,
+        "voter": "ullikume"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6102104454,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 1307922822,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12393203621507,
+        "rshares": 26056997730,
+        "voter": "omfedor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 60678739,
+        "voter": "michellek"
+      },
+      {
+        "percent": "10000",
+        "reputation": 519457263879,
+        "rshares": 62581334482,
+        "voter": "poteshnik83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1685450515149,
+        "rshares": 3138994752,
+        "voter": "steemleak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19964916752653,
+        "rshares": 104232350508,
+        "voter": "thisisbenbrick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898801272252,
+        "rshares": 1964682505,
+        "voter": "t3ran13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 638930934079,
+        "rshares": 417771456,
+        "voter": "wiser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66769295082002,
+        "rshares": 49542850500,
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 96624970971,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11122126920308,
+        "rshares": 3936367661,
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1562464639,
+        "rshares": 51270513,
+        "voter": "nickche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 113159907,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 109589358725,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7767180487460,
+        "rshares": 9753374668,
+        "voter": "gargon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955505384817,
+        "rshares": 2377300146,
+        "voter": "pgarcgo"
+      },
+      {
+        "percent": "5300",
+        "reputation": 3740136030964,
+        "rshares": 858177561,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1433416370023,
+        "rshares": 55745109552,
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 53884258,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 52099594,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11180006820,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15018520093808,
+        "rshares": 25610537414,
+        "voter": "eneismijmich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11861754844312,
+        "rshares": 14175720656,
+        "voter": "queenmountain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 51753317,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4542627765008,
+        "rshares": 19704922706,
+        "voter": "hanshotfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 51619811,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 1675077833,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28335136369,
+        "rshares": 1588889351,
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 290150684,
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4130836907564,
+        "rshares": 18350971736,
+        "voter": "highlite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 56139970267,
+        "rshares": 65288764,
+        "voter": "evgenyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 234905614,
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1146505325539,
+        "rshares": 391466063,
+        "voter": "fingolfin"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 61515128,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 593072231,
+        "rshares": 61696026,
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9332405310628,
+        "rshares": 28581470314,
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 1227614779,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 710891266725,
+        "rshares": 86899730,
+        "voter": "princewahaj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2798458785,
+        "rshares": 62193914,
+        "voter": "tommycordero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 289207830105,
+        "rshares": 61056742,
+        "voter": "elenirossidou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2118792724924,
+        "rshares": 81479984950,
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114992597,
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 490170833577,
+        "rshares": 167279718,
+        "voter": "njall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62391219,
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 65718444,
+        "rshares": 61906848,
+        "voter": "frankbacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 52400873,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 61110411,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 4081769072,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51899170,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28535887165,
+        "rshares": 71551855,
+        "voter": "longevity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57513824,
+        "rshares": 60661014,
+        "voter": "rashka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4637390447698,
+        "rshares": 1157301308,
+        "voter": "chinadaily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13325577893779,
+        "rshares": 11671878170,
+        "voter": "kyriacos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31215012571,
+        "rshares": 37801718569,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": -30464467585,
+        "rshares": 76396543,
+        "voter": "pompe72"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4088300066909,
+        "rshares": 20120598983,
+        "voter": "runaway-psyche"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 61280240854,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2725853299020,
+        "rshares": 5477211959,
+        "voter": "solarguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587729701840,
+        "rshares": 890579467,
+        "voter": "crazycow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 44529428534261,
+        "rshares": 71522788415,
+        "voter": "serejandmyself"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3388690269338,
+        "rshares": 7891748407,
+        "voter": "mrgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 317984497509,
+        "rshares": 122575003,
+        "voter": "sifodyas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1284562774,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 278901402,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51863356,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51860909,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51859074,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51856300,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51852278,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 517546794156,
+        "rshares": 297177089,
+        "voter": "steevc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 397516062,
+        "rshares": 58816907,
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 71768449,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3137399626023,
+        "rshares": 2515145412,
+        "voter": "steembeast"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 6707334696,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51481279,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 58276258,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2140537429766,
+        "rshares": 17451575270,
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 128799717225,
+        "rshares": 58573454,
+        "voter": "kamil5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 25844812596,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 750670097928,
+        "rshares": 583716864,
+        "voter": "fungusmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 58064982,
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166185808108,
+        "rshares": 88566696,
+        "voter": "artsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5742611366,
+        "rshares": 1452152725,
+        "voter": "indykpol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17140629596244,
+        "rshares": 40533784938,
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 12977696308,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 76843163,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6745333673,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 12312214943,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3725920343994,
+        "rshares": 7602805802,
+        "voter": "booky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1876749044289,
+        "rshares": 1885804953,
+        "voter": "shadowspub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51562255,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23296483960,
+        "rshares": 57141055,
+        "voter": "bonapetit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1232405079,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1063317981552,
+        "rshares": 8631426165,
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18957179674,
+        "rshares": 61596105,
+        "voter": "uri-bruck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17676358821986,
+        "rshares": 17764396323,
+        "voter": "krnel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 184100704754,
+        "rshares": 56716182,
+        "voter": "sammie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 72949544569,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199905262704,
+        "rshares": 90048180,
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 74584024,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 7007253599,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 1150475918,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 682893592,
+        "rshares": 702944498,
+        "voter": "gear66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1736702154666,
+        "rshares": 2038682352,
+        "voter": "xanoxt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20797221470,
+        "rshares": 1785470813,
+        "voter": "davidjkelley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7483402975,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38377870181305,
+        "rshares": 56649566562,
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 51718188,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51388276,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205523551305,
+        "rshares": 1498342749,
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 232802458264,
+        "rshares": 16530233402,
+        "voter": "digital-wisdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 57184430,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 401342498891,
+        "rshares": 219451496,
+        "voter": "areynolds"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7306624703593,
+        "rshares": 13415180082,
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52143228,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 785171622834,
+        "rshares": 5980090861,
+        "voter": "jwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1354778162586,
+        "rshares": 100654728,
+        "voter": "tatianka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 635505831325,
+        "rshares": 109707855,
+        "voter": "xvickx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1955050298650,
+        "rshares": 346743386,
+        "voter": "masonmiler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797155307423,
+        "rshares": 354598090,
+        "voter": "shieha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2840774649947,
+        "rshares": 16347941669,
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1648532870,
+        "voter": "smisi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2856930496335,
+        "rshares": 3325509658,
+        "voter": "nubchai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54632424,
+        "voter": "budda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988835724525,
+        "rshares": 389973123,
+        "voter": "kiwideb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51154263,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51148009,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51142585,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 282251870,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 9400497569,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250756708358,
+        "rshares": 62308270,
+        "voter": "plotbot2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1810829967,
+        "rshares": 2876576574,
+        "voter": "bwaser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 5043672027,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54012814,
+        "voter": "warhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53990613,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 94397808,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 106768414,
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5223594852,
+        "rshares": 159885110,
+        "voter": "gracewriter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 380010632,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 70034816,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50377764,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26215514,
+        "rshares": 20473094261,
+        "voter": "brains"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53531096,
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 52597837,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5014250342169,
+        "rshares": 4418418711,
+        "voter": "thornybastard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1815018579403,
+        "rshares": 757836116,
+        "voter": "uceph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53400199,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2697602494482,
+        "rshares": 3956902718,
+        "voter": "ibringawareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9789912031,
+        "rshares": 54408230,
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4205608568581,
+        "rshares": 4309234760,
+        "voter": "burnin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85320565457,
+        "rshares": 82477022,
+        "voter": "lilli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1140212510918,
+        "rshares": 55408421,
+        "voter": "positivesteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33451402996481,
+        "rshares": 186528421973,
+        "voter": "jamielefay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726273314822,
+        "rshares": 511475810,
+        "voter": "boxcarblue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 54685141,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5277939809,
+        "voter": "chick1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5646699288797,
+        "rshares": 3301289240,
+        "voter": "gringalicious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661603952344,
+        "rshares": 2841142234,
+        "voter": "steempowerwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50523318,
+        "voter": "aoki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50470409,
+        "voter": "typingagent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50468091,
+        "voter": "cwb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 679010673667,
+        "rshares": 54497066,
+        "voter": "nelyp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 35511792131,
+        "rshares": 2662692080,
+        "voter": "robcichocki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 570800415880,
+        "rshares": 1642000278,
+        "voter": "ellepdub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 50852949,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 160840003,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 444900926552,
+        "rshares": 6905558856,
+        "voter": "thenakedgod"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3256405941440,
+        "rshares": 873940602,
+        "voter": "michelle.gent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 3416103209,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50441122,
+        "voter": "eavy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50439559,
+        "voter": "roto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124036083402,
+        "rshares": 856913286,
+        "voter": "clayboyn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 131138770594,
+        "rshares": 63781944,
+        "voter": "marquismiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1051554596883,
+        "rshares": 816795708,
+        "voter": "infotoday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414887802912,
+        "rshares": 656281830,
+        "voter": "antifragile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3765152822,
+        "rshares": 65259350,
+        "voter": "arnebolen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5174844467,
+        "voter": "morgan.waser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1715232698,
+        "rshares": 81680073,
+        "voter": "flourishing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15733009437,
+        "rshares": 52128958,
+        "voter": "sroka87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2714958787123,
+        "rshares": 7358303027,
+        "voter": "hustle-no-more"
+      },
+      {
+        "percent": "10000",
+        "reputation": 774561357,
+        "rshares": 51185859,
+        "voter": "sageboba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1013227798,
+        "voter": "robotev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80388747576,
+        "rshares": 539612153,
+        "voter": "judithgpordon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16125834,
+        "rshares": 50217794,
+        "voter": "sobechronicles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1665210501,
+        "voter": "strong-ai"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17924136040,
+        "rshares": 448144955,
+        "voter": "imightbluff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 79254686,
+        "voter": "igtes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804954090860,
+        "rshares": 329629477,
+        "voter": "aldentan"
+      }
+    ],
+    "author": "donkeypong",
+    "author_reputation": 96486114508046,
+    "beneficiaries": [],
+    "body": "![Results7d0831505b.png](https://www.steemimg.com/images/2016/09/01/Results7d0831505b.png)\n\n## How a group of Steemit\u2019s senior writers forged a partnership with @nextgencrypto to help direct whale votes for a good cause\n\n**The \u201cProject Curie\u201d Team:** @donkeypong @the-alien @liberosist @kevinwong @anwenbaumeister @infovore @gavvet @steemship, plus contributors including @cryptogee @andrarchy @piedpiper @nanzo-scoop @rok-sivante and others. Several team members volunteer their time for free, others make a small income from curating posts, and many of us contribute SBD from our own payouts to this project. \n\n**The Voting Power and Support:** @nextgencrypto, other whale accounts who prefer to remain unnamed, and our group\u2019s own orca-level accounts. \n\n# Announcing Project Curie\n\nHave you seen Steemit\u2019s Trending page lately? Scroll down past the VIP section. Beyond the Top 10-20 posts, you\u2019ll begin to notice something truly wonderful: an amazing diversity of fresh content.  \n\nNew authors, artists, and photographers are finally starting to get the rewards and visibility they deserve.\n\nA few weeks ago, it was quite a different story. \n\n![HeadinSand0b838.jpg](https://www.steemimg.com/images/2016/09/01/HeadinSand0b838.jpg) \n\nBarely three months after the Beta launch, a crisis was emerging: Steemit was attracting new users and content faster than the largest Steem Power holders could distribute resources.\n\nNot too long ago, most of those rewards were going to a handful of content creators. There was a stunning lack of diversity on the main page. We know, because WE are some of the authors who have made those big rewards. We still enjoy writing (and many of us depend on the income from our posts), but our group of writers also realized that we needed to help get some rewards to others. \n\n\n**Steemit was failing the unknown writers and artists: they were posting great content but not getting rewarded.**\n\n\nContrary to popular belief, some of the largest whales had the same objectives that we did. They also were trying to find undiscovered content to upvote and reward. But they didn\u2019t have enough hours in the day to sort through the increasing volume of posts. \n\nFaced with an increasing number of newcomers, with new hopes, new dreams, new aspirations, and overall, new human stories\u2026 Some people thought that maybe some of us should offer our help, because otherwise it could be just a matter of time until we all start scrolling down the boulevard of broken dreams.\n\nMeanwhile the number of new users kept increasing. And there were more good posts that were going unrewarded. Newcomers with new hopes, new dreams, new aspirations, and new stories\u2026who would have broken dreams and no rewards if we didn\u2019t take action. \n\n**So we offered to help.**\n\nEarlier, Tom @donkeypong had helped organize a group of Steemit\u2019s senior writers and content creators to discuss issues that we had in common. And it turned out that our writers\u2019 group was not interested in making ourselves more money. We were primarily concerned with helping others who were posting good content and not being rewarded. \n\nMost members of this group spend a lot of time mentoring newer writers and artists. Others in our group wanted to take a more active role in voting. And so we decided to pool some of our own votes to see if we could make a difference in rewarding some of the best quality posts from newer authors. \n\nUnfortunately, we\u2019re just orcas, not big whales. And so our votes together added a few dollars, but not enough to bring sizeable rewards or visibility to these deserving posts. \n\n![puzzle-piecescc805.jpg](https://www.steemimg.com/images/2016/09/01/puzzle-piecescc805.jpg)\n\n# The Partnership\n\nSo @donkeypong began discussing a possible partnership with @nextgencrypto. The two had talked previously about their common interests in building other original content areas on Steemit, so Tom thought they might be able to work together on this. @nextgencrypto has been vocal about ending the Steemit \u201ccirclejerk\u201d on the front page. He wants to build communities in other topic areas and reward high quality writing, photography, blogging, and other original content. But the large SP holders\u2019 duty of re-allocating Steemit\u2019s resources to emerging content creators was becoming a burden. He also was impressed with the writers group and its dedication. \n\nAfter seeing the types of deserving posts that the writers group was discovering, @nextgencrypto recognized what a rare opportunity this group provided. He and the writers group developed a partnership. @nextgencrypto would contribute whale accounts to provide voting power, while the writers would curate posts from undiscovered and deserving authors. \n\nSince that partnership was born, additional whale accounts are joining with Project Curie to provide more Steem Power. You\u2019re probably familiar with @berniesanders, who still makes some votes on his own but allocates others to this project. Some of our other clients prefer to stay unnamed. We are open to adding more whale accounts if the partnership is a good fit. \n\nBecause the project\u2019s curators are some of Steemit\u2019s most successful content creators, we have an eye for talent. Working together, we can find the best posts from a diversity of topic areas and genres. We can help them succeed.  \n\n![Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg](https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg)\n\n# The Guidelines\n\nAfter the team members were brought in, some guidelines were established for curation. These are just guidelines and we can make exceptions, but we do so rarely. Here are the main ones:\n\n1.) Only original content. Articles, poetry, photography, videos, recipes, etc. that appear nowhere else on the Internet (yes, we\u2019re checking, and we\u2019ve only missed a few plagiarized articles so far out of 1000\u2019s of votes). \n\n2.) No Steemit-related posts, unless they are truly unique (in which case, they usually get enough upvotes from others anyway)\n\n3.) No overtly religious or political posts (aiming for a diversity of other topics)\n\n4.) Generally, no introductory posts, unless there is something additional in the posts that merits consideration\n\n5.) We discuss the posts and triage the most worthy of them into different tiers. For Tier 1 posts (which get hit with a full 100% whale power vote), the author must have a track record of having made a few good quality posts on Steemit, and we must be convinced by a previous introductory post or via outside social media or blogs that the person is verified, but that author has NOT made any large rewards yet and does NOT have a big account yet. \n\n6.) As for the other voting tiers, which get lower scaled % votes from us, the criteria is a trade secret. Our lips are sealed. The recipients do include authors who have been working very hard and posting consistently great content, but still struggling to get consistent rewards. We hope we can help get them established and encourage them to keep posting good work on Steemit. And there are other criteria also, but we\u2019ll stop there.  \n\n![Curie5d60d.jpg](https://www.steemimg.com/images/2016/09/01/Curie5d60d.jpg) \n\n# The Curation Work\n\nHiring a team of primary curators to help us, we started to work in teams that cover all time zones in 24/7 round-the-clock shifts so that we do not miss too many deserving posts. We divide the work with some of our members scanning feeds, digging through posts, and finding those high quality gems. Other group members check for plagiarism and provide another level of review for the selected posts, which we discuss and sort. \n\nAnd other members operate our proxy accounts that vote on the posts. Unfortunately, @laonie and the bots catch onto our voting accounts very quickly. We have nothing against the bots, but if we let them have their way, they siphon off rewards that could be channeled to deserving authors. So we must constantly switch out the proxy accounts that we use. Bots, could you please help our project by adding a 5-minute delay on following Project Curie accounts? \n\nWe put a lot of effort and due diligence into our curation work. As individuals, we even provide mentoring help as needed or we refer emerging writers and artists to other volunteer mentors. \n\n![GalleryCornelisVanDerGeestd3286.jpg](https://www.steemimg.com/images/2016/09/01/GalleryCornelisVanDerGeestd3286.jpg) \n\n# The Results\n\nWe are constantly searching for new authors, writers and artists who haven\u2019t given give up, bloggers who persisted, artists who stayed true to themselves, and more importantly, quality posts that add some sort of value to the community. \n\n## So far, we have made more than 1,000 votes for Project Curie. \n\nIf you see Trending posts from non-established authors (particularly those just outside the Top 10 or 20 posts), chances are very good that our project helped find them and boost them up to where others can see and evaluate their work. \n\t\nWe found one very good author who had made 19 posts on Steemit, all completely undiscovered, and had earned about $2 in total from them all, but he kept going. Once we found him, we helped this author\u2019s most recent post become noticed by the community, who rewarded it up to one of the top positions on the Trending page and gave this man a few thousand dollars in well-deserved rewards. \n\nAlso importantly, other authors we have found have made more than 23 cents on a post; perhaps our scaled % votes have given them $25 or $50 or $100, encouraging them to keep working hard and producing good quality content on Steemit. \n\n![pandas-helping-each-other-upa62e0.jpg](https://www.steemimg.com/images/2016/09/01/pandas-helping-each-other-upa62e0.jpg)\n\n**You should see some of the comments from these authors; some of them have cried with joy to finally make a few dollars in rewards. Some of us cry with joy after reading their comments.** \n\nSteemit is expanding, and with it we may need to expand too in order to reach more and more new great authors, and fresh new content, and cover more themes. Out of 5,000 posts made daily on Steemit, we are able to curate only about 1,000 currently. We would welcome a few additional whale accounts to add voting power for Project Curie, which could help us reward the deserving posts that we still cannot quite reach and boost the most worthy posts higher on the Trending page. In time, we will add more members to our authors group and to our curating team, too. \n\nBut we will not grow too big, because we value our original purpose and we also enjoy working with each other in this group. \n\nSteemit\u2019s resources need to be redistributed to reward a broad base of content creators. The whales can\u2019t do it all on their own, and maybe we shouldn\u2019t blame them for everything. When they need help, we\u2019ll be here to offer a willing hand to help bring something beneficial for both the individual and the platform in its organic expansion, helping out in the transition through smart work, dedication, and a lot of due diligence.\n\n# How You Can Help Project Curie\n\n**1.) Support the authors we find, if you like their work.** We are working hard to get them noticed and rewarded, but then it\u2019s important for them to become established in the community. If the broader community likes their work and decides to follow and reward them, then Project Curie\u2019s pipeline can end. We give them that chance. And then, we can move on to support others. \n\n**2.) Do your own curation and help find deserving authors.** Use our criteria above, or develop your own. If a post has been active for more than 3 hours and has less than $10 in rewards, that means others have missed it so far. Find some worthy authors to support and share their work with everyone. You can share it with us, too, by submitting it to the #curie channel on Steemit.chat, which we monitor (link: https://steemit.chat/channel/curie ). If you submit posts from other authors (not yourself) who meet our guidelines, and if we include that post in our project, then we will pay you a finder\u2019s fee also. But please do not spam our project members or whale supporters with your posts, who need to spend their time on this project. \n\n![telephone-operatorb02b1.png](https://www.steemimg.com/images/2016/09/01/telephone-operatorb02b1.png) \n\nIn fact, to value their time, we must make a bright line rule here: anyone who spams links to our members directly will be REMOVED PERMANENTLY from consideration for our curation project. Instead, if you have a post that meets our standards and is worthy of consideration, please submit your posts to the #curie channel on Steemit.chat (link: https://steemit.chat/channel/curie ). We will monitor that channel, find them, and consider including them.\n\n**3.) Leave comments with feedback on deserving posts.** New and emerging content creators often appreciate the comments even more than the money. A good comment will help them feel welcome and provide some encouragement to continue working hard. \n\n**4.) Support undiscovered and deserving authors first. Yet please do not forget that the members of Project Curie are writing fewer posts themselves, curating more, and putting some of their own earnings back into this project.** When you see their posts on Steemit, assuming you like those posts, please do not forget what they are doing for this community.\n\nSome of our members do this for free and others receive some small payment, since they are humans and have bills to pay. We are not getting rich by curating. If you see our whale friends upvoting the posts we write or sending us payments, you also will notice that we are paying most of that money back into Project Curie. We cannot cover all the work ourselves, so we have hired a small team of primary curators to assist us in finding posts to consider, discuss, and sort. We need to pay our curation team a fair wage for their help. \n\n**5.) As Steemit grows, feel free to borrow our model and create your own curation team!** \n\nWe hope you agree that Project Curie is an important addition to Steemit. We basically operate it like a non-profit organization. It is our way of helping to make Steemit more diverse, more representative of different authors, and a more welcoming home for deserving content creators. We can encourage people to post about what interests them. Instead of following trends, they will be driving Steemit\u2019s natural expansion. \n\n![Social_Network_Analysis_Visualizatione07f8.png](https://www.steemimg.com/images/2016/09/01/Social_Network_Analysis_Visualizatione07f8.png)",
+    "body_length": 14608,
+    "cashout_time": "2016-09-08T09:12:21",
+    "category": "steemit",
+    "children": 167,
+    "created": "2016-09-01T09:12:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"curation\",\"curie\"],\"users\":[\"nextgencrypto\",\"donkeypong\",\"the-alien\",\"liberosist\",\"kevinwong\",\"anwenbaumeister\",\"gavvet\",\"steemship\",\"cryptogee\",\"andrarchy\",\"piedpiper\",\"nanzo-scoop\",\"rok-sivante\",\"berniesanders\",\"laonie\"],\"image\":[\"https://www.steemimg.com/images/2016/09/01/Results7d0831505b.png\",\"https://www.steemimg.com/images/2016/09/01/HeadinSand0b838.jpg\",\"https://www.steemimg.com/images/2016/09/01/puzzle-piecescc805.jpg\",\"https://www.steemimg.com/images/2016/09/01/Babel-Lille-2012-Bibliohteque-ideale-2-Jean-Francois-RAUZIER4f9da.jpg\",\"https://www.steemimg.com/images/2016/09/01/Curie5d60d.jpg\",\"https://www.steemimg.com/images/2016/09/01/GalleryCornelisVanDerGeestd3286.jpg\",\"https://www.steemimg.com/images/2016/09/01/pandas-helping-each-other-upa62e0.jpg\",\"https://www.steemimg.com/images/2016/09/01/telephone-operatorb02b1.png\",\"https://www.steemimg.com/images/2016/09/01/Social_Network_Analysis_Visualizatione07f8.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-01T10:17:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 149062061070924,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1424.491 HBD",
+    "percent_hbd": 10000,
+    "permlink": "announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors",
+    "post_id": 1082058,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Announcing Project Curie: Bringing Rewards and Recognition to Steemit\u2019s Undiscovered and Emerging Authors",
+    "title": "Announcing Project Curie: Bringing Rewards and Recognition to Steemit\u2019s Undiscovered and Emerging Authors",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@donkeypong/announcing-project-curie-bringing-rewards-and-recognition-to-steemit-s-undiscovered-and-emerging-authors"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "3200",
+        "reputation": 145171381514207,
+        "rshares": 9305098550743,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7540631789209,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54641917740,
+        "rshares": 346793468149,
+        "voter": "berkah"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13823888326286,
+        "rshares": 14532994747651,
+        "voter": "summon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 38716048904800,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "5600",
+        "reputation": 27004834032159,
+        "rshares": 295233592153,
+        "voter": "modprobe"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3894279128605,
+        "rshares": 3312720859409,
+        "voter": "wackou"
+      },
+      {
+        "percent": "5000",
+        "reputation": 25104157850610,
+        "rshares": 1116865609185,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14756948501919,
+        "rshares": 6721298561938,
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "4000",
+        "reputation": 16685610555705,
+        "rshares": 8655333156110,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12842871326086,
+        "rshares": 108317724579,
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2827502899317,
+        "rshares": 934527471682,
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3088126066,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3748070527,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 709555888,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 52490407712,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1655369126,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 213388298,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 56433829125,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 320142432924,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "5200",
+        "reputation": 23744414677575,
+        "rshares": 1529885561813,
+        "voter": "onceuponatime"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7721164803904,
+        "rshares": 8646031228,
+        "voter": "bloggersclub"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1020605791078,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 621134153,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 908810301,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1327846425796,
+        "rshares": 5042495742,
+        "voter": "sammy007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4874033031398,
+        "rshares": 367081825671,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 66744755769,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4909504649121,
+        "rshares": 64440059766,
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76462073287981,
+        "rshares": 352966729328,
+        "voter": "ash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 287692819,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12188250813227,
+        "rshares": 78402291464,
+        "voter": "acidsun"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 11062374885,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361002365029,
+        "rshares": 863955534,
+        "voter": "moh-rokib"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54345938068170,
+        "rshares": 91597111116,
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15487907462,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2830877880805,
+        "rshares": 136442495929,
+        "voter": "vato"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34347753869675,
+        "rshares": 198346153782,
+        "voter": "camilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21498120740,
+        "rshares": 9872385447,
+        "voter": "gregory60"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14848515958625,
+        "rshares": 81366978889,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2177269778,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 8033465454,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1824927775784,
+        "rshares": 75310894240,
+        "voter": "the-ivor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2677033396,
+        "rshares": 412754937,
+        "voter": "cortegam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 52532211218,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "5000",
+        "reputation": 60877390332151,
+        "rshares": 198392624448,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1799010661,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 20399422317,
+        "rshares": 3878298841,
+        "voter": "innocent22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4740608822,
+        "rshares": 601900636,
+        "voter": "kodi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3082980795,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 89262274316,
+        "rshares": 29017656764,
+        "voter": "trung81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 872967846578,
+        "rshares": 5242494783,
+        "voter": "marta-zaidel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4676723015398,
+        "rshares": 19909472509,
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 494920527180,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 354491950,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10395665548525,
+        "rshares": 203051058866,
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7152109350579,
+        "rshares": 3795644601,
+        "voter": "cm-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9090232372242,
+        "rshares": 90236952087,
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6531398726064,
+        "rshares": 142532647556,
+        "voter": "killerstorm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2340825657228,
+        "rshares": 14150480091,
+        "voter": "blindleaf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 318591204229,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 55085867186,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3046358914696,
+        "rshares": 19312518291,
+        "voter": "samether"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4888412869111,
+        "rshares": 27826933601,
+        "voter": "vladislav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14675201322501,
+        "rshares": 74404878273,
+        "voter": "faddat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 771767379417,
+        "rshares": 1697811008,
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12494904871301,
+        "rshares": 228255590314,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1222010452191,
+        "rshares": 3452316468,
+        "voter": "antizvuk"
+      },
+      {
+        "percent": "9900",
+        "reputation": 48542961182602,
+        "rshares": 1423331702798,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6200536920826,
+        "rshares": 77146762746,
+        "voter": "albertogm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 17431154136,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26564452802341,
+        "rshares": 363929328660,
+        "voter": "inboundinken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2407214688261,
+        "rshares": 69299815192,
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1613752018459,
+        "rshares": 6295300422,
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 14314776607,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5078903531942,
+        "rshares": 1356407638,
+        "voter": "micheletrainer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459522539935,
+        "rshares": 13058436832,
+        "voter": "bitcoinmeister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1676955163155,
+        "rshares": 3849938100,
+        "voter": "spikykevin"
+      },
+      {
+        "percent": "5000",
+        "reputation": 213668684615,
+        "rshares": 224613017,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11415305020986,
+        "rshares": 39812001527,
+        "voter": "menta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12046532310513,
+        "rshares": 11340687079,
+        "voter": "stealthtrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3175467999049,
+        "rshares": 20017583141,
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9786117166130,
+        "rshares": 11977770740,
+        "voter": "mindover"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 295108200,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6244867547,
+        "rshares": 1278063967,
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223278762484,
+        "rshares": 16470040273,
+        "voter": "jazzka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 110179598891,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1371681467487,
+        "rshares": 6298907866,
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31480034934779,
+        "rshares": 66728686671,
+        "voter": "katecloud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26654160223111,
+        "rshares": 8739465314,
+        "voter": "halo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2821855573125,
+        "rshares": 3703064316,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38134889,
+        "rshares": 6375163539,
+        "voter": "perwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34257528322,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 849409157,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 213565690794,
+        "rshares": 18687213539,
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27031203647,
+        "rshares": 241440929,
+        "voter": "omegastarscream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2644191137390,
+        "rshares": 7914350834,
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3674446315320,
+        "rshares": 9495756808,
+        "voter": "domavila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5029542492239,
+        "rshares": 8993282230,
+        "voter": "blinova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 378872031,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3502382308233,
+        "rshares": 3761240828,
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13139621251056,
+        "rshares": 82600002057,
+        "voter": "manthostsakirid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 900427911,
+        "rshares": 234715590,
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601243388017,
+        "rshares": 1645034477,
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 8982158958,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1558637285991,
+        "rshares": 1193254954,
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 41016280414,
+        "rshares": 224702176,
+        "voter": "lazelchaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 782596410473,
+        "rshares": 3992362851,
+        "voter": "poseidon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 81637934901,
+        "rshares": 106968988,
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 23098291588,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7018124605,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2619388406406,
+        "rshares": 568625642,
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715993081769,
+        "rshares": 303128536,
+        "voter": "bitlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 160134373956,
+        "rshares": 7952077675,
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 113621687,
+        "voter": "rodarauj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49520881548,
+        "rshares": 130516856,
+        "voter": "btc-dialog"
+      },
+      {
+        "percent": "5000",
+        "reputation": 2795999874461,
+        "rshares": 486277146627,
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 2271219104,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26039739848,
+        "rshares": 358306124,
+        "voter": "rcmdantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2366647046610,
+        "rshares": 13819924532,
+        "voter": "fleuri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11096186337460,
+        "rshares": 24412291969,
+        "voter": "anca3drandom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12468455070375,
+        "rshares": 6309606122,
+        "voter": "carlidos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13032104555879,
+        "rshares": 8372079992,
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103997978070,
+        "rshares": 467010373,
+        "voter": "raphma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 589740436669,
+        "rshares": 1264471196,
+        "voter": "theflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14360532541981,
+        "rshares": 15167628795,
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 7444900103,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1902150039240,
+        "rshares": 4413967283,
+        "voter": "gapil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7215894035,
+        "rshares": 115236334,
+        "voter": "xanimes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 58998581895,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 157370635229,
+        "rshares": 203221691,
+        "voter": "steemitdude"
+      },
+      {
+        "percent": "5000",
+        "reputation": -4779249072914,
+        "rshares": 220520245,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3115442152,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 661258765,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 110203683,
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8710090850955,
+        "rshares": 19389616150,
+        "voter": "rampant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4116067655741,
+        "rshares": 1426732738,
+        "voter": "sykochica"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1320262999851,
+        "rshares": 1761021146,
+        "voter": "naturalista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9995923586884,
+        "rshares": 12738290170,
+        "voter": "amy-goodrich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 12929787124,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 512132085322,
+        "rshares": 7048341805,
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3942069730400,
+        "rshares": 890051070,
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1468410335,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5836792362,
+        "rshares": 63221491,
+        "voter": "sky.max"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54488992034,
+        "rshares": 108300081,
+        "voter": "boloyang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 878675358,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 3872792870,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 84243674408,
+        "rshares": 86145041,
+        "voter": "erikkartmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1468923383,
+        "rshares": 62451953,
+        "voter": "rataloclaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1269864429223,
+        "rshares": 2135724567,
+        "voter": "kainmarx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 187055084,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1706681630,
+        "rshares": 1631288233,
+        "voter": "cmorton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91384020663,
+        "rshares": 61456091,
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 145684441672,
+        "rshares": 120429011,
+        "voter": "bmcv001"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33467338593,
+        "rshares": 61385527,
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62588711,
+        "voter": "bachthilien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 43382167874,
+        "rshares": 2403607785,
+        "voter": "dcpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 597889009267,
+        "rshares": 70977665,
+        "voter": "sarita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62079098,
+        "voter": "totogta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 490170833577,
+        "rshares": 168334510,
+        "voter": "njall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 497846177749,
+        "rshares": 401225808,
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5297329962603,
+        "rshares": 5767999635,
+        "voter": "chrisadventures"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 1341495651,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 286385675205,
+        "rshares": 67716615,
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 23206755125,
+        "rshares": 61292097,
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 369551116,
+        "rshares": 158047570,
+        "voter": "clf999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 496239547,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 54588377,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15908343365,
+        "rshares": 57093305,
+        "voter": "gmskov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 786907831,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2129192774361,
+        "rshares": 246362842,
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 486947585501,
+        "rshares": 172828705,
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59922207,
+        "voter": "isalondono"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 51613018,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 901378583777,
+        "rshares": 1563888700,
+        "voter": "freewill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 390670616718,
+        "rshares": 178377386,
+        "voter": "tlarsen2080"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 15495377006,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 70147043,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9053611702217,
+        "rshares": 6677260940,
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 6644043097,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1182781392,
+        "rshares": 55159471,
+        "voter": "ganga"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716083654011,
+        "rshares": 58852647,
+        "voter": "dryde"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1987750394564,
+        "rshares": 55646141,
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1332086538676,
+        "rshares": 1794545095,
+        "voter": "gamerholic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 118704463,
+        "voter": "libertyrocks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 56887954,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4272392942041,
+        "rshares": 64818321,
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 111116739,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 61826880,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18234699449,
+        "rshares": 58186044,
+        "voter": "persik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 169999059,
+        "rshares": 57752912,
+        "voter": "kevanbalmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1608017298201,
+        "rshares": 103021052,
+        "voter": "steemitguide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225178513133,
+        "rshares": 57706367,
+        "voter": "dazedbunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 55698555,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 11310688069,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1548523117,
+        "rshares": 57721493,
+        "voter": "landslide"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 45793806497,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 96018554976,
+        "rshares": 50054519,
+        "voter": "kita"
+      },
+      {
+        "percent": "10000",
+        "reputation": 466867123,
+        "rshares": 53839107,
+        "voter": "nbragg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 647817952097,
+        "rshares": 56071235,
+        "voter": "evolka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 1865913237,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9357899502,
+        "rshares": 53755102,
+        "voter": "virgo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 53433968,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3755265902762,
+        "rshares": 59832112,
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": -287669733,
+        "rshares": 55620764,
+        "voter": "flamedarkmoon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7306624703593,
+        "rshares": 56731590,
+        "voter": "kommienezuspadt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1246651487,
+        "rshares": 54634677,
+        "voter": "stephenm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1511945712631,
+        "rshares": 895999478,
+        "voter": "sift666"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1919986626165,
+        "rshares": 636616349,
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2852613092773,
+        "rshares": 97717969,
+        "voter": "andressilvera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6334668426,
+        "rshares": 51914983,
+        "voter": "gsdalex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55025746,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8859041042380,
+        "rshares": 21203734506,
+        "voter": "natureofbeing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 673915909724,
+        "rshares": 1597704733,
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5949422263,
+        "rshares": 68629439287,
+        "voter": "asksisk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92235697712,
+        "rshares": 61482765,
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 633133259080,
+        "rshares": 54481429,
+        "voter": "chaeya"
+      },
+      {
+        "percent": "10000",
+        "reputation": -339315404202,
+        "rshares": 73202145,
+        "voter": "wwwmmm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1600871276,
+        "rshares": 55704800,
+        "voter": "francesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55171849,
+        "voter": "gateguy1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54050826,
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54996833,
+        "voter": "johnsovereign"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12368054643,
+        "rshares": 52049175,
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 304603834882,
+        "rshares": 53707619,
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52493832,
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2155203229,
+        "rshares": 52437364,
+        "voter": "steemvixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 932570039,
+        "rshares": 53278513,
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1348150747,
+        "rshares": 53250634,
+        "voter": "edfremantle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 92840038384,
+        "rshares": 52068903,
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5156839136,
+        "rshares": 53042099,
+        "voter": "eshafatima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5000717548,
+        "rshares": 52968748,
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 712472119,
+        "rshares": 51820992,
+        "voter": "fatalmongoose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 52870480,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51800762,
+        "voter": "working"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1642056924,
+        "rshares": 52788917,
+        "voter": "insaneroots"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824760,
+        "rshares": 52784673,
+        "voter": "oleg999"
+      }
+    ],
+    "author": "rampant",
+    "author_reputation": 8710090850955,
+    "beneficiaries": [],
+    "body": "# Why I love Steemit\n\nI'm inspired by the possibilities of steemit.  As someone who has built artist communities from the ground up I know how STUPID HARD it is for creators to get paid.  So I love steemit, it gives creatives a real chance to shine.\n\n# My Girlfriend doesn't really believe\nSo I told her I was going to bodypaint her for steemit.  It took some convincing, but she went with it.\nhttps://s20.postimg.io/kuo7d1l0t/DSC05416_up.jpg\n\n## UPDATE: She's a believer now.  She loves you all.  Thank you so much!\n\nThis was kind of a spur of the moment thing.  She didn't believe I was going to do it, and was actually surprised when I brought out the paintbrush and bodypaint supplies that had been sitting in the bottom of a bag ever since I moved to Vietnam.  It had been years since I'd used them.\n\nhttps://s20.postimg.io/i4jgtldpp/DSC05418_hd.jpg\n\n## What to do... what to do...\nTo be honest I really didn't have a clue what I was going to paint.  I thought about it for a sec and decided to use the steemit colors (which I luckily had in my smalll supply of options) and do something that was both robotic/cyberpunk and artistic.  There were a few missteps and I ended up erasing a few ideas as I went (you'll see in photos below.\n\nhttps://s20.postimg.io/xejc0s97x/DSC05419_up_hd.jpg\n\n## Settled on tribal steemit cyborg\nSteemit is a bunch of different tribes - art people, writing people, crypto people, and general anarchists - all thrown together sharing and creating.  \n\n### It's an online burning man\nhttps://s20.postimg.org/7zkt40v59/DSC05417_u.jpg\n\nMy girlfriend had never been painted before, so it was an experience for her.  It was weird at first but by the end she loved it.  She wants to do it again.\n\nMy dog on the other hand is just confused:\nhttps://s20.postimg.io/5wadwcvcd/14068091_10153685253407601_2376440152659051098_n.jpg\n> Dog: WTF IS ALL THIS??\n\n### Notes from my girlfriend (written by her)\n\"At the beginning I felt it was a bit scary and weird.  Weird to take my clothes off, get painted on, and I'm scared cause I don't know how my skin will react to all the paint.  But @rampant said it would be ok.  But I threatened to kill him if he was wrong ;)\n\nOriginally I didn't like it because it was cold.  The AC was on.  But then I liked it because it's very intimate and close and it felt very good between us.  When it was finished I really liked it.  \n\nThere is something about being a work of art that's really satisfying.\"\n\n## What I Used\nMostly wolfe and diamond FX brand bodypaint, with a few other brands thrown in.  I may do a writeup about all the major brands shortly and what they are good/not good for.\n\nYou can use just about any type of paintbrush you want, water color brushes are generally your best bet.  I also use sponges, which are used for covering large areas fast and evening out brush strokes.  You might notice that the brush strokes here are NOT evened out, because the sponges i had were old and just didn't help.\n\nThe other thing is paint brands: Kryolan does a better job of looking \"even\" than wolfe, but can't get crisp lines.  Really making things pop like some of my other work requires having the right blends of different paint types, or a lot more work to make up for it.\n\n## Like Bodypainting and art? [Follow @rampant](https://steemit.com/@rampant)\n\n### In Process shots from my phone:\nhttps://s20.postimg.io/w5vgf5h9p/14068317_10153685253272601_8230334669199790134_n.jpg\n\nEnded up erasing these lower back ideas, just didn't like them compared to clean white.\nhttps://s20.postimg.io/oeeqgld4d/14063928_10153685253237601_2249842057911555349_n.jpg\nhttps://s20.postimg.io/hcgsue9il/14040146_10153685253192601_876211917429005061_n.jpg\n\nPre-texture\nhttps://s20.postimg.io/q8w6c2pil/14051834_10153685253107601_8283450409394248330_n.jpg\n\nBack piece done:\nhttps://s20.postimg.io/9u28zi7jh/14068317_10153685252362601_5863664764406146057_n.jpg\n## Like Bodypainting and art? [Follow @rampant](https://steemit.com/@rampant)",
+    "body_length": 3982,
+    "cashout_time": "2016-08-24T18:48:36",
+    "category": "steemit",
+    "children": 34,
+    "created": "2016-08-17T18:48:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"photography\",\"art\",\"bodypainting\",\"cyberpunk\"],\"users\":[\"rampant\"],\"image\":[\"https://s20.postimg.io/kuo7d1l0t/DSC05416_up.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T15:26:15",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 101559866012604,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "1409.418 HBD",
+    "percent_hbd": 10000,
+    "permlink": "first-original-steemit-bodypaint",
+    "post_id": 857272,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "First Original Steemit Bodypaint",
+    "title": "First Original Steemit Bodypaint",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@rampant/first-original-steemit-bodypaint"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..aa7255a0fd3fc1c9265d5d24dbf566023ca55fb5
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit.tavern.yaml
@@ -0,0 +1,30 @@
+---
+  test_name: Hivemind condenser_api.get_post_discussions_by_payout patterns test
+
+  marks:
+    - patterntest
+    - failing
+    - xfail # extra votes are likely caused by problems with muting
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_post_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: "condenser_api.get_post_discussions_by_payout"
+          params: {"tag":"steemit"}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "tag_steemit"
+            directory: "condenser_api_patterns/get_post_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit_paginated.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit_paginated.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..0f8aef76b2978b78132e85624ffbdf36e4581587
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit_paginated.orig.json
@@ -0,0 +1,6750 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "598539502036",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7239080969594",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29027553998213",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "354858432524",
+        "voter": "berkah"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "19781220773197",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "35675436782070",
+        "voter": "jamesc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147938687963",
+        "voter": "highasfuck"
+      },
+      {
+        "percent": "7900",
+        "reputation": 0,
+        "rshares": "407218747798",
+        "voter": "modprobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6980120500284",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6344432030125",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "223373121837",
+        "voter": "samupaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5843958796192",
+        "voter": "enki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6721621207697",
+        "voter": "fuzzyvest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108725056812",
+        "voter": "sandra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32642296478",
+        "voter": "ihash"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "891292329368",
+        "voter": "ihashfury"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1714932055191",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3427116689546",
+        "voter": "roadscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3076451088919",
+        "voter": "wang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3087945489",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3747843918",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "709527559",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52460046216",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1655278834",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "213388298",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "131938054174",
+        "voter": "alex90342fastn1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56438227169",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "443683389073",
+        "voter": "recursive2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "402190863052",
+        "voter": "recursive3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "458551896765",
+        "voter": "masteryoda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2816588148852",
+        "voter": "recursive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "804146567420",
+        "voter": "boombastic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116242026851",
+        "voter": "mrs.agsexplorer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22176529762",
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9059334445",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2388037166",
+        "voter": "bingo-1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5120979430061",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1232548364142",
+        "voter": "steempower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "360917713952",
+        "voter": "boatymcboatface"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "312550029434",
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256826026816",
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27891582403",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "621111136",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1057711793957",
+        "voter": "tuck-fheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "906997671",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "382702328891",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "432390688762",
+        "voter": "steemrollin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "44987575146",
+        "voter": "tatianamoroz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33380663218",
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64439897254",
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24179423583",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "287689277",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23735849287",
+        "voter": "steampunkpowered"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23365263631",
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11288137638",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6596335515",
+        "voter": "bluestar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34803365337",
+        "voter": "noisy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "410825572557",
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "108242679306",
+        "voter": "craig-grant"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80184232655",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "185053211350",
+        "voter": "bleepcoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "533785882709",
+        "voter": "eeks"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "7642649930",
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "501645966",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5676643197",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45575829971",
+        "voter": "tsugimoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2049195085",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "337393973750",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "10034907487",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3490194440",
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8819353174",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5499468924",
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1320082412",
+        "voter": "karask"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7562018196",
+        "voter": "kefkius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60183824069",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1478055908",
+        "voter": "jonathan-tokki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51502167860",
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68723832169",
+        "voter": "asch"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "187788157255",
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 0,
+        "rshares": "1799001825",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19196327746",
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1702188822",
+        "voter": "dmitry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5430960254",
+        "voter": "andu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20315788274",
+        "voter": "vippero"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "473983400237",
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362198296",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97461552973",
+        "voter": "midnas-howler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18522621619",
+        "voter": "allahhh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217886221590",
+        "voter": "billbutler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32617932414",
+        "voter": "daenerys"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23787991811",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369143537",
+        "voter": "localether-com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "36985708618",
+        "voter": "justtryme90"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "94076287501",
+        "voter": "eric-boucher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4090525823",
+        "voter": "andre-ager"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745794847",
+        "voter": "malacandrahyoi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "485931938",
+        "voter": "spartanza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392202333",
+        "voter": "stiletto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244796144438",
+        "voter": "churdtzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "325674122325",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "345683782",
+        "voter": "gabe92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57377315249",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "10414990943",
+        "voter": "andrarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12867723357",
+        "voter": "paradise-paradox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3219868380",
+        "voter": "pangur-ban"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30981210809",
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "183988250652",
+        "voter": "will-zewe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2908355651",
+        "voter": "john.galt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3668346416",
+        "voter": "kennyskitchen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20051826751",
+        "voter": "chris-bell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2985433139",
+        "voter": "ola-haukland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113446360961",
+        "voter": "kaylinart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80364066472",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "427191549",
+        "voter": "magdalena"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "127845492565",
+        "voter": "omarb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1697694767",
+        "voter": "stephen-somers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1480961322",
+        "voter": "tee-em"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41975818558",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115363335857",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191120735629",
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23027268390",
+        "voter": "ozzy-vega"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46156913974",
+        "voter": "geoffrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239492600744",
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "123942782756",
+        "voter": "vollumc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "208035429422",
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39266668869",
+        "voter": "honeythief"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21037599820",
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37083542157",
+        "voter": "marco-delsalto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23540373163",
+        "voter": "jonnyrevolution"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2867119743",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70685811496",
+        "voter": "freedomengineer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48999936499",
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3906088763",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1395816810",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4750346902",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6565043921",
+        "voter": "quintanilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11346049160",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "652354570",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39569668489",
+        "voter": "clement"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14275536405",
+        "voter": "damirkatusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20012906292",
+        "voter": "acassity"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1019490436",
+        "voter": "bigs21024"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3312844812",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10502052474",
+        "voter": "nobodyishome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8224014275",
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8790234040",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3116417057",
+        "voter": "sunshinecrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18643914874",
+        "voter": "jholdsworthy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4835340540",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3138917486",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70802354370",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1956765579",
+        "voter": "orly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5655579363",
+        "voter": "kakradetome"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4803506606",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "250032476",
+        "voter": "mstang83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14094358864",
+        "voter": "katyakov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "333760331",
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "310292244",
+        "voter": "skywxp3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9107628818",
+        "voter": "allycat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25658932519",
+        "voter": "hitmeasap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5082852219",
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57548508773",
+        "voter": "krypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3313120640",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20017583141",
+        "voter": "hakise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "126096104817",
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115538212292",
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50150767",
+        "voter": "aidar88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61120769636",
+        "voter": "jackkang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246839370",
+        "voter": "andreaalexandria"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "937937016",
+        "voter": "basicstepnetwork"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3488225046",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "217278169153",
+        "voter": "juneaugoldbuyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31775106834",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1218445066",
+        "voter": "anwar78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54368830189",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220688054540",
+        "voter": "domino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37315003864",
+        "voter": "worldfamous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7898664059",
+        "voter": "hammurabi"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "16250591322",
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436999115215",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10577700327",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "103180125694",
+        "voter": "cdubendo"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "181872883",
+        "voter": "barbara2"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "201457116",
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "186437755",
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112400144011",
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "926265102",
+        "voter": "cousteau"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1110948588",
+        "voter": "demyan7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20284084930",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6427457006",
+        "voter": "autosmile13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "245149849",
+        "voter": "denaver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099399818",
+        "voter": "dicov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "543033400",
+        "voter": "coxzee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "252407179",
+        "voter": "losos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1347676902",
+        "voter": "marcgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4385267232",
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4265580525",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3703064316",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10850011469",
+        "voter": "blockchainbilly"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "2358060259",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11392025737",
+        "voter": "bdavid"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1167929823",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70134531425",
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12381086291",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19449956948",
+        "voter": "showmethecoinz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "348131383300",
+        "voter": "bobbylee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "246269747",
+        "voter": "omegastarscream"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11397117160",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116027032796",
+        "voter": "speda"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3061488330",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2591611916",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7936216649",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55148678592",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "203840552",
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "329447964",
+        "voter": "dr2073"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13128556267",
+        "voter": "jpiper20"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7404235177",
+        "voter": "noodhoog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7002493892",
+        "voter": "sylv3se"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3420158950",
+        "voter": "theyam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3372986749",
+        "voter": "dcryptogold"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2351802084",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "392928485",
+        "voter": "alexoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "244919377",
+        "voter": "karenmckersie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7160444141",
+        "voter": "btcupload"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "399843632",
+        "voter": "leonir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7291948061",
+        "voter": "fundurian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1221391857",
+        "voter": "allmonitors"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2400141375",
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38134289553",
+        "voter": "streetstyle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53599003601",
+        "voter": "milestone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7293377700",
+        "voter": "lichtblick"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3686362084",
+        "voter": "maximkichev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "263376582",
+        "voter": "natali22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1984657080",
+        "voter": "chahredine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239409901",
+        "voter": "delik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1546398672",
+        "voter": "vyrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275758175",
+        "voter": "illlefr4u"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234399963",
+        "voter": "keyser"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "525889828542",
+        "voter": "ramta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "234865291",
+        "voter": "valeri"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413482907",
+        "voter": "natalyt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2365322836",
+        "voter": "supermeatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1218114432",
+        "voter": "sgnsteems"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4062221159",
+        "voter": "oululahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "151020771383",
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114431941",
+        "voter": "jdenismusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9516878585",
+        "voter": "mustafaomar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3458391154",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14470705397",
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30817647673",
+        "voter": "thylbom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "125768183",
+        "voter": "bobo012"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22424712801",
+        "voter": "ubg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "519264529",
+        "voter": "fubar-bdhr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21043486083",
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7018124605",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10807532486",
+        "voter": "rpf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162367721344",
+        "voter": "gabbans"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2686624734",
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3251552616",
+        "voter": "jayjustmay"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "557218486",
+        "voter": "vlad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5382937678",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2899841094",
+        "voter": "azurejasper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914394435",
+        "voter": "travelista"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24905586054",
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664885799",
+        "voter": "amor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "732840665",
+        "voter": "birdie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1765399894",
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "277035330",
+        "voter": "ulis29k"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111726756",
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9956409307",
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7627503076",
+        "voter": "neroru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111302877",
+        "voter": "rodarauj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "137758887922",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "372610263",
+        "voter": "meteor78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "992815841030",
+        "voter": "james212"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2069332962",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "6155207922",
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "339159763",
+        "voter": "jeison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34342946516",
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113369331",
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1100179675",
+        "voter": "yarly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "248171732",
+        "voter": "yarly2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "254193655",
+        "voter": "yarly3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147330103",
+        "voter": "yarly4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144870813",
+        "voter": "yarly5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82655604",
+        "voter": "yarly7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4828190086",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45620410584",
+        "voter": "arcurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19292007499",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "351280513",
+        "voter": "rcmdantas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8822077802",
+        "voter": "alsprinting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121757317",
+        "voter": "mysteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "220460475084",
+        "voter": "johnsmith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4341716134",
+        "voter": "sacode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4354702977",
+        "voter": "bbrewer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8991351156",
+        "voter": "winstonwolfe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "810700298",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13085352885",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "638436185",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2608158760",
+        "voter": "trisnawati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221401214",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "247428720",
+        "voter": "yarly10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221406946",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "136034937",
+        "voter": "yarly11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14348810962",
+        "voter": "brianphobos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1946359529",
+        "voter": "royalmacro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74716626",
+        "voter": "yarly12"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "191784574",
+        "voter": "fnait"
+      },
+      {
+        "percent": "3000",
+        "reputation": 0,
+        "rshares": "188143036",
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3093755210",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84206519",
+        "voter": "elliottgodard"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6959284437",
+        "voter": "lykkeliten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112996238",
+        "voter": "creatorgalaxy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5435957975",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5955058211",
+        "voter": "dimitarj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186902061",
+        "voter": "taz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "105249109",
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3486573436",
+        "voter": "pigatron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67712728526",
+        "voter": "sterlinluxan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1052360420",
+        "voter": "jumpman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24851285157",
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "327673258",
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3199186633",
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "686691794",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112407757",
+        "voter": "alrx6918"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112380478",
+        "voter": "donnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6865300336",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51143991",
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52810577",
+        "voter": "johnblow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62755119",
+        "voter": "igorphoto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50731326",
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14986975493",
+        "voter": "magicmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6936211487",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5041482209",
+        "voter": "shaneradliff"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-83726924",
+        "voter": "nickskywalker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2161323306",
+        "voter": "rich77"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "362369875",
+        "voter": "mariadianaelaine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63781255",
+        "voter": "lolitroy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4234530163",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "291957878",
+        "voter": "chris.roy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7488773093",
+        "voter": "viktor.phuket"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "890051070",
+        "voter": "cjclaro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63435975",
+        "voter": "delph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66568444",
+        "voter": "moneymike88"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62016239",
+        "voter": "muizianer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6397738626",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "374758679",
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4509216404",
+        "voter": "pvhf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5590371160",
+        "voter": "terrycraft"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "70266838",
+        "voter": "luke490"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1266206625",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "99810252",
+        "voter": "ivanj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7535103949",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16516716503",
+        "voter": "velourex"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37378179298",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2854594198",
+        "voter": "oflyhigh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66036998",
+        "voter": "fruityloan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3872976365",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63700992",
+        "voter": "rataloclaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191977586",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1978711661",
+        "voter": "vladikras"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "641776659",
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17151442251",
+        "voter": "driv3n"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51120963",
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "395192793",
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50828873",
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6480835436",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4928703525",
+        "voter": "goingpaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62710297",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "177311949",
+        "voter": "jrcornel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50521096",
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62830022",
+        "voter": "successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19594603685",
+        "voter": "nixonnox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50390768",
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62668549",
+        "voter": "nuggplug"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61385527",
+        "voter": "sijoittaja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1585500134",
+        "voter": "erikclark13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124905016",
+        "voter": "gamerate"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "230038074",
+        "voter": "vootka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "841870387",
+        "voter": "bhavnapatel68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50183394",
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1944089747",
+        "voter": "loveangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61696026",
+        "voter": "immortality"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6413587008",
+        "voter": "mrosenquist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "101928704085",
+        "voter": "miacats"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64990311",
+        "voter": "davidrobison"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "112641010",
+        "voter": "future-shock"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50545877",
+        "voter": "party1998"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59551135",
+        "voter": "melissag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59927283",
+        "voter": "immortal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61906848",
+        "voter": "frankbacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51153233",
+        "voter": "jarvis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418299247",
+        "voter": "ashwim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1341594859",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72759729",
+        "voter": "chinese-gandalf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67716615",
+        "voter": "smartguylabcoat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50692212",
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1359248893",
+        "voter": "tralawar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64764303",
+        "voter": "filmaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62542956",
+        "voter": "kana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71412929",
+        "voter": "sharperguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "471791545",
+        "voter": "virtualgrowth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "460254110600",
+        "voter": "dollarvigilante"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31613585286",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58371530",
+        "voter": "convex83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "506164338",
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60521896",
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111232966",
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "162355112",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7087974684",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4010611937",
+        "voter": "themanualbot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1695151192",
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "199289634",
+        "voter": "catherinebleish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "186649040",
+        "voter": "telos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63201866",
+        "voter": "daxinth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50684643",
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50682252",
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50680459",
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50677748",
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50673817",
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4393253109",
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4207936549",
+        "voter": "chaospoet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57640568",
+        "voter": "longtech"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1587975084",
+        "voter": "movievertigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50311250",
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13567361860",
+        "voter": "yef99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133222141",
+        "voter": "mig641"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25722226492",
+        "voter": "sweetsssj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133499193",
+        "voter": "mweich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56903682",
+        "voter": "zite"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58145166",
+        "voter": "ildanis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122630615",
+        "voter": "erroneous-logic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59009965",
+        "voter": "christiansenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59437116",
+        "voter": "dooglio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59008405",
+        "voter": "murrayvonhoppe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59369550",
+        "voter": "clintb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56686070",
+        "voter": "sleepyb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58997531",
+        "voter": "canambullion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58988877",
+        "voter": "li-enfield"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58984845",
+        "voter": "attacheguevera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47600960463",
+        "voter": "barrycooper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1012017935",
+        "voter": "matildapurse"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59126308",
+        "voter": "wmhammer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18857040542",
+        "voter": "dragonanarchist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59198033",
+        "voter": "mckeever"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "92754956",
+        "voter": "volcomic.com"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "300320702",
+        "voter": "stillsafe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59296940",
+        "voter": "knyggajames"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6758364138",
+        "voter": "emancipatedhuman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77941159",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10446807943",
+        "voter": "pressfortruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58269068",
+        "voter": "adam173"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63526791",
+        "voter": "damon225"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43612453081",
+        "voter": "albensilverberg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6677277934",
+        "voter": "sethlinson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58930451",
+        "voter": "vanessarose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22855667033",
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55120960",
+        "voter": "rangertx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6348828465",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58916638",
+        "voter": "layl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58932559",
+        "voter": "dorians"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57828186",
+        "voter": "ajavajive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59263960",
+        "voter": "stevenlytle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58864493",
+        "voter": "shamballa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58863225",
+        "voter": "willdizon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "222234138",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107768448",
+        "voter": "samwarner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72079195",
+        "voter": "onetree"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58855959",
+        "voter": "eggsy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914557314",
+        "voter": "harand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58846446",
+        "voter": "mediahound"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2716988832",
+        "voter": "mistowed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77146133",
+        "voter": "slorunner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59174678",
+        "voter": "markose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8000912011",
+        "voter": "mandibil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58782028",
+        "voter": "nuttofanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58768736",
+        "voter": "ericbelsey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57614111",
+        "voter": "scooterrockets"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1346327423",
+        "voter": "karisa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "843596691",
+        "voter": "riceowladam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58732483",
+        "voter": "embraceurdialect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58722032",
+        "voter": "tsbloyer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59099349",
+        "voter": "rawfreedom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58698612",
+        "voter": "smoken81"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59228916",
+        "voter": "therealpaul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58787702",
+        "voter": "haripetrov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60622154",
+        "voter": "christowner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58816543",
+        "voter": "anurbanmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "191999073876",
+        "voter": "oldtimer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58625501",
+        "voter": "admiralbird"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17818125151",
+        "voter": "daut44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58619645",
+        "voter": "anarchodrew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418397623",
+        "voter": "aviator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59044569",
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54814897548",
+        "voter": "larkenrose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58584416",
+        "voter": "caborandy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "914815424",
+        "voter": "voluntarismrules"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "785451248",
+        "voter": "rlziggy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3206776891",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57295162",
+        "voter": "johnm862"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58435806",
+        "voter": "bettyanne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51839643",
+        "voter": "abanks1000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50416427",
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "76866008",
+        "voter": "wilder"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58434983",
+        "voter": "gigiswebs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58484155",
+        "voter": "shurik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72182496",
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58404253",
+        "voter": "padrof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1037312719",
+        "voter": "avielhitchens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58398357",
+        "voter": "wmitch58"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58364093",
+        "voter": "ronaldneil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66998944",
+        "voter": "brandon-rosano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58330329",
+        "voter": "chuvox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58325149",
+        "voter": "intrepidca"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5521573955",
+        "voter": "rimann"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58309524",
+        "voter": "waldencall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58305767",
+        "voter": "kurtlloyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58648262",
+        "voter": "mikerowerules12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58268916",
+        "voter": "javichino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58841669",
+        "voter": "maceytomlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "814177942",
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71898322",
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1597059869",
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60020555",
+        "voter": "jusan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55941246",
+        "voter": "silvereagle1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55226811",
+        "voter": "deejayehn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58834956",
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62003656",
+        "voter": "dajohns1420"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4033737249",
+        "voter": "silverbug2000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58179884",
+        "voter": "freedapeoples"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58167598",
+        "voter": "hosscomp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14244406400",
+        "voter": "playerdeus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58140913",
+        "voter": "gordovious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69825852",
+        "voter": "daniel030"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56156330",
+        "voter": "eslopez92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62202585",
+        "voter": "glezeddy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58531767",
+        "voter": "tom1gorman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62650201",
+        "voter": "deleted"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58083507",
+        "voter": "tomtrial"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58065672",
+        "voter": "rhysday"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113497899",
+        "voter": "mrainp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56919346",
+        "voter": "matteo2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58025713",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58513508",
+        "voter": "denisdiaz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6706595944",
+        "voter": "etcmike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18185255552",
+        "voter": "non-judgemental"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57950964",
+        "voter": "travisrwilson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57949625",
+        "voter": "danielsgb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65813454",
+        "voter": "ats-david"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "74144473",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62955132",
+        "voter": "texkitten"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-57103495",
+        "voter": "stephenkendal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2625019093",
+        "voter": "bitcoin3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58243271",
+        "voter": "mstudemeyer13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57103645",
+        "voter": "mikeonfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57917120",
+        "voter": "anarchyroolz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57909399",
+        "voter": "starbuck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "745617396",
+        "voter": "loganarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56764104",
+        "voter": "ratinct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64015459",
+        "voter": "samsunglg7413"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69413590",
+        "voter": "darkflame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "197447117",
+        "voter": "shanelohre"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52715164",
+        "voter": "somethingsea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52810460",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57851525",
+        "voter": "alikc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59464308",
+        "voter": "lukie257"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57848777",
+        "voter": "bddoolin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57844151",
+        "voter": "kymera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10505150406",
+        "voter": "jakemccauley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51686374324",
+        "voter": "skum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55550808",
+        "voter": "nwoinfowarrior"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57817200",
+        "voter": "rhcastilhos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38712163448",
+        "voter": "simon-says"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58554218",
+        "voter": "whitezombie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "207081271",
+        "voter": "wizwom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57804401",
+        "voter": "richardkoontz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54380942",
+        "voter": "ryangbanister"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71892286",
+        "voter": "quinneaker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57774321",
+        "voter": "bradgoetsch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57765750",
+        "voter": "djpeezee"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59864488",
+        "voter": "malxdrakon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57744177",
+        "voter": "booble394"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "380020476",
+        "voter": "daveks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54247105",
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56507000",
+        "voter": "stevep"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4301371631",
+        "voter": "bitbutter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57582000",
+        "voter": "glowmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54192703",
+        "voter": "nickawesome101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1727715510",
+        "voter": "dennisoosterwaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2843892838",
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79719071",
+        "voter": "agirlandhernap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "148113908",
+        "voter": "jennsky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57537502",
+        "voter": "autonomygarden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346370290",
+        "voter": "funkywanderer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56835260",
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61485913",
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56653604",
+        "voter": "marsalive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8468136835",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57479266",
+        "voter": "mrrl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "100188566",
+        "voter": "arnoldwish"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1805783063",
+        "voter": "richardcrill"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55188304",
+        "voter": "jjepic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57432859",
+        "voter": "rdennis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "988343362",
+        "voter": "mister-t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73096652",
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "46768142805",
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1800633267",
+        "voter": "jeremyfromwi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58091241",
+        "voter": "arnoldz61"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57370536",
+        "voter": "rcyan333"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57363928",
+        "voter": "freewilly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1025772806",
+        "voter": "liquidrainbowx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50588612",
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57200621",
+        "voter": "anarvol"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57195282",
+        "voter": "freetobe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56070721",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57189619",
+        "voter": "jaytaylor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64279725",
+        "voter": "profanarky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57154670",
+        "voter": "cryp71x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57116285",
+        "voter": "whoownsyou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52596857",
+        "voter": "roy2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1909306568",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "540397043",
+        "voter": "markrmorrisjr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55917465",
+        "voter": "michaelmillman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57008181",
+        "voter": "lindseylambz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50593879",
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50271139",
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50262756",
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "839571930",
+        "voter": "leneg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55770868",
+        "voter": "kenfitz3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56858421",
+        "voter": "xrayovac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55708086",
+        "voter": "mrbud"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56807433",
+        "voter": "yoopercharged"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56025314",
+        "voter": "goldstein"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "373540743",
+        "voter": "ghasemkiani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54555981",
+        "voter": "howverydroll345"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55669133",
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56781082",
+        "voter": "fizzgig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1325569609",
+        "voter": "sponge-bob"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59213106",
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55660383",
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60833389",
+        "voter": "pierce-the-veil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "124438627",
+        "voter": "l0k1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56911312",
+        "voter": "theunicornking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56436574",
+        "voter": "saintbitts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58435569",
+        "voter": "sanzu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56718470",
+        "voter": "i-am-cuul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55579083",
+        "voter": "mrmike3rd7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56663411",
+        "voter": "gzen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "167718520",
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3765600208",
+        "voter": "ericbotticelli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56619031",
+        "voter": "cardsanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54396426",
+        "voter": "randro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "656815148",
+        "voter": "tylerdav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51033798",
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1253221290",
+        "voter": "sile"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1840903324",
+        "voter": "titusfrost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56524504",
+        "voter": "rktonny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "788243276",
+        "voter": "matthewtiii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55401224",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53152469",
+        "voter": "dragon93"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "28408156142",
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56759615",
+        "voter": "ahmetova"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2649813769",
+        "voter": "activistpost"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "133176180",
+        "voter": "lapingvino"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56422434",
+        "voter": "cowa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3991088976",
+        "voter": "gardenofeden"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54289104",
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56498160",
+        "voter": "noggfresh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1338292484",
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50712038",
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50710305",
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55100682",
+        "voter": "randal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56939399",
+        "voter": "bighammerfitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7245455063",
+        "voter": "ionescur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50644082",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56126260",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54993742",
+        "voter": "lyubovbar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1934829584",
+        "voter": "hunterisgreat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56047742",
+        "voter": "nima"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58363765",
+        "voter": "tito-baron"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1829599731",
+        "voter": "metalbrushes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55953309",
+        "voter": "inscrutable"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "142291804",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50356354",
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1812426354",
+        "voter": "michaelmatthews"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "941666402",
+        "voter": "canalytic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55755220",
+        "voter": "fourfingerz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55155287",
+        "voter": "topslim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55736881",
+        "voter": "arrax"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55849814",
+        "voter": "thebeachedwhale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41129675767",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61668627",
+        "voter": "avemend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57793799",
+        "voter": "magdalenaruth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55171651",
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57642877",
+        "voter": "libertarianism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65508674",
+        "voter": "skeptic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55609288",
+        "voter": "billgrey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55572977",
+        "voter": "shingrae"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52300009",
+        "voter": "t-killa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50065875",
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50059754",
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50054445",
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1001199334",
+        "voter": "benadapt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55392038",
+        "voter": "natural"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55390495",
+        "voter": "widto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55312794",
+        "voter": "stark2081"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55290988",
+        "voter": "rasfos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "896395562",
+        "voter": "ateam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "97248059",
+        "voter": "maytons"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50825587",
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55131842",
+        "voter": "eth0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54608517",
+        "voter": "lilmisjenn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51815820",
+        "voter": "michivollgas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53973109",
+        "voter": "ruscle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53951892",
+        "voter": "recurvez"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55025871",
+        "voter": "scottiemac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50751176",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53870477",
+        "voter": "jensk92"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53133533",
+        "voter": "wifi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53746826",
+        "voter": "dr-who"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50603364",
+        "voter": "rocknrolldm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54873574",
+        "voter": "peacefulpunk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "89309880",
+        "voter": "dr-house"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54781771",
+        "voter": "ct-gurus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52615599",
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54733052",
+        "voter": "angelfire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53633596",
+        "voter": "efroul"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58459524",
+        "voter": "zzzzzzzzz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54234557",
+        "voter": "lifeworship"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50361239",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54636437",
+        "voter": "vilzsteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53555002",
+        "voter": "villainhuhu"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51394338",
+        "voter": "ms-awareness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54602521",
+        "voter": "napsnsnacks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52437364",
+        "voter": "steemvixen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53486009",
+        "voter": "jrblackmore"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53478598",
+        "voter": "imc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53411790",
+        "voter": "mike2125"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53396102",
+        "voter": "deviatour"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54452240",
+        "voter": "rare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51230467",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54380131",
+        "voter": "bik1980"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53278513",
+        "voter": "napwest"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54312208",
+        "voter": "jessicanicklos"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53228997",
+        "voter": "ultiphil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53190964",
+        "voter": "cristianod7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52104910",
+        "voter": "mohamedmashaal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53137936",
+        "voter": "dooglet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53131533",
+        "voter": "freedomizer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54184927",
+        "voter": "balaji"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53117133",
+        "voter": "zonpower"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52041445",
+        "voter": "yegor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54151856",
+        "voter": "sschulerr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54143294",
+        "voter": "activistnoise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50953995",
+        "voter": "feruz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52012416",
+        "voter": "skypilot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51979174",
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53033634",
+        "voter": "afmaster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54079697",
+        "voter": "thefrenchman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53015112",
+        "voter": "cjsdns"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54028123",
+        "voter": "beans-in-mayo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50846073",
+        "voter": "alwayzgame"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54013354",
+        "voter": "public-emily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52948493",
+        "voter": "christopherkemp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54002407",
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53992164",
+        "voter": "ronaldbijl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53988449",
+        "voter": "frederickdenton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53975830",
+        "voter": "amiami"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52902612",
+        "voter": "sic-savidicus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52900485",
+        "voter": "thefuzzytrader"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52890364",
+        "voter": "mikarasila"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53739039",
+        "voter": "thisdayinanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51783297",
+        "voter": "noah.morris"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52814743",
+        "voter": "konkin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794653",
+        "voter": "herbdata"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52781878",
+        "voter": "susanhope"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52772186",
+        "voter": "rogerkver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52750237",
+        "voter": "angelus.silesius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52750104",
+        "voter": "unknown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52726417",
+        "voter": "stronglead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51603627",
+        "voter": "nospin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52635830",
+        "voter": "eric-the-red"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53679242",
+        "voter": "heroic15397"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52557773",
+        "voter": "no-mercy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52540869",
+        "voter": "petrius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53381124",
+        "voter": "aine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53434588",
+        "voter": "infowarfare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52100450",
+        "voter": "finaleent"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50900574",
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50917987",
+        "voter": "bebout98"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50376324",
+        "voter": "lightobserver"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50274131",
+        "voter": "hankgalt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "161889539",
+        "voter": "catvirus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154855305",
+        "voter": "ajvent"
+      }
+    ],
+    "author": "dollarvigilante",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center>https://www.steemimg.com/images/2016/08/17/LarkenRoseAmandaRachwitzAnarchastSteem0b4bb.jpg</center>\n\nI had the pleasure of having a conversation with Larken Rose (@larkenrose) and Amanda Rachwitz (@dragonanarchist) this week to discuss progess on the Mirror Project and how Steemit has been helping fund the project.\n\nThe Mirror is an ambitious project which hopes to bring the philosophy of anarchy to the masses in game format.\n\nAs we all know, most people are too dumbed down from 12 years in government indoctrination camps (schools), fluoridated water and thousands of hours of mainstream media propaganda to be able to sit down and read a book.\n\nThe Mirror hopes to use a video game format to make even the most brainwashed statist realize the contradictions in their own head and, all on their own, become anarchists/voluntarists.\n\nIt's a huge project which encompasses 3-D modeling, game engine architecture, voice-overs and animation.\n\nAmanda Rachwitz was in Pennsylvania to record the voice-overs with Larken when I caught up with them to get an update.\n\nThe majority of the conversation centers around Steemit\n\nSome of the topics covered include:\n\n-How to cash out of earned Steem dollars\n-Steemit is not a scam as it is all voluntary and transparent\n-How Steemit incentivizes creating excellent content\n-Where does the money come from to pay content producers?\n-Why or why not to invest in Steem Power\n-Steemit's structure creates a mostly troll free environment.\n-Support activists through up voting\n\nYou can see the full interview, exclusively here on Steemit (it is unlisted on Youtube) for the next 24 hours here:\n\n<center>https://www.youtube.com/watch?v=Zm2QnuiUkDE</center>\n \nIf you've seen past Steemit videos of mine on Youtube, you'll notice it gets a lot of people down voting it and calling Steemit a \"scam\".  Please take this 24 hour period to \"like\" the video if you enjoyed it and also make comments on your experience with Steemit, before all the trolls get on.\n\nTomorrow I'll be publishing a debate/conversation with Tone Vays on Steemit.  Tone has been an outspoken anti-Steemer.  It'll be available here first exclusively on Steemit.\n\nRemember to follow me @dollarvigilante to ensure you see these exclusive videos and other articles first.\n\n[Edit: Steem dollars earned on this post will be shared with @larkenrose and @dragonanarchist]\n\n<center>https://img1.steemit.com/0x0/https://www.steemimg.com/images/2016/08/12/Steemitbio98756.jpg</center>",
+    "body_length": 2484,
+    "cashout_time": "2016-09-18T08:25:03",
+    "category": "steemit",
+    "children": 115,
+    "created": "2016-08-18T02:01:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\"],\"users\":[\"dollarvigilante\",\"larkenrose\",\"dragonanarchist\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/17\\/LarkenRoseAmandaRachwitzAnarchastSteem0b4bb.jpg\",\"https:\\/\\/img1.steemit.com\\/0x0\\/https:\\/\\/www.steemimg.com\\/images\\/2016\\/08\\/12\\/Steemitbio98756.jpg\"],\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=Zm2QnuiUkDE\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T13:54:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 156169892729310,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3274.625 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "steemit-exclusive-larken-rose-on-steem-and-how-it-is-helping-power-the-mirror-project",
+    "post_id": 650131,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Steemit Exclusive: Larken Rose On Steem And How It Is Helping Power The Mirror Project",
+    "title": "Steemit Exclusive: Larken Rose On Steem And How It Is Helping Power The Mirror Project",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@dollarvigilante/steemit-exclusive-larken-rose-on-steem-and-how-it-is-helping-power-the-mirror-project"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27526380368282",
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "493904989137",
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7731774323941",
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30963340603502",
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "376251845809",
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "38628577663382",
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "6000",
+        "reputation": 0,
+        "rshares": "39215528449249",
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4574316664480",
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6733379560466",
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3066681879675",
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "477966998971",
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4555198258386",
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1119290177600",
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1099134162323",
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "995902544214",
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "308753515461",
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5113121585969",
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3726575642",
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4524583713",
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "821038130",
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7061101034251",
+        "voter": "complexring"
+      },
+      {
+        "percent": "7500",
+        "reputation": 0,
+        "rshares": "5152147344752",
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "66101488132",
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1996734414",
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "256577770",
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79845179316",
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63621891156",
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7132023384",
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5793517039266",
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1201733691140",
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37842725376",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "750187822",
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1168126713",
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23459060358",
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10498292387",
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "31824886550",
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9588709514",
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "346070380",
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "3109456055",
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8209280181",
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153296056627",
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10960361335",
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14994955404",
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15051023882",
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "78234456691",
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16968715703",
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "6280",
+        "reputation": 0,
+        "rshares": "388803010656",
+        "voter": "eeks"
+      },
+      {
+        "percent": "700",
+        "reputation": 0,
+        "rshares": "6569044104",
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "61054775",
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6453496039",
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "735229559",
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2154161049",
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "336024528357",
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1300",
+        "reputation": 0,
+        "rshares": "4002829527",
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "1200",
+        "reputation": 0,
+        "rshares": "1377965630",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "900",
+        "reputation": 0,
+        "rshares": "3046417496",
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156573687746",
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "47413658846",
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "40699583041",
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "982799520",
+        "voter": "coar"
+      },
+      {
+        "percent": "1509",
+        "reputation": 0,
+        "rshares": "706760886",
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3150734011",
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413982599009",
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "37933469992",
+        "voter": "tinfoilfedora"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68637687828",
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24892673749",
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10437999499",
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "418622798",
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "375186691312",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "22203455044",
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "33744098418",
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4581604470",
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79211060582",
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "22806229743",
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "32998689739",
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "173891397847",
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2747282701",
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5441964146",
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6742343806",
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "4664732981",
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6406633281",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65327029498",
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6466238081",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 0,
+        "rshares": "2190216920",
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5891286972",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7865292102",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "510560493",
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13966313707",
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52006965472",
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "20199692434",
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369419860",
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5480390590",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "280810708",
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "160654406646",
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "322161583283",
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5190612986",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51172289637",
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "73669227443",
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1039910629",
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5263874133",
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "122425882381",
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5478937966",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "48661612606",
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5773781115",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8195186985",
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "154748925594",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "748609254",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "29982688838",
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15620672312",
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "550066409600",
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10594766057",
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98865572073",
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16387519197",
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "164113821182",
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4633652827",
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "61949102847",
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "9000",
+        "reputation": 0,
+        "rshares": "4648828220",
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13786736208",
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "241151752567",
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "33649569687",
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19899950500",
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "664533963",
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "30406359089",
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24966175354",
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10633723041",
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "72122373888",
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10116801758",
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "349333115852",
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2503362754",
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "104275514857",
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "585128034",
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21251528152",
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "41875574687",
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91926117",
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13498626934",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23642062334",
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "202466740034",
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3432105137",
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7168108020",
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7665805497",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3067643706",
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1514733088",
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "32299149356",
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6499288255",
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1428253908",
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24289041861",
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "98784441443",
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77100966",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19393495828",
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "436229754",
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5115308538",
+        "voter": "favorit"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "2725832001",
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "664224643",
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225919607",
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1403214907",
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283260879",
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114849934",
+        "voter": "fsip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "45674978438",
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3699079514",
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15825218986",
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "37392922224",
+        "voter": "smailer"
+      },
+      {
+        "percent": "300",
+        "reputation": 0,
+        "rshares": "116118859",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "862222696",
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "18456599281",
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "27770435610",
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6474324531",
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1177738817",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "71964844842",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "1378717807",
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "235438675",
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24362034190",
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4890113111",
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65204048",
+        "voter": "cechirik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26122931456",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26100683859",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26110010937",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "588607112049",
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17279737369",
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17727013483",
+        "voter": "timelapse"
+      },
+      {
+        "percent": "6280",
+        "reputation": 0,
+        "rshares": "10306119254",
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6907625180",
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "64566532",
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26105523826",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26103248276",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26100183826",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26096640233",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8291369593",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26092206591",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26090029262",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7963549449",
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1376887643",
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "21044216417",
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11354441708",
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "107983601750",
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62556433",
+        "voter": "internistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "14254306379",
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1729954252",
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "80357718252",
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1726441518",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "43384212188",
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "275026678",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10739953721",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68550569",
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3769464721",
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51247757",
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "39390555456",
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77220767",
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "254680718",
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9679928412",
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "1489069575",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59750246",
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "273211506",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13665635092",
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59992769",
+        "voter": "shuklix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7727181529",
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26082953024",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3083989123",
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2978336615",
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5945926381",
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "42909923528",
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "16339966378",
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79979619",
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8041485878",
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1401458089",
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59261081",
+        "voter": "disletti"
+      },
+      {
+        "percent": "5800",
+        "reputation": 0,
+        "rshares": "24655449762",
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69721598",
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2149430985",
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1258844947",
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2230320600",
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58025713",
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3079600558",
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "913227198",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "117344778",
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57881817",
+        "voter": "novrik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52053227",
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12007897380",
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2028200120",
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "57664781",
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12089632983",
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "25202992641",
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9593336727",
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "86165076",
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1532461481",
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7426008331",
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "174713024",
+        "voter": "rusla"
+      },
+      {
+        "percent": "4000",
+        "reputation": 0,
+        "rshares": "130992658952",
+        "voter": "cornerstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54391689",
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56582615",
+        "voter": "minihelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56509248",
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3335975740",
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "633489640",
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1162848474",
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65457046",
+        "voter": "forest-revealed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "808370638",
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54726577",
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "115556600090",
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "646861838",
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "453351131",
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52088375",
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "369323003",
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2913602897",
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "59275415100",
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54272135",
+        "voter": "mpmajo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3135075242",
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54232595",
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1250337518",
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "568011923",
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3312524129",
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52928580",
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "84516562",
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1195193402",
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9640083850",
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1173837106",
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52549133",
+        "voter": "janeth111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52800226",
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52864017",
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53548226",
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51615039",
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7301503729",
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2019020353",
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1977855772",
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56856217",
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "120476926",
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9289382445",
+        "voter": "luzcypher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "511233308",
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "82287966",
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1317647622",
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116937238",
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153687209",
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "508743849",
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155910854",
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3795801841",
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "146534462",
+        "voter": "nekrasov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "166431444",
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10549884113",
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "159048846",
+        "voter": "manuelgarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155110756",
+        "voter": "matteopoole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "158170239",
+        "voter": "spacedout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "474962663",
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157332453",
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "157111992",
+        "voter": "emisfer2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "311030765",
+        "voter": "aldentan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "144468196",
+        "voter": "roman.est"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153571614",
+        "voter": "petrroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156505647",
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156489923",
+        "voter": "novium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156452773",
+        "voter": "yahooshua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "135270873",
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156347190",
+        "voter": "wizardcrying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "147091838",
+        "voter": "alkindi31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "156226986",
+        "voter": "kmichaelkills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "153075466",
+        "voter": "william007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "116295959",
+        "voter": "mikerano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155748226",
+        "voter": "karles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "152655283",
+        "voter": "jahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155688834",
+        "voter": "nathanael540"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "155680732",
+        "voter": "rupelto"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "I know many people have been very concerned with the block on NSFW content from all categories, and have been concerned about the chance of the platform continuing to block other content.\n\nI think Steemit are doing a great job, and I understand some of their position if they end up censoring content. Being a US business means they will quickly run into legal issues with the content on their site, and may have to do some censorship. \n\nOf course thanks to the blockchain, it's never truly censored, and sites like UnderSteem can show it.\n\nThis is a follow up to my post from a few days ago, where [I launced the first TOR RPC and SEED node for STEEM.](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy).\n\n**As people should know by now, I'm strongly concerned about privacy and freedom.** In the past week:\n\n - I set up a TOR node for the STEEM network (link above)\n -  [raised almost $200 USD for RiseUP](https://steemit.com/steem/@someguy123/proof-of-riseup-donation)\n -  Set up a site for [fully anonymous steem accounts](https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media)\n\n----\n\n\n![](https://i.imgur.com/UPxM1Jf.png)\n\n\nWhat is UnderSteem?\n-----\n\nTL;DR\n\n - Uncensored - UnderSteem promises to have no censorship, including on pornography and piracy\n - Private - UnderSteem is only accessible over TOR. This means your IP address is never disclosed, so you're protected\n - Secure - Because UnderSteem is over TOR, the server locations are unknown. This makes it much harder to be hacked, because the attackers do not know the IP address of the servers, and they're only able to access the website\n - [Open Source](https://github.com/Someguy123/understeem/)\n\nUnderSteem is \"Underground Steem\". It is a fork of Steemit (not STEEM. It's on the same network), and is fully [open source, available here](https://github.com/Someguy123/understeem/). UnderSteem promises to avoid censorship on the client level, and operates it's servers within a safe jurisdiction, **since just like steemit, it does not store any content at all, and cannot be held responsible for any illegal activity.**\n\nTo allow the safest, most private experience, it's only available over TOR. I strongly recommend [downloading TOR Browser](https://torproject.org) - it's free, open source, and available on nearly every platform, **even Android and iOS**. (Don't worry, TOR is completely legal almost everywhere, including the US, practically every European country + the UK)\n\nOnce you have TOR browser, you can just enter the following URL into the address bar, and you'll be on UnderSteem:\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\nIf you just want to take a quick look *without TOR*, you can access the site through a gateway such as ONION.TO, however the site will not function fully through a gateway because of the JavaScript trying to communicate with [my TOR node](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy):\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n\nWant to remember this URL? Just split the words up!\n\n<center>`usteem pc coap good`</center>\n\nDo I need to sign up?\n-----\n\n**You don't need to.** If you already have an account made on Steemit, or AnonSteem, you can log into the website with your username and password just like normal.\n\nIs it legal to access this site and use TOR?\n-----\n\nUnderSteem is not designed for illegal content any more than Steemit is, however the laws vary in every country. \n\nUnderSteem believes that the content should be free for the person to decide if they should view it or not, rather than their governments laws.\n\nWhile UnderSteem will avoid any form of censorship at all costs, **there's nothing illegal about using TOR** (in most countries), **or UnderSteem** unless you are purposely trying to access illegal content.\n\n----\n\n<center>Try it out!</center>\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n----\n\n**Frequently Asked Questions**\n\n**Why can't I see the upvote button?**\n\nYour security settings on TOR browser are too high. On the \"high\" setting, SVGs are blocked, which means the upvote button and other icons can't work. \n\nClick the TOR icon in the top left, and press \"Privacy and Security Settings\", and turn it down to at least Medium-High.\n\n**Why can't I log in?**\n\nYou probably need to enable javascript. Click the NoScript icon in the top left and whitelist the site.\n\n**Why are other categories/tags broken?**\n\nYou probably have Javascript disabled. Click the NoScript icon in the top left and whitelist the site.\n\nBe aware that the clearnet gateway (onion.to or onion.cab) isn't fully functional because of the javascript used on UnderSteem. To get a proper experience on UnderSteem, [download TOR](https://torproject.org)\n\n**I don't trust UnderSteem with my password, can I still use this service some other way?**\n\nYES. You can use your posting key as your password. Go to your Steemit account, click on \"Wallet\", then \"Permissions\". Click \"Show Private Key\" on your posting key, and paste that into the password box of UnderSteem. \n\nThis will only give the site the ability to make posts/comments, and upvote. It will not be able to access your wallet, or change your keys/password.\n\n**Is there an NSFW filter?**\n\nNO. We do not approve of any of the filtering. If you want filtered content (or are in a family/work setting), continue to use Steemit.\n\n\n---\n\nDo you like what I'm doing for STEEM/Steemit?\n----\n[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. \n----\nDon't forget to follow me for more like this.\n-------",
+    "body_length": 5830,
+    "cashout_time": "2016-10-12T21:37:15",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-11T16:40:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"censorship\",\"privacy\"],\"image\":[\"https:\\/\\/i.imgur.com\\/UPxM1Jf.png\"],\"links\":[\"https:\\/\\/steemit.com\\/steem\\/@someguy123\\/steem-tor-node-protecting-your-privacy\",\"https:\\/\\/steemit.com\\/steem\\/@someguy123\\/proof-of-riseup-donation\",\"https:\\/\\/steemit.com\\/steemit\\/@someguy123\\/anonsteem-create-anonymous-steem-accounts-without-social-media\",\"https:\\/\\/github.com\\/Someguy123\\/understeem\\/\",\"https:\\/\\/torproject.org\",\"http:\\/\\/usteempccoapgood.onion\",\"http:\\/\\/usteempccoapgood.onion.to\",\"https:\\/\\/steemit.com\\/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T22:43:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 200808528786505,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3050.626 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "understeem-steemit-without-censorship-nsfw-filter-removed-via-tor",
+    "post_id": 922912,
+    "promoted": "45.000 HBD",
+    "replies": [],
+    "root_title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit_paginated.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit_paginated.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..9750896cd7c3be4295d34d8be4f06d9081c64b77
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit_paginated.pat.json
@@ -0,0 +1,4164 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 27526380368282,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 261787136527,
+        "rshares": 493904989137,
+        "voter": "barrie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7731774323941,
+        "voter": "steempty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32455846463901,
+        "rshares": 30963340603502,
+        "voter": "smooth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85602977273,
+        "rshares": 376251845809,
+        "voter": "anonymous"
+      },
+      {
+        "percent": "10000",
+        "reputation": 70486967561347,
+        "rshares": 38628577663382,
+        "voter": "blocktrades"
+      },
+      {
+        "percent": "6000",
+        "reputation": 13270505121655,
+        "rshares": 39215528449249,
+        "voter": "ned"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8779714777561,
+        "rshares": 4574316664480,
+        "voter": "riverhead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8272495818727,
+        "rshares": 6733379560466,
+        "voter": "xeldal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 3066681879675,
+        "voter": "lafona-miner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9111465318256,
+        "rshares": 477966998971,
+        "voter": "lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8358591595454,
+        "rshares": 4555198258386,
+        "voter": "kushed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 358840960832,
+        "rshares": 1119290177600,
+        "voter": "rossco99"
+      },
+      {
+        "percent": "10000",
+        "reputation": 454674995328,
+        "rshares": 1099134162323,
+        "voter": "delegate.lafona"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 995902544214,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 308753515461,
+        "voter": "lafona5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 5113121585969,
+        "voter": "steemit200"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 3726575642,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 4524583713,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 821038130,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 59074616588451,
+        "rshares": 7061101034251,
+        "voter": "complexring"
+      },
+      {
+        "percent": "7500",
+        "reputation": 49280708331375,
+        "rshares": 5152147344752,
+        "voter": "arhag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 66101488132,
+        "voter": "bue"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1996734414,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 256577770,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12928765689257,
+        "rshares": 79845179316,
+        "voter": "aizensou"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36473167044,
+        "rshares": 63621891156,
+        "voter": "jason"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7132023384,
+        "voter": "bingo-0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83941319998,
+        "rshares": 5793517039266,
+        "voter": "smooth.witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82600290949846,
+        "rshares": 1201733691140,
+        "voter": "cass"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 37842725376,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 750187822,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1168126713,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6977251504339,
+        "rshares": 23459060358,
+        "voter": "dedriss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254955012957,
+        "rshares": 10498292387,
+        "voter": "k-rapper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7404914959204,
+        "rshares": 31824886550,
+        "voter": "marketingmonk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6373903167891,
+        "rshares": 9588709514,
+        "voter": "patrice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 346070380,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2165622245848,
+        "rshares": 3109456055,
+        "voter": "yefet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 736634655803,
+        "rshares": 8209280181,
+        "voter": "khanhsang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 127159698297,
+        "rshares": 153296056627,
+        "voter": "vitaly-lvov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1465211458736,
+        "rshares": 10960361335,
+        "voter": "makishart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3444102146490,
+        "rshares": 14994955404,
+        "voter": "gregory-f"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15051023882,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12712877967688,
+        "rshares": 78234456691,
+        "voter": "easteagle13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1307793552141,
+        "rshares": 16968715703,
+        "voter": "max-infeld"
+      },
+      {
+        "percent": "6280",
+        "reputation": 12382143533351,
+        "rshares": 388803010656,
+        "voter": "eeks"
+      },
+      {
+        "percent": "700",
+        "reputation": 14848515958625,
+        "rshares": 6569044104,
+        "voter": "kingscrown"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 61054775,
+        "voter": "paco-steem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 944762156062,
+        "rshares": 6453496039,
+        "voter": "fernando-sanz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 376960001789,
+        "rshares": 735229559,
+        "voter": "spaninv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2154161049,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 336024528357,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "1300",
+        "reputation": 5414208804644,
+        "rshares": 4002829527,
+        "voter": "elishagh1"
+      },
+      {
+        "percent": "1200",
+        "reputation": 503318537891,
+        "rshares": 1377965630,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "900",
+        "reputation": 15755437221598,
+        "rshares": 3046417496,
+        "voter": "acidyo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 42741727265739,
+        "rshares": 156573687746,
+        "voter": "steve-walschot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6580794427504,
+        "rshares": 47413658846,
+        "voter": "hannixx42"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16025488740118,
+        "rshares": 40699583041,
+        "voter": "klye"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1663549830469,
+        "rshares": 982799520,
+        "voter": "coar"
+      },
+      {
+        "percent": "1509",
+        "reputation": 2902053059801,
+        "rshares": 706760886,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 108162024968,
+        "rshares": 3150734011,
+        "voter": "framelalife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 413982599009,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "5000",
+        "reputation": 18165011697633,
+        "rshares": 37933469992,
+        "voter": "tinfoilfedora"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4509451541223,
+        "rshares": 68637687828,
+        "voter": "theshell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2943802511443,
+        "rshares": 24892673749,
+        "voter": "paul-labossiere"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2683858617900,
+        "rshares": 10437999499,
+        "voter": "zebbra2014"
+      },
+      {
+        "percent": "10000",
+        "reputation": 79561484422,
+        "rshares": 418622798,
+        "voter": "applecrisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 375186691312,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "4000",
+        "reputation": 3804349938696,
+        "rshares": 22203455044,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5888717170887,
+        "rshares": 33744098418,
+        "voter": "ratel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 4581604470,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4526468651953,
+        "rshares": 79211060582,
+        "voter": "tim-johnston"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050758001641,
+        "rshares": 22806229743,
+        "voter": "ossama-benjohn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9186061899783,
+        "rshares": 32998689739,
+        "voter": "michaelx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 173891397847,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1199373674648,
+        "rshares": 2747282701,
+        "voter": "gary-smith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 811919161664,
+        "rshares": 5441964146,
+        "voter": "svamiva"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224903879777,
+        "rshares": 6742343806,
+        "voter": "tyler-fletcher"
+      },
+      {
+        "percent": "1000",
+        "reputation": 18458799241134,
+        "rshares": 4664732981,
+        "voter": "karnal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 6406633281,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6127015005793,
+        "rshares": 65327029498,
+        "voter": "scrawl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6466238081,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "2500",
+        "reputation": 861737606263,
+        "rshares": 2190216920,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 5891286972,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 7865292102,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85777133037,
+        "rshares": 510560493,
+        "voter": "mrhankeh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1860741683952,
+        "rshares": 13966313707,
+        "voter": "ultralord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10314872786861,
+        "rshares": 52006965472,
+        "voter": "isteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10980042082204,
+        "rshares": 20199692434,
+        "voter": "skapaneas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 177578566464,
+        "rshares": 369419860,
+        "voter": "chetlanin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5480390590,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25639258699,
+        "rshares": 280810708,
+        "voter": "ladyclair"
+      },
+      {
+        "percent": "10000",
+        "reputation": 336763673779,
+        "rshares": 160654406646,
+        "voter": "asmolokalo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57643429300793,
+        "rshares": 322161583283,
+        "voter": "roelandp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5190612986,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1450924981021,
+        "rshares": 51172289637,
+        "voter": "ezzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1700182089209,
+        "rshares": 73669227443,
+        "voter": "rubybian"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1260650049067,
+        "rshares": 1039910629,
+        "voter": "bitcointop"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083279715738,
+        "rshares": 5263874133,
+        "voter": "riscadox"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17484609383217,
+        "rshares": 122425882381,
+        "voter": "robrigo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5478937966,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697803114714,
+        "rshares": 48661612606,
+        "voter": "ozcap"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 5773781115,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2499740471746,
+        "rshares": 8195186985,
+        "voter": "r4fken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 154748925594,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 748609254,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 29982688838,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19604328647,
+        "rshares": 15620672312,
+        "voter": "bitshares101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7018477845661,
+        "rshares": 550066409600,
+        "voter": "neoxian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 255936097265,
+        "rshares": 10594766057,
+        "voter": "seanmchughart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11161280105659,
+        "rshares": 98865572073,
+        "voter": "sigmajin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 16387519197,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25849925929525,
+        "rshares": 164113821182,
+        "voter": "anyx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1661526202859,
+        "rshares": 4633652827,
+        "voter": "gikitiki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 61949102847,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "9000",
+        "reputation": 2821855573125,
+        "rshares": 4648828220,
+        "voter": "steemit-life"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2696386723259,
+        "rshares": 13786736208,
+        "voter": "sitaru"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 241151752567,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 33649569687,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11644551965460,
+        "rshares": 19899950500,
+        "voter": "senseiteekay"
+      },
+      {
+        "percent": "1000",
+        "reputation": 2397831198773,
+        "rshares": 664533963,
+        "voter": "karen13"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19168905436557,
+        "rshares": 30406359089,
+        "voter": "dwinblood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 866671256465,
+        "rshares": 24966175354,
+        "voter": "igster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5827115301697,
+        "rshares": 10633723041,
+        "voter": "deviedev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 72122373888,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2432538531735,
+        "rshares": 10116801758,
+        "voter": "kaptainkrayola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 349333115852,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2503362754,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4997362589971,
+        "rshares": 104275514857,
+        "voter": "pkattera"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1058072223123,
+        "rshares": 585128034,
+        "voter": "luisucv34"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 21251528152,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 41875574687,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": -883682716676,
+        "rshares": 91926117,
+        "voter": "wildchild"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 13498626934,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9734558763221,
+        "rshares": 23642062334,
+        "voter": "phenom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21815260714191,
+        "rshares": 202466740034,
+        "voter": "blueorgy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 974488972206,
+        "rshares": 3432105137,
+        "voter": "simon.braki.love"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7168108020,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 7665805497,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 477578742546,
+        "rshares": 3067643706,
+        "voter": "tarindel"
+      },
+      {
+        "percent": "10000",
+        "reputation": -775526496810,
+        "rshares": 1514733088,
+        "voter": "cryptocurrency1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 14988694886527,
+        "rshares": 32299149356,
+        "voter": "jl777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 879409745645,
+        "rshares": 6499288255,
+        "voter": "lostnuggett"
+      },
+      {
+        "percent": "10000",
+        "reputation": 702602138233,
+        "rshares": 1428253908,
+        "voter": "alekst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 24289041861,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 45712131677758,
+        "rshares": 98784441443,
+        "voter": "crazymumzysa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 77100966,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3777763523032,
+        "rshares": 19393495828,
+        "voter": "krabgat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114499038747,
+        "rshares": 436229754,
+        "voter": "kooshikoo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2924133430111,
+        "rshares": 5115308538,
+        "voter": "favorit"
+      },
+      {
+        "percent": "1000",
+        "reputation": 58190631451,
+        "rshares": 2725832001,
+        "voter": "proto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 153480676290,
+        "rshares": 664224643,
+        "voter": "curator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "10000",
+        "reputation": -2287580630,
+        "rshares": 1403214907,
+        "voter": "alex.chien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 311022515119,
+        "rshares": 283260879,
+        "voter": "faraz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 114849934,
+        "voter": "fsip"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16914207527051,
+        "rshares": 45674978438,
+        "voter": "celebr1ty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1841035810445,
+        "rshares": 3699079514,
+        "voter": "bkkshadow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 15825218986,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17218558634066,
+        "rshares": 37392922224,
+        "voter": "smailer"
+      },
+      {
+        "percent": "300",
+        "reputation": 4063076365725,
+        "rshares": 116118859,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 138974533507,
+        "rshares": 862222696,
+        "voter": "mar1978co"
+      },
+      {
+        "percent": "10000",
+        "reputation": 134736123867,
+        "rshares": 18456599281,
+        "voter": "lsc9999"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15621086173579,
+        "rshares": 27770435610,
+        "voter": "williambanks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 6474324531,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1177738817,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 71964844842,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "1000",
+        "reputation": 1275505236,
+        "rshares": 1378717807,
+        "voter": "taker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 406607053254,
+        "rshares": 235438675,
+        "voter": "frozendota"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 24362034190,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4890113111,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10735623,
+        "rshares": 65204048,
+        "voter": "cechirik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 26122931456,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26100683859,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26110010937,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7286529084,
+        "rshares": 588607112049,
+        "voter": "toxic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 75109707260,
+        "rshares": 17279737369,
+        "voter": "persianqueen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6595506981050,
+        "rshares": 17727013483,
+        "voter": "timelapse"
+      },
+      {
+        "percent": "6280",
+        "reputation": 1751717743,
+        "rshares": 10306119254,
+        "voter": "gmurph"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 6907625180,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26105523826,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26103248276,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26100183826,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26096640233,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 8291369593,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26092206591,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26090029262,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3653299044116,
+        "rshares": 7963549449,
+        "voter": "mevilkingdom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 790526925913,
+        "rshares": 1376887643,
+        "voter": "dolov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117644956479,
+        "rshares": 21044216417,
+        "voter": "jphamer1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 11354441708,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 66791976065,
+        "rshares": 107983601750,
+        "voter": "joele"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62556433,
+        "voter": "internistic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 14254306379,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1729954252,
+        "voter": "paynode"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24130783448589,
+        "rshares": 80357718252,
+        "voter": "krishtopa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 1726441518,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8749882391690,
+        "rshares": 43384212188,
+        "voter": "nonlinearone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 275026678,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10739953721,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 91384020663,
+        "rshares": 68550569,
+        "voter": "numberone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 3769464721,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51247757,
+        "voter": "loli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15841196427096,
+        "rshares": 39390555456,
+        "voter": "bitcalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3168479764,
+        "rshares": 77220767,
+        "voter": "razberrijam"
+      },
+      {
+        "percent": "100",
+        "reputation": 3814152361740,
+        "rshares": 254680718,
+        "voter": "matrixdweller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2409896485,
+        "rshares": 9679928412,
+        "voter": "theb0red1"
+      },
+      {
+        "percent": "100",
+        "reputation": 11683040603469,
+        "rshares": 1489069575,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59750246,
+        "voter": "saveliy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 273211506,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16426840706,
+        "rshares": 13665635092,
+        "voter": "gvargas123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59992769,
+        "voter": "shuklix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005943680227,
+        "rshares": 7727181529,
+        "voter": "jenniferskyler"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 26082953024,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 3083989123,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 363503808,
+        "rshares": 2978336615,
+        "voter": "netaterra"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 5945926381,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18890223518661,
+        "rshares": 42909923528,
+        "voter": "someguy123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9530915857627,
+        "rshares": 16339966378,
+        "voter": "mikemacintire"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62579633003,
+        "rshares": 79979619,
+        "voter": "joelbow"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 8041485878,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 653929887952,
+        "rshares": 1401458089,
+        "voter": "truthandanarchy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5881944684,
+        "rshares": 59261081,
+        "voter": "disletti"
+      },
+      {
+        "percent": "5800",
+        "reputation": 793368183438,
+        "rshares": 24655449762,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49216420678,
+        "rshares": 69721598,
+        "voter": "steembriefing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1050348110504,
+        "rshares": 2149430985,
+        "voter": "voluntary"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1480652550326,
+        "rshares": 1258844947,
+        "voter": "lenar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2146463020842,
+        "rshares": 2230320600,
+        "voter": "cryptoeasy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 291915319,
+        "rshares": 58025713,
+        "voter": "riv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3144994876819,
+        "rshares": 3079600558,
+        "voter": "nulliusinverba"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 913227198,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 156228771332,
+        "rshares": 117344778,
+        "voter": "mlpfrank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 57881817,
+        "voter": "novrik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78274754809,
+        "rshares": 52053227,
+        "voter": "jlufer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3418202722938,
+        "rshares": 12007897380,
+        "voter": "sneak"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4459137288511,
+        "rshares": 2028200120,
+        "voter": "penguinpablo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 883345,
+        "rshares": 57664781,
+        "voter": "fleshtheworld"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3575830946674,
+        "rshares": 12089632983,
+        "voter": "ryan-singer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85132342011,
+        "rshares": 25202992641,
+        "voter": "laonie11"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5866355148762,
+        "rshares": 9593336727,
+        "voter": "heretickitten"
+      },
+      {
+        "percent": "10000",
+        "reputation": 78138793415,
+        "rshares": 86165076,
+        "voter": "lovetosteemit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 254265780029,
+        "rshares": 1532461481,
+        "voter": "paa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2721887929533,
+        "rshares": 7426008331,
+        "voter": "davidbrogan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 982331434653,
+        "rshares": 174713024,
+        "voter": "rusla"
+      },
+      {
+        "percent": "4000",
+        "reputation": 134056888284,
+        "rshares": 130992658952,
+        "voter": "cornerstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54391689,
+        "voter": "jamespro"
+      },
+      {
+        "percent": "10000",
+        "reputation": 293042273,
+        "rshares": 56582615,
+        "voter": "minihelp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 56509248,
+        "voter": "walternz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 660913097252,
+        "rshares": 3335975740,
+        "voter": "bitscape"
+      },
+      {
+        "percent": "10000",
+        "reputation": 262756573957,
+        "rshares": 633489640,
+        "voter": "kev7000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 1162848474,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18912504878,
+        "rshares": 65457046,
+        "voter": "forest-revealed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 808370638,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3983778979,
+        "rshares": 54726577,
+        "voter": "seckorama"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22344336898,
+        "rshares": 115556600090,
+        "voter": "dan-bn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 117903399171,
+        "rshares": 646861838,
+        "voter": "winglessss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 453351131,
+        "voter": "totosky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10650934,
+        "rshares": 52088375,
+        "voter": "zeka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97476072754,
+        "rshares": 369323003,
+        "voter": "david.prochnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 2913602897,
+        "voter": "alina1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19674745811334,
+        "rshares": 59275415100,
+        "voter": "tracemayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54272135,
+        "voter": "mpmajo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511520729,
+        "rshares": 3135075242,
+        "voter": "landofcrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 683829103,
+        "rshares": 54232595,
+        "voter": "blockcat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 1250337518,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 488472984681,
+        "rshares": 568011923,
+        "voter": "ballinconscious"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1726647930107,
+        "rshares": 3312524129,
+        "voter": "slayer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 52928580,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1066308215,
+        "rshares": 84516562,
+        "voter": "inarix03"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1502200909130,
+        "rshares": 1195193402,
+        "voter": "ola1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6072650400812,
+        "rshares": 9640083850,
+        "voter": "herpetologyguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 601020100087,
+        "rshares": 1173837106,
+        "voter": "sicilian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1642160,
+        "rshares": 52549133,
+        "voter": "janeth111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 85335936192,
+        "rshares": 52800226,
+        "voter": "drac59"
+      },
+      {
+        "percent": "10000",
+        "reputation": 57152635891,
+        "rshares": 52864017,
+        "voter": "everittdmickey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121767758976,
+        "rshares": 53548226,
+        "voter": "mari5555na"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51615039,
+        "voter": "cfisher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3689606685797,
+        "rshares": 7301503729,
+        "voter": "okean123"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1533678042141,
+        "rshares": 2019020353,
+        "voter": "greenwayoflife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1487989126850,
+        "rshares": 1977855772,
+        "voter": "haphazard-hstead"
+      },
+      {
+        "percent": "10000",
+        "reputation": 396872137163,
+        "rshares": 56856217,
+        "voter": "timbot606"
+      },
+      {
+        "percent": "10000",
+        "reputation": 467125852021,
+        "rshares": 120476926,
+        "voter": "piphunters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6098187003516,
+        "rshares": 9289382445,
+        "voter": "luzcypher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 450193486835,
+        "rshares": 511233308,
+        "voter": "grisha-danunaher"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 82287966,
+        "voter": "olesia83"
+      },
+      {
+        "percent": "10000",
+        "reputation": 319010109417,
+        "rshares": 1317647622,
+        "voter": "expedition"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33024540131,
+        "rshares": 116937238,
+        "voter": "siniceku"
+      },
+      {
+        "percent": "10000",
+        "reputation": 33159895743,
+        "rshares": 153687209,
+        "voter": "anarchy-veganism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 345429965231,
+        "rshares": 508743849,
+        "voter": "listentojon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 166196141424,
+        "rshares": 155910854,
+        "voter": "chanceskain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 446608067,
+        "rshares": 3795801841,
+        "voter": "elguapo4twenty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8318542,
+        "rshares": 146534462,
+        "voter": "nekrasov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22482956163,
+        "rshares": 166431444,
+        "voter": "makis84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 251629303655,
+        "rshares": 10549884113,
+        "voter": "goldmatters"
+      },
+      {
+        "percent": "10000",
+        "reputation": 465128668,
+        "rshares": 159048846,
+        "voter": "manuelgarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 189961981,
+        "rshares": 155110756,
+        "voter": "matteopoole"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 158170239,
+        "voter": "spacedout"
+      },
+      {
+        "percent": "10000",
+        "reputation": 63114946518,
+        "rshares": 474962663,
+        "voter": "hacon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2361914,
+        "rshares": 157332453,
+        "voter": "dougkarr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 226352036,
+        "rshares": 157111992,
+        "voter": "emisfer2016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 804954090860,
+        "rshares": 311030765,
+        "voter": "aldentan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 144468196,
+        "voter": "roman.est"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153571614,
+        "voter": "petrroll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15827302113,
+        "rshares": 156505647,
+        "voter": "bonitaxm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156489923,
+        "voter": "novium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156452773,
+        "voter": "yahooshua"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 135270873,
+        "voter": "expat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156347190,
+        "voter": "wizardcrying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32146174,
+        "rshares": 147091838,
+        "voter": "alkindi31"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 156226986,
+        "voter": "kmichaelkills"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 153075466,
+        "voter": "william007"
+      },
+      {
+        "percent": "10000",
+        "reputation": 745770738333,
+        "rshares": 116295959,
+        "voter": "mikerano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155748226,
+        "voter": "karles"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 152655283,
+        "voter": "jahti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 313203976,
+        "rshares": 155688834,
+        "voter": "nathanael540"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 155680732,
+        "voter": "rupelto"
+      }
+    ],
+    "author": "someguy123",
+    "author_reputation": 18890223518661,
+    "beneficiaries": [],
+    "body": "I know many people have been very concerned with the block on NSFW content from all categories, and have been concerned about the chance of the platform continuing to block other content.\n\nI think Steemit are doing a great job, and I understand some of their position if they end up censoring content. Being a US business means they will quickly run into legal issues with the content on their site, and may have to do some censorship. \n\nOf course thanks to the blockchain, it's never truly censored, and sites like UnderSteem can show it.\n\nThis is a follow up to my post from a few days ago, where [I launced the first TOR RPC and SEED node for STEEM.](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy).\n\n**As people should know by now, I'm strongly concerned about privacy and freedom.** In the past week:\n\n - I set up a TOR node for the STEEM network (link above)\n -  [raised almost $200 USD for RiseUP](https://steemit.com/steem/@someguy123/proof-of-riseup-donation)\n -  Set up a site for [fully anonymous steem accounts](https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media)\n\n----\n\n\n![](https://i.imgur.com/UPxM1Jf.png)\n\n\nWhat is UnderSteem?\n-----\n\nTL;DR\n\n - Uncensored - UnderSteem promises to have no censorship, including on pornography and piracy\n - Private - UnderSteem is only accessible over TOR. This means your IP address is never disclosed, so you're protected\n - Secure - Because UnderSteem is over TOR, the server locations are unknown. This makes it much harder to be hacked, because the attackers do not know the IP address of the servers, and they're only able to access the website\n - [Open Source](https://github.com/Someguy123/understeem/)\n\nUnderSteem is \"Underground Steem\". It is a fork of Steemit (not STEEM. It's on the same network), and is fully [open source, available here](https://github.com/Someguy123/understeem/). UnderSteem promises to avoid censorship on the client level, and operates it's servers within a safe jurisdiction, **since just like steemit, it does not store any content at all, and cannot be held responsible for any illegal activity.**\n\nTo allow the safest, most private experience, it's only available over TOR. I strongly recommend [downloading TOR Browser](https://torproject.org) - it's free, open source, and available on nearly every platform, **even Android and iOS**. (Don't worry, TOR is completely legal almost everywhere, including the US, practically every European country + the UK)\n\nOnce you have TOR browser, you can just enter the following URL into the address bar, and you'll be on UnderSteem:\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\nIf you just want to take a quick look *without TOR*, you can access the site through a gateway such as ONION.TO, however the site will not function fully through a gateway because of the JavaScript trying to communicate with [my TOR node](https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy):\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n\nWant to remember this URL? Just split the words up!\n\n<center>`usteem pc coap good`</center>\n\nDo I need to sign up?\n-----\n\n**You don't need to.** If you already have an account made on Steemit, or AnonSteem, you can log into the website with your username and password just like normal.\n\nIs it legal to access this site and use TOR?\n-----\n\nUnderSteem is not designed for illegal content any more than Steemit is, however the laws vary in every country. \n\nUnderSteem believes that the content should be free for the person to decide if they should view it or not, rather than their governments laws.\n\nWhile UnderSteem will avoid any form of censorship at all costs, **there's nothing illegal about using TOR** (in most countries), **or UnderSteem** unless you are purposely trying to access illegal content.\n\n----\n\n<center>Try it out!</center>\n\n### <center>[usteempccoapgood.onion](http://usteempccoapgood.onion)</center>\n\n### <center>Outside of TOR: [usteempccoapgood.onion.to](http://usteempccoapgood.onion.to)</center>\n\n----\n\n**Frequently Asked Questions**\n\n**Why can't I see the upvote button?**\n\nYour security settings on TOR browser are too high. On the \"high\" setting, SVGs are blocked, which means the upvote button and other icons can't work. \n\nClick the TOR icon in the top left, and press \"Privacy and Security Settings\", and turn it down to at least Medium-High.\n\n**Why can't I log in?**\n\nYou probably need to enable javascript. Click the NoScript icon in the top left and whitelist the site.\n\n**Why are other categories/tags broken?**\n\nYou probably have Javascript disabled. Click the NoScript icon in the top left and whitelist the site.\n\nBe aware that the clearnet gateway (onion.to or onion.cab) isn't fully functional because of the javascript used on UnderSteem. To get a proper experience on UnderSteem, [download TOR](https://torproject.org)\n\n**I don't trust UnderSteem with my password, can I still use this service some other way?**\n\nYES. You can use your posting key as your password. Go to your Steemit account, click on \"Wallet\", then \"Permissions\". Click \"Show Private Key\" on your posting key, and paste that into the password box of UnderSteem. \n\nThis will only give the site the ability to make posts/comments, and upvote. It will not be able to access your wallet, or change your keys/password.\n\n**Is there an NSFW filter?**\n\nNO. We do not approve of any of the filtering. If you want filtered content (or are in a family/work setting), continue to use Steemit.\n\n\n---\n\nDo you like what I'm doing for STEEM/Steemit?\n----\n[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. \n----\nDon't forget to follow me for more like this.\n-------",
+    "body_length": 5830,
+    "cashout_time": "2016-09-18T16:40:45",
+    "category": "steemit",
+    "children": 49,
+    "created": "2016-09-11T16:40:45",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"steem\",\"anarchy\",\"censorship\",\"privacy\"],\"image\":[\"https://i.imgur.com/UPxM1Jf.png\"],\"links\":[\"https://steemit.com/steem/@someguy123/steem-tor-node-protecting-your-privacy\",\"https://steemit.com/steem/@someguy123/proof-of-riseup-donation\",\"https://steemit.com/steemit/@someguy123/anonsteem-create-anonymous-steem-accounts-without-social-media\",\"https://github.com/Someguy123/understeem/\",\"https://torproject.org\",\"http://usteempccoapgood.onion\",\"http://usteempccoapgood.onion.to\",\"https://steemit.com/~witnesses\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-11T22:43:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 200808528786505,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "3050.626 HBD",
+    "percent_hbd": 10000,
+    "permlink": "understeem-steemit-without-censorship-nsfw-filter-removed-via-tor",
+    "post_id": 1210189,
+    "promoted": "45.000 HBD",
+    "replies": [],
+    "root_title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "title": "UnderSteem - Steemit without censorship (NSFW filter removed) (via TOR)",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@someguy123/understeem-steemit-without-censorship-nsfw-filter-removed-via-tor"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 145171381514207,
+        "rshares": 28803919091549,
+        "voter": "dantheman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 949715155915,
+        "rshares": 7546882456921,
+        "voter": "steempty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 14765040488827,
+        "rshares": 13460823470210,
+        "voter": "berniesanders"
+      },
+      {
+        "percent": "5100",
+        "reputation": 1133069631465,
+        "rshares": 16080021738102,
+        "voter": "val-a"
+      },
+      {
+        "percent": "5900",
+        "reputation": 176979684007,
+        "rshares": 21407571352875,
+        "voter": "jamesc"
+      },
+      {
+        "percent": "5000",
+        "reputation": 9326993992,
+        "rshares": 118619738407,
+        "voter": "nextgenwitness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 51047995307721,
+        "rshares": 8863760833999,
+        "voter": "pharesim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25104157850610,
+        "rshares": 2279156593253,
+        "voter": "samupaha"
+      },
+      {
+        "percent": "5000",
+        "reputation": 608057298751,
+        "rshares": 334187173481,
+        "voter": "justin"
+      },
+      {
+        "percent": "8000",
+        "reputation": 16685610555705,
+        "rshares": 16497738254633,
+        "voter": "tombstone"
+      },
+      {
+        "percent": "5000",
+        "reputation": 138490649,
+        "rshares": 900467396964,
+        "voter": "silver"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4018307276106,
+        "rshares": 2024540691355,
+        "voter": "silversteem"
+      },
+      {
+        "percent": "5000",
+        "reputation": 27931460807554,
+        "rshares": 2483656360184,
+        "voter": "nextgencrypto"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36749432321730,
+        "rshares": 919986225502,
+        "voter": "liondani"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1214229078,
+        "rshares": 2473119326,
+        "voter": "boy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4712949449,
+        "rshares": 3001836775,
+        "voter": "bue-witness"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1789951494550,
+        "rshares": 562495952,
+        "voter": "bunny"
+      },
+      {
+        "percent": "10000",
+        "reputation": 103443134841,
+        "rshares": 42255210749,
+        "voter": "bue"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1689894306134,
+        "rshares": 2933485164,
+        "voter": "thepresident"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5009147934382,
+        "rshares": 16798027623,
+        "voter": "danknugs"
+      },
+      {
+        "percent": "5000",
+        "reputation": 29449063355738,
+        "rshares": 232818156325,
+        "voter": "steemservices"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 1325642399,
+        "voter": "mini"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 170794809,
+        "voter": "moon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13096661187964,
+        "rshares": 4641818738132,
+        "voter": "au1nethyb1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1241362310762,
+        "rshares": 8386329025,
+        "voter": "bentley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1250001478305,
+        "rshares": 106086870394,
+        "voter": "bonapartist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68236886814465,
+        "rshares": 272929828324,
+        "voter": "officialfuzzy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13437403349222,
+        "rshares": 255207364455,
+        "voter": "pheonike"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 497314258,
+        "voter": "healthcare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 740353304,
+        "voter": "daniel.pan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8442392793360,
+        "rshares": 41250980220,
+        "voter": "jchch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4909504649121,
+        "rshares": 64444376030,
+        "voter": "bangking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37454101478493,
+        "rshares": 284106302618,
+        "voter": "chitty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 230286157,
+        "voter": "helen.tan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6863537479759,
+        "rshares": 40104895894,
+        "voter": "mf-tzo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2520096511491,
+        "rshares": 19513926371,
+        "voter": "daowisp"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5122577809544,
+        "rshares": 28799893563,
+        "voter": "merlinscat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1914970430304,
+        "rshares": 410896416946,
+        "voter": "chryspano"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861106979806,
+        "rshares": 15489805591,
+        "voter": "sandwich"
+      },
+      {
+        "percent": "10000",
+        "reputation": -8847960360622,
+        "rshares": 4779459041,
+        "voter": "nastrom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 705877986486,
+        "rshares": 2824568506,
+        "voter": "carlos-cabeza"
+      },
+      {
+        "percent": "10000",
+        "reputation": 225014291660,
+        "rshares": 5073340932,
+        "voter": "holabebe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12382143533351,
+        "rshares": 576372358343,
+        "voter": "eeks"
+      },
+      {
+        "percent": "1000",
+        "reputation": 4931834878069,
+        "rshares": 3063294418,
+        "voter": "fkn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 436017530085,
+        "rshares": 23885595382,
+        "voter": "instructor2121"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1172373556107,
+        "rshares": 2050756986,
+        "voter": "gekko"
+      },
+      {
+        "percent": "10000",
+        "reputation": 26867938976163,
+        "rshares": 346612366074,
+        "voter": "teamsteem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 865896375178,
+        "rshares": 1137341188,
+        "voter": "nxtblg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1111594060096,
+        "rshares": 3489651223,
+        "voter": "daycrypter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 9020074290,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 627954645291,
+        "rshares": 3939143439,
+        "voter": "jonno-katz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1886231460740,
+        "rshares": 5502047299,
+        "voter": "kingjohal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14968641922913,
+        "rshares": 51642445508,
+        "voter": "oaldamster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 44024667559,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 60877390332151,
+        "rshares": 395986949883,
+        "voter": "kevinwong"
+      },
+      {
+        "percent": "3301",
+        "reputation": 2902053059801,
+        "rshares": 1440300824,
+        "voter": "murh"
+      },
+      {
+        "percent": "10000",
+        "reputation": 562223585509,
+        "rshares": 19196845761,
+        "voter": "mughat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34874025761373,
+        "rshares": 336503355527,
+        "voter": "blakemiles84"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4225750906887,
+        "rshares": 68697197782,
+        "voter": "beerbloke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 824717099743,
+        "rshares": 345529598268,
+        "voter": "cyber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 161833281,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3675954043,
+        "rshares": 368445527,
+        "voter": "lightninggears"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 27220362408,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1444446898291,
+        "rshares": 9353005120,
+        "voter": "johnerfx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3804349938696,
+        "rshares": 51163991486,
+        "voter": "juanmiguelsalas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2501760528867,
+        "rshares": 30995912659,
+        "voter": "wongshiying"
+      },
+      {
+        "percent": "10000",
+        "reputation": 32056888035,
+        "rshares": 1255953980,
+        "voter": "fjccoin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1380612911758,
+        "rshares": 3119831385,
+        "voter": "dahaz159"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1116909606233,
+        "rshares": 13116796117,
+        "voter": "facer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15857384273210,
+        "rshares": 217303550597,
+        "voter": "alexc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37159422493,
+        "rshares": 995515395,
+        "voter": "johnerminer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4669645809271,
+        "rshares": 49077164104,
+        "voter": "lat-nayar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22794273843250,
+        "rshares": 122834295462,
+        "voter": "thedashguy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1331218317408,
+        "rshares": 5412463822,
+        "voter": "grandpere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 343178626425,
+        "rshares": 195115992238,
+        "voter": "mexbit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48542961182602,
+        "rshares": 1366452037950,
+        "voter": "sean-king"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2419162524790,
+        "rshares": 686387673636,
+        "voter": "publicworker"
+      },
+      {
+        "percent": "5000",
+        "reputation": 598181152117,
+        "rshares": 103517234451,
+        "voter": "kimziv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36884147263377,
+        "rshares": 216392016575,
+        "voter": "lukestokes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2738311095861,
+        "rshares": 13828133326,
+        "voter": "jparty"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571311902261,
+        "rshares": 2233941988,
+        "voter": "mammasitta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3924899966690,
+        "rshares": 49507039139,
+        "voter": "gtg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28873518041457,
+        "rshares": 52214627593,
+        "voter": "razvanelulmarin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 861737606263,
+        "rshares": 8410101902,
+        "voter": "simoneighties"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 7265054512,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 112943056223182,
+        "rshares": 152799819717,
+        "voter": "ericvancewalton"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18965164896,
+        "rshares": 260424224,
+        "voter": "pim"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15603689614497,
+        "rshares": 5002970057,
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3893522363454,
+        "rshares": 217297385433,
+        "voter": "tomkirkham"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3326209124802,
+        "rshares": 10956634318,
+        "voter": "aeico"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18757150528749,
+        "rshares": 142699808834,
+        "voter": "chhaylin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9956734090708,
+        "rshares": 22686086206,
+        "voter": "firepower"
+      },
+      {
+        "percent": "8000",
+        "reputation": 213668684615,
+        "rshares": 222535041,
+        "voter": "soupernerd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 787678199102,
+        "rshares": 4719976979,
+        "voter": "cmtzco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2222945795019,
+        "rshares": 135258108874,
+        "voter": "chhayll"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14661458923663,
+        "rshares": 87298844534,
+        "voter": "fabio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5754523667110,
+        "rshares": 12502365042,
+        "voter": "yogi.artist"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97622606374,
+        "rshares": 525127069,
+        "voter": "chamviet"
+      },
+      {
+        "percent": "10000",
+        "reputation": 997011879274,
+        "rshares": 6830379360,
+        "voter": "endaksi1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 142793644,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18799092030582,
+        "rshares": 45310613662,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6340616331847,
+        "rshares": 9484434103,
+        "voter": "picokernel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 75388778818,
+        "voter": "jatochnietdan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 223278762484,
+        "rshares": 16476125783,
+        "voter": "jazzka"
+      },
+      {
+        "percent": "1000",
+        "reputation": 19111656178138,
+        "rshares": 6245458164,
+        "voter": "furion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12755003778,
+        "rshares": 320286208,
+        "voter": "onthewayout"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3891722,
+        "rshares": 72118974,
+        "voter": "barbara2"
+      },
+      {
+        "percent": "1000",
+        "reputation": 9142611234,
+        "rshares": 80660917,
+        "voter": "ch0c0latechip"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3871042,
+        "rshares": 73949203,
+        "voter": "doge4lyf"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7547302,
+        "rshares": 91775193,
+        "voter": "ghozia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3320684282022,
+        "rshares": 110356031880,
+        "voter": "knircky"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8017093633272,
+        "rshares": 19952368671,
+        "voter": "ausbitbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 54870619364044,
+        "rshares": 99266796796,
+        "voter": "jacor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6030999377480,
+        "rshares": 3345442816,
+        "voter": "sebastien"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9968156990,
+        "rshares": 18033926620,
+        "voter": "flyingmind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 38947133984552,
+        "rshares": 142129493846,
+        "voter": "jesta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 475226720101,
+        "rshares": 34260279506,
+        "voter": "toxonaut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 55868714455,
+        "rshares": 9565381348,
+        "voter": "revulv"
+      },
+      {
+        "percent": "10000",
+        "reputation": 234379829569,
+        "rshares": 2639487925,
+        "voter": "holzmichl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1563271634183,
+        "rshares": 107243301266,
+        "voter": "paco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 14826352016829,
+        "rshares": 22613261364,
+        "voter": "diana.catherine"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1241141280004,
+        "rshares": 47961353292,
+        "voter": "sephiroth"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1489102259,
+        "rshares": 208581030,
+        "voter": "zoicneo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1175982316919,
+        "rshares": 269389937433,
+        "voter": "nabilov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3979714886621,
+        "rshares": 13696846132,
+        "voter": "jaycobbell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2877113019152,
+        "rshares": 11804087991,
+        "voter": "bycz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118581531020,
+        "rshares": 2222009885,
+        "voter": "dmacshady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 693127524498,
+        "rshares": 404296312,
+        "voter": "alexoz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36956876377,
+        "rshares": 2774283311,
+        "voter": "rigel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2629271154,
+        "rshares": 1723503984,
+        "voter": "screasey"
+      },
+      {
+        "percent": "10000",
+        "reputation": 30694001824,
+        "rshares": 1453226197,
+        "voter": "vorsseli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97417747806297,
+        "rshares": 199228255308,
+        "voter": "knozaki2015"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2620486879029,
+        "rshares": 1297714742,
+        "voter": "arcange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1537463763,
+        "rshares": 25927450587,
+        "voter": "creemej"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 10146677177,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9999779221262,
+        "rshares": 18787807577,
+        "voter": "mynameisbrian"
+      },
+      {
+        "percent": "10000",
+        "reputation": 76096938200261,
+        "rshares": 177634914692,
+        "voter": "calaber24p"
+      },
+      {
+        "percent": "10000",
+        "reputation": 224144957883,
+        "rshares": 13907559564,
+        "voter": "all-of-us"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10900524985586,
+        "rshares": 28274862429,
+        "voter": "royaltiffany"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4456090201156,
+        "rshares": 6607451048,
+        "voter": "heimindanger"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1394532106132,
+        "rshares": 7023642790,
+        "voter": "geronimo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1107579084929,
+        "rshares": 2687668307,
+        "voter": "ultramari0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7740774800016,
+        "rshares": 23490708029,
+        "voter": "beowulfoflegend"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2114306416334,
+        "rshares": 2525305035,
+        "voter": "cryptohustlin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11482318062844,
+        "rshares": 35251248496,
+        "voter": "sauravrungta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1633600290379,
+        "rshares": 12216840328,
+        "voter": "shredlord"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 62006066006,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2791409844,
+        "rshares": 111726756,
+        "voter": "elmusic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 573006273614,
+        "rshares": 13784158275,
+        "voter": "chessmonster"
+      },
+      {
+        "percent": "10000",
+        "reputation": 715914588623,
+        "rshares": 940333523,
+        "voter": "oecp85"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2795999874461,
+        "rshares": 892248356216,
+        "voter": "james212"
+      },
+      {
+        "percent": "1000",
+        "reputation": 10519849768972,
+        "rshares": 2467235781,
+        "voter": "positive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 82275088768,
+        "rshares": 34911772762,
+        "voter": "paquito"
+      },
+      {
+        "percent": "10000",
+        "reputation": 194175308,
+        "rshares": 115682991,
+        "voter": "sergey22"
+      },
+      {
+        "percent": "10000",
+        "reputation": 122460178863,
+        "rshares": 4828963344,
+        "voter": "masterinvestor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 542854211690,
+        "rshares": 410075288,
+        "voter": "sokoloffa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1365185552740,
+        "rshares": 110286040,
+        "voter": "dabaisha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 48324434201,
+        "rshares": 190659116,
+        "voter": "tobythecat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 568560955800,
+        "rshares": 35510501911,
+        "voter": "fatboy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 321902226,
+        "rshares": 225919607,
+        "voter": "culoemono"
+      },
+      {
+        "percent": "5000",
+        "reputation": 17698439393799,
+        "rshares": 6452998093,
+        "voter": "sisterholics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73320231439,
+        "rshares": 116274111,
+        "voter": "cronk"
+      },
+      {
+        "percent": "1000",
+        "reputation": 147425730,
+        "rshares": 77473651,
+        "voter": "fnait"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3720753029,
+        "rshares": 74625825,
+        "voter": "keepcalmand"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4965349454737,
+        "rshares": 33393614131,
+        "voter": "rznag"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5571312226030,
+        "rshares": 2931055842,
+        "voter": "beanz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6545561317919,
+        "rshares": 5471448531,
+        "voter": "clevecross"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1193908062262,
+        "rshares": 95073477,
+        "voter": "steemster1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 111137351,
+        "voter": "middleclicker"
+      },
+      {
+        "percent": "10000",
+        "reputation": 114448354925,
+        "rshares": 60188008025,
+        "voter": "investing"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485834937336,
+        "rshares": 158874903,
+        "voter": "pulpably"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6522395967,
+        "rshares": 120698196,
+        "voter": "alechahn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 206406209371,
+        "rshares": 1842626655,
+        "voter": "lpninja"
+      },
+      {
+        "percent": "10000",
+        "reputation": 8806485920347,
+        "rshares": 30168136093,
+        "voter": "jasonstaggers"
+      },
+      {
+        "percent": "8000",
+        "reputation": -4779249072914,
+        "rshares": 218486731,
+        "voter": "weenis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3962925392210,
+        "rshares": 3800170172,
+        "voter": "jed78"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2926129985180,
+        "rshares": 51796751595,
+        "voter": "shaka"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1984412570795,
+        "rshares": 2470538012,
+        "voter": "shortcut"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 943711557,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": -833837861150,
+        "rshares": 51143991,
+        "voter": "sharon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 697263449295,
+        "rshares": 1398411520,
+        "voter": "crowne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4336038090799,
+        "rshares": 10510184099,
+        "voter": "felixxx"
+      },
+      {
+        "percent": "10000",
+        "reputation": 636819078766,
+        "rshares": 61858279,
+        "voter": "whitemike313"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1130081321479,
+        "rshares": 50731326,
+        "voter": "lillianjones"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 589199119504,
+        "voter": "laonie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90565359983,
+        "rshares": 16361768844,
+        "voter": "rawnetics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6181438509962,
+        "rshares": 13536900774,
+        "voter": "capitalism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2832097256429,
+        "rshares": 4974812134,
+        "voter": "satoshifpv"
+      },
+      {
+        "percent": "10000",
+        "reputation": -655701032,
+        "rshares": 127381736,
+        "voter": "btctoken"
+      },
+      {
+        "percent": "10000",
+        "reputation": 211462616494,
+        "rshares": 865197927,
+        "voter": "letc"
+      },
+      {
+        "percent": "5000",
+        "reputation": 18027204457681,
+        "rshares": 13216324667,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1609279840801,
+        "rshares": 2078560081,
+        "voter": "rich77"
+      },
+      {
+        "percent": "5000",
+        "reputation": 5776723480371,
+        "rshares": 112339707268,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 97328985094,
+        "rshares": 3074215761,
+        "voter": "brendio"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6887127798781,
+        "rshares": 30692880794,
+        "voter": "xtester"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2269581106933,
+        "rshares": 67104652,
+        "voter": "stormblaze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2637292041469,
+        "rshares": 1730623991,
+        "voter": "minion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3271549714172,
+        "rshares": 783512776,
+        "voter": "andrew0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1012746,
+        "rshares": 64566532,
+        "voter": "nickola"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3209909513,
+        "rshares": 20361864418,
+        "voter": "paws1t1veev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4549076794,
+        "rshares": 382253852,
+        "voter": "carlos-borges"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 22295959904,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7254413425,
+        "rshares": 66501819,
+        "voter": "tiberius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2015798675,
+        "rshares": 386282196,
+        "voter": "bitcoindon23"
+      },
+      {
+        "percent": "10000",
+        "reputation": 124828196272,
+        "rshares": 852029551,
+        "voter": "havok777"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2344911104009,
+        "rshares": 7539327464,
+        "voter": "ekitcho"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6380056335097,
+        "rshares": 8201249418,
+        "voter": "randyclemens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 73944659327428,
+        "rshares": 66936134283,
+        "voter": "sirwinchester"
+      },
+      {
+        "percent": "5000",
+        "reputation": 1851205309677,
+        "rshares": 1787091651,
+        "voter": "xiaokongcom"
+      },
+      {
+        "percent": "10000",
+        "reputation": 126444536302,
+        "rshares": 662534286,
+        "voter": "hms818"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13386319310,
+        "rshares": 70956487,
+        "voter": "dudu-hoffman"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1468839175006,
+        "rshares": 51120963,
+        "voter": "msjennifer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 661944466048,
+        "rshares": 673743536,
+        "voter": "alifton"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1343370986030,
+        "rshares": 50828873,
+        "voter": "ciao"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 28292996011,
+        "voter": "marcopizzuti"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62917434,
+        "voter": "kfw"
+      },
+      {
+        "percent": "5000",
+        "reputation": 891327,
+        "rshares": 408615947,
+        "voter": "theconnoisseur"
+      },
+      {
+        "percent": "10000",
+        "reputation": 485540,
+        "rshares": 50521096,
+        "voter": "steemo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 398467602540,
+        "rshares": 151615556,
+        "voter": "naifaz"
+      },
+      {
+        "percent": "5000",
+        "reputation": 4195733833721,
+        "rshares": 2442034567,
+        "voter": "xianjun"
+      },
+      {
+        "percent": "10000",
+        "reputation": -79575494262,
+        "rshares": 50390768,
+        "voter": "steema"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6755300029,
+        "rshares": 522606938,
+        "voter": "nonamer"
+      },
+      {
+        "percent": "10000",
+        "reputation": -894488087252,
+        "rshares": 50183394,
+        "voter": "confucius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 37279727062,
+        "rshares": 2578510492,
+        "voter": "bledarus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 263793010310,
+        "rshares": 150585915,
+        "voter": "ulfa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 62056547,
+        "voter": "ttrof59"
+      },
+      {
+        "percent": "10000",
+        "reputation": -789959772758,
+        "rshares": 51153233,
+        "voter": "jarvis"
+      },
+      {
+        "percent": "5000",
+        "reputation": 730408370151,
+        "rshares": 248032218,
+        "voter": "microluck"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 329573836,
+        "voter": "annaha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50692212,
+        "voter": "fortuner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3657922,
+        "rshares": 58919079,
+        "voter": "titan792008"
+      },
+      {
+        "percent": "5000",
+        "reputation": 31215012571,
+        "rshares": 17585936336,
+        "voter": "thecurator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40078121577,
+        "rshares": 588775942,
+        "voter": "chanbam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 794453323,
+        "voter": "kollapsik"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11448117997,
+        "rshares": 58148489,
+        "voter": "alfaman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 83682643470,
+        "rshares": 111232966,
+        "voter": "cinderphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 133847847904,
+        "rshares": 214875108,
+        "voter": "ashleybeckwith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1902873783,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 24073624840,
+        "rshares": 1430182565,
+        "voter": "madoff"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50684643,
+        "voter": "johnbyrd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50682252,
+        "voter": "thomasaustin"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50680459,
+        "voter": "thermor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50677748,
+        "voter": "ficholl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50673817,
+        "voter": "widell"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1016260025,
+        "rshares": 53067614,
+        "voter": "dimitriy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 505219265255,
+        "rshares": 60666250,
+        "voter": "violino"
+      },
+      {
+        "percent": "10000",
+        "reputation": -49397634,
+        "rshares": 50439994,
+        "voter": "vasilii"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50311250,
+        "voter": "revelbrooks"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3103554028241,
+        "rshares": 650780303,
+        "voter": "levycore"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 18146080250,
+        "rshares": -60040051,
+        "voter": "icecreamyolo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1027623674960,
+        "rshares": 1472628083,
+        "voter": "rossenpavlov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 735853605809,
+        "rshares": 1171329427,
+        "voter": "garretts87"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1130219064888,
+        "rshares": 26106675550,
+        "voter": "andrewawerdna"
+      },
+      {
+        "percent": "10000",
+        "reputation": 875137794542,
+        "rshares": 3550134972,
+        "voter": "trev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4112973711517,
+        "rshares": 6162137506,
+        "voter": "generation.easy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 61929785979,
+        "rshares": 76837181,
+        "voter": "redlikecherry"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11490547563070,
+        "rshares": 21064576357,
+        "voter": "hilarski"
+      },
+      {
+        "percent": "10000",
+        "reputation": -642566206250,
+        "rshares": 2812110844,
+        "voter": "craigwilliamz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4775359646971,
+        "rshares": 2132014007,
+        "voter": "anarcho-andrei"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1141549904909,
+        "rshares": 2214392625,
+        "voter": "hoopatang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17664067329835,
+        "rshares": 110550263547,
+        "voter": "falkvinge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 68335930859,
+        "rshares": 56114502,
+        "voter": "justinschwalm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 186566404,
+        "rshares": 57529481,
+        "voter": "tamijj"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9759030533,
+        "rshares": 57886832,
+        "voter": "shootetxd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 793368183438,
+        "rshares": 3594479028,
+        "voter": "mattclarke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50416427,
+        "voter": "curpose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 53098184238,
+        "rshares": 83815039,
+        "voter": "sjjohnson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 10614920699,
+        "rshares": 236132650,
+        "voter": "miscreantpie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1090727793166,
+        "rshares": 1834802564,
+        "voter": "eileenbeach"
+      },
+      {
+        "percent": "10000",
+        "reputation": -1987750394564,
+        "rshares": 52585185,
+        "voter": "feminism"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46393039820,
+        "rshares": 1565796952,
+        "voter": "themonetaryfew"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3758981994,
+        "rshares": 57791130,
+        "voter": "gearshiftrwife"
+      },
+      {
+        "percent": "10000",
+        "reputation": 716390377150,
+        "rshares": 4225982895,
+        "voter": "rwgunderson"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3523461665322,
+        "rshares": 129573135,
+        "voter": "fat-like-buddha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335003583191,
+        "rshares": 60526884,
+        "voter": "jtstreetman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1442187004,
+        "rshares": 55791783,
+        "voter": "lsd123452"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 133141273,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 27860421633,
+        "rshares": 754244428,
+        "voter": "christiangruber"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4818398060873,
+        "rshares": 36116476799,
+        "voter": "shenanigator"
+      },
+      {
+        "percent": "10000",
+        "reputation": 71849011,
+        "rshares": 57813247,
+        "voter": "bradyd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 57683187,
+        "voter": "uziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6996617613365,
+        "rshares": 8467643107,
+        "voter": "aaronkoenig"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 54247105,
+        "voter": "maximator15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55369146,
+        "voter": "tiituskangas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7258302306624,
+        "rshares": 3488323747,
+        "voter": "mikehere"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2147956107486,
+        "rshares": 2465887706,
+        "voter": "einsteinpotsdam"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6332865841,
+        "rshares": 273374489,
+        "voter": "davincij15"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4005883638,
+        "rshares": 55698555,
+        "voter": "makov"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1192599590489,
+        "rshares": 831124898,
+        "voter": "nathanbrown"
+      },
+      {
+        "percent": "10000",
+        "reputation": 135018071312,
+        "rshares": 59128689,
+        "voter": "blackeyed"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28419215374,
+        "rshares": 1385093282,
+        "voter": "mister-t"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083886659611,
+        "rshares": 93508537,
+        "voter": "wakeupnd"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3849564768924,
+        "rshares": 20505868480,
+        "voter": "onesunbeingnow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1409339812298,
+        "rshares": 96267073,
+        "voter": "eight-rad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50588612,
+        "voter": "troich"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1310694171712,
+        "rshares": 2261984687,
+        "voter": "blockcodes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3573461197670,
+        "rshares": 10417000727,
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 651373865756,
+        "rshares": 60934323,
+        "voter": "team101"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2083416845,
+        "rshares": 50593879,
+        "voter": "crion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50271139,
+        "voter": "hitherise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50262756,
+        "voter": "wiss"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6921306030,
+        "rshares": 56850962,
+        "voter": "darknight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 90062656329,
+        "rshares": 56914472,
+        "voter": "steemerpat"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6064514,
+        "rshares": 56782516,
+        "voter": "sebastianbauer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136085046245,
+        "rshares": 59479703,
+        "voter": "randr10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 25508059,
+        "rshares": 54547175,
+        "voter": "kosmatimuc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 18088143027,
+        "rshares": 54536747,
+        "voter": "mnviking"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4923665523434,
+        "rshares": 168325699,
+        "voter": "lanimal"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51033798,
+        "voter": "stroully"
+      },
+      {
+        "percent": "10000",
+        "reputation": 80747623295,
+        "rshares": 27680752440,
+        "voter": "zahnspange"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2134908321,
+        "rshares": 53181164,
+        "voter": "feedyourbank"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12539394694005,
+        "rshares": 2594600965,
+        "voter": "doitvoluntarily"
+      },
+      {
+        "percent": "10000",
+        "reputation": 19272336927,
+        "rshares": 444096921,
+        "voter": "eniac"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50712038,
+        "voter": "thadm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50710305,
+        "voter": "prof"
+      },
+      {
+        "percent": "10000",
+        "reputation": 640164473382,
+        "rshares": 55043079,
+        "voter": "zettar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 143879651757,
+        "rshares": 195838830,
+        "voter": "keverw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50356354,
+        "voter": "yorsens"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1247818520980,
+        "rshares": 515136503,
+        "voter": "jacobcwitmer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2368258663,
+        "rshares": 55171651,
+        "voter": "baldsteve1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 193759655472,
+        "rshares": 115562685,
+        "voter": "rebeccaryan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7586670074,
+        "rshares": 55707824,
+        "voter": "knoble"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50065875,
+        "voter": "bane"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50059754,
+        "voter": "vive"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50054445,
+        "voter": "coad"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 55423328,
+        "voter": "umarm"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2908933665034,
+        "rshares": 115913696,
+        "voter": "mindhunter"
+      },
+      {
+        "percent": "10000",
+        "reputation": 652863483,
+        "rshares": 55384928,
+        "voter": "satoshigraphics"
+      },
+      {
+        "percent": "10000",
+        "reputation": 190002902030,
+        "rshares": 50275164,
+        "voter": "baodog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6227584776320,
+        "rshares": 2053885248,
+        "voter": "renzoarg"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50825587,
+        "voter": "sofa"
+      },
+      {
+        "percent": "10000",
+        "reputation": -119859903423,
+        "rshares": 67051047,
+        "voter": "and030380"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1666032,
+        "rshares": 52543123,
+        "voter": "abdulatif"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1664975949,
+        "rshares": 54730697,
+        "voter": "donguillermo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1000151128321,
+        "rshares": 58263366,
+        "voter": "littlescribe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3138405687,
+        "rshares": 50288358,
+        "voter": "waldemar-kuhn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 277665828905,
+        "rshares": 4477688139,
+        "voter": "ivicaa"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53358252,
+        "voter": "sofiaornati"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11427084577,
+        "rshares": 54512166,
+        "voter": "film-editor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 830944,
+        "rshares": 54244027,
+        "voter": "alexanderem"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50918375,
+        "voter": "ailo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 474811529,
+        "rshares": 52943536,
+        "voter": "brs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 563927807986,
+        "rshares": 59097192,
+        "voter": "bitcoinparadise"
+      },
+      {
+        "percent": "10000",
+        "reputation": 17391399824,
+        "rshares": 53047492,
+        "voter": "kinghabib786"
+      },
+      {
+        "percent": "10000",
+        "reputation": 12168350651,
+        "rshares": 54429762,
+        "voter": "elex-free"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52579820,
+        "voter": "sanfrancesco"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1201509725074,
+        "rshares": 51477686,
+        "voter": "echoesinthemind"
+      },
+      {
+        "percent": "10000",
+        "reputation": 15279950893,
+        "rshares": 52420592,
+        "voter": "inphiknit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 419405820,
+        "rshares": 51231643,
+        "voter": "moda1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 51174318,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3358006,
+        "rshares": 51147992,
+        "voter": "irura"
+      },
+      {
+        "percent": "10000",
+        "reputation": 154843320822,
+        "rshares": 53141273,
+        "voter": "idmen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53097691,
+        "voter": "minesle"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2474314,
+        "rshares": 52013554,
+        "voter": "ascares"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1982920070,
+        "rshares": 53050941,
+        "voter": "himiko.ozaki"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 53043761,
+        "voter": "cooltomato2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1148513935176,
+        "rshares": 53041377,
+        "voter": "allesgruen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 945836468614,
+        "rshares": 53018446,
+        "voter": "stickman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511117859,
+        "rshares": 51972989,
+        "voter": "miriams"
+      },
+      {
+        "percent": "10000",
+        "reputation": 121386363,
+        "rshares": 51960814,
+        "voter": "pillar-of-autum"
+      },
+      {
+        "percent": "10000",
+        "reputation": 221475776781,
+        "rshares": 51939361,
+        "voter": "andrewrait"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51935113,
+        "voter": "becenok"
+      },
+      {
+        "percent": "10000",
+        "reputation": 39967971,
+        "rshares": 51890765,
+        "voter": "gregorygarcia"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445711,
+        "rshares": 52866277,
+        "voter": "noehuertas"
+      },
+      {
+        "percent": "10000",
+        "reputation": 136526211,
+        "rshares": 52701082,
+        "voter": "longe"
+      }
+    ],
+    "author": "capitalism",
+    "author_reputation": 6181438509962,
+    "beneficiaries": [],
+    "body": "<html>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover143893.png\" width=\"840\" height=\"494\"/><br>\n<img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover254dab.png\" width=\"840\" height=\"346\"/></p>\n<p>It is characteristic for all genius masterminds that aspire for world domination, that they occasionally spill the beans about their plans. Dr. Julius No, Auric Goldfinger and Ernst Blofeld did it. And Dan Larimer, Co-Founder of Steemit, did it as well.</p>\n<p>Did you ever wonder, why Dan doesn\u2019t write posts with his <a href=\"https://steemit.com/@dan\">@dan</a> account anymore and is using instead his <a href=\"https://steemit.com/@dantheman\">@dantheman</a> account? The simple answer is: he wants to hide <a href=\"https://steemit.com/steem/@dan/steemit-s-evil-plan-for-cryptocurrency-world-domination\">that post</a>:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-screenshot5fef5.jpg\" width=\"840\" height=\"656\"/></p>\n<p>One month ago, in a state of cockiness because of the near triumph of this ventures, Dan had carelessly revealed his plans for world domination in cryptocurrency to the public. Unfortunately he revealed his plans on a platform that was designed to be immune against censorship. So he couldn\u2019t delete the post after realizing that. Writing with another account name afterwards was the only possible way to cover that mistake.</p>\n<p><strong>Based on this secret document and further research I present you Dan\u2019s complete secret plan for world domination.</strong>&nbsp;</p>\n<p>The first part of this plan is to achieve world domination in cryptocurrency.</p>\n<h1>1. Cryptocurrency world domination</h1>\n<p>In his <a href=\"https://steemit.com/steem/@dan/steemit-s-evil-plan-for-cryptocurrency-world-domination\">accidentally revealed article</a> Dan is describing, how he will reach this goal with Steemit.</p>\n<p>First he admits openly that Steemit is not mainly a blogging platform. In truth it is a tool for \u201ebootstrapping a digital currency\u201c. The establishment of the blogging platform is only the way to create a community that is able and willing to use the new digital currency. Then Dan admits:</p>\n<h3><em>\u201eA blogging platform that makes it possible for everyone to earn &nbsp;their way in is just a trojan horse. It is a means of hiding the vegetables (honest money) in the food (fun content).\u201c</em></h3>\n<p>It\u2019s likely that Dan was laughing out loud when he was confessing with these words, how he is tricking the Steemit users into taking his honest digital currency as reward for their writing. What an ingenious plan.&nbsp;</p>\n<p>Next he outlines three phases for achieving cryptocurrency world domination:</p>\n<p><strong>\u201ePhase 1 - Bootstrap a Stable Currency\u201c</strong></p>\n<p>To outrival the other cryptocurrencies Dan wants to create a stable digital currency - the \u201eSteem Dollar\u201c. Because it\u2019s designed to be stable against the US Dollar, this Steem Dollar should hit Bitcoin and the Alt-Coins at their weakest spot, their unstable price.&nbsp;</p>\n<p>So, the blogging platform Steemit is just an outlet to bring this Steem Dollars to the ordinary people. Guess how many Steemit users have knowledge about this? How many of them know, that the sole reason to let them write articles is to give Dan the ability to give them Steem Dollars?&nbsp;</p>\n<p><strong>\u201ePhase 2 - Bootstrap a Marketplace\u201c</strong></p>\n<p>Dan describes now, how he wants to disrupt the online commerce in the second phase by building a marketplace \u201elike OpenBazaar, Craigslist, Angie\u2019s List, or eBay\u201c. With all the people that he had tricked into his venture by giving them Steem Dollars for their writing he has now the user base for his own Steem powered marketplace, where they can spend their Steem Dollars.&nbsp;</p>\n<p>Could you imagine something that is more alluring? - First he gives the people money for free and than he offers them the perfect place for spending it! Is that even legal?</p>\n<p><strong>\u201ePhase 3 - Sidechains, Smart Contracts and SmartCoins, Oh My!\u201c</strong></p>\n<p>In the final phase he wants to use his Steem technology to establish a complete blockchain infrastructure that can be used by others to build new applications and business models. Again, he wants to use a perfidious method to get users for this services. His trick is: \u201eno fees!\u201c - All Wall Street bankers will surely cry when they hear about that.</p>\n<p>You might think that creating such a stable cryptocurrency that has no fees is the whole plan of Dan. But this is only a small part of what he wants to achieve.&nbsp;</p>\n<h1>2. Building an \u201ealternative economy\u201c</h1>\n<p>In a <a href=\"https://steemit.com/steemit/@dollarvigilante/how-i-made-usd15-000-in-12-hours-on-the-new-blockchain-based-social-media-site-steemit\">recent interview</a> with Jeff Berwick (<a href=\"https://steemit.com/@dollarvigilante\">@dollarvigilante</a>), Dan had loosen his concentration for a moment and spilled again the beans out about his secret plan:</p>\n<p>https://www.youtube.com/watch?v=-W0EYe23or4</p>\n<p>At minute 38:56 Dan accidently revealed, what he is intending. He wants to get:&nbsp;</p>\n<h3><em>\u201ea new economic system for people who want to have free honest money rather than Federal Reserve money controled by central parties.\u201c</em></h3>\n<p>And than at minute 39:04 he admits:</p>\n<h3><em>\u201eThats the bigger picture here about creating an alternative economy thus is being bootstrapped through social media.\u201c</em></h3>\n<p>So, to get cryptocurrency world domination is not enough for Dan. He wants to change the whole economy.</p>\n<p>But still, this is not the end of his plans. His ultimate goal is:</p>\n<h1>3. Building an \u201ealternative to government\u201c</h1>\n<p>In my research I dug deep into Youtube and found a keynote speech by Dan at the <em>Inside Bitcoins</em> <em>Conference</em> in Las Vegas in 2014:</p>\n<p>https://www.youtube.com/watch?v=U44MujtVj00</p>\n<p>Dan speaks here mostly about his BitShares project. But at minute 28:54 he tells the audience the possibilities of the blockchain technology and stated openly that&nbsp;</p>\n<h3><em>\u201eyou can have complete governance on a voluntary basis, because blockchain technology allows us to reach a peaceful form of consensus and is the alternative to government which are a coercive violent for of consensus. It\u2019s just a matter of finding the free market solution to secure life, liberty and property. And that\u2019s what I\u2019m going for.\u201c</em></h3>\n<p>So, Dan Larimer is a real anarcho-capitalist thinker. But he is not only a thinker. Steemit is the first step to reach his goal of an alternative to government.&nbsp;</p>\n<p>Now I will finally expose how Dan wants to achieve this. His first instrument to create an alternative economy and an alternative to governments are Decentralized Autonomous Companies (DAC).</p>\n<h1>4. Decentralized Autonomous Companies (DACs)</h1>\n<p>Dan Larimer invented the concept of the \"Decentralized Autonomous Companies\" (DACs) some month before Vitalik Buterin came up with the term \"Decentralized Autonomous Organization\" (DAO), which became quite famous because of \u201eThe DAO\u201c.&nbsp;</p>\n<p>Dan had explained the concept of the DAC together with Brian Page in 2014:</p>\n<p>https://www.youtube.com/watch?v=abA4TuPHmNg</p>\n<p>In this video Dan is giving us confirmation for his secret plan that I am exposing here. At minute 2:01 he admits that he wants</p>\n<h3><em>\u201eto create a product that I hope gonna change the world\u201c.</em></h3>\n<p>Dan is speaking here about BitShares and how it is a platform for DACs. He explains that Bitcoin is a DAC and how a DAC is working. But I will not bore you with technical details. Fact is, that Steemit is a kind of DAC and that DACs are one of the two instruments of Dan.</p>\n<p>But what is a DAC strictly speaking? Let\u2019s get an revealing <a href=\"https://medium.com/@VitalikButerin/i-invented-the-term-in-2013-and-daniel-larimer-came-up-with-dacs-s-organization-corporation-a-ef86db1524d5#.srakglwfj\">explanation by Vitalik Buterin</a>:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-dacs917af.png\" width=\"840\" height=\"461\"/></p>\n<p>Many readers will be familiar with the <a href=\"https://en.wikipedia.org/wiki/Daemon_(novel_series)\">\u201eDaemon\u201c novel of Daniel Suarez</a>, where a software agent called \u201eDaemon\u201c and a decentralized network called \u201eDarknet\u201c was created by a software genius to change the world.&nbsp;</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemonbooks38fc9.jpg\" width=\"840\" height=\"448\"/></p>\n<p><em><strong>\u201eChange the world\u201c</strong></em> - does this sound familiar? These are the same words, that Dan Larimer was using in the DACs video.</p>\n<p>But is it possible that Dan wants to build such a Daemon and a Darknet that will change the world. I couldn\u2019t find evidence for this by him. But I was able to find a cryptic confirmation by his Steemit co-founder Ned Scott (<a href=\"https://steemit.com/@ned\">@ned</a>).</p>\n<p>Two month ago, <a href=\"https://steemit.com/@pheonike\">@pheonike</a> had started a Steemit book club with an <a href=\"https://steemit.com/books/@pheonike/steem-book-clubs\">article about the notorious book \u201eDaemon\u201c</a> by Daniel Suarez. Ned, who in all probability had knowledge of the secret plan of Dan, wrote a comment to this post:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-ned-comment3c240.png\" width=\"362\" height=\"111\"/></p>\n<p>At first sight Ned is simply saying that the book of Daniel Suarez was \u201ea fun read\u201c. But what about the \u201e+1\u201c? I\u2019m really sure that Ned is telling in a hidden way that another \u201eDaemon\u201c was created.&nbsp;</p>\n<p>Now everything makes sense. Dan is building his own \u201eDaemon\u201c.</p>\n<p>But wait, there is more evidence. Look at this:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemone9661.png\" width=\"333\" height=\"102\"/></p>\n<p>So, DAemoN = DAN.&nbsp;</p>\n<p><strong>It seems to me now, that Dan is in one person the brilliant programmer Matthew A. Sobol </strong><em><strong>AND</strong></em><strong> the Daemon from the novel of Daniel Suarez!!! </strong>And on the basis of the blockchain technology Dan is now building a \u201eDarknet\u201c like the one in the \u201eDaemon\u201c novels.</p>\n<h1>5. Steemians</h1>\n<p>I mentioned a second instrument that Dan has created to implement his secret plan. And this second instrument is: the Steemians!</p>\n<p>Yes, that's you and me.</p>\n<p>In the secret document that Dan was posting by mistake on Steemit he had admitted that he needs to build a community for bootstrapping his honest digital currency. But this is not the only function of this community.</p>\n<p>Do you know <a href=\"http://steemtools.com/\">SteemTools.com</a>? This is a terrific collection of tools that were build by Steemians in the last weeks. So, strictly speaking - <strong>the Steemians are the little helpers of Dan</strong>.&nbsp;</p>\n<p>Or, to give you a good analogy, the Steemians are his Minions:</p>\n<p><img src=\"https://www.steemimg.com/images/2016/08/20/danssecretplan-steemiansc1b38.jpg\" width=\"840\" height=\"482\"/></p>\n<p>The Steemians are the eager helpers for Dan to achieve his goals: to build an alternative economy and an alternative to governments.</p>\n<h1>Conclusion</h1>\n<h3>Steemit is much more than a blogging platform where people gets rewarded in a cryptocurrency for popular articles. It is a community of people who wanna create a better world through technology and friendship. The research for this post gave me high confidence in the future of Steemit and in the vision of Dan. I\u2019m happy and proud to be one of his Steemians.</h3>\n<p><br></p>\n<p>Follow me if you like my posts: <a href=\"https://steemit.com/@capitalism\">@capitalism</a></p>\n<p><strong># KeepingPledge</strong>: all Steemdollars that I will receive for this article will be powered up to Steempower.</p>\n</html>",
+    "body_length": 11891,
+    "cashout_time": "2016-08-27T21:56:00",
+    "category": "steemit",
+    "children": 109,
+    "created": "2016-08-20T21:56:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"steemit\",\"cryptocurrency\",\"dan\",\"steemians\",\"keepingpledge\"],\"image\":[\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover143893.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-cover254dab.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-screenshot5fef5.jpg\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-dacs917af.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemonbooks38fc9.jpg\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-ned-comment3c240.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-daemone9661.png\",\"https://www.steemimg.com/images/2016/08/20/danssecretplan-steemiansc1b38.jpg\"],\"links\":[\"https://steemit.com/@dan\",\"https://steemit.com/@dantheman\",\"https://steemit.com/steem/@dan/steemit-s-evil-plan-for-cryptocurrency-world-domination\",\"https://steemit.com/steemit/@dollarvigilante/how-i-made-usd15-000-in-12-hours-on-the-new-blockchain-based-social-media-site-steemit\",\"https://steemit.com/@dollarvigilante\",\"https://www.youtube.com/watch?v=-W0EYe23or4\",\"https://www.youtube.com/watch?v=U44MujtVj00\",\"https://www.youtube.com/watch?v=abA4TuPHmNg\",\"https://medium.com/@VitalikButerin/i-invented-the-term-in-2013-and-daniel-larimer-came-up-with-dacs-s-organization-corporation-a-ef86db1524d5#.srakglwfj\",\"https://en.wikipedia.org/wiki/Daemon_(novel_series)\",\"https://steemit.com/@ned\",\"https://steemit.com/@pheonike\",\"https://steemit.com/books/@pheonike/steem-book-clubs\",\"http://steemtools.com/\",\"https://steemit.com/@capitalism\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-21T17:47:12",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 138695121364094,
+    "parent_author": "",
+    "parent_permlink": "steemit",
+    "pending_payout_value": "2826.162 HBD",
+    "percent_hbd": 10000,
+    "permlink": "capitalism-5-dan-s-secret-plan-for-world-domination-exposed-exclusive-cover-up",
+    "post_id": 912037,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "CAPITALISM #5: Dan\u2019s Secret Plan for World Domination Exposed [Exclusive Cover-Up]",
+    "title": "CAPITALISM #5: Dan\u2019s Secret Plan for World Domination Exposed [Exclusive Cover-Up]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/steemit/@capitalism/capitalism-5-dan-s-secret-plan-for-world-domination-exposed-exclusive-cover-up"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit_paginated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit_paginated.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..a07eaf711ce54b7034ecff34da8828e4e1aec260
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/tag_steemit_paginated.tavern.yaml
@@ -0,0 +1,28 @@
+---
+  test_name: Hivemind condenser_api.get_post_discussions_by_payout patterns test
+
+  marks:
+    - patterntest # see paginated.tavern.yaml
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_post_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: "condenser_api.get_post_discussions_by_payout"
+          params: {"tag":"steemit","start_author":"dollarvigilante","start_permlink":"steemit-exclusive-larken-rose-on-steem-and-how-it-is-helping-power-the-mirror-project","limit":2}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "tag_steemit_paginated"
+            directory: "condenser_api_patterns/get_post_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/truncated.orig.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/truncated.orig.json
new file mode 100644
index 0000000000000000000000000000000000000000..14fefb65f2cfcb3899fa40e483e646dbbbec5a52
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/truncated.orig.json
@@ -0,0 +1,1836 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "835401856",
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "221000835803",
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60049910",
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "141944533",
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "361661182474",
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6648576257",
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7400392900",
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12001771040",
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9364510234",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "231680157638",
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1520602917",
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "411633883",
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3793330400",
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60886073",
+        "voter": "tomeraddady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "727760600",
+        "voter": "abc1621043211"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1985606562",
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55763290",
+        "voter": "goriilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55184850",
+        "voter": "olakla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54993135",
+        "voter": "cerne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54916164",
+        "voter": "rexgrove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "139924838",
+        "voter": "inwoxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50066904",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "393193776",
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52774361",
+        "voter": "alexportikul"
+      }
+    ],
+    "author": "somebody",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "This post ",
+    "body_length": 176,
+    "cashout_time": "2016-09-24T05:05:24",
+    "category": "test",
+    "children": 7,
+    "created": "2016-08-24T04:49:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/steemimg.com\\/images\\/2016\\/08\\/24\\/dd8bd8753d16805.gif\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T04:49:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 860151460398,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.546 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "follow-me-please",
+    "post_id": 727357,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Follow me please.",
+    "title": "Follow me please.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@somebody/follow-me-please"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8763619284",
+        "voter": "somedude"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "5564190601",
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "145380534",
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10315786664",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "15008944210",
+        "voter": "hellokitty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "497568302000",
+        "voter": "laonie"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3778964442",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3778947431",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3778936100",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "9118987048",
+        "voter": "myfirst"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3778614532",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3778602547",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3778594469",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3778571886",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3778554259",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3778533199",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "18835607987",
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3776590554",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111114608",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": "3760658629",
+        "voter": "laonie11"
+      }
+    ],
+    "author": "trogdor",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-09-17T02:19:27",
+    "category": "test",
+    "children": 19,
+    "created": "2016-08-17T02:00:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:00:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 606977500984,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.418 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army",
+    "post_id": 635639,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "this is a test to see if i have been targeted by a spam bot army",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "228145849379",
+        "voter": "stino-san"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5007214192",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6821297816",
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2438027091",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8295473589",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5785438356",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5481884026",
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5785920904",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6091743832",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13280342528",
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6322307995",
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111797071",
+        "voter": "kukuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1010597496",
+        "voter": "thedon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "11316597740",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "283790428",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1455898140",
+        "voter": "jackgallenhall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52812228",
+        "voter": "reddtie"
+      }
+    ],
+    "author": "stino-san",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-09-15T20:12:06",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-15T20:05:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-15T20:05:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 307686992811,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.208 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "test",
+    "post_id": 617652,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@stino-san/test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "225913748267",
+        "voter": "stino-san"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "4936121677",
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2248064175",
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8179524007",
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5469062752",
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5704244958",
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5583423314",
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6007072255",
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67820011",
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10924517278",
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "267235062",
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "425334702",
+        "voter": "rucoin"
+      }
+    ],
+    "author": "stino-san",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-09-27T04:52:36",
+    "category": "test",
+    "children": 4,
+    "created": "2016-08-27T04:46:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-27T04:46:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 275726168458,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.151 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "46vbbv-test",
+    "post_id": 763215,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@stino-san/46vbbv-test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24991140368",
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6923304252",
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "79040067029",
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "23010056511",
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1854087037",
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "121858742924",
+        "voter": "twinner"
+      }
+    ],
+    "author": "ace108",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>",
+    "body_length": 240,
+    "cashout_time": "2016-10-06T04:18:33",
+    "category": "test",
+    "children": 3,
+    "created": "2016-09-05T02:59:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"testbyace10\"],\"image\":[\"https:\\/\\/www.steemimg.com\\/images\\/2016\\/09\\/05\\/Followbullionstackers320e51da.gif\"],\"links\":[\"https:\\/\\/www.steemimg.com\\/image\\/7tV3J\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T03:18:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 257677398121,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.082 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want",
+    "post_id": 858881,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want",
+    "title": "Test post for follow gif - nothing in here interesting but by all means vote if you want",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "100",
+        "reputation": 0,
+        "rshares": "7861629418",
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "206209970416",
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3649598360",
+        "voter": "rawlzsec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3509996730",
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6300267620",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1305753906",
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "840098241",
+        "voter": "usb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "192321224",
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "54457374",
+        "voter": "ppan08162016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1043765764",
+        "voter": "anasz"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Please do ",
+    "body_length": 250,
+    "cashout_time": "2016-10-14T01:42:18",
+    "category": "test",
+    "children": 6,
+    "created": "2016-09-12T07:38:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/designwebkit.com\\/wp-content\\/uploads\\/2013\\/09\\/how-test-logo-design-thumb.jpg\"],\"links\":[\"http:\\/\\/designwebkit.com\\/web-and-trends\\/how-professional-tests-finalizes-logo-design\\/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T07:38:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 230967859053,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.055 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "test",
+    "post_id": 928651,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "Test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10220864268",
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "258954801",
+        "voter": "digi3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "65562670577",
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "6668122973",
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "67570327",
+        "voter": "mndstruct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1245304003",
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "111116739",
+        "voter": "runridefly"
+      }
+    ],
+    "author": "rubenalexander",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<center><i",
+    "body_length": 490,
+    "cashout_time": "2016-09-17T16:24:15",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-17T14:05:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"crop\",\"image\"],\"image\":[\"http:\\/\\/i.imgur.com\\/GK1SyaR.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T14:20:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 84134603688,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.051 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "800px-box-crop-test-test-post-please-ignore",
+    "post_id": 641664,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "800px box, crop test [Test Post Please Ignore]",
+    "title": "800px box, crop test [Test Post Please Ignore]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@rubenalexander/800px-box-crop-test-test-post-please-ignore"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "69552358699",
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2058287307",
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "495165648",
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50931848",
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53222151",
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53146733",
+        "voter": "vsmith08162016"
+      }
+    ],
+    "author": "venuspcs",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Testing to",
+    "body_length": 43,
+    "cashout_time": "2016-09-25T18:50:09",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-25T18:14:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T18:14:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 72263112386,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.037 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "2kruc4-test",
+    "post_id": 745478,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "Test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@venuspcs/2kruc4-test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "13053504107",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "68346947255",
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "897343674",
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "8842903950",
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53222151",
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51240567",
+        "voter": "billkappa442"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51235131",
+        "voter": "glassheart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51232949",
+        "voter": "dragonice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51230296",
+        "voter": "steemq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51227561",
+        "voter": "battalar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51218466",
+        "voter": "weare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51215236",
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51141851",
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50907857",
+        "voter": "oxygen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50875769",
+        "voter": "cyan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50873654",
+        "voter": "palladium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50871059",
+        "voter": "motion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50865840",
+        "voter": "sting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50798322",
+        "voter": "breeze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50794039",
+        "voter": "autodesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50570250",
+        "voter": "ziggo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50532230",
+        "voter": "friends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50484452",
+        "voter": "connect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50479027",
+        "voter": "sunlight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "239553122",
+        "voter": "letstalkliberty"
+      }
+    ],
+    "author": "asch",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Would be n",
+    "body_length": 183,
+    "cashout_time": "2016-10-03T00:20:39",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-01T23:31:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"steemit\"],\"image\":[\"https:\\/\\/ipfs.pics\\/ipfs\\/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T00:02:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 92401268815,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.033 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "4bh3kx-test",
+    "post_id": 829308,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Change request for steemit: allow posts to be hidden by author",
+    "title": "Change request for steemit: allow posts to be hidden by author",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@asch/4bh3kx-test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7800265111",
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "9647209204",
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "2182262521",
+        "voter": "steemswede"
+      },
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "3857214813",
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "734052546",
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "113270416",
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "3309065147",
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "5534121085",
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "77156992",
+        "voter": "sergey44"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": "514947462",
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "91627251937",
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1181902434",
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "10384598371",
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "413323439",
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52910800",
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50639382",
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50377764",
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51278775",
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60293991",
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "849039554",
+        "voter": "jbaker585"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>",
+    "body_length": 887,
+    "cashout_time": "2016-10-15T00:25:18",
+    "category": "test",
+    "children": 18,
+    "created": "2016-09-13T20:16:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/count2.php?id=440360354082326413097\"],\"links\":[\"http:\\/\\/www.hitcounterhtmlcode.com\\/stats.php?id=440360354082326413097\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:16:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 138491181744,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.029 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "page-view-counter-test-post",
+    "post_id": 943429,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "Page View Counter [Test Post]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "363639358",
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "12972561232",
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "60593188",
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "49302305855",
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "56802928",
+        "voter": "martaspn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "75704784",
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "1496460341",
+        "voter": "robotev"
+      }
+    ],
+    "author": "jonathan-looman",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>",
+    "body_length": 216,
+    "cashout_time": "2016-09-30T19:02:24",
+    "category": "test",
+    "children": 2,
+    "created": "2016-08-30T18:56:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"steemit\",\"visions\",\"video\",\"explainer\"],\"image\":[\"https:\\/\\/dl.dropboxusercontent.com\\/u\\/279041\\/visions.tv\\/visions_steemit.png\"],\"links\":[\"https:\\/\\/visions.tv\\/Jonathan\\/nJvNwQVzL6p?autoplay=1\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T19:03:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 64328067686,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.027 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain",
+    "post_id": 804099,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "What is Steemit?",
+    "title": "What is Steemit?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 0,
+        "rshares": "180228664",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "4300",
+        "reputation": 0,
+        "rshares": "3063861503",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "4300",
+        "reputation": 0,
+        "rshares": "3063834206",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "4300",
+        "reputation": 0,
+        "rshares": "3063616032",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "4300",
+        "reputation": 0,
+        "rshares": "3063594286",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7942123026",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7031406262",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7028172275",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "7024578314",
+        "voter": "laonie10"
+      }
+    ],
+    "author": "laonie1",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-09-18T15:23:33",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-18T12:51:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T12:51:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 41461414568,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.020 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "this-is-a-test",
+    "post_id": 654873,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "This is a test",
+    "title": "This is a test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@laonie1/this-is-a-test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "34873624275",
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1588471883",
+        "voter": "laonie1"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590320654",
+        "voter": "laonie2"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590902281",
+        "voter": "laonie3"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590642190",
+        "voter": "laonie4"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590567721",
+        "voter": "laonie5"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590416046",
+        "voter": "laonie6"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590250709",
+        "voter": "laonie7"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1590083299",
+        "voter": "laonie8"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1589989115",
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "62044982",
+        "voter": "gregnie"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1589655616",
+        "voter": "laonie10"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": "1566068125",
+        "voter": "laonie11"
+      }
+    ],
+    "author": "gregnie",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "this is a ",
+    "body_length": 21,
+    "cashout_time": "2016-10-01T01:58:00",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-31T00:52:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T00:52:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 52403036896,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.019 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "test-again",
+    "post_id": 807480,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test again",
+    "title": "test again",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@gregnie/test-again"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "63736720",
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55929928",
+        "voter": "uziriel"
+      }
+    ],
+    "author": "zionuziriel",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>",
+    "body_length": 69,
+    "cashout_time": "2016-10-09T06:17:03",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-08T05:23:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T05:23:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 69600101439,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.015 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "kindly-upvote",
+    "post_id": 889524,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "KINDLY UPVOTE",
+    "title": "KINDLY UPVOTE",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@zionuziriel/kindly-upvote"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26742232944",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "-10000",
+        "reputation": 0,
+        "rshares": "-800104186",
+        "voter": "rkpl"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "114917686",
+        "voter": "sergey44"
+      }
+    ],
+    "author": "feruz",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<p>This is",
+    "body_length": 2322,
+    "cashout_time": "2016-09-27T11:26:12",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-27T11:13:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-27T11:13:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 26057046444,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.005 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "test-2016827t14139950z",
+    "post_id": 765498,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "Test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@feruz/test-2016827t14139950z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "24517139679",
+        "voter": "good-karma"
+      }
+    ],
+    "author": "feruz",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Testing iO",
+    "body_length": 67,
+    "cashout_time": "2016-09-25T22:09:39",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-26T10:09:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"spam\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-26T10:10:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 24517139679,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.005 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "test-post-2016826t13935375z",
+    "post_id": 753411,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test post",
+    "title": "Test post",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@feruz/test-post-2016826t13935375z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26728920407",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "58699961",
+        "voter": "digipzle969"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "51109965",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52944028",
+        "voter": "jbaker585"
+      }
+    ],
+    "author": "feruz",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "https://ww",
+    "body_length": 104,
+    "cashout_time": "2016-09-24T13:30:03",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-24T12:27:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"links\":[\"https:\\/\\/www.youtube.com\\/watch?v=BCXYw6N2nOA\",\"https:\\/\\/www.youtube.com\\/watch?v=k70b3MLpz_U\"],\"users\":[\"good-karma\"],\"tags\":[\"test\",\"esteem\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T12:27:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 26891674361,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.005 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "test-2016824t15279369z",
+    "post_id": 730369,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "Test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@feruz/test-2016824t15279369z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "26728969107",
+        "voter": "good-karma"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55067873",
+        "voter": "whispershaper"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "55052340",
+        "voter": "yggsius"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "53513538",
+        "voter": "silaev"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "50066904",
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52825802",
+        "voter": "lapina"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52794919",
+        "voter": "jannada"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52732658",
+        "voter": "kamila74"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52723574",
+        "voter": "svetabrigadir"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52694523",
+        "voter": "zenna"
+      }
+    ],
+    "author": "feruz",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Test post\n",
+    "body_length": 166,
+    "cashout_time": "2016-09-24T07:18:24",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-24T06:27:39",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T06:27:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 27206441238,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.005 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "test-2016824t92740421z",
+    "post_id": 727996,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "Test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@feruz/test-2016824t92740421z"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "19069014880",
+        "voter": "str11ngfello"
+      }
+    ],
+    "author": "str11ngfello",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "Pardon the",
+    "body_length": 106,
+    "cashout_time": "2016-10-03T12:07:33",
+    "category": "test",
+    "children": 0,
+    "created": "2016-09-03T00:07:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"category\":\"testing_category\",\"tags\":[\"steemy_testing1\",\"steemy_testing2\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-03T00:07:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 19069014880,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.004 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "transaction-signing-a-post-from-steemy-5",
+    "post_id": 839863,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Transaction signing a post from Steemy 5",
+    "title": "Transaction signing a post from Steemy 5",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@str11ngfello/transaction-signing-a-post-from-steemy-5"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "17580966372",
+        "voter": "luminousvisions"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": "52707981",
+        "voter": "stas44"
+      }
+    ],
+    "author": "libertyism",
+    "author_reputation": 0,
+    "beneficiaries": [],
+    "body": "<html>\n<p>",
+    "body_length": 113,
+    "cashout_time": "2016-09-24T05:35:54",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-24T05:35:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https:\\/\\/i.imgsafe.org\\/d32113cda0.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T05:35:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 17633674353,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.003 HBD",
+    "percent_steem_dollars": 10000,
+    "permlink": "6g1sn5-test",
+    "post_id": 727662,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "Test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@libertyism/6g1sn5-test"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/truncated.pat.json b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/truncated.pat.json
new file mode 100644
index 0000000000000000000000000000000000000000..e820bc18f9d3c1d46f8f0706b075ca2a316c84b2
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/truncated.pat.json
@@ -0,0 +1,1908 @@
+[
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 1523183364522,
+        "rshares": 835401856,
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118904717803,
+        "rshares": 221000835803,
+        "voter": "noaommerrr"
+      },
+      {
+        "percent": "10000",
+        "reputation": 199308931780,
+        "rshares": 60049910,
+        "voter": "akaninyene-etuk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 609780550802,
+        "rshares": 141944533,
+        "voter": "irit"
+      },
+      {
+        "percent": "10000",
+        "reputation": 514799489426,
+        "rshares": 361661182474,
+        "voter": "hedge-x"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6105332515536,
+        "rshares": 6648576257,
+        "voter": "primus"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1797275012018,
+        "rshares": 7400392900,
+        "voter": "dasha"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7078941123096,
+        "rshares": 12001771040,
+        "voter": "lemooljiang"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 9364510234,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5776723480371,
+        "rshares": 231680157638,
+        "voter": "somebody"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1127978824162,
+        "rshares": 1520602917,
+        "voter": "feelapi"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3740136030964,
+        "rshares": 411633883,
+        "voter": "future24"
+      },
+      {
+        "percent": "10000",
+        "reputation": 7436429161346,
+        "rshares": 3793330400,
+        "voter": "mione"
+      },
+      {
+        "percent": "10000",
+        "reputation": -138680661344,
+        "rshares": 60886073,
+        "voter": "tomeraddady"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1053198051249,
+        "rshares": 727760600,
+        "voter": "abc1621043211"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1509612108450,
+        "rshares": 1985606562,
+        "voter": "jsantana"
+      },
+      {
+        "percent": "10000",
+        "reputation": 361620504,
+        "rshares": 55763290,
+        "voter": "goriilla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 342165867,
+        "rshares": 55184850,
+        "voter": "olakla"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2576463,
+        "rshares": 54993135,
+        "voter": "cerne"
+      },
+      {
+        "percent": "10000",
+        "reputation": 21157638,
+        "rshares": 54916164,
+        "voter": "rexgrove"
+      },
+      {
+        "percent": "10000",
+        "reputation": 119198828550,
+        "rshares": 139924838,
+        "voter": "inwoxer"
+      },
+      {
+        "percent": "10000",
+        "reputation": 9113317076,
+        "rshares": 50066904,
+        "voter": "f1111111"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1010743139109,
+        "rshares": 393193776,
+        "voter": "fluffy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1620651,
+        "rshares": 52774361,
+        "voter": "alexportikul"
+      }
+    ],
+    "author": "somebody",
+    "author_reputation": 5776723480371,
+    "beneficiaries": [],
+    "body": "This post ",
+    "body_length": 176,
+    "cashout_time": "2016-08-31T04:49:00",
+    "category": "test",
+    "children": 7,
+    "created": "2016-08-24T04:49:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"https://steemimg.com/images/2016/08/24/dd8bd8753d16805.gif\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-24T04:49:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 860151460398,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.546 HBD",
+    "percent_hbd": 10000,
+    "permlink": "follow-me-please",
+    "post_id": 962058,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Follow me please.",
+    "title": "Follow me please.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@somebody/follow-me-please"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": -453869065378,
+        "rshares": 8763619284,
+        "voter": "somedude"
+      },
+      {
+        "percent": "0",
+        "reputation": 12494904871301,
+        "rshares": 5564190601,
+        "voter": "trogdor"
+      },
+      {
+        "percent": "10000",
+        "reputation": 678073276260,
+        "rshares": 145380534,
+        "voter": "raymonjohnstone"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 10315786664,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2601725582045,
+        "rshares": 15008944210,
+        "voter": "hellokitty"
+      },
+      {
+        "percent": "5000",
+        "reputation": 10771708337101,
+        "rshares": 497568302000,
+        "voter": "laonie"
+      },
+      {
+        "percent": "5000",
+        "reputation": 124802744033,
+        "rshares": 3778964442,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3778947431,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3778936100,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "5000",
+        "reputation": 18027204457681,
+        "rshares": 9118987048,
+        "voter": "myfirst"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3778614532,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3778602547,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3778594469,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3778571886,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3778554259,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3778533199,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "5000",
+        "reputation": 3016325652890,
+        "rshares": 18835607987,
+        "voter": "xiaohui"
+      },
+      {
+        "percent": "5000",
+        "reputation": 0,
+        "rshares": 3776590554,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 111114608,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "5000",
+        "reputation": 85132342011,
+        "rshares": 3760658629,
+        "voter": "laonie11"
+      }
+    ],
+    "author": "trogdor",
+    "author_reputation": 12494904871301,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-08-24T02:00:48",
+    "category": "test",
+    "children": 19,
+    "created": "2016-08-17T02:00:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T02:00:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 606977500984,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.418 HBD",
+    "percent_hbd": 10000,
+    "permlink": "this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army",
+    "post_id": 845453,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "this is a test to see if i have been targeted by a spam bot army",
+    "title": "this is a test to see if i have been targeted by a spam bot army",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@trogdor/this-is-a-test-to-see-if-i-have-been-targeted-by-a-spam-bot-army"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 22378434861462,
+        "rshares": 228145849379,
+        "voter": "stino-san"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 5007214192,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1019011681813,
+        "rshares": 6821297816,
+        "voter": "iloveporn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2438027091,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8295473589,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5785438356,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1160886081198,
+        "rshares": 5481884026,
+        "voter": "unicornfarts"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5785920904,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6091743832,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 431450051428,
+        "rshares": 13280342528,
+        "voter": "aaseb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1416246303584,
+        "rshares": 6322307995,
+        "voter": "michaeldodridge"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4292618600,
+        "rshares": 111797071,
+        "voter": "kukuy"
+      },
+      {
+        "percent": "10000",
+        "reputation": 511460049017,
+        "rshares": 1010597496,
+        "voter": "thedon"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 11316597740,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 283790428,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2170055933924,
+        "rshares": 1455898140,
+        "voter": "jackgallenhall"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1684063,
+        "rshares": 52812228,
+        "voter": "reddtie"
+      }
+    ],
+    "author": "stino-san",
+    "author_reputation": 22378434861462,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-08-22T20:05:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-15T20:05:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-15T20:05:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 307686992811,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.208 HBD",
+    "percent_hbd": 10000,
+    "permlink": "test",
+    "post_id": 822640,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@stino-san/test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 22378434861462,
+        "rshares": 225913748267,
+        "voter": "stino-san"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2758500001611,
+        "rshares": 4936121677,
+        "voter": "fuck.off"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1557874437556,
+        "rshares": 2248064175,
+        "voter": "the.bot"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2445708956667,
+        "rshares": 8179524007,
+        "voter": "johnbradshaw"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6813289592775,
+        "rshares": 5469062752,
+        "voter": "arcaneinfo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1691376287481,
+        "rshares": 5704244958,
+        "voter": "the.whale"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1035952800698,
+        "rshares": 5583423314,
+        "voter": "vote"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2237331858240,
+        "rshares": 6007072255,
+        "voter": "kissmybutt"
+      },
+      {
+        "percent": "10000",
+        "reputation": 137150233782,
+        "rshares": 67820011,
+        "voter": "nicoleta"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 10924517278,
+        "voter": "thebotkiller"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 267235062,
+        "voter": "jimmytwoshoes"
+      },
+      {
+        "percent": "10000",
+        "reputation": 142829147182,
+        "rshares": 425334702,
+        "voter": "rucoin"
+      }
+    ],
+    "author": "stino-san",
+    "author_reputation": 22378434861462,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-09-03T04:46:51",
+    "category": "test",
+    "children": 4,
+    "created": "2016-08-27T04:46:51",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-27T04:46:51",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 275726168458,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.151 HBD",
+    "percent_hbd": 10000,
+    "permlink": "46vbbv-test",
+    "post_id": 1008749,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@stino-san/46vbbv-test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 46813789492,
+        "rshares": 24991140368,
+        "voter": "tcfxyz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3366379465325,
+        "rshares": 6923304252,
+        "voter": "futurefood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5883461278385,
+        "rshares": 79040067029,
+        "voter": "rea"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6264990277085,
+        "rshares": 23010056511,
+        "voter": "pinkisland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4063076365725,
+        "rshares": 1854087037,
+        "voter": "bullionstackers"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1161816442579,
+        "rshares": 121858742924,
+        "voter": "twinner"
+      }
+    ],
+    "author": "ace108",
+    "author_reputation": 7172977970558,
+    "beneficiaries": [],
+    "body": "<html>\n<p>",
+    "body_length": 240,
+    "cashout_time": "2016-09-12T02:59:36",
+    "category": "test",
+    "children": 3,
+    "created": "2016-09-05T02:59:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"testbyace10\"],\"image\":[\"https://www.steemimg.com/images/2016/09/05/Followbullionstackers320e51da.gif\"],\"links\":[\"https://www.steemimg.com/image/7tV3J\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-05T03:18:39",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 257677398121,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.098 HBD",
+    "percent_hbd": 10000,
+    "permlink": "test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want",
+    "post_id": 1129483,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test post for follow gif - nothing in here interesting but by all means vote if you want",
+    "title": "Test post for follow gif - nothing in here interesting but by all means vote if you want",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@ace108/test-post-for-follow-gif-nothing-in-here-interested-but-by-all-means-vote-if-you-want"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "100",
+        "reputation": 4874033031398,
+        "rshares": 7861629418,
+        "voter": "woo7739"
+      },
+      {
+        "percent": "10000",
+        "reputation": 64573188744746,
+        "rshares": 206209970416,
+        "voter": "dragonslayer109"
+      },
+      {
+        "percent": "10000",
+        "reputation": 898796866493,
+        "rshares": 3649598360,
+        "voter": "rawlzsec"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4276659410889,
+        "rshares": 3509996730,
+        "voter": "michaellamden68"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 6300267620,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 49283901870,
+        "rshares": 1305753906,
+        "voter": "metaflute"
+      },
+      {
+        "percent": "10000",
+        "reputation": 524273507,
+        "rshares": 840098241,
+        "voter": "usb"
+      },
+      {
+        "percent": "10000",
+        "reputation": 31757322861,
+        "rshares": 192321224,
+        "voter": "mrlogic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 28411186,
+        "rshares": 54457374,
+        "voter": "ppan08162016"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1520535240522,
+        "rshares": 1043765764,
+        "voter": "anasz"
+      }
+    ],
+    "author": "royaltiffany",
+    "author_reputation": 10900524985586,
+    "beneficiaries": [],
+    "body": "Please do ",
+    "body_length": 250,
+    "cashout_time": "2016-09-19T07:38:09",
+    "category": "test",
+    "children": 6,
+    "created": "2016-09-12T07:38:09",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://designwebkit.com/wp-content/uploads/2013/09/how-test-logo-design-thumb.jpg\"],\"links\":[\"http://designwebkit.com/web-and-trends/how-professional-tests-finalizes-logo-design/\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-12T07:38:09",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 230967859053,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.055 HBD",
+    "percent_hbd": 10000,
+    "permlink": "test",
+    "post_id": 1217392,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "Test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@royaltiffany/test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 2802091583976,
+        "rshares": 10220864268,
+        "voter": "proctologic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 16131170784,
+        "rshares": 258954801,
+        "voter": "digi3d"
+      },
+      {
+        "percent": "10000",
+        "reputation": 13090894039053,
+        "rshares": 65562670577,
+        "voter": "discombobulated"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2021353867281,
+        "rshares": 6668122973,
+        "voter": "kurtbeil"
+      },
+      {
+        "percent": "10000",
+        "reputation": 34338510332,
+        "rshares": 67570327,
+        "voter": "mndstruct"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5176671060650,
+        "rshares": 1245304003,
+        "voter": "rubenalexander"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 111116739,
+        "voter": "runridefly"
+      }
+    ],
+    "author": "rubenalexander",
+    "author_reputation": 5176671060650,
+    "beneficiaries": [],
+    "body": "<center><i",
+    "body_length": 490,
+    "cashout_time": "2016-08-24T14:05:27",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-17T14:05:27",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"crop\",\"image\"],\"image\":[\"http://i.imgur.com/GK1SyaR.png\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-17T14:20:57",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 84134603688,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.051 HBD",
+    "percent_hbd": 10000,
+    "permlink": "800px-box-crop-test-test-post-please-ignore",
+    "post_id": 853008,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "800px box, crop test [Test Post Please Ignore]",
+    "title": "800px box, crop test [Test Post Please Ignore]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@rubenalexander/800px-box-crop-test-test-post-please-ignore"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 17405459234693,
+        "rshares": 69552358699,
+        "voter": "venuspcs"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1510234773828,
+        "rshares": 2058287307,
+        "voter": "bitland"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2516108074649,
+        "rshares": 495165648,
+        "voter": "runridefly"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50931848,
+        "voter": "analyzethis"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1552458038,
+        "rshares": 53222151,
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 22066178,
+        "rshares": 53146733,
+        "voter": "vsmith08162016"
+      }
+    ],
+    "author": "venuspcs",
+    "author_reputation": 17405459234693,
+    "beneficiaries": [],
+    "body": "Testing to",
+    "body_length": 43,
+    "cashout_time": "2016-09-01T18:14:33",
+    "category": "test",
+    "children": 1,
+    "created": "2016-08-25T18:14:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T18:14:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 72263112386,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.037 HBD",
+    "percent_hbd": 10000,
+    "permlink": "2kruc4-test",
+    "post_id": 985089,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Test",
+    "title": "Test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@venuspcs/2kruc4-test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 13053504107,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 161089556767,
+        "rshares": 68346947255,
+        "voter": "asch"
+      },
+      {
+        "percent": "10000",
+        "reputation": 116655886020,
+        "rshares": 897343674,
+        "voter": "happyphoenix"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2288762261504,
+        "rshares": 8842903950,
+        "voter": "goose"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1552458038,
+        "rshares": 53222151,
+        "voter": "rb3coins"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51240567,
+        "voter": "billkappa442"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51235131,
+        "voter": "glassheart"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51232949,
+        "voter": "dragonice"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51230296,
+        "voter": "steemq"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51227561,
+        "voter": "battalar"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51218466,
+        "voter": "weare"
+      },
+      {
+        "percent": "10000",
+        "reputation": 46150823,
+        "rshares": 51215236,
+        "voter": "deli"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51141851,
+        "voter": "slow"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50907857,
+        "voter": "oxygen"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50875769,
+        "voter": "cyan"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50873654,
+        "voter": "palladium"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50871059,
+        "voter": "motion"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50865840,
+        "voter": "sting"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50798322,
+        "voter": "breeze"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50794039,
+        "voter": "autodesk"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50570250,
+        "voter": "ziggo"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50532230,
+        "voter": "friends"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50484452,
+        "voter": "connect"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50479027,
+        "voter": "sunlight"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2536730663,
+        "rshares": 239553122,
+        "voter": "letstalkliberty"
+      }
+    ],
+    "author": "asch",
+    "author_reputation": 161089556767,
+    "beneficiaries": [],
+    "body": "Would be n",
+    "body_length": 183,
+    "cashout_time": "2016-09-08T23:31:36",
+    "category": "test",
+    "children": 2,
+    "created": "2016-09-01T23:31:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"steemit\"],\"image\":[\"https://ipfs.pics/ipfs/QmVP5ebRFZ38f7h3k8Vq3cbRcsGBDyZBCqTLtB3GjYFobi\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-02T00:02:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 92401268815,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.035 HBD",
+    "percent_hbd": 10000,
+    "permlink": "4bh3kx-test",
+    "post_id": 1091922,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Change request for steemit: allow posts to be hidden by author",
+    "title": "Change request for steemit: allow posts to be hidden by author",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@asch/4bh3kx-test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 15854806148148,
+        "rshares": 7800265111,
+        "voter": "richman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 503318537891,
+        "rshares": 9647209204,
+        "voter": "jerome-colley"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5451039980643,
+        "rshares": 2182262521,
+        "voter": "steemswede"
+      },
+      {
+        "percent": "0",
+        "reputation": 18799092030582,
+        "rshares": 3857214813,
+        "voter": "derekareith"
+      },
+      {
+        "percent": "10000",
+        "reputation": 36017089082,
+        "rshares": 734052546,
+        "voter": "rxhector"
+      },
+      {
+        "percent": "10000",
+        "reputation": 322912672117,
+        "rshares": 113270416,
+        "voter": "cynetyc"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2753142336385,
+        "rshares": 3309065147,
+        "voter": "jbouchard12"
+      },
+      {
+        "percent": "10000",
+        "reputation": 4603449402273,
+        "rshares": 5534121085,
+        "voter": "bitcoiner"
+      },
+      {
+        "percent": "10000",
+        "reputation": 686738916191,
+        "rshares": 77156992,
+        "voter": "sergey44"
+      },
+      {
+        "percent": "1000",
+        "reputation": 3278418228934,
+        "rshares": 514947462,
+        "voter": "karenb54"
+      },
+      {
+        "percent": "10000",
+        "reputation": 11683040603469,
+        "rshares": 91627251937,
+        "voter": "anotherjoe"
+      },
+      {
+        "percent": "10000",
+        "reputation": 868924825603,
+        "rshares": 1181902434,
+        "voter": "the-bitcoin-dood"
+      },
+      {
+        "percent": "10000",
+        "reputation": 5939157149097,
+        "rshares": 10384598371,
+        "voter": "elissahawke"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1916013022364,
+        "rshares": 413323439,
+        "voter": "wuyueling"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 52910800,
+        "voter": "roadhog"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50639382,
+        "voter": "doggnostic"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50377764,
+        "voter": "jenny-talls"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51278775,
+        "voter": "post-successful"
+      },
+      {
+        "percent": "10000",
+        "reputation": 62995887468,
+        "rshares": 60293991,
+        "voter": "freebornangel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 768451347973,
+        "rshares": 849039554,
+        "voter": "jbaker585"
+      }
+    ],
+    "author": "derekareith",
+    "author_reputation": 18799092030582,
+    "beneficiaries": [],
+    "body": "<html>\n<p>",
+    "body_length": 887,
+    "cashout_time": "2016-09-20T20:16:00",
+    "category": "test",
+    "children": 18,
+    "created": "2016-09-13T20:16:00",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"],\"image\":[\"http://www.hitcounterhtmlcode.com/count2.php?id=440360354082326413097\"],\"links\":[\"http://www.hitcounterhtmlcode.com/stats.php?id=440360354082326413097\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-13T20:16:00",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 138491181744,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.029 HBD",
+    "percent_hbd": 10000,
+    "permlink": "page-view-counter-test-post",
+    "post_id": 1235812,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Page View Counter [Test Post]",
+    "title": "Page View Counter [Test Post]",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@derekareith/page-view-counter-test-post"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 191217797933,
+        "rshares": 63736720,
+        "voter": "zionuziriel"
+      },
+      {
+        "percent": "10000",
+        "reputation": 250066271138,
+        "rshares": 55929928,
+        "voter": "uziriel"
+      }
+    ],
+    "author": "zionuziriel",
+    "author_reputation": 191217797933,
+    "beneficiaries": [],
+    "body": "<html>\n<p>",
+    "body_length": 69,
+    "cashout_time": "2016-09-15T05:23:21",
+    "category": "test",
+    "children": 1,
+    "created": "2016-09-08T05:23:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"upvote\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-09-08T05:23:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 69600101439,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.028 HBD",
+    "percent_hbd": 10000,
+    "permlink": "kindly-upvote",
+    "post_id": 1168560,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "KINDLY UPVOTE",
+    "title": "KINDLY UPVOTE",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@zionuziriel/kindly-upvote"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 98586802505,
+        "rshares": 363639358,
+        "voter": "jonathan-looman"
+      },
+      {
+        "percent": "10000",
+        "reputation": 3033861094190,
+        "rshares": 12972561232,
+        "voter": "nippel66"
+      },
+      {
+        "percent": "10000",
+        "reputation": 6899515531,
+        "rshares": 60593188,
+        "voter": "summerrain"
+      },
+      {
+        "percent": "10000",
+        "reputation": 988942038058,
+        "rshares": 49302305855,
+        "voter": "gomeravibz"
+      },
+      {
+        "percent": "10000",
+        "reputation": 205727771964,
+        "rshares": 56802928,
+        "voter": "martaspn"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1896009750059,
+        "rshares": 75704784,
+        "voter": "whatsup"
+      },
+      {
+        "percent": "10000",
+        "reputation": 414609406210,
+        "rshares": 1496460341,
+        "voter": "robotev"
+      }
+    ],
+    "author": "jonathan-looman",
+    "author_reputation": 98586802505,
+    "beneficiaries": [],
+    "body": "<html>\n<p>",
+    "body_length": 216,
+    "cashout_time": "2016-09-06T18:56:54",
+    "category": "test",
+    "children": 2,
+    "created": "2016-08-30T18:56:54",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"steemit\",\"visions\",\"video\",\"explainer\"],\"image\":[\"https://dl.dropboxusercontent.com/u/279041/visions.tv/visions_steemit.png\"],\"links\":[\"https://visions.tv/Jonathan/nJvNwQVzL6p?autoplay=1\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-30T19:03:27",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 64328067686,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.027 HBD",
+    "percent_hbd": 10000,
+    "permlink": "hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain",
+    "post_id": 1059995,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "What is Steemit?",
+    "title": "What is Steemit?",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@jonathan-looman/hi-steemers-i-am-jonathan-looman-co-founder-of-visions-tv-and-we-want-to-get-video-playlist-curation-onto-the-blockchain"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 98327068,
+        "voter": "lee2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 24179554928,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 12397217216,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119326360,
+        "voter": "stevenh512"
+      }
+    ],
+    "author": "lee3",
+    "author_reputation": 1682985060,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-09-01T11:40:18",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-25T11:40:18",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T11:40:18",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 36794425572,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.021 HBD",
+    "percent_hbd": 10000,
+    "permlink": "test",
+    "post_id": 979514,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@lee3/test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "0",
+        "reputation": 124802744033,
+        "rshares": 180228664,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "4300",
+        "reputation": 0,
+        "rshares": 3063861503,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "4300",
+        "reputation": 0,
+        "rshares": 3063834206,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "4300",
+        "reputation": 0,
+        "rshares": 3063616032,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "4300",
+        "reputation": 0,
+        "rshares": 3063594286,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7942123026,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7031406262,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7028172275,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 7024578314,
+        "voter": "laonie10"
+      }
+    ],
+    "author": "laonie1",
+    "author_reputation": 124802744033,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-08-25T12:51:33",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-18T12:51:33",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-18T12:51:33",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 41461414568,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.020 HBD",
+    "percent_hbd": 10000,
+    "permlink": "this-is-a-test",
+    "post_id": 869974,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "This is a test",
+    "title": "This is a test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@laonie1/this-is-a-test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 4213833370161,
+        "rshares": 34873624275,
+        "voter": "drinkzya"
+      },
+      {
+        "percent": "500",
+        "reputation": 124802744033,
+        "rshares": 1588471883,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590320654,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590902281,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590642190,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590567721,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590416046,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590250709,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1590083299,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1589989115,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118144531,
+        "rshares": 62044982,
+        "voter": "gregnie"
+      },
+      {
+        "percent": "500",
+        "reputation": 0,
+        "rshares": 1589655616,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "500",
+        "reputation": 85132342011,
+        "rshares": 1566068125,
+        "voter": "laonie11"
+      }
+    ],
+    "author": "gregnie",
+    "author_reputation": 1118144531,
+    "beneficiaries": [],
+    "body": "this is a ",
+    "body_length": 21,
+    "cashout_time": "2016-09-07T00:52:21",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-31T00:52:21",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-31T00:52:21",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 52403036896,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.019 HBD",
+    "percent_hbd": 10000,
+    "permlink": "test-again",
+    "post_id": 1064399,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test again",
+    "title": "test again",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@gregnie/test-again"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 115556038,
+        "voter": "lee2"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1682985060,
+        "rshares": 20419654369,
+        "voter": "lee3"
+      },
+      {
+        "percent": "10000",
+        "reputation": 335617567,
+        "rshares": 8962980781,
+        "voter": "lee4"
+      },
+      {
+        "percent": "0",
+        "reputation": 1523183364522,
+        "rshares": 425231017,
+        "voter": "lee5"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 51636819,
+        "voter": "mbizryu0"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 50619253,
+        "voter": "archij"
+      }
+    ],
+    "author": "lee3",
+    "author_reputation": 1682985060,
+    "beneficiaries": [],
+    "body": "final",
+    "body_length": 5,
+    "cashout_time": "2016-09-02T02:58:06",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-26T02:58:06",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-26T02:58:06",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 30025678277,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.016 HBD",
+    "percent_hbd": 10000,
+    "permlink": "test4",
+    "post_id": 992250,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test4",
+    "title": "test4",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@lee3/test4"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "1000",
+        "reputation": 124802744033,
+        "rshares": 2642249431,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 2642569426,
+        "voter": "laonie2"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 2642785370,
+        "voter": "laonie3"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 2642707592,
+        "voter": "laonie4"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 2642681191,
+        "voter": "laonie5"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 2642644829,
+        "voter": "laonie6"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 2642542051,
+        "voter": "laonie7"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 2642523219,
+        "voter": "laonie8"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 2642459158,
+        "voter": "laonie9"
+      },
+      {
+        "percent": "1000",
+        "reputation": 0,
+        "rshares": 2641966182,
+        "voter": "laonie10"
+      },
+      {
+        "percent": "1000",
+        "reputation": 85132342011,
+        "rshares": 2603331812,
+        "voter": "laonie11"
+      }
+    ],
+    "author": "laonie1",
+    "author_reputation": 124802744033,
+    "beneficiaries": [],
+    "body": "<h3> Votin",
+    "body_length": 42861,
+    "cashout_time": "2016-08-30T20:27:36",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-23T20:27:36",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"],\"users\":[\"spiper20\",\"juliamateo\",\"mandibil\",\"cristi\",\"steemitcity\",\"gomeravibz\",\"kimal73\",\"siavach\",\"fluffy\",\"chrislegaspi\",\"funny\",\"quantumanomaly\",\"bendjmiller222\",\"silvershadow111\",\"jamielefay\",\"metalbrushes\",\"daycrypter\",\"lpfaust\",\"eveningstar92\",\"beowulfoflegend\",\"mada\",\"birdie\",\"thenakedgod\",\"markrmorrisjr\",\"futurefood\",\"telos\",\"papa-pepper\",\"nubchai\",\"kain-jc\",\"carlidos\",\"litrbooh\",\"jaytaylor\",\"lillistration\",\"lariat\",\"runaway-psyche\",\"shredlord\",\"ukblogger\",\"tony.jennings\",\"hatetheradio\",\"cehuneke\",\"victoriart\",\"minfon\",\"robotsparkles\",\"zivile\",\"menta\",\"yangyang\",\"steemitjorya\",\"chinadaily\",\"wuyueling\",\"io-io-io\",\"steevc\",\"bitcoinparadise\",\"bbrewer\",\"omfedor\",\"ivicaa\",\"proglobyte\",\"jl777\",\"venuspcs\",\"giffordde2000\",\"bmann\",\"superfreek\",\"cjclaro\",\"grolelo\",\"timcliff\",\"mweich\",\"theyam\",\"bitcoiner\",\"mikehere\",\"mynameisbrian\",\"darknet\",\"warrensteem\",\"chrisaiki\",\"lyndieontheroad\",\"jvdb\",\"dumar022\",\"rainchen\",\"lat-nayar\",\"contentjunkie\",\"crok\",\"shortcut\",\"masonmiler\",\"myfirst\",\"allmonitors\",\"mbroek1983\",\"carrinm\",\"romaan-namoor\",\"phoenixmaid\",\"trisnawati\",\"violino\",\"panther\",\"slowwalker\",\"lee5\",\"uceph\",\"matthew.raymer\",\"streetstyle\",\"sinkova\",\"crypt0mine\",\"mione\",\"patrickdawson\",\"themanualbot\",\"vlad\",\"steemafon\",\"cryptos\",\"disofdis\",\"smailer\",\"tjpezlo\",\"minion\",\"elyaque\",\"zahnspange\",\"bryan.larkin\",\"cnfund\",\"oflyhigh\",\"brianphobos\",\"andressilvera\",\"profitgenerator\",\"itsnicoletv\",\"allasyummyfood\",\"martaxrodriguez\",\"sharker\",\"sabot\",\"the-future\",\"twinner\",\"steampunkpowered\",\"anotherjoe\",\"sisterholics\",\"burnin\",\"dennygalindo\",\"steemitguide\",\"quickfingersluc\",\"imag1ne\",\"nkdk\",\"jasonstaggers\",\"sandra\",\"thebatchman\",\"reneenouveau\",\"deviedev\",\"letc\",\"lordvader\",\"lescraig\",\"behfar\",\"anxietymaven\",\"pixielolz\",\"anca3drandom\",\"steemingnow\",\"stealthstrike\",\"zaebars\",\"mranderson\",\"sarahjordan\",\"corinnestokes\",\"kendewitt\",\"daut44\",\"inertia\",\"marrywiger\"],\"links\":[\"https://steemit.com/life/@spiper20/my-first-day-of-graduate-school\",\"https://steemit.com/trending/life\",\"https://steemit.com/introduceyourself/@juliamateo/julia-mateo-14-year-old-spanish-girl\",\"https://steemit.com/trending/introduceyourself\",\"https://steemit.com/moviereview/@mandibil/angela-s-ashes-parker-1999-movie-review\",\"https://steemit.com/trending/moviereview\",\"https://steemit.com/psychology/@cristi/solitary-confinement-and-the-power-of-introversion\",\"https://steemit.com/trending/psychology\",\"https://steemit.com/life/@steemitcity/countries-that-welcome-all-nationalities\",\"https://steemit.com/writing/@gomeravibz/ghosts-are-as-real-as-you-and-me-a-true-haunting-from-my-past\",\"https://steemit.com/trending/writing\",\"https://steemit.com/art/@kimal73/nice-smiles-of-woman-paintings\",\"https://steemit.com/trending/art\",\"https://steemit.com/photographer/@siavach/my-first-time-as-official-sport-photographer-in-international-tournament\",\"https://steemit.com/trending/photographer\",\"https://steemit.com/scientists/@fluffy/the-mad-scientists-part-2\",\"https://steemit.com/trending/scientists\",\"https://steemit.com/art/@chrislegaspi/daily-life-drawing-exercises-charcoal-pencil-on-newsprint\",\"https://steemit.com/steemit/@funny/22jea1-18-tips-for-users-of-steemit-one-day-i-will-be-a-whale\",\"https://steemit.com/trending/steemit\",\"https://steemit.com/life/@funny/5-reasons-you-should-try-internet-dating\",\"https://steemit.com/diy/@quantumanomaly/a-mad-scientist-s-automated-factory-how-i-built-my-first-3d-printer\",\"https://steemit.com/trending/diy\",\"https://steemit.com/forgiveness/@bendjmiller222/revenge-and-radical-forgiveness\",\"https://steemit.com/trending/forgiveness\",\"https://steemit.com/photography/@silvershadow111/some-of-the-bad-habits-that-can-ruin-your-photography\",\"https://steemit.com/trending/photography\",\"https://steemit.com/writing/@jamielefay/ahe-ey-a-surprising-reception-an-original-novel-part-2\",\"https://steemit.com/art/@metalbrushes/joker-casino-theme-half-sleeve-tattoo\",\"https://steemit.com/photography/@daycrypter/football-victory-in-london\",\"https://steemit.com/photography/@daycrypter/daycrypter-s-steem-for-the-day-antique-dental-crown-photo-macro\",\"https://steemit.com/tax/@lpfaust/us-tax-considerations-blogging-on-steemit-not-for-profit-activities-hobbies\",\"https://steemit.com/trending/tax\",\"https://steemit.com/art/@eveningstar92/duality-3x2-acrylic-painting-in-progress-day-3\",\"https://steemit.com/writing/@beowulfoflegend/silvanus-and-empire-an-original-novel-chapter-one\",\"https://steemit.com/life/@mada/how-i-used-art-to-keep-it-together-when-a-wicked-brain-condition-unmade-all-of-my-life-plans\",\"https://steemit.com/steemitphotochallenge/@birdie/steemitphotochallenge-entry-thoughts-of-mom\",\"https://steemit.com/trending/steemitphotochallenge\",\"https://steemit.com/story/@thenakedgod/observations-from-a-criminal-trial\",\"https://steemit.com/trending/story\",\"https://steemit.com/story/@markrmorrisjr/original-short-story-the-virtual-psychopath\",\"https://steemit.com/steemit/@futurefood/future-food-the-herring-the-seagull-and-the-whale-prt1\",\"https://steemit.com/life/@spiper20/illustrations-that-will-make-you-smile-i-guarantee-it\",\"https://steemit.com/stranger-things/@telos/stranger-things-theory-spoilers\",\"https://steemit.com/trending/stranger-things\",\"https://steemit.com/art/@papa-pepper/how-to-make-your-own-hardfork-wind-chime\",\"https://steemit.com/life/@nubchai/what-to-do-when-life-serves-you-shit-for-breakfast\",\"https://steemit.com/poetry/@kain-jc/poetical-journey-through-the-astrological-signs\",\"https://steemit.com/trending/poetry\",\"https://steemit.com/psychology/@carlidos/overview-of-4-forms-of-synesthesia\",\"https://steemit.com/photography/@litrbooh/summer-is-coming-to-an-end-leto-zakanchivaetsya\",\"https://steemit.com/life/@jaytaylor/the-earth-is-our-beautiful-playground\",\"https://steemit.com/art/@lillistration/character-art-a-study-in-style\",\"https://steemit.com/cannabis/@lariat/who-is-farming-who\",\"https://steemit.com/trending/cannabis\",\"https://steemit.com/food/@runaway-psyche/cotton-candy-flavored-grapes-my-crazy-exotic-fruit-salad\",\"https://steemit.com/trending/food\",\"https://steemit.com/steemit/@shredlord/the-poor-poor-minnows\",\"https://steemit.com/science/@ukblogger/exciting-science-windows-made-from-wood\",\"https://steemit.com/trending/science\",\"https://steemit.com/law/@tony.jennings/legal-self-defense-introduction\",\"https://steemit.com/trending/law\",\"https://steemit.com/music/@hatetheradio/original-beatbox-guitar-hip-hop-beat\",\"https://steemit.com/trending/music\",\"https://steemit.com/recipes/@cehuneke/newbie-gardener-wannabe-italian-cook-makes-fresh-tomato-sauce-and-lives-to-tell-about-it\",\"https://steemit.com/trending/recipes\",\"https://steemit.com/travel/@victoriart/my-boyfriend-is-a-bee-keeper-and-one-of-his-bees-bit-me-a-jealousy-or-an-accident\",\"https://steemit.com/trending/travel\",\"https://steemit.com/photography/@minfon/sakura-cherry-blossoms-travel-in-shanghai\",\"https://steemit.com/life/@robotsparkles/stories-of-hope-hemingway-s-lost-suitcase-how-losing-everything-can-actually-be-good\",\"https://steemit.com/food/@zivile/7-healthy-foods-that-can-harm-try-not-to-overdose-they-are-like-drugs\",\"https://steemit.com/news/@menta/world-s-largest-aircraft-completed-it-s-maiden-voyage\",\"https://steemit.com/trending/news\",\"https://steemit.com/steemit/@yangyang/butterflies-drawing-who-can-understand-my-feeling\",\"https://steemit.com/cn/@steemitjorya/2xusxd\",\"https://steemit.com/trending/cn\",\"https://steemit.com/cn/@chinadaily/steem-power-top-active-author-list-under-the-cn-tag\",\"https://steemit.com/cn/@wuyueling/rsvjj-cn\",\"https://steemit.com/spirituality/@io-io-io/try-the-sound-of-the-gong-it-will-blow-your-mind-in-a-good-way\",\"https://steemit.com/trending/spirituality\",\"https://steemit.com/steem/@steevc/shopping-with-steem\",\"https://steemit.com/trending/steem\",\"https://steemit.com/raspberrypi/@bitcoinparadise/learning-coding-with-the-raspberry-pi-3-even-with-no-coding-experience-you-can-learn-on-your-own\",\"https://steemit.com/trending/raspberrypi\",\"https://steemit.com/poetry/@bbrewer/kicking-myself-in-the-ass-for-opportunities-passed\",\"https://steemit.com/psychology/@omfedor/the-psychology-of-the-rich-and-the-poor-different-ways-of-thinking-speaking-and-behaving\",\"https://steemit.com/art/@ivicaa/monuments-of-the-former-yugoslavia-bizarre-and-fascinating-relicts-from-the-tito-era\",\"https://steemit.com/steemit/@proglobyte/posting-on-steemit-have-no-fear-of-thieves-it-s-already-gone\",\"https://steemit.com/iguana/@jl777/iguana-status-bug-fixing\",\"https://steemit.com/trending/iguana\",\"https://steemit.com/steemit/@venuspcs/two-milestones-will-be-reached-for-me-in-the-next-24-hours-read-all-about-it\",\"https://steemit.com/introduceyourself/@giffordde2000/hi-steemit-i-joined-over-a-month-ago-and-thought-it-was-time-for-my-verification\",\"https://steemit.com/steemit-feature/@bmann/steemit-feature-suggested-changes-to-toprightmenu\",\"https://steemit.com/trending/steemit-feature\",\"https://steemit.com/introduceyourself/@superfreek/learning-to-write-a-simple-program-hello-world\",\"https://steemit.com/steemit/@cjclaro/steemitiquette-7-accountability-own-your-mistakes-and-stop-blaming-others\",\"https://steemit.com/steemit/@grolelo/anecdotal-evidence-that-what-you-post-matters-more-than-when-you-post\",\"https://steemit.com/mining/@timcliff/supercomputing-gxt-1080-sc-mining-exploit-why-this-is-a-white-hat-mining-hack-and-a-suggested-update-to-catch-a-black-hat-hacker\",\"https://steemit.com/trending/mining\",\"https://steemit.com/photography/@mweich/wait-is-that-a-blue-bee-steemit-colours\",\"https://steemit.com/photography/@theyam/to-much-coffee\",\"https://steemit.com/steem/@bitcoiner/notice-supercomputing-may-have-taken-over-the-witness-queue-again\",\"https://steemit.com/steemit/@mikehere/steemwho-com-is-now-live-this-is-your-who-s-who-guide-if-you-want-to-be-included-then-see-instructions-below\",\"https://steemit.com/steemit/@mynameisbrian/is-the-dollarvigilante-a-scammer-answer-i-don-t-really-care-and-neither-should-you\",\"https://steemit.com/steemit/@darknet/steemtopia-donations\",\"https://steemit.com/solarsystem/@warrensteem/sweden-has-the-largest-scale-model-of-the-solar-system-in-the-world-stretching-950km-across-the-country\",\"https://steemit.com/trending/solarsystem\",\"https://steemit.com/introduceyourself/@chrisaiki/shiatsu-practitioner-teacher-and-learner-on-steemit\",\"https://steemit.com/photography/@lyndieontheroad/meanwhile-at-sword-practice\",\"https://steemit.com/steemit/@jvdb/yeh-yeh-i-know-there-are-whales-and-they-do-not-breed-so\",\"https://steemit.com/steemit/@dumar022/be-patient-and-believe-in-steem-long-term-is-not-a-month-or-two\",\"https://steemit.com/jokes/@rainchen/story-about-how-chicken-has-a-lot-of-names\",\"https://steemit.com/trending/jokes\",\"https://steemit.com/photography/@lat-nayar/beach-scenes-malaysia-port-dickson-beach\",\"https://steemit.com/steemit/@contentjunkie/how-to-get-started-making-a-python-based-steemit-bot-on-centos-7-using-piston\",\"https://steemit.com/steemit/@crok/let-me-explain-why-you-cannot-get-rich-in-steemland-and-why-steemit-is-not-a-get-rich-quick-scheme\",\"https://steemit.com/photography/@shortcut/split-tone-photos-inspired-by-thecryptofiend\",\"https://steemit.com/writing/@masonmiler/lost-in-time-an-original-poem-vol-1\",\"https://steemit.com/food/@steemitjorya/minfon-cn-food\",\"https://steemit.com/travel/@myfirst/my-photography-countryside-travelling\",\"https://steemit.com/talking/@allmonitors/do-you-speak-while-alone-there-are-couple-of-good-reasons-to-keep-doing-it\",\"https://steemit.com/trending/talking\",\"https://steemit.com/photography/@mbroek1983/nice-butterfly-en-lovely-bokeh\",\"https://steemit.com/photography/@carrinm/seeking-out-australian-native-orchids-1\",\"https://steemit.com/art/@romaan-namoor/with-hands-and-feet-sketchbook-of-a-storyteller\",\"https://steemit.com/tutorial/@phoenixmaid/how-to-design-a-crochet-blanket\",\"https://steemit.com/trending/tutorial\",\"https://steemit.com/photography/@trisnawati/hr2vj-hunting-today-with-phone-camera-9-photos-include\",\"https://steemit.com/photography/@violino/5k9rb5-anna\",\"https://steemit.com/life/@panther/as-promised-earlier-that-will-share-life-in-rural-areas-the-report-on-the-collection-of-hazelnut\",\"https://steemit.com/art/@slowwalker/figure-uncle\",\"https://steemit.com/kr-steempress/@lee5/seoul-grand-park-in-south-korea\",\"https://steemit.com/trending/kr-steempress\",\"https://steemit.com/skyrim/@uceph/ingoknin-of-the-willowdale-s-chapter-6-kidnapped\",\"https://steemit.com/trending/skyrim\",\"https://steemit.com/color/@matthew.raymer/some-laws-of-natural-philosophy-and-sir-isaac-newton-1687-part-2\",\"https://steemit.com/trending/color\",\"https://steemit.com/steemit/@streetstyle/whale-redistribution-of-wealth-looking-for-whale-love-by-the-numbers\",\"https://steemit.com/crochet/@phoenixmaid/a-few-designs-i-m-working-on\",\"https://steemit.com/trending/crochet\",\"https://steemit.com/steem/@sinkova/how-to-make-a-playground-for-your-child\",\"https://steemit.com/steemit/@crypt0mine/steemit-in-perspective-90-of-us-media-is-controlled-by-six-companies\",\"https://steemit.com/business/@mione/you-say-you-will-but-will-you\",\"https://steemit.com/trending/business\",\"https://steemit.com/business/@patrickdawson/how-to-learn-or-improve-skills-with-micro-jobs\",\"https://steemit.com/legalize-prostitution/@themanualbot/legalizing-prostitution-in-a-country-full-of-conservative-and-religious-people-philippines-pagiging-legal-ng-prostitusyon-sa\",\"https://steemit.com/trending/legalize-prostitution\",\"https://steemit.com/food/@vlad/juicy-piece-of-meat-and-a-sauce-of-black-pepper\",\"https://steemit.com/photography/@steemafon/steampunk-animal-sculptures-made-of-scrap-metal-by-hasan-novrozi\",\"https://steemit.com/art/@kimal73/new-media-paintings-woman-faces\",\"https://steemit.com/photography/@cryptos/scared-from-the-dark-don-t-go-shooting-in-caves\",\"https://steemit.com/jarvis/@disofdis/to-the-friendliest-bot-on-the-steemit-who-is-so-misunderstood-thank-you-jarvis\",\"https://steemit.com/trending/jarvis\",\"https://steemit.com/food/@smailer/my-daytime-latte-art-tryings-happy-whale\",\"https://steemit.com/steemit/@tjpezlo/steem-and-steem-dollars-are-cheap-but-no-one-is-buying-this-could-be-the-reason-why\",\"https://steemit.com/alpha/@minion/steemit-aplha-a-look-in-history\",\"https://steemit.com/trending/alpha\",\"https://steemit.com/steemit/@elyaque/steem-report-august-23\",\"https://steemit.com/deutsch/@zahnspange/first-orthodontist-in-the-world-accepting-steem-and-sbd-payments\",\"https://steemit.com/trending/deutsch\",\"https://steemit.com/steemit/@bryan.larkin/steem-your-way-to-the-top-of-youtube\",\"https://steemit.com/cn/@cnfund/after-creation-chapter-2-first-published-in-24-hours-upvote-and-reply-can-get-my-upvote-once-2-24-upvote\",\"https://steemit.com/cn/@oflyhigh/cn-august-23\",\"https://steemit.com/space/@brianphobos/can-mars-be-terraformed-if-so-would-it-be-viable-to-do-it\",\"https://steemit.com/trending/space\",\"https://steemit.com/art/@andressilvera/painting-queen-b-with-process-photos-and-art-tips\",\"https://steemit.com/money/@profitgenerator/personal-finance-tips-pt-3\",\"https://steemit.com/trending/money\",\"https://steemit.com/photography/@itsnicoletv/fashion-film-shoot-turned-nightmare-part-2\",\"https://steemit.com/story/@allasyummyfood/owning-a-french-bulldog\",\"https://steemit.com/philosophy/@omfedor/vedic-wisdom-lessons-3-the-soul-can-be-detected-by-external-signs-what-rational-approach-to-the-irrational\",\"https://steemit.com/trending/philosophy\",\"https://steemit.com/steemit/@martaxrodriguez/list-of-emojis-and-icons-you-can-use-in-steemit-cheatsheet-part-1-and-128060-and-128077-and-128521\",\"https://steemit.com/freedom/@menta/the-dirty-secrets-of-the-internet-part1-you-are-being-watched\",\"https://steemit.com/trending/freedom\",\"https://steemit.com/photography/@sharker/dawn-at-the-railway-station-zhlobin-belarus-belarus-zhlobin-rassvet-na-zh-d-stancii\",\"https://steemit.com/health/@sabot/5-fitness-common-fitness-beliefs-that-aren-t-true-at-all\",\"https://steemit.com/trending/health\",\"https://steemit.com/smoothie/@the-future/here-s-a-great-way-to-make-a-healthy-breakfast-menu-tasty-smoothie-and-a-big-salad-super-food\",\"https://steemit.com/trending/smoothie\",\"https://steemit.com/money/@twinner/financial-freedom-lifelong-with-minimal-effort-introducing-the-permacryptofolio-system-a-public-trading-experiment-using-real\",\"https://steemit.com/steemit/@yangyang/eyes-with-world-drawing\",\"https://steemit.com/photography/@steampunkpowered/how-a-single-photograph-can-be-worth-as-much-as-a-car-insight-on-photography-cost\",\"https://steemit.com/steemit/@anotherjoe/sleepers-promoting-great-articles-that-never-woke-up-proposal\",\"https://steemit.com/blog/@sisterholics/all-black-everything\",\"https://steemit.com/trending/blog\",\"https://steemit.com/steemit/@burnin/introducing-steemit-vote-weight-calculator-a-tool-to-maximize-your-curation-rewards\",\"https://steemit.com/steemit/@dennygalindo/to-raise-active-user-count-need-to-make-curation-profitable-to-accounts-with-usd100-1000-in-steem-power\",\"https://steemit.com/steem/@steemitguide/what-is-steemit-steemeducationprogram-simple-infographic-s-to-share-out-on-social-media\",\"https://steemit.com/cartoon/@quickfingersluc/steemit-funnies-5-the-bot-hunter\",\"https://steemit.com/trending/cartoon\",\"https://steemit.com/photography/@imag1ne/iphone-macrophoto-how-i-do-it\",\"https://steemit.com/news/@nkdk/solar-sponge-offers-a-completely-new-approach-to-solar-steam-generation\",\"https://steemit.com/steemit/@cjclaro/steemwiki-info-a-humble-project-inspired-by-ned-s-post-the-first-phase-of-the-steem-faq-and-wikee-consolidation-of-knowledge\",\"https://steemit.com/economics/@jasonstaggers/why-the-federal-reserve-can-never-raise-interest-rates\",\"https://steemit.com/trending/economics\",\"https://steemit.com/crossword/@sandra/steemit-crossword-2-the-winner-earns-50-of-the-steem-dollars\",\"https://steemit.com/trending/crossword\",\"https://steemit.com/writing/@cristi/q-and-a-with-steemit-prolific-author-eric-vance-walton\",\"https://steemit.com/steemit/@thebatchman/steemit-is-on-fire-and-i-am-celebrating-in-three-dimentions\",\"https://steemit.com/steem/@reneenouveau/an-open-letter-to-tone-vays-you-re-right\",\"https://steemit.com/literature/@deviedev/book-review-strength-in-what-remains-by-tracy-kidder\",\"https://steemit.com/trending/literature\",\"https://steemit.com/mining/@letc/why-i-think-that-gxt-1080-sc-is-a-real-gpu-miner\",\"https://steemit.com/funny/@lordvader/how-to-ruin-an-empire-episode-v-now-available-and-follwoers-only-inside-peak\",\"https://steemit.com/trending/funny\",\"https://steemit.com/blockchain/@fluffy/five-blockchain-startups-that-are-worth-to-know-7\",\"https://steemit.com/trending/blockchain\",\"https://steemit.com/steemit/@lescraig/birthday-girl-on-steemit\",\"https://steemit.com/steemit/@behfar/my-first-game-is-released-thank-you-steemit\",\"https://steemit.com/coloring/@anxietymaven/because-coloring-thats-why\",\"https://steemit.com/trending/coloring\",\"https://steemit.com/art/@pixielolz/it-s-never-too-late-to-learn-a-new-skill-one-year-progress-and-tips-for-anyone-wanting-to-learn-something-new\",\"https://steemit.com/art/@anca3drandom/how-i-made-decorative-mini-kitchen-blackboard-pyrography-art-watercolors\",\"https://steemit.com/steemit/@cryptos/idea-new-tool-that-can-help-curators-on-steemit\",\"https://steemit.com/steemit/@steemingnow/steemit-notebooks-start-up-you-choose-the-cover-vote-now\",\"https://steemit.com/cars/@stealthstrike/bbc-s-hit-automotive-show-top-gear-poised-for-a-most-certain-death\",\"https://steemit.com/trending/cars\",\"https://steemit.com/steemit/@zaebars/a-piece-of-text-for-converting-your-friends-into-steemians\",\"https://steemit.com/steemaway/@mranderson/world-famous-american-pastel-artist-gives-his-original-art-away-to-one-lucky-steemit-voter-and-now-with-buy-it-now-option\",\"https://steemit.com/trending/steemaway\",\"https://steemit.com/photography/@sarahjordan/we-broke-into-an-abandoned-school-to-get-these-photos-part-one\",\"https://steemit.com/recipes/@corinnestokes/garlic-soy-hummus-recipe-easy\",\"https://steemit.com/fiction/@kendewitt/merwin-in-the-multiverse-exit-9-off-infinite-loop-original-recursive-science-fiction\",\"https://steemit.com/trending/fiction\",\"https://steemit.com/ufc/@daut44/ufc-202-mcgregor-vs-diaz-prefight-history-and-postfight-analysis\",\"https://steemit.com/trending/ufc\",\"https://steemit.com/radiator/@inertia/how-to-write-a-ruby-on-rails-app-for-steem\",\"https://steemit.com/trending/radiator\",\"https://steemit.com/life/@marrywiger/steemit-will-change-the-world\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-23T20:27:36",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 29028460261,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.016 HBD",
+    "percent_hbd": 10000,
+    "permlink": "test-don-t-upvote",
+    "post_id": 956491,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test,don't upvote.",
+    "title": "test,don't upvote.",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@laonie1/test-don-t-upvote"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 255334396905,
+        "rshares": 322295897,
+        "voter": "damono"
+      },
+      {
+        "percent": "10000",
+        "reputation": 587163107963,
+        "rshares": 2133611474,
+        "voter": "breathe3000"
+      },
+      {
+        "percent": "10000",
+        "reputation": 777812727227,
+        "rshares": 20949232618,
+        "voter": "artific"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2090799841362,
+        "rshares": 2599515869,
+        "voter": "dimon14"
+      },
+      {
+        "percent": "10000",
+        "reputation": 970572315676,
+        "rshares": 1113977128,
+        "voter": "fiat19"
+      },
+      {
+        "percent": "10000",
+        "reputation": 2609275826131,
+        "rshares": 53459928,
+        "voter": "alina1"
+      }
+    ],
+    "author": "fiat19",
+    "author_reputation": 970572315676,
+    "beneficiaries": [],
+    "body": "https://s2",
+    "body_length": 338,
+    "cashout_time": "2016-09-03T08:20:30",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-27T08:20:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\",\"attentiveness\",\"psychology\"],\"image\":[\"https://s20.postimg.org/9mr5r7hlp/1_0.jpg\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-27T08:20:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 27172092914,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.014 HBD",
+    "percent_hbd": 10000,
+    "permlink": "attentiveness-test-the-entertaining-table-for-observation-check",
+    "post_id": 1010180,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "Attentiveness test: The entertaining table for observation check",
+    "title": "Attentiveness test: The entertaining table for observation check",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@fiat19/attentiveness-test-the-entertaining-table-for-observation-check"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 124802744033,
+        "rshares": 25931059234,
+        "voter": "laonie1"
+      },
+      {
+        "percent": "10000",
+        "reputation": 1118144531,
+        "rshares": 63285882,
+        "voter": "gregnie"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 59599966,
+        "voter": "steemchina"
+      }
+    ],
+    "author": "laonie1",
+    "author_reputation": 124802744033,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-09-04T08:39:30",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-28T08:39:30",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-28T08:39:30",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 26053945082,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.013 HBD",
+    "percent_hbd": 10000,
+    "permlink": "test",
+    "post_id": 1024163,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@laonie1/test"
+  },
+  {
+    "active_votes": [
+      {
+        "percent": "10000",
+        "reputation": 335617567,
+        "rshares": 8962980781,
+        "voter": "lee4"
+      },
+      {
+        "percent": "10000",
+        "reputation": 40255997582,
+        "rshares": 12397217216,
+        "voter": "cannav"
+      },
+      {
+        "percent": "10000",
+        "reputation": 0,
+        "rshares": 119326360,
+        "voter": "stevenh512"
+      }
+    ],
+    "author": "lee4",
+    "author_reputation": 335617567,
+    "beneficiaries": [],
+    "body": "test",
+    "body_length": 4,
+    "cashout_time": "2016-09-01T11:39:48",
+    "category": "test",
+    "children": 0,
+    "created": "2016-08-25T11:39:48",
+    "curator_payout_value": "0.000 HBD",
+    "depth": 0,
+    "json_metadata": "{\"tags\":[\"test\"]}",
+    "last_payout": "1969-12-31T23:59:59",
+    "last_update": "2016-08-25T11:39:48",
+    "max_accepted_payout": "1000000.000 HBD",
+    "net_rshares": 21479524357,
+    "parent_author": "",
+    "parent_permlink": "test",
+    "pending_payout_value": "0.012 HBD",
+    "percent_hbd": 10000,
+    "permlink": "test",
+    "post_id": 979508,
+    "promoted": "0.000 HBD",
+    "replies": [],
+    "root_title": "test",
+    "title": "test",
+    "total_payout_value": "0.000 HBD",
+    "url": "/test/@lee4/test"
+  }
+]
diff --git a/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/truncated.tavern.yaml b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/truncated.tavern.yaml
new file mode 100644
index 0000000000000000000000000000000000000000..b1c65af8cba209327c33cec6cdad30d5cb93e116
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_post_discussions_by_payout/truncated.tavern.yaml
@@ -0,0 +1,30 @@
+---
+  test_name: Hivemind condenser_api.get_post_discussions_by_payout limit 20 test
+
+  marks:
+    - patterntest # same as limit 20, but with truncated posts
+    - failing
+    - xfail # extra vote as usual
+
+  includes:
+    - !include ../../common.yaml
+
+  stages:
+    - name: get_post_discussions_by_payout limit 100
+      request:
+        url: "{service.proto:s}://{service.server:s}:{service.port}/"
+        method: POST
+        headers:
+          content-type: application/json
+        json:
+          jsonrpc: "2.0"
+          id: 1
+          method: "condenser_api.get_post_discussions_by_payout"
+          params: {"tag":"test","limit":20,"truncate_body":10}
+      response:
+        status_code: 200
+        verify_response_with:
+          function: validate_response:compare_response_with_pattern
+          extra_kwargs:
+            method: "truncated"
+            directory: "condenser_api_patterns/get_post_discussions_by_payout"
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_reblogged_by/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_reblogged_by/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..483130a7f7225a5e5bd2019b3bebb5fd6db8b772
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_reblogged_by/_readme.txt
@@ -0,0 +1,10 @@
+Lists rebloggers of given post.
+
+method: "condenser_api.get_reblogged_by"
+params:
+{
+  "author":"{author}" + "permlink":"{permlink}",
+
+     mandatory, have to point on valid post; paging mechanism
+
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..06a56d1b5491264293400a9cc457327fe831293f
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_replies_by_last_update/_readme.txt
@@ -0,0 +1,21 @@
+Lists replies made to author's posts.
+
+method: "condenser_api.get_replies_by_last_update"
+params:
+{
+  "start_author":"{author}",
+
+     mandatory, point on author
+
+  "start_permlink":"{permlink}",
+
+     optional, when passed piont on valid post
+
+  "limit":"{number}",
+
+     optional range 1..100, default = 20
+
+  "truncate_body":"{number}",
+
+     optional, default = 0
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_state/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_state/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a7af9916212e918cf53cee833092770833bd1c8d
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_state/_readme.txt
@@ -0,0 +1,12 @@
+Lists all information about of given account or/and post. Depraceted.
+
+method: "condenser_api.get_state"
+params:
+{
+  "path":"{path}",
+
+     mandatory, point to valid path;
+     values:
+       @{account} - point to valid account
+       {community}/@{account}/{permlink} - point to valid post
+}
\ No newline at end of file
diff --git a/hivemind/tavern/condenser_api_patterns/get_trending_tags/_readme.txt b/hivemind/tavern/condenser_api_patterns/get_trending_tags/_readme.txt
new file mode 100644
index 0000000000000000000000000000000000000000..af8ad4cbbebfcc0141fe14b89c3799e0c82ed014
--- /dev/null
+++ b/hivemind/tavern/condenser_api_patterns/get_trending_tags/_readme.txt
@@ -0,0 +1,13 @@
+Lists tags sort by all payout, with stats summary of comments and top_posts.
+
+method: "condenser_api.get_trending_tags"
+params:
+{
+  "start_tag":"{tag}",
+
+     optional, point to tag; paging mechanism
+
+  "limit":{number},
+
+     optional range 1...250; default = 250
+}
\ No newline at end of file